aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2021-10-17 12:46:06 +0200
committerPřemysl Eric Janouch <p@janouch.name>2021-10-17 12:46:06 +0200
commit54ef836eecf62d4f6c0ecc9746c925c60fba9946 (patch)
tree3998d95a1eefb625b0f48d33607f3f32e72828d8
parent26a3c0c8251fd060b515aafe588dea844a20096c (diff)
downloadtdv-54ef836eecf62d4f6c0ecc9746c925c60fba9946.tar.gz
tdv-54ef836eecf62d4f6c0ecc9746c925c60fba9946.tar.xz
tdv-54ef836eecf62d4f6c0ecc9746c925c60fba9946.zip
sdgui: make even rows a bit darker by default
-rw-r--r--src/sdgui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sdgui.c b/src/sdgui.c
index b270044..caae311 100644
--- a/src/sdgui.c
+++ b/src/sdgui.c
@@ -264,11 +264,11 @@ main (int argc, char *argv[])
"background: @theme_unfocused_base_color; "
"color: @theme_fg_color; /* should be more faded than 'text' */ }"
"stardict-view.even {"
- "background: mix(@theme_base_color, @theme_text_color, 0.02); "
+ "background: mix(@theme_base_color, @theme_text_color, 0.03); "
"color: @theme_text_color; }"
"stardict-view.even:backdrop {"
"background: mix(@theme_unfocused_base_color, "
- "@theme_fg_color, 0.02); "
+ "@theme_fg_color, 0.03); "
"color: @theme_fg_color; /* should be more faded than 'text' */ }";
GdkScreen *screen = gdk_screen_get_default ();