From b458b58edc12f6365d6712e81b82b08bd264768b Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Sun, 20 Dec 2020 23:51:41 +0100 Subject: [PATCH] Tweak the dark theme to better match the Godot proposals viewer --- static/main.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/static/main.css b/static/main.css index fc9d881..7e0c8d8 100644 --- a/static/main.css +++ b/static/main.css @@ -8,10 +8,10 @@ @media (prefers-color-scheme: dark) { :root { - --body-background-color: hsl(0, 0%, 20%); - --body-color: hsl(0, 0%, 85%); - --table-sticky-background-color: hsl(0, 0%, 20%); - --link-color: hsl(210, 100%, 80%); + --body-background-color: hsl(180, 5%, 15%); + --body-color: hsl(0, 0%, 80%); + --table-sticky-background-color: hsl(180, 5%, 15%); + --link-color: hsl(200, 50%, 60%); --completion-complete-color: hsl(125, 50%, 65%); } }