]> gitweb.factorcode.org Git - factor.git/blob - basis/ui/theme/theme.factor
e00382b9c70cee81e3f5114cb06566b93967d967
[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: 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: selection-color theme ( -- color )
87 HOOK: panel-background-color theme ( -- color )
88 HOOK: focus-border-color theme ( -- color )
89
90 HOOK: labeled-border-color theme ( -- color )
91
92 HOOK: table-border-color theme ( -- color )
93
94 SINGLETON: light-theme
95 theme [ light-theme ] initialize
96
97 M: light-theme toolbar-background COLOR: grey95 ;
98 M: light-theme toolbar-button-pressed-background COLOR: dark-gray ;
99
100 M: light-theme menu-background COLOR: grey95 ;
101 M: light-theme menu-border-color COLOR: grey75 ;
102
103 M: light-theme status-bar-background COLOR: FactorDarkSlateBlue ;
104 M: light-theme status-bar-foreground COLOR: white ;
105
106 M: light-theme button-text-color COLOR: FactorDarkSlateBlue ;
107 M: light-theme button-clicked-text-color COLOR: white ;
108
109 M: light-theme line-color COLOR: grey75 ;
110
111 M: light-theme column-title-background COLOR: grey95 ;
112
113 M: light-theme roll-button-rollover-border COLOR: gray50 ;
114 M: light-theme roll-button-selected-background COLOR: dark-gray ;
115
116 M: light-theme source-files-color COLOR: MediumSeaGreen ;
117 M: light-theme errors-color COLOR: chocolate1 ;
118 M: light-theme details-color COLOR: SteelBlue3 ;
119
120 M: light-theme debugger-color COLOR: chocolate1 ;
121 M: light-theme completion-color COLOR: magenta ;
122
123 M: light-theme data-stack-color COLOR: DodgerBlue ;
124 M: light-theme retain-stack-color COLOR: HotPink ;
125 M: light-theme call-stack-color COLOR: GreenYellow ;
126
127 M: light-theme title-bar-gradient { COLOR: white COLOR: grey90 } ;
128
129 M: light-theme popup-color COLOR: yellow2 ;
130
131 M: light-theme object-color COLOR: aquamarine2 ;
132 M: light-theme contents-color COLOR: orchid2 ;
133
134 M: light-theme help-header-background HEXCOLOR: F4EFD9 ;
135
136 M: light-theme thread-status-stopped-background HEXCOLOR: F4D9D9 ;
137 M: light-theme thread-status-suspended-background HEXCOLOR: F4EAD9 ;
138 M: light-theme thread-status-running-background HEXCOLOR: EDF4D9 ;
139
140 M: light-theme thread-status-stopped-foreground HEXCOLOR: F42300 ;
141 M: light-theme thread-status-suspended-foreground HEXCOLOR: F37B00 ;
142 M: light-theme thread-status-running-foreground HEXCOLOR: 3FCA00 ;
143
144 M: light-theme error-summary-background HEXCOLOR: F4D9D9 ;
145
146 M: light-theme content-background COLOR: white ;
147 M: light-theme text-color COLOR: black ;
148
149 M: light-theme link-color COLOR: DodgerBlue4 ;
150 M: light-theme title-color COLOR: gray20 ;
151 M: light-theme heading-color COLOR: FactorDarkSlateBlue ;
152 M: light-theme snippet-color COLOR: DarkOrange4 ;
153 M: light-theme output-color COLOR: DarkOrange4 ;
154 M: light-theme deprecated-background-color HEXCOLOR: F4EAD9 ;
155 M: light-theme deprecated-border-color HEXCOLOR: F37B00 ;
156 M: light-theme warning-background-color HEXCOLOR: F4D9D9 ;
157 M: light-theme warning-border-color HEXCOLOR: F42300 ;
158 M: light-theme code-background-color COLOR: FactorLightTan ;
159 M: light-theme help-path-border-color COLOR: FactorLightTan ;
160
161 M: light-theme tip-background-color COLOR: lavender ;
162
163 M: light-theme prompt-background-color T{ rgba f 1 0.7 0.7 1 } ;
164
165 M: light-theme dim-color COLOR: gray35 ;
166 M: light-theme highlighted-word-color COLOR: DarkSlateGray ;
167 M: light-theme string-color COLOR: LightSalmon4 ;
168 M: light-theme stack-effect-color COLOR: FactorDarkGreen ;
169
170 M: light-theme vocab-background-color COLOR: FactorLightTan ;
171 M: light-theme vocab-border-color COLOR: FactorDarkTan ;
172
173 M: light-theme field-border-color COLOR: gray ;
174
175 M: light-theme selection-color T{ rgba f 0.8 0.8 1.0 1.0 } ;
176 M: light-theme panel-background-color T{ rgba f 0.7843 0.7686 0.7176 1.0 } ;
177 M: light-theme focus-border-color COLOR: dark-gray ;
178
179 M: light-theme labeled-border-color COLOR: grey85 ;
180
181 M: light-theme table-border-color COLOR: FactorTan ;
182
183 SINGLETON: dark-theme
184
185 M: dark-theme toolbar-background COLOR: solarized-base02 ;
186 M: dark-theme toolbar-button-pressed-background COLOR: solarized-base0 ;
187
188 M: dark-theme menu-background COLOR: solarized-base02 ;
189 M: dark-theme menu-border-color COLOR: solarized-base01 ;
190
191 M: dark-theme status-bar-background COLOR: FactorDarkSlateBlue ;
192 M: dark-theme status-bar-foreground COLOR: white ;
193
194 M: dark-theme button-text-color COLOR: solarized-base1 ;
195 M: dark-theme button-clicked-text-color COLOR: white ;
196
197 M: dark-theme line-color COLOR: solarized-base01 ;
198
199 M: dark-theme column-title-background HEXCOLOR: 2F4D5B ;
200
201 M: dark-theme roll-button-rollover-border COLOR: gray50 ;
202 M: dark-theme roll-button-selected-background COLOR: dark-gray ;
203
204 M: dark-theme source-files-color COLOR: solarized-green ;
205 M: dark-theme errors-color COLOR: solarized-red ;
206 M: dark-theme details-color COLOR: solarized-blue ;
207
208 M: dark-theme debugger-color COLOR: solarized-red ;
209 M: dark-theme completion-color COLOR: solarized-violet ;
210
211 M: dark-theme data-stack-color COLOR: solarized-blue ;
212 M: dark-theme retain-stack-color COLOR: solarized-magenta ;
213 M: dark-theme call-stack-color COLOR: solarized-green ;
214
215 M: dark-theme title-bar-gradient { COLOR: solarized-base01 COLOR: solarized-base02 } ;
216
217 M: dark-theme popup-color COLOR: solarized-yellow ;
218
219 M: dark-theme object-color COLOR: solarized-cyan ;
220 M: dark-theme contents-color COLOR: solarized-magenta ;
221
222 M: dark-theme help-header-background HEXCOLOR: 2F4D5B ;
223
224 M: dark-theme thread-status-stopped-background HEXCOLOR: 492d33 ;
225 M: dark-theme thread-status-suspended-background HEXCOLOR: 3c4a24 ;
226 M: dark-theme thread-status-running-background HEXCOLOR: 2c4f24 ;
227
228 M: dark-theme thread-status-stopped-foreground COLOR: solarized-red ;
229 M: dark-theme thread-status-suspended-foreground COLOR: solarized-yellow ;
230 M: dark-theme thread-status-running-foreground COLOR: solarized-green ;
231
232 M: dark-theme error-summary-background HEXCOLOR: 6E2E32 ;
233
234 M: dark-theme content-background COLOR: solarized-base03 ;
235 M: dark-theme text-color COLOR: grey75 ;
236
237 M: dark-theme link-color COLOR: solarized-blue ;
238 M: dark-theme title-color COLOR: grey75 ;
239 M: dark-theme heading-color COLOR: grey75 ;
240 M: dark-theme snippet-color COLOR: solarized-orange ;
241 M: dark-theme output-color COLOR: solarized-orange ;
242 M: dark-theme deprecated-background-color HEXCOLOR: 3c4a24 ;
243 M: dark-theme deprecated-border-color COLOR: solarized-yellow ;
244 M: dark-theme warning-background-color HEXCOLOR: 492d33 ;
245 M: dark-theme warning-border-color COLOR: solarized-red ;
246 M: dark-theme code-background-color HEXCOLOR: 2F4D5B ;
247 M: dark-theme help-path-border-color HEXCOLOR: 2F4D5B ;
248
249 M: dark-theme tip-background-color HEXCOLOR: 2F4D5B ;
250
251 M: dark-theme prompt-background-color HEXCOLOR: 922f31 ;
252
253 M: dark-theme dim-color COLOR: solarized-cyan ;
254 M: dark-theme highlighted-word-color COLOR: solarized-green ;
255 M: dark-theme string-color COLOR: solarized-magenta ;
256 M: dark-theme stack-effect-color COLOR: solarized-orange ;
257
258 M: dark-theme vocab-background-color COLOR: solarized-base01 ;
259 M: dark-theme vocab-border-color COLOR: solarized-base01 ;
260
261 M: dark-theme field-border-color COLOR: solarized-base01 ;
262
263 M: dark-theme selection-color COLOR: solarized-base01 ;
264 M: dark-theme panel-background-color T{ rgba f 0.7843 0.7686 0.7176 1.0 } ;
265 M: dark-theme focus-border-color COLOR: solarized-base01 ;
266
267 M: dark-theme labeled-border-color COLOR: solarized-base01 ;
268
269 M: dark-theme table-border-color COLOR: solarized-base01 ;