From 32a8e4d331fb06f58f0369e8c3422e2efc8ef56e Mon Sep 17 00:00:00 2001 From: Nico Kaiser Date: Mon, 27 Apr 2020 18:43:06 +0200 Subject: [PATCH 1/2] Fix GTK3 dark colors --- light/gtk-3.0/_colors.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/light/gtk-3.0/_colors.scss b/light/gtk-3.0/_colors.scss index d53071c..5d8a4af 100644 --- a/light/gtk-3.0/_colors.scss +++ b/light/gtk-3.0/_colors.scss @@ -2,9 +2,9 @@ // it gets @if ed depending on $variant -$base_color: if($variant == 'light', #fcfcfc, #292929); +$base_color: if($variant == 'light', #fcfcfc, #2d2e30); $text_color: if($variant == 'light', #212121, white); -$bg_color: if($variant == 'light', #cecece, #393f3f); +$bg_color: if($variant == 'light', #cecece, #3b3e3f); $fg_color: if($variant == 'light', #3c3c3c, #eeeeec); $selected_fg_color: #ffffff; -- 2.29.2