]> gitweb.factorcode.org Git - factor.git/blob - basis/ui/theme/theme.factor
ui.theme: updates to color scheme.
[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 colors.constants colors.hex 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: url-color theme ( -- color )
62 HOOK: title-color theme ( -- color )
63 HOOK: heading-color theme ( -- color )
64 HOOK: snippet-color theme ( -- color )
65 HOOK: output-color theme ( -- color )
66 HOOK: deprecated-background-color theme ( -- color )
67 HOOK: deprecated-border-color theme ( -- color )
68 HOOK: warning-background-color theme ( -- color )
69 HOOK: warning-border-color theme ( -- color )
70 HOOK: code-background-color theme ( -- color )
71 HOOK: help-path-border-color theme ( -- color )
72
73 HOOK: tip-background-color theme ( -- color )
74
75 HOOK: prompt-background-color theme ( -- color )
76
77 HOOK: dim-color theme ( -- color )
78 HOOK: highlighted-word-color theme ( -- color )
79 HOOK: string-color theme ( -- color )
80 HOOK: stack-effect-color theme ( -- color )
81
82 HOOK: vocab-background-color theme ( -- color )
83 HOOK: vocab-border-color theme ( -- color )
84
85 HOOK: field-border-color theme ( -- color )
86
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 HEXCOLOR: F4EFD9 ;
136
137 M: light-theme thread-status-stopped-background HEXCOLOR: F4D9D9 ;
138 M: light-theme thread-status-suspended-background HEXCOLOR: F4EAD9 ;
139 M: light-theme thread-status-running-background HEXCOLOR: EDF4D9 ;
140
141 M: light-theme thread-status-stopped-foreground HEXCOLOR: F42300 ;
142 M: light-theme thread-status-suspended-foreground HEXCOLOR: F37B00 ;
143 M: light-theme thread-status-running-foreground HEXCOLOR: 3FCA00 ;
144
145 M: light-theme error-summary-background HEXCOLOR: 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: gray90 ;
156 M: light-theme deprecated-border-color COLOR: red ;
157 M: light-theme warning-background-color COLOR: gray90 ;
158 M: light-theme warning-border-color COLOR: red ;
159 M: light-theme code-background-color COLOR: FactorLightTan ;
160 M: light-theme help-path-border-color COLOR: FactorLightTan ;
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: FactorDarkGreen ;
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 selection-color T{ rgba f 0.8 0.8 1.0 1.0 } ;
177 M: light-theme panel-background-color T{ rgba f 0.7843 0.7686 0.7176 1.0 } ;
178 M: light-theme focus-border-color COLOR: dark-gray ;
179
180 M: light-theme labeled-border-color COLOR: grey85 ;
181
182 M: light-theme table-border-color COLOR: FactorTan ;
183
184 SINGLETON: dark-theme
185
186 M: dark-theme toolbar-background COLOR: solarized-base02 ;
187 M: dark-theme toolbar-button-pressed-background COLOR: solarized-base0 ;
188
189 M: dark-theme menu-background COLOR: solarized-base02 ;
190 M: dark-theme menu-border-color COLOR: solarized-base01 ;
191
192 M: dark-theme status-bar-background COLOR: FactorDarkSlateBlue ;
193 M: dark-theme status-bar-foreground COLOR: white ;
194
195 M: dark-theme button-text-color COLOR: solarized-base1 ;
196 M: dark-theme button-clicked-text-color COLOR: white ;
197
198 M: dark-theme line-color COLOR: solarized-base01 ;
199
200 M: dark-theme column-title-background HEXCOLOR: 2F4D5B ;
201
202 M: dark-theme roll-button-rollover-border COLOR: gray50 ;
203 M: dark-theme roll-button-selected-background COLOR: dark-gray ;
204
205 M: dark-theme source-files-color COLOR: solarized-green ;
206 M: dark-theme errors-color COLOR: solarized-red ;
207 M: dark-theme details-color COLOR: solarized-blue ;
208
209 M: dark-theme debugger-color COLOR: solarized-red ;
210 M: dark-theme completion-color COLOR: solarized-violet ;
211
212 M: dark-theme data-stack-color COLOR: solarized-blue ;
213 M: dark-theme retain-stack-color COLOR: solarized-magenta ;
214 M: dark-theme call-stack-color COLOR: solarized-green ;
215
216 M: dark-theme title-bar-gradient { COLOR: solarized-base01 COLOR: solarized-base02 } ;
217
218 M: dark-theme popup-color COLOR: solarized-yellow ;
219
220 M: dark-theme object-color COLOR: solarized-cyan ;
221 M: dark-theme contents-color COLOR: solarized-magenta ;
222
223 M: dark-theme help-header-background HEXCOLOR: 2F4D5B ;
224
225 M: dark-theme thread-status-stopped-background HEXCOLOR: 492d33 ;
226 M: dark-theme thread-status-suspended-background HEXCOLOR: 3c4a24 ;
227 M: dark-theme thread-status-running-background HEXCOLOR: 2c4f24 ;
228
229 M: dark-theme thread-status-stopped-foreground COLOR: solarized-red ;
230 M: dark-theme thread-status-suspended-foreground COLOR: solarized-yellow ;
231 M: dark-theme thread-status-running-foreground COLOR: solarized-green ;
232
233 M: dark-theme error-summary-background HEXCOLOR: 6E2E32 ;
234
235 M: dark-theme content-background COLOR: solarized-base03 ;
236 M: dark-theme text-color COLOR: grey75 ;
237
238 M: dark-theme link-color COLOR: solarized-blue ;
239 M: dark-theme title-color COLOR: grey75 ;
240 M: dark-theme heading-color COLOR: grey75 ;
241 M: dark-theme snippet-color COLOR: solarized-orange ;
242 M: dark-theme output-color COLOR: solarized-orange ;
243 M: dark-theme deprecated-background-color HEXCOLOR: 6E2E32 ;
244 M: dark-theme deprecated-border-color COLOR: red ;
245 M: dark-theme warning-background-color HEXCOLOR: 6E2E32 ;
246 M: dark-theme warning-border-color COLOR: red ;
247 M: dark-theme code-background-color HEXCOLOR: 2F4D5B ;
248 M: dark-theme help-path-border-color HEXCOLOR: 2F4D5B ;
249
250 M: dark-theme tip-background-color HEXCOLOR: 2F4D5B ;
251
252 M: dark-theme prompt-background-color HEXCOLOR: 922f31 ;
253
254 M: dark-theme dim-color COLOR: solarized-cyan ;
255 M: dark-theme highlighted-word-color COLOR: solarized-green ;
256 M: dark-theme string-color COLOR: solarized-magenta ;
257 M: dark-theme stack-effect-color COLOR: solarized-orange ;
258
259 M: dark-theme vocab-background-color COLOR: solarized-base01 ;
260 M: dark-theme vocab-border-color COLOR: solarized-base01 ;
261
262 M: dark-theme field-border-color COLOR: solarized-base01 ;
263
264 M: dark-theme selection-color COLOR: solarized-base01 ;
265 M: dark-theme panel-background-color T{ rgba f 0.7843 0.7686 0.7176 1.0 } ;
266 M: dark-theme focus-border-color COLOR: solarized-base01 ;
267
268 M: dark-theme labeled-border-color COLOR: solarized-base01 ;
269
270 M: dark-theme table-border-color COLOR: solarized-base01 ;