From c961b4d2048b987bc6b2c8935b41a3ee7733f957 Mon Sep 17 00:00:00 2001 From: Csaba Jakosa Date: Sun, 28 Aug 2016 18:43:49 +0200 Subject: [PATCH] Use predefined fg & bg color for backdrop windows. Fixes #447 --- gtk-3.20/scss/_colors.scss | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gtk-3.20/scss/_colors.scss b/gtk-3.20/scss/_colors.scss index cd3bb55..47f8ffb 100644 --- a/gtk-3.20/scss/_colors.scss +++ b/gtk-3.20/scss/_colors.scss @@ -59,6 +59,27 @@ @define-color lightdm_bg_color #{"" + $lightdm_bg_color}; @define-color lightdm_fg_color #{"" + $lightdm_fg_color}; +/* widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #{"" + $backdrop_fg_color}; + +/* text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color #{"" + $text_color}; + +/* widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #{"" + $backdrop_bg_color}; + +/* text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #{"" + $backdrop_base_color}; + +/* base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #{"" + $selected_bg_color}; + +/* text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color #{"" + $selected_fg_color}; + +/* insensitive color on backdrop windows*/ +@define-color unfocused_insensitive_color #{"" + $backdrop_insensitive_color}; + /* window manager colors */ @define-color wm_bg #{"" + $wm_bg}; @define-color wm_border_focused #{"" + $wm_border_focused};