]> gitweb.factorcode.org Git - factor.git/blob - basis/ui/theme/theme.factor
colors: merge colors.constants and colors.hex.
[factor.git] / basis / ui / theme / theme.factor
1 ! Copyright (C) 2016 Nicolas PĂ©net.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: colors delegate namespaces ;
4 IN: ui.theme
5
6 SYMBOL: theme
7
8 HOOK: toolbar-background theme ( -- color )
9 HOOK: toolbar-button-pressed-background theme ( -- color )
10
11 HOOK: menu-background theme ( -- color )
12 HOOK: menu-border-color theme ( -- color )
13
14 HOOK: status-bar-background theme ( -- color )
15 HOOK: status-bar-foreground theme ( -- color )
16
17 HOOK: button-text-color theme ( -- color )
18 HOOK: button-clicked-text-color theme ( -- color )
19
20 HOOK: line-color theme ( -- color )
21
22 HOOK: column-title-background theme ( -- color )
23
24 HOOK: roll-button-rollover-border theme ( -- color )
25 HOOK: roll-button-selected-background theme ( -- color )
26
27 HOOK: source-files-color theme ( -- color )
28 HOOK: errors-color theme ( -- color )
29 HOOK: details-color theme ( -- color )
30
31 HOOK: debugger-color theme ( -- color )
32 HOOK: completion-color theme ( -- color )
33
34 HOOK: data-stack-color theme ( -- color )
35 HOOK: retain-stack-color theme ( -- color )
36 HOOK: call-stack-color theme ( -- color )
37
38 HOOK: title-bar-gradient theme ( -- color )
39
40 HOOK: popup-color theme ( -- color )
41
42 HOOK: object-color theme ( -- color )
43 HOOK: contents-color theme ( -- color )
44
45 HOOK: help-header-background theme ( -- color )
46
47 HOOK: thread-status-stopped-background theme ( -- color )
48 HOOK: thread-status-suspended-background theme ( -- color )
49 HOOK: thread-status-running-background theme ( -- color )
50
51 HOOK: thread-status-stopped-foreground theme ( -- color )
52 HOOK: thread-status-suspended-foreground theme ( -- color )
53 HOOK: thread-status-running-foreground theme ( -- color )
54
55 HOOK: error-summary-background theme ( -- color )
56
57 HOOK: content-background theme ( -- color )
58 HOOK: text-color theme ( -- color )
59
60 HOOK: link-color theme ( -- color )
61 HOOK: title-color theme ( -- color )
62 HOOK: heading-color theme ( -- color )
63 HOOK: snippet-color theme ( -- color )
64 HOOK: output-color theme ( -- color )
65 HOOK: deprecated-background-color theme ( -- color )
66 HOOK: deprecated-border-color theme ( -- color )
67 HOOK: warning-background-color theme ( -- color )
68 HOOK: warning-border-color theme ( -- color )
69 HOOK: code-background-color theme ( -- color )
70 HOOK: help-path-border-color theme ( -- color )
71
72 HOOK: tip-background-color theme ( -- color )
73
74 HOOK: prompt-background-color theme ( -- color )
75
76 HOOK: dim-color theme ( -- color )
77 HOOK: highlighted-word-color theme ( -- color )
78 HOOK: string-color theme ( -- color )
79 HOOK: stack-effect-color theme ( -- color )
80
81 HOOK: vocab-background-color theme ( -- color )
82 HOOK: vocab-border-color theme ( -- color )
83
84 HOOK: field-border-color theme ( -- color )
85
86 HOOK: editor-caret-color theme ( -- color )
87 HOOK: selection-color theme ( -- color )
88 HOOK: panel-background-color theme ( -- color )
89 HOOK: focus-border-color theme ( -- color )
90
91 HOOK: labeled-border-color theme ( -- color )
92
93 HOOK: table-border-color theme ( -- color )
94
95 SINGLETON: light-theme
96 theme [ light-theme ] initialize
97
98 M: light-theme toolbar-background COLOR: grey95 ;
99 M: light-theme toolbar-button-pressed-background COLOR: dark-gray ;
100
101 M: light-theme menu-background COLOR: grey95 ;
102 M: light-theme menu-border-color COLOR: grey75 ;
103
104 M: light-theme status-bar-background COLOR: FactorDarkSlateBlue ;
105 M: light-theme status-bar-foreground COLOR: white ;
106
107 M: light-theme button-text-color COLOR: FactorDarkSlateBlue ;
108 M: light-theme button-clicked-text-color COLOR: white ;
109
110 M: light-theme line-color COLOR: grey75 ;
111
112 M: light-theme column-title-background COLOR: grey95 ;
113
114 M: light-theme roll-button-rollover-border COLOR: gray50 ;
115 M: light-theme roll-button-selected-background COLOR: dark-gray ;
116
117 M: light-theme source-files-color COLOR: MediumSeaGreen ;
118 M: light-theme errors-color COLOR: chocolate1 ;
119 M: light-theme details-color COLOR: SteelBlue3 ;
120
121 M: light-theme debugger-color COLOR: chocolate1 ;
122 M: light-theme completion-color COLOR: magenta ;
123
124 M: light-theme data-stack-color COLOR: DodgerBlue ;
125 M: light-theme retain-stack-color COLOR: HotPink ;
126 M: light-theme call-stack-color COLOR: GreenYellow ;
127
128 M: light-theme title-bar-gradient { COLOR: white COLOR: grey90 } ;
129
130 M: light-theme popup-color COLOR: yellow2 ;
131
132 M: light-theme object-color COLOR: aquamarine2 ;
133 M: light-theme contents-color COLOR: orchid2 ;
134
135 M: light-theme help-header-background COLOR: #F4EFD9 ;
136
137 M: light-theme thread-status-stopped-background COLOR: #F4D9D9 ;
138 M: light-theme thread-status-suspended-background COLOR: #F4EAD9 ;
139 M: light-theme thread-status-running-background COLOR: #EDF4D9 ;
140
141 M: light-theme thread-status-stopped-foreground COLOR: #F42300 ;
142 M: light-theme thread-status-suspended-foreground COLOR: #F37B00 ;
143 M: light-theme thread-status-running-foreground COLOR: #3FCA00 ;
144
145 M: light-theme error-summary-background COLOR: #F4D9D9 ;
146
147 M: light-theme content-background COLOR: white ;
148 M: light-theme text-color COLOR: black ;
149
150 M: light-theme link-color COLOR: DodgerBlue4 ;
151 M: light-theme title-color COLOR: gray20 ;
152 M: light-theme heading-color COLOR: FactorDarkSlateBlue ;
153 M: light-theme snippet-color COLOR: DarkOrange4 ;
154 M: light-theme output-color COLOR: DarkOrange4 ;
155 M: light-theme deprecated-background-color COLOR: #F4EAD9 ;
156 M: light-theme deprecated-border-color COLOR: #F37B00 ;
157 M: light-theme warning-background-color COLOR: #F4D9D9 ;
158 M: light-theme warning-border-color COLOR: #F42300 ;
159 M: light-theme code-background-color COLOR: FactorLightTan ;
160 M: light-theme help-path-border-color COLOR: grey95 ;
161
162 M: light-theme tip-background-color COLOR: lavender ;
163
164 M: light-theme prompt-background-color T{ rgba f 1 0.7 0.7 1 } ;
165
166 M: light-theme dim-color COLOR: gray35 ;
167 M: light-theme highlighted-word-color COLOR: DarkSlateGray ;
168 M: light-theme string-color COLOR: LightSalmon4 ;
169 M: light-theme stack-effect-color COLOR: FactorDarkSlateBlue ;
170
171 M: light-theme vocab-background-color COLOR: FactorLightTan ;
172 M: light-theme vocab-border-color COLOR: FactorDarkTan ;
173
174 M: light-theme field-border-color COLOR: gray ;
175
176 M: light-theme editor-caret-color COLOR: red ;
177 M: light-theme selection-color T{ rgba f 0.8 0.8 1.0 1.0 } ;
178 M: light-theme panel-background-color T{ rgba f 0.7843 0.7686 0.7176 1.0 } ;
179 M: light-theme focus-border-color COLOR: dark-gray ;
180
181 M: light-theme labeled-border-color COLOR: grey85 ;
182
183 M: light-theme table-border-color COLOR: FactorTan ;
184
185 SINGLETON: dark-theme
186
187 M: dark-theme toolbar-background COLOR: #202124 ;
188 M: dark-theme toolbar-button-pressed-background COLOR: solarized-base0 ;
189
190 M: dark-theme menu-background COLOR: #202124 ;
191 M: dark-theme menu-border-color COLOR: solarized-base01 ;
192
193 M: dark-theme status-bar-background COLOR: FactorDarkSlateBlue ;
194 M: dark-theme status-bar-foreground COLOR: white ;
195
196 M: dark-theme button-text-color COLOR: solarized-base1 ;
197 M: dark-theme button-clicked-text-color COLOR: white ;
198
199 M: dark-theme line-color COLOR: solarized-base01 ;
200
201 M: dark-theme column-title-background COLOR: #2F4D5B ;
202
203 M: dark-theme roll-button-rollover-border COLOR: gray50 ;
204 M: dark-theme roll-button-selected-background COLOR: dark-gray ;
205
206 M: dark-theme source-files-color COLOR: solarized-green ;
207 M: dark-theme errors-color COLOR: solarized-red ;
208 M: dark-theme details-color COLOR: solarized-blue ;
209
210 M: dark-theme debugger-color COLOR: solarized-red ;
211 M: dark-theme completion-color COLOR: solarized-violet ;
212
213 M: dark-theme data-stack-color COLOR: solarized-blue ;
214 M: dark-theme retain-stack-color COLOR: solarized-magenta ;
215 M: dark-theme call-stack-color COLOR: solarized-green ;
216
217 M: dark-theme title-bar-gradient { COLOR: solarized-base01 COLOR: solarized-base02 } ;
218
219 M: dark-theme popup-color COLOR: solarized-yellow ;
220
221 M: dark-theme object-color COLOR: solarized-cyan ;
222 M: dark-theme contents-color COLOR: solarized-magenta ;
223
224 M: dark-theme help-header-background COLOR: #2F4D5B ;
225
226 M: dark-theme thread-status-stopped-background COLOR: #492d33 ;
227 M: dark-theme thread-status-suspended-background COLOR: #3c4a24 ;
228 M: dark-theme thread-status-running-background COLOR: #2c4f24 ;
229
230 M: dark-theme thread-status-stopped-foreground COLOR: solarized-red ;
231 M: dark-theme thread-status-suspended-foreground COLOR: solarized-yellow ;
232 M: dark-theme thread-status-running-foreground COLOR: solarized-green ;
233
234 M: dark-theme error-summary-background COLOR: #6E2E32 ;
235
236 M: dark-theme content-background COLOR: #202124 ;
237 M: dark-theme text-color COLOR: #bdc1c6 ;
238
239 M: dark-theme link-color COLOR: #8ab4f8 ;
240 M: dark-theme title-color COLOR: grey75 ;
241 M: dark-theme heading-color COLOR: grey75 ;
242 M: dark-theme snippet-color COLOR: solarized-orange ;
243 M: dark-theme output-color COLOR: solarized-orange ;
244 M: dark-theme deprecated-background-color COLOR: #3c4a24 ;
245 M: dark-theme deprecated-border-color COLOR: solarized-yellow ;
246 M: dark-theme warning-background-color COLOR: #492d33 ;
247 M: dark-theme warning-border-color COLOR: solarized-red ;
248 M: dark-theme code-background-color COLOR: #2F4D5B ;
249 M: dark-theme help-path-border-color COLOR: solarized-base02 ;
250
251 M: dark-theme tip-background-color COLOR: #2F4D5B ;
252
253 M: dark-theme prompt-background-color COLOR: #922f31 ;
254
255 M: dark-theme dim-color COLOR: solarized-cyan ;
256 M: dark-theme highlighted-word-color COLOR: solarized-green ;
257 M: dark-theme string-color COLOR: solarized-magenta ;
258 M: dark-theme stack-effect-color COLOR: solarized-orange ;
259
260 M: dark-theme vocab-background-color COLOR: solarized-base01 ;
261 M: dark-theme vocab-border-color COLOR: solarized-base01 ;
262
263 M: dark-theme field-border-color COLOR: solarized-base01 ;
264
265 M: dark-theme editor-caret-color COLOR: DeepPink2 ;
266 M: dark-theme selection-color COLOR: solarized-base01 ;
267 M: dark-theme panel-background-color T{ rgba f 0.7843 0.7686 0.7176 1.0 } ;
268 M: dark-theme focus-border-color COLOR: solarized-base01 ;
269
270 M: dark-theme labeled-border-color COLOR: solarized-base01 ;
271
272 M: dark-theme table-border-color COLOR: solarized-base01 ;
273
274 PROTOCOL: theme-protocol
275 toolbar-background toolbar-button-pressed-background
276 menu-background menu-border-color status-bar-background
277 status-bar-foreground button-text-color
278 button-clicked-text-color line-color column-title-background
279 roll-button-rollover-border roll-button-selected-background
280 source-files-color errors-color details-color debugger-color
281 completion-color data-stack-color retain-stack-color
282 call-stack-color title-bar-gradient popup-color object-color
283 contents-color help-header-background
284 thread-status-stopped-background
285 thread-status-suspended-background
286 thread-status-running-background
287 thread-status-stopped-foreground
288 thread-status-suspended-foreground
289 thread-status-running-foreground error-summary-background
290 content-background text-color link-color title-color
291 heading-color snippet-color output-color
292 deprecated-background-color deprecated-border-color
293 warning-background-color warning-border-color
294 code-background-color help-path-border-color
295 tip-background-color prompt-background-color dim-color
296 highlighted-word-color string-color stack-effect-color
297 vocab-background-color vocab-border-color field-border-color
298 editor-caret-color selection-color panel-background-color
299 focus-border-color labeled-border-color table-border-color ;