all repos — dotfiles @ 3668cec0ad0e05a9d43432250db33d27935c7b37

my *nix dotfiles

themes/whitey/gtk-3.22/_colors-public.scss (view raw)

  1//
  2// Apps rely on some named colors to be exported
  3//
  4
  5// GTK NAMED COLORS
  6// ----------------
  7// Use responsibly!
  8//
  9// Sass thinks we're using the colors in the variables as strings and may shoot
 10// warning, it's innocuous and can be defeated by using "" + $var
 11
 12
 13/***********
 14 * Colours *
 15 ***********/
 16
 17//
 18// Widget text/foreground color
 19//
 20
 21@define-color theme_fg_color #{"" +$fg_color};
 22
 23
 24//
 25// Widget inverted text/foreground color
 26//
 27
 28@define-color theme_inverted_fg_color #{"" +$inverted_fg_color};
 29
 30
 31//
 32// Text color for entries, views and content in general
 33//
 34
 35@define-color theme_text_color #{"" +$fg_color};
 36
 37
 38//
 39// Widget base background color
 40//
 41
 42@define-color theme_bg_color #{"" +$bg_color};
 43
 44
 45//
 46// Text widgets and the like base background color
 47//
 48
 49@define-color theme_base_color #{"" +$base_color};
 50
 51
 52//
 53// Base background color of selections
 54//
 55
 56@define-color theme_selected_bg_color #{"" +$selected_bg_color};
 57
 58
 59//
 60// Text/foreground color of selections
 61//
 62
 63@define-color theme_selected_fg_color #{"" +$selected_fg_color};
 64
 65
 66//
 67// Base background color of insensitive widgets
 68//
 69
 70@define-color insensitive_bg_color #{"" +$bg_color};
 71
 72
 73//
 74// Text foreground color of insensitive widgets
 75//
 76
 77@define-color insensitive_fg_color #{"" +$insensitive_fg_color};
 78
 79
 80//
 81// Insensitive text widgets and the like base background color
 82//
 83
 84@define-color insensitive_base_color #{"" +$secondary_base_color};
 85
 86
 87//
 88// Widget text/foreground color on backdrop windows
 89//
 90
 91@define-color theme_unfocused_fg_color #{"" +$insensitive_fg_color};
 92
 93
 94//
 95// Widget inverted text/foreground color on backdrop windows
 96//
 97
 98@define-color theme_unfocused_inverted_fg_color #{"" +$insensitive_inverted_fg_color};
 99
100
101//
102// Text color for entries, views and content in general on backdrop windows
103//
104
105@define-color theme_unfocused_text_color #{"" +$insensitive_fg_color};
106
107
108//
109// Text inverted color for entries, views and content in general on backdrop windows
110//
111
112@define-color theme_unfocused_inverted_text_color #{"" +$insensitive_inverted_fg_color};
113
114
115//
116// Widget base background color on backdrop windows
117//
118
119@define-color theme_unfocused_bg_color #{"" +$bg_color};
120
121
122//
123// Text widgets and the like base background color on backdrop windows
124//
125
126@define-color theme_unfocused_base_color #{"" +$base_color};
127
128
129//
130// Base background color of selections on backdrop windows
131//
132
133@define-color theme_unfocused_selected_bg_color #{"" +$selected_bg_color};
134
135
136//
137// Text/foreground color of selections on backdrop windows
138//
139
140@define-color theme_unfocused_selected_fg_color #{"" + $selected_fg_color};
141
142
143//
144// Text/foreground color of placeholders
145//
146
147@define-color placeholder_text_color #{"" + $placeholder_text_color};
148
149
150//
151// Widgets main borders color
152//
153
154@define-color borders #{"" +$borders_color};
155
156
157//
158// Widgets main borders color on backdrop windows
159//
160
161@define-color unfocused_borders #{"" +$borders_color};
162
163
164//
165// These are pretty self explicative
166//
167
168@define-color warning_color #{"" +$warning_color};
169@define-color error_color #{"" +$error_color};
170@define-color success_color #{"" +$success_color};
171@define-color link_color #{"" +$link_color};
172
173
174//
175// Revert wm_bg_a/b for gnome-flashback (metacity)
176//
177
178@define-color wm_bg_a #{"" +$inverted_dark_color};
179@define-color wm_bg_b #{"" +$highlight_color};
180
181
182//
183// FIXME: this is really an API
184//
185
186@define-color content_view_bg #{"" +$base_color};
187