From 90f9df635b5fd1f156b7d4d8ac18cd1611dd479f Mon Sep 17 00:00:00 2001 From: login Date: Fri, 27 Mar 2020 11:07:04 -0400 Subject: [PATCH] Updated 'public/envs.css' with a new .code-view .active colour The new colour was chosen by a more suitable procedure. I went to https://www.w3schools.com/colors/colors_converter.asp and entered the colour of the links on the current gitea theme on envs.net (which is #87ab63). Then, I copied the HSL version (hsl(90, 30%, 53%)) and pasted it. Then, I adjusted the lightness (L) portion from 53% to 4%, and got the colour value in hex #0a1400. This preserves the exact hue and saturation of the theme, while only decreasing the lightness. The previous colour was pure green, which doesn't match the theme perfectly. --- public/envs.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/envs.css b/public/envs.css index ca4bede..a602ab9 100644 --- a/public/envs.css +++ b/public/envs.css @@ -1,3 +1,3 @@ .code-view .active { - background: #001200 + background: #0a1400 }