-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss-system-json.js
310 lines (309 loc) · 11.3 KB
/
css-system-json.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
/**
* #region: System Colors JSON Data
* systemColorsJson contains the system colors data from the standard.
* * 'systemColorsJson.info' contains metadata.
* * 'systemColorsJson.categories' contains my NON-STANDARD categorization of system colors.
* 'systemColorsJson.currentColors' contains the current system color array.
* '.systemColorsJson.deprecatedColors' contains the deprecated system color array.
* Changing this a .JSON file would be trivial but causes CORS problems.
*/
const systemColorsJson =
{
"info": {
"credit": "Created by eoc.online CSS System Colors tool: https://github.com/eoconline/css-system-colors"
},
"categories": [
{
"name": "Accent",
"description": "Accented user interface controls",
},
{
"name": "Button",
"description": "Push buttons",
},
{
"name": "Canvas",
"description": "Application content or documents",
},
{
"name": "Disabled",
"description": "Disabled text",
},
{
"name": "Field",
"description": "Input fields",
},
{
"name": "Highlight",
"description": "Selected text",
},
{
"name": "Link",
"description": "Links",
},
{
"name": "Mark",
"description": "Text that has been specially marked (such as by the HTML mark element)",
},
{
"name": "Selected",
"description": "Selected items",
}
],
"currentColors": [
{
"category": "Accent",
"systemColor": "AccentColor",
"desc": "Background of accented user interface controls.",
"style": "background-color: AccentColor"
},
{
"category": "Accent",
"systemColor": "AccentColorText",
"desc": "Text of accented user interface controls.",
"style": "color: AccentColorText",
},
{
"category": "Button",
"systemColor": "ButtonBorder",
"desc": "The base border color for push buttons.",
"style": "border-color: ButtonBorder"
},
{
"category": "Button",
"systemColor": "ButtonFace",
"desc": "The face background color for push buttons.",
"style": "background-color: ButtonFace"
},
{
"category": "Button",
"systemColor": "ButtonText",
"desc": "Text on push buttons.",
"style": "color: ButtonText"
},
{
"category": "Canvas",
"systemColor": "Canvas",
"desc": "Background of application content or documents.",
"style": "background-color: Canvas"
},
{
"category": "Canvas",
"systemColor": "CanvasText",
"desc": "Text in application content or documents.",
"style": "color: CanvasText",
},
{
"category": "Disabled",
"systemColor": "GrayText",
"desc": "Disabled text. (Often, but not necessarily, gray.)",
"style": "color: GrayText"
},
{
"category": "Field",
"systemColor": "Field",
"desc": "Background of input fields.",
"style": "background-color: Field"
},
{
"category": "Field",
"systemColor": "FieldText",
"desc": "Text in input fields.",
"style": "color: FieldText"
},
{
"category": "Highlight",
"systemColor": "Highlight",
"desc": "Background of selected text, for example from : :selection.",
"style": "background-color: Highlight"
},
{
"category": "Highlight",
"systemColor": "HighlightText",
"desc": "Text of selected text.",
"style": "color: HighlightText"
},
{
"category": "Link",
"systemColor": "LinkText",
"desc": "Text in non-active, non-visited links. For light backgrounds, traditionally blue.",
"style": "color: LinkText"
},
{
"category": "Link",
"systemColor": "ActiveText",
"desc": "Text in active links. For light backgrounds, traditionally red.",
"style": "active-color: ActiveText"
},
{
"category": "Link",
"systemColor": "VisitedText",
"desc": "Text in visited links. For light backgrounds, traditionally purple.",
"style": "visited-color: VisitedText"
},
{
"category": "Mark",
"systemColor": "Mark",
"desc": "Background of text that has been specially marked (such as by the HTML mark element).",
"style": "background-color: Mark"
},
{
"category": "Mark",
"systemColor": "MarkText",
"desc": "Text that has been specially marked (such as by the HTML mark element).",
"style": "color: MarkText",
},
{
"category": "Selected",
"systemColor": "SelectedItem",
"desc": "Background of selected items, for example a selected checkbox.",
"style": "background-color: SelectedItem"
},
{
"category": "Selected",
"systemColor": "SelectedItemText",
"desc": "Text of selected items.",
"style": "color: SelectedItemText"
},
],
"deprecatedColors": [
{
"category": "window",
"systemColor": "ActiveBorder",
"desc": "Active window border. Same as ButtonBorder",
"style": "border-color: ActiveBorder"
},
{
"category": "window",
"systemColor": "ActiveCaption",
"desc": "Active window caption. Same as Canvas",
"style": "color: ActiveCaption"
},
{
"category": "MDI",
"systemColor": "AppWorkspace",
"desc": "Background color of multiple document interface. Same as Canvas",
"style": "background-color: AppWorkspace"
},
{
"category": "window",
"systemColor": "Background",
"desc": "Desktop background. Same as Canvas.",
"style": "background-color: Background"
},
{
"category": "input-button",
"systemColor": "ButtonHighlight",
"desc": "The color of the border facing the light source for 3-D elements that appear 3-D due to one layer of surrounding border. Same as ButtonFace.",
"style": "border-color: ButtonHighlight"
},
{
"category": "input-button",
"systemColor": "ButtonShadow",
"desc": "The color of the border away from the light source for 3-D elements that appear 3-D due to one layer of surrounding border. Same as ButtonFace.",
"style": "border-color: ButtonShadow"
},
{
"category": "window",
"systemColor": "CaptionText",
"desc": "Text in caption, size box, and scrollbar arrow box. Same as CanvasText.",
"style": "color: CaptionText"
},
{
"category": "window",
"systemColor": "InactiveBorder",
"desc": "Inactive window border. Same as ButtonBorder.",
"style": "border-color: InactiveBorder"
},
{
"category": "window",
"systemColor": "InactiveCaption",
"desc": "Inactive window caption. Same as Canvas.",
"style": "color: InactiveCaption"
},
{
"category": "window",
"systemColor": "InactiveCaptionText",
"desc": "Color of text in an inactive caption. Same as GrayText.",
"style": "color: InactiveCaptionText"
},
{
"category": "tooltip",
"systemColor": "InfoBackground",
"desc": "Background color for tooltip controls. Same as Canvas.",
"style": "background-color: InfoBackground"
},
{
"category": "tooltip",
"systemColor": "InfoText",
"desc": "Text color for tooltip controls. Same as CanvasText.",
"style": "color: InfoText"
},
{
"category": "window",
"systemColor": "Menu",
"desc": "Menu background. Same as Canvas.",
"style": "background-color: Menu"
},
{
"category": "window",
"systemColor": "MenuText",
"desc": "Text in menus. Same as CanvasText.",
"style": "color: MenuText"
},
{
"category": "window",
"systemColor": "Scrollbar",
"desc": "Scroll bar gray area. Same as Canvas.",
"style": "background-color: Scrollbar"
},
{
"category": "3D",
"systemColor": "ThreeDDarkShadow",
"desc": "The color of the darker (generally outer) of the two borders away from the light source for 3-D elements that appear 3-D due to two concentric layers of surrounding border. Same as ButtonBorder.",
"style": "border-color: ThreeDDarkShadow"
},
{
"category": "3D",
"systemColor": "ThreeDFace",
"desc": "The face background color for 3-D elements that appear 3-D due to two concentric layers of surrounding border. Same as ButtonFace.",
"style": "background-color: ThreeDFace"
},
{
"category": "3D",
"systemColor": "ThreeDHighlight",
"desc": "The color of the lighter (generally outer) of the two borders facing the light source for 3-D elements that appear 3-D due to two concentric layers of surrounding border. Same as ButtonBorder.",
"style": "border-color: ThreeDHighlight"
},
{
"category": "3D",
"systemColor": "ThreeDLightShadow",
"desc": "The color of the darker (generally inner) of the two borders facing the light source for 3-D elements that appear 3-D due to two concentric layers of surrounding border. Same as ButtonBorder.",
"style": "border-color: ThreeDLightShadow"
},
{
"category": "3D",
"systemColor": "ThreeDShadow",
"desc": "The color of the lighter (generally inner) of the two borders away from the light source for 3-D elements that appear 3-D due to two concentric layers of surrounding border. Same as ButtonBorder.",
"style": "border-color: ThreeDShadow"
},
{
"category": "window",
"systemColor": "Window",
"desc": "Window background. Same as Canvas.",
"style": "background-color: Window"
},
{
"category": "window",
"systemColor": "WindowFrame",
"desc": "Window frame. Same as ButtonBorder.",
"style": "border-color: WindowFrame"
},
{
"category": "window",
"systemColor": "WindowText",
"desc": "Text in windows. Same as CanvasText.",
"style": "color: WindowText"
}
]
};