@atlaskit/tokens 11.1.1 → 11.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/codemods/hypermod.config.tsx +3 -0
  3. package/codemods/remove-fallbacks/transform.tsx +24 -0
  4. package/dist/cjs/artifacts/palettes-raw/motion-palette.js +414 -63
  5. package/dist/cjs/artifacts/replacement-mapping.js +51 -3
  6. package/dist/cjs/artifacts/themes/atlassian-motion.js +2 -2
  7. package/dist/cjs/artifacts/token-default-values.js +25 -9
  8. package/dist/cjs/artifacts/token-names.js +19 -3
  9. package/dist/cjs/artifacts/tokens-raw/atlassian-motion.js +527 -47
  10. package/dist/cjs/entry-points/token-metadata.codegen.js +2342 -470
  11. package/dist/cjs/utils/token-usage-guidelines.js +117 -0
  12. package/dist/es2019/artifacts/palettes-raw/motion-palette.js +414 -63
  13. package/dist/es2019/artifacts/replacement-mapping.js +51 -3
  14. package/dist/es2019/artifacts/themes/atlassian-motion.js +119 -15
  15. package/dist/es2019/artifacts/token-default-values.js +25 -9
  16. package/dist/es2019/artifacts/token-names.js +19 -3
  17. package/dist/es2019/artifacts/tokens-raw/atlassian-motion.js +527 -47
  18. package/dist/es2019/entry-points/token-metadata.codegen.js +2342 -470
  19. package/dist/es2019/utils/token-usage-guidelines.js +109 -0
  20. package/dist/esm/artifacts/palettes-raw/motion-palette.js +414 -63
  21. package/dist/esm/artifacts/replacement-mapping.js +51 -3
  22. package/dist/esm/artifacts/themes/atlassian-motion.js +2 -2
  23. package/dist/esm/artifacts/token-default-values.js +25 -9
  24. package/dist/esm/artifacts/token-names.js +19 -3
  25. package/dist/esm/artifacts/tokens-raw/atlassian-motion.js +527 -47
  26. package/dist/esm/entry-points/token-metadata.codegen.js +2342 -470
  27. package/dist/esm/utils/token-usage-guidelines.js +111 -0
  28. package/dist/types/artifacts/palettes-raw/motion-palette.d.ts +5 -3
  29. package/dist/types/artifacts/replacement-mapping.d.ts +1 -1
  30. package/dist/types/artifacts/themes/atlassian-motion.d.ts +2 -2
  31. package/dist/types/artifacts/token-default-values.d.ts +25 -9
  32. package/dist/types/artifacts/token-names.d.ts +37 -5
  33. package/dist/types/artifacts/tokens-raw/atlassian-motion.d.ts +5 -3
  34. package/dist/types/entry-points/css-type-schema.codegen.d.ts +2 -2
  35. package/dist/types/entry-points/token-metadata.codegen.d.ts +6 -2
  36. package/dist/types/types.d.ts +31 -2
  37. package/dist/types/utils/token-usage-guidelines.d.ts +8 -0
  38. package/dist/types-ts4.5/artifacts/palettes-raw/motion-palette.d.ts +5 -3
  39. package/dist/types-ts4.5/artifacts/replacement-mapping.d.ts +1 -1
  40. package/dist/types-ts4.5/artifacts/themes/atlassian-motion.d.ts +2 -2
  41. package/dist/types-ts4.5/artifacts/token-default-values.d.ts +25 -9
  42. package/dist/types-ts4.5/artifacts/token-names.d.ts +37 -5
  43. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-motion.d.ts +5 -3
  44. package/dist/types-ts4.5/entry-points/css-type-schema.codegen.d.ts +2 -2
  45. package/dist/types-ts4.5/entry-points/token-metadata.codegen.d.ts +6 -2
  46. package/dist/types-ts4.5/types.d.ts +31 -2
  47. package/dist/types-ts4.5/utils/token-usage-guidelines.d.ts +8 -0
  48. package/package.json +9 -8
  49. package/tokens.docs.tsx +52 -0
@@ -7,9 +7,9 @@ exports.tokens = void 0;
7
7
  /**
8
8
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
9
9
  *
10
- * Metadata for generation of of `@atlaskit/ads-mcp` and https://atlassian.design/llms-tokens.txt.
10
+ * Metadata for generation of `@atlaskit/ads-mcp` and https://atlassian.design/llms-tokens.txt.
11
11
  *
12
- * @codegen <<SignedSource::6c61f13b08f7f4a5c5fb8d55f8ef5c14>>
12
+ * @codegen <<SignedSource::c219f53298a002dc5340fcc003a56953>>
13
13
  * @codegenCommand yarn build tokens
14
14
  */
15
15
 
@@ -17,2340 +17,4212 @@ var tokens = exports.tokens = [{
17
17
  name: 'color.text',
18
18
  path: ['color', 'text', '[default]'],
19
19
  description: 'Use for primary text, such as body copy, sentence case headers, and buttons.',
20
- exampleValue: '#292A2E'
20
+ exampleValue: '#292A2E',
21
+ usageGuidelines: {
22
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
23
+ cssProperties: ['color']
24
+ }
21
25
  }, {
22
26
  name: 'color.text.accent.lime',
23
27
  path: ['color', 'text', 'accent', 'lime', '[default]'],
24
28
  description: 'Use for lime text on subtlest and subtler lime accent backgrounds when there is no meaning tied to the color.',
25
- exampleValue: '#4C6B1F'
29
+ exampleValue: '#4C6B1F',
30
+ usageGuidelines: {
31
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
32
+ cssProperties: ['color']
33
+ }
26
34
  }, {
27
35
  name: 'color.text.accent.lime.bolder',
28
36
  path: ['color', 'text', 'accent', 'lime', 'bolder'],
29
37
  description: 'Use for lime text on subtle lime accent backgrounds when there is no meaning tied to the color.',
30
- exampleValue: '#37471F'
38
+ exampleValue: '#37471F',
39
+ usageGuidelines: {
40
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
41
+ cssProperties: ['color']
42
+ }
31
43
  }, {
32
44
  name: 'color.text.accent.red',
33
45
  path: ['color', 'text', 'accent', 'red', '[default]'],
34
46
  description: 'Use for red text on subtlest and subtler red accent backgrounds when there is no meaning tied to the color.',
35
- exampleValue: '#AE2E24'
47
+ exampleValue: '#AE2E24',
48
+ usageGuidelines: {
49
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
50
+ cssProperties: ['color']
51
+ }
36
52
  }, {
37
53
  name: 'color.text.accent.red.bolder',
38
54
  path: ['color', 'text', 'accent', 'red', 'bolder'],
39
55
  description: 'Use for red text on subtle red accent backgrounds when there is no meaning tied to the color.',
40
- exampleValue: '#5D1F1A'
56
+ exampleValue: '#5D1F1A',
57
+ usageGuidelines: {
58
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
59
+ cssProperties: ['color']
60
+ }
41
61
  }, {
42
62
  name: 'color.text.accent.orange',
43
63
  path: ['color', 'text', 'accent', 'orange', '[default]'],
44
64
  description: 'Use for orange text on subtlest and subtler orange accent backgrounds when there is no meaning tied to the color.',
45
- exampleValue: '#9E4C00'
65
+ exampleValue: '#9E4C00',
66
+ usageGuidelines: {
67
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
68
+ cssProperties: ['color']
69
+ }
46
70
  }, {
47
71
  name: 'color.text.accent.orange.bolder',
48
72
  path: ['color', 'text', 'accent', 'orange', 'bolder'],
49
73
  description: 'Use for orange text on subtle orange accent backgrounds when there is no meaning tied to the color.',
50
- exampleValue: '#693200'
74
+ exampleValue: '#693200',
75
+ usageGuidelines: {
76
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
77
+ cssProperties: ['color']
78
+ }
51
79
  }, {
52
80
  name: 'color.text.accent.yellow',
53
81
  path: ['color', 'text', 'accent', 'yellow', '[default]'],
54
82
  description: 'Use for yellow text on subtlest and subtler yellow accent backgrounds when there is no meaning tied to the color.',
55
- exampleValue: '#7F5F01'
83
+ exampleValue: '#7F5F01',
84
+ usageGuidelines: {
85
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
86
+ cssProperties: ['color']
87
+ }
56
88
  }, {
57
89
  name: 'color.text.accent.yellow.bolder',
58
90
  path: ['color', 'text', 'accent', 'yellow', 'bolder'],
59
91
  description: 'Use for yellow text on subtle yellow accent backgrounds when there is no meaning tied to the color.',
60
- exampleValue: '#533F04'
92
+ exampleValue: '#533F04',
93
+ usageGuidelines: {
94
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
95
+ cssProperties: ['color']
96
+ }
61
97
  }, {
62
98
  name: 'color.text.accent.green',
63
99
  path: ['color', 'text', 'accent', 'green', '[default]'],
64
100
  description: 'Use for green text on subtlest and subtler green accent backgrounds when there is no meaning tied to the color.',
65
- exampleValue: '#216E4E'
101
+ exampleValue: '#216E4E',
102
+ usageGuidelines: {
103
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
104
+ cssProperties: ['color']
105
+ }
66
106
  }, {
67
107
  name: 'color.text.accent.green.bolder',
68
108
  path: ['color', 'text', 'accent', 'green', 'bolder'],
69
109
  description: 'Use for green text on subtle green accent backgrounds when there is no meaning tied to the color.',
70
- exampleValue: '#164B35'
110
+ exampleValue: '#164B35',
111
+ usageGuidelines: {
112
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
113
+ cssProperties: ['color']
114
+ }
71
115
  }, {
72
116
  name: 'color.text.accent.teal',
73
117
  path: ['color', 'text', 'accent', 'teal', '[default]'],
74
118
  description: 'Use for teal text on subtlest and subtler teal accent backgrounds when there is no meaning tied to the color.',
75
- exampleValue: '#206A83'
119
+ exampleValue: '#206A83',
120
+ usageGuidelines: {
121
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
122
+ cssProperties: ['color']
123
+ }
76
124
  }, {
77
125
  name: 'color.text.accent.teal.bolder',
78
126
  path: ['color', 'text', 'accent', 'teal', 'bolder'],
79
127
  description: 'Use for teal text on subtle teal accent backgrounds when there is no meaning tied to the color.',
80
- exampleValue: '#164555'
128
+ exampleValue: '#164555',
129
+ usageGuidelines: {
130
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
131
+ cssProperties: ['color']
132
+ }
81
133
  }, {
82
134
  name: 'color.text.accent.blue',
83
135
  path: ['color', 'text', 'accent', 'blue', '[default]'],
84
136
  description: 'Use for blue text on subtlest and subtler blue accent backgrounds when there is no meaning tied to the color.',
85
- exampleValue: '#1558BC'
137
+ exampleValue: '#1558BC',
138
+ usageGuidelines: {
139
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
140
+ cssProperties: ['color']
141
+ }
86
142
  }, {
87
143
  name: 'color.text.accent.blue.bolder',
88
144
  path: ['color', 'text', 'accent', 'blue', 'bolder'],
89
145
  description: 'Use for blue text on subtle blue accent backgrounds when there is no meaning tied to the color.',
90
- exampleValue: '#123263'
146
+ exampleValue: '#123263',
147
+ usageGuidelines: {
148
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
149
+ cssProperties: ['color']
150
+ }
91
151
  }, {
92
152
  name: 'color.text.accent.purple',
93
153
  path: ['color', 'text', 'accent', 'purple', '[default]'],
94
154
  description: 'Use for purple text on subtlest and subtler purple accent backgrounds when there is no meaning tied to the color.',
95
- exampleValue: '#803FA5'
155
+ exampleValue: '#803FA5',
156
+ usageGuidelines: {
157
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
158
+ cssProperties: ['color']
159
+ }
96
160
  }, {
97
161
  name: 'color.text.accent.purple.bolder',
98
162
  path: ['color', 'text', 'accent', 'purple', 'bolder'],
99
163
  description: 'Use for purple text on subtle purple accent backgrounds when there is no meaning tied to the color.',
100
- exampleValue: '#48245D'
164
+ exampleValue: '#48245D',
165
+ usageGuidelines: {
166
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
167
+ cssProperties: ['color']
168
+ }
101
169
  }, {
102
170
  name: 'color.text.accent.magenta',
103
171
  path: ['color', 'text', 'accent', 'magenta', '[default]'],
104
172
  description: 'Use for magenta text on subtlest and subtler magenta accent backgrounds when there is no meaning tied to the color.',
105
- exampleValue: '#943D73'
173
+ exampleValue: '#943D73',
174
+ usageGuidelines: {
175
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
176
+ cssProperties: ['color']
177
+ }
106
178
  }, {
107
179
  name: 'color.text.accent.magenta.bolder',
108
180
  path: ['color', 'text', 'accent', 'magenta', 'bolder'],
109
181
  description: 'Use for magenta text on subtle magenta accent backgrounds when there is no meaning tied to the color.',
110
- exampleValue: '#50253F'
182
+ exampleValue: '#50253F',
183
+ usageGuidelines: {
184
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
185
+ cssProperties: ['color']
186
+ }
111
187
  }, {
112
188
  name: 'color.text.accent.gray',
113
189
  path: ['color', 'text', 'accent', 'gray', '[default]'],
114
190
  description: 'Use for text on non-bold gray accent backgrounds, such as colored tags.',
115
- exampleValue: '#505258'
191
+ exampleValue: '#505258',
192
+ usageGuidelines: {
193
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
194
+ cssProperties: ['color']
195
+ }
116
196
  }, {
117
197
  name: 'color.text.accent.gray.bolder',
118
198
  path: ['color', 'text', 'accent', 'gray', 'bolder'],
119
199
  description: 'Use for text and icons on gray subtle accent backgrounds.',
120
- exampleValue: '#1E1F21'
200
+ exampleValue: '#1E1F21',
201
+ usageGuidelines: {
202
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
203
+ cssProperties: ['color']
204
+ }
121
205
  }, {
122
206
  name: 'color.text.disabled',
123
207
  path: ['color', 'text', 'disabled'],
124
208
  description: 'Use for text in a disabled state.',
125
- exampleValue: '#080F214A'
209
+ exampleValue: '#080F214A',
210
+ usageGuidelines: {
211
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
212
+ cssProperties: ['color']
213
+ }
126
214
  }, {
127
215
  name: 'color.text.inverse',
128
216
  path: ['color', 'text', 'inverse'],
129
217
  description: 'Use for text on bold backgrounds.',
130
- exampleValue: '#FFFFFF'
218
+ exampleValue: '#FFFFFF',
219
+ usageGuidelines: {
220
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
221
+ cssProperties: ['color']
222
+ }
131
223
  }, {
132
224
  name: 'color.text.selected',
133
225
  path: ['color', 'text', 'selected'],
134
226
  description: 'Use for text in selected or opened states, such as tabs and dropdown buttons.',
135
- exampleValue: '#1868DB'
227
+ exampleValue: '#1868DB',
228
+ usageGuidelines: {
229
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
230
+ cssProperties: ['color']
231
+ }
136
232
  }, {
137
233
  name: 'color.text.brand',
138
234
  path: ['color', 'text', 'brand'],
139
235
  description: 'Use for text that reinforces our brand.',
140
- exampleValue: '#1868DB'
236
+ exampleValue: '#1868DB',
237
+ usageGuidelines: {
238
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
239
+ cssProperties: ['color']
240
+ }
141
241
  }, {
142
242
  name: 'color.text.danger',
143
243
  path: ['color', 'text', 'danger', '[default]'],
144
244
  description: 'Use for critical text, such as input field error messaging.',
145
- exampleValue: '#AE2E24'
245
+ exampleValue: '#AE2E24',
246
+ usageGuidelines: {
247
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
248
+ cssProperties: ['color']
249
+ }
146
250
  }, {
147
251
  name: 'color.text.danger.bolder',
148
252
  path: ['color', 'text', 'danger', 'bolder'],
149
253
  description: 'Use for text on top of danger semantic labels to ensure accessibility and desired visual appearance.',
150
- exampleValue: '#5D1F1A'
254
+ exampleValue: '#5D1F1A',
255
+ usageGuidelines: {
256
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
257
+ cssProperties: ['color']
258
+ }
151
259
  }, {
152
260
  name: 'color.text.warning',
153
261
  path: ['color', 'text', 'warning', '[default]'],
154
262
  description: 'Use for text to emphasize caution, such as in moved lozenges.',
155
- exampleValue: '#9E4C00'
263
+ exampleValue: '#9E4C00',
264
+ usageGuidelines: {
265
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
266
+ cssProperties: ['color']
267
+ }
156
268
  }, {
157
269
  name: 'color.text.warning.inverse',
158
270
  path: ['color', 'text', 'warning', 'inverse'],
159
271
  description: 'Use for text when on bold warning backgrounds.',
160
- exampleValue: '#292A2E'
272
+ exampleValue: '#292A2E',
273
+ usageGuidelines: {
274
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
275
+ cssProperties: ['color']
276
+ }
161
277
  }, {
162
278
  name: 'color.text.warning.bolder',
163
279
  path: ['color', 'text', 'warning', 'bolder'],
164
280
  description: 'Use for text on top of warning semantic labels to ensure accessibility and desired visual appearance.',
165
- exampleValue: '#693200'
281
+ exampleValue: '#693200',
282
+ usageGuidelines: {
283
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
284
+ cssProperties: ['color']
285
+ }
166
286
  }, {
167
287
  name: 'color.text.success',
168
288
  path: ['color', 'text', 'success', '[default]'],
169
289
  description: 'Use for text to communicate a favorable outcome, such as input field success messaging.',
170
- exampleValue: '#4C6B1F'
290
+ exampleValue: '#4C6B1F',
291
+ usageGuidelines: {
292
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
293
+ cssProperties: ['color']
294
+ }
171
295
  }, {
172
296
  name: 'color.text.success.bolder',
173
297
  path: ['color', 'text', 'success', 'bolder'],
174
298
  description: 'Use for text on top of success semantic labels to ensure accessibility and desired visual appearance.',
175
- exampleValue: '#37471F'
299
+ exampleValue: '#37471F',
300
+ usageGuidelines: {
301
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
302
+ cssProperties: ['color']
303
+ }
176
304
  }, {
177
305
  name: 'color.text.discovery',
178
306
  path: ['color', 'text', 'discovery', '[default]'],
179
307
  description: 'Use for text to emphasize change or something new, such as in new lozenges.',
180
- exampleValue: '#803FA5'
308
+ exampleValue: '#803FA5',
309
+ usageGuidelines: {
310
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
311
+ cssProperties: ['color']
312
+ }
181
313
  }, {
182
314
  name: 'color.text.discovery.bolder',
183
315
  path: ['color', 'text', 'discovery', 'bolder'],
184
316
  description: 'Use for text on top of discovery semantic labels to ensure accessibility and desired visual appearance.',
185
- exampleValue: '#48245D'
317
+ exampleValue: '#48245D',
318
+ usageGuidelines: {
319
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
320
+ cssProperties: ['color']
321
+ }
186
322
  }, {
187
323
  name: 'color.text.information',
188
324
  path: ['color', 'text', 'information', '[default]'],
189
325
  description: 'Use for informative text or to communicate something is in progress, such as in-progress lozenges.',
190
- exampleValue: '#1558BC'
326
+ exampleValue: '#1558BC',
327
+ usageGuidelines: {
328
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
329
+ cssProperties: ['color']
330
+ }
191
331
  }, {
192
332
  name: 'color.text.information.bolder',
193
333
  path: ['color', 'text', 'information', 'bolder'],
194
334
  description: 'Use for text on top of information semantic labels to ensure accessibility and desired visual appearance.',
195
- exampleValue: '#123263'
335
+ exampleValue: '#123263',
336
+ usageGuidelines: {
337
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
338
+ cssProperties: ['color']
339
+ }
196
340
  }, {
197
341
  name: 'color.text.subtlest',
198
342
  path: ['color', 'text', 'subtlest'],
199
343
  description: 'Use for tertiary text, such as meta-data, breadcrumbs, input field placeholder and helper text.',
200
- exampleValue: '#6B6E76'
344
+ exampleValue: '#6B6E76',
345
+ usageGuidelines: {
346
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
347
+ cssProperties: ['color']
348
+ }
201
349
  }, {
202
350
  name: 'color.text.subtle',
203
351
  path: ['color', 'text', 'subtle'],
204
352
  description: 'Use for secondary text, such as navigation, subtle button links, input field labels, and all caps subheadings.',
205
- exampleValue: '#505258'
353
+ exampleValue: '#505258',
354
+ usageGuidelines: {
355
+ usage: 'The color for standard text. Use for primary, readable text in most user interface situations (e.g. color.text, color.text.subtle)',
356
+ cssProperties: ['color']
357
+ }
206
358
  }, {
207
359
  name: 'color.link',
208
360
  path: ['color', 'link', '[default]'],
209
361
  description: 'Use for links in a default or hovered state. Add an underline for hovered states.',
210
- exampleValue: '#1868DB'
362
+ exampleValue: '#1868DB',
363
+ usageGuidelines: {
364
+ usage: 'The color for hyperlinks. Use for elements that are links to external resources or navigation (e.g. color.link)',
365
+ cssProperties: ['color']
366
+ }
211
367
  }, {
212
368
  name: 'color.link.pressed',
213
369
  path: ['color', 'link', 'pressed'],
214
370
  description: 'Use for links in a pressed state.',
215
- exampleValue: '#1558BC'
371
+ exampleValue: '#1558BC',
372
+ usageGuidelines: {
373
+ usage: 'The color for hyperlinks. Use for elements that are links to external resources or navigation (e.g. color.link)',
374
+ cssProperties: ['color']
375
+ }
216
376
  }, {
217
377
  name: 'color.link.visited',
218
378
  path: ['color', 'link', 'visited', '[default]'],
219
379
  description: 'Use for visited links.',
220
- exampleValue: '#803FA5'
380
+ exampleValue: '#803FA5',
381
+ usageGuidelines: {
382
+ usage: 'The color for hyperlinks. Use for elements that are links to external resources or navigation (e.g. color.link)',
383
+ cssProperties: ['color']
384
+ }
221
385
  }, {
222
386
  name: 'color.link.visited.pressed',
223
387
  path: ['color', 'link', 'visited', 'pressed'],
224
388
  description: 'Use for visited links in a pressed state.',
225
- exampleValue: '#48245D'
389
+ exampleValue: '#48245D',
390
+ usageGuidelines: {
391
+ usage: 'The color for hyperlinks. Use for elements that are links to external resources or navigation (e.g. color.link)',
392
+ cssProperties: ['color']
393
+ }
226
394
  }, {
227
395
  name: 'color.icon',
228
396
  path: ['color', 'icon', '[default]'],
229
397
  description: 'Use for icon-only buttons, or icons paired with color.text',
230
- exampleValue: '#292A2E'
398
+ exampleValue: '#292A2E',
399
+ usageGuidelines: {
400
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
401
+ cssProperties: ['color', 'fill', 'stroke']
402
+ }
231
403
  }, {
232
404
  name: 'color.icon.accent.lime',
233
405
  path: ['color', 'icon', 'accent', 'lime'],
234
406
  description: 'Use for lime icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
235
- exampleValue: '#6A9A23'
407
+ exampleValue: '#6A9A23',
408
+ usageGuidelines: {
409
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
410
+ cssProperties: ['color', 'fill', 'stroke']
411
+ }
236
412
  }, {
237
413
  name: 'color.icon.accent.red',
238
414
  path: ['color', 'icon', 'accent', 'red'],
239
415
  description: 'Use for red icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
240
- exampleValue: '#C9372C'
416
+ exampleValue: '#C9372C',
417
+ usageGuidelines: {
418
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
419
+ cssProperties: ['color', 'fill', 'stroke']
420
+ }
241
421
  }, {
242
422
  name: 'color.icon.accent.orange',
243
423
  path: ['color', 'icon', 'accent', 'orange'],
244
424
  description: 'Use for orange icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
245
- exampleValue: '#E06C00'
425
+ exampleValue: '#E06C00',
426
+ usageGuidelines: {
427
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
428
+ cssProperties: ['color', 'fill', 'stroke']
429
+ }
246
430
  }, {
247
431
  name: 'color.icon.accent.yellow',
248
432
  path: ['color', 'icon', 'accent', 'yellow'],
249
433
  description: 'Use for yellow icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
250
- exampleValue: '#B38600'
434
+ exampleValue: '#B38600',
435
+ usageGuidelines: {
436
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
437
+ cssProperties: ['color', 'fill', 'stroke']
438
+ }
251
439
  }, {
252
440
  name: 'color.icon.accent.green',
253
441
  path: ['color', 'icon', 'accent', 'green'],
254
442
  description: 'Use for green icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
255
- exampleValue: '#22A06B'
443
+ exampleValue: '#22A06B',
444
+ usageGuidelines: {
445
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
446
+ cssProperties: ['color', 'fill', 'stroke']
447
+ }
256
448
  }, {
257
449
  name: 'color.icon.accent.teal',
258
450
  path: ['color', 'icon', 'accent', 'teal'],
259
451
  description: 'Use for teal icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
260
- exampleValue: '#2898BD'
452
+ exampleValue: '#2898BD',
453
+ usageGuidelines: {
454
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
455
+ cssProperties: ['color', 'fill', 'stroke']
456
+ }
261
457
  }, {
262
458
  name: 'color.icon.accent.blue',
263
459
  path: ['color', 'icon', 'accent', 'blue'],
264
460
  description: 'Use for blue icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
265
- exampleValue: '#357DE8'
461
+ exampleValue: '#357DE8',
462
+ usageGuidelines: {
463
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
464
+ cssProperties: ['color', 'fill', 'stroke']
465
+ }
266
466
  }, {
267
467
  name: 'color.icon.accent.purple',
268
468
  path: ['color', 'icon', 'accent', 'purple'],
269
469
  description: 'Use for purple icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
270
- exampleValue: '#AF59E1'
470
+ exampleValue: '#AF59E1',
471
+ usageGuidelines: {
472
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
473
+ cssProperties: ['color', 'fill', 'stroke']
474
+ }
271
475
  }, {
272
476
  name: 'color.icon.accent.magenta',
273
477
  path: ['color', 'icon', 'accent', 'magenta'],
274
478
  description: 'Use for magenta icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.',
275
- exampleValue: '#CD519D'
479
+ exampleValue: '#CD519D',
480
+ usageGuidelines: {
481
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
482
+ cssProperties: ['color', 'fill', 'stroke']
483
+ }
276
484
  }, {
277
485
  name: 'color.icon.accent.gray',
278
486
  path: ['color', 'icon', 'accent', 'gray'],
279
487
  description: 'Use for icons on non-bold gray accent backgrounds, such as file type icons.',
280
- exampleValue: '#7D818A'
488
+ exampleValue: '#7D818A',
489
+ usageGuidelines: {
490
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
491
+ cssProperties: ['color', 'fill', 'stroke']
492
+ }
281
493
  }, {
282
494
  name: 'color.icon.disabled',
283
495
  path: ['color', 'icon', 'disabled'],
284
496
  description: 'Use for icons in a disabled state.',
285
- exampleValue: '#080F214A'
497
+ exampleValue: '#080F214A',
498
+ usageGuidelines: {
499
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
500
+ cssProperties: ['color', 'fill', 'stroke']
501
+ }
286
502
  }, {
287
503
  name: 'color.icon.inverse',
288
504
  path: ['color', 'icon', 'inverse'],
289
505
  description: 'Use for icons on bold backgrounds.',
290
- exampleValue: '#FFFFFF'
506
+ exampleValue: '#FFFFFF',
507
+ usageGuidelines: {
508
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
509
+ cssProperties: ['color', 'fill', 'stroke']
510
+ }
291
511
  }, {
292
512
  name: 'color.icon.selected',
293
513
  path: ['color', 'icon', 'selected'],
294
514
  description: 'Use for icons in selected or opened states, such as those used in dropdown buttons.',
295
- exampleValue: '#1868DB'
515
+ exampleValue: '#1868DB',
516
+ usageGuidelines: {
517
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
518
+ cssProperties: ['color', 'fill', 'stroke']
519
+ }
296
520
  }, {
297
521
  name: 'color.icon.brand',
298
522
  path: ['color', 'icon', 'brand'],
299
523
  description: 'Use for icons that reinforce our brand.',
300
- exampleValue: '#1868DB'
524
+ exampleValue: '#1868DB',
525
+ usageGuidelines: {
526
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
527
+ cssProperties: ['color', 'fill', 'stroke']
528
+ }
301
529
  }, {
302
530
  name: 'color.icon.danger',
303
531
  path: ['color', 'icon', 'danger'],
304
532
  description: 'Use for icons communicating critical information, such as those used in error handing.',
305
- exampleValue: '#C9372C'
533
+ exampleValue: '#C9372C',
534
+ usageGuidelines: {
535
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
536
+ cssProperties: ['color', 'fill', 'stroke']
537
+ }
306
538
  }, {
307
539
  name: 'color.icon.warning',
308
540
  path: ['color', 'icon', 'warning', '[default]'],
309
541
  description: 'Use for icons communicating caution, such as those used in warning section messages.',
310
- exampleValue: '#E06C00'
542
+ exampleValue: '#E06C00',
543
+ usageGuidelines: {
544
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
545
+ cssProperties: ['color', 'fill', 'stroke']
546
+ }
311
547
  }, {
312
548
  name: 'color.icon.warning.inverse',
313
549
  path: ['color', 'icon', 'warning', 'inverse'],
314
550
  description: 'Use for icons when on bold warning backgrounds.',
315
- exampleValue: '#292A2E'
551
+ exampleValue: '#292A2E',
552
+ usageGuidelines: {
553
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
554
+ cssProperties: ['color', 'fill', 'stroke']
555
+ }
316
556
  }, {
317
557
  name: 'color.icon.success',
318
558
  path: ['color', 'icon', 'success'],
319
559
  description: 'Use for icons communicating a favorable outcome, such as those used in success section messaged.',
320
- exampleValue: '#6A9A23'
560
+ exampleValue: '#6A9A23',
561
+ usageGuidelines: {
562
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
563
+ cssProperties: ['color', 'fill', 'stroke']
564
+ }
321
565
  }, {
322
566
  name: 'color.icon.discovery',
323
567
  path: ['color', 'icon', 'discovery'],
324
568
  description: 'Use for icons communicating change or something new, such as discovery section messages.',
325
- exampleValue: '#AF59E1'
569
+ exampleValue: '#AF59E1',
570
+ usageGuidelines: {
571
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
572
+ cssProperties: ['color', 'fill', 'stroke']
573
+ }
326
574
  }, {
327
575
  name: 'color.icon.information',
328
576
  path: ['color', 'icon', 'information'],
329
577
  description: 'Use for icons communicating information or something in-progress, such as information section messages.',
330
- exampleValue: '#357DE8'
578
+ exampleValue: '#357DE8',
579
+ usageGuidelines: {
580
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
581
+ cssProperties: ['color', 'fill', 'stroke']
582
+ }
331
583
  }, {
332
584
  name: 'color.icon.subtlest',
333
585
  path: ['color', 'icon', 'subtlest'],
334
586
  description: 'Use for icons paired with color.text.subtlest',
335
- exampleValue: '#6B6E76'
587
+ exampleValue: '#6B6E76',
588
+ usageGuidelines: {
589
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
590
+ cssProperties: ['color', 'fill', 'stroke']
591
+ }
336
592
  }, {
337
593
  name: 'color.icon.subtle',
338
594
  path: ['color', 'icon', 'subtle'],
339
595
  description: 'Use for icons paired with color.text.subtle',
340
- exampleValue: '#505258'
596
+ exampleValue: '#505258',
597
+ usageGuidelines: {
598
+ usage: 'The color for icons. Use for graphical icon elements (e.g. color.icon.brand)',
599
+ cssProperties: ['color', 'fill', 'stroke']
600
+ }
341
601
  }, {
342
602
  name: 'color.border',
343
603
  path: ['color', 'border', '[default]'],
344
604
  description: 'Use to visually group or separate UI elements, such as flat cards or side panel dividers.',
345
- exampleValue: '#0B120E24'
605
+ exampleValue: '#0B120E24',
606
+ usageGuidelines: {
607
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
608
+ cssProperties: ['border-color', 'outline-color']
609
+ }
346
610
  }, {
347
611
  name: 'color.border.accent.lime',
348
612
  path: ['color', 'border', 'accent', 'lime'],
349
613
  description: 'Use for lime borders on non-bold backgrounds when there is no meaning tied to the color.',
350
- exampleValue: '#6A9A23'
614
+ exampleValue: '#6A9A23',
615
+ usageGuidelines: {
616
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
617
+ cssProperties: ['border-color', 'outline-color']
618
+ }
351
619
  }, {
352
620
  name: 'color.border.accent.red',
353
621
  path: ['color', 'border', 'accent', 'red'],
354
622
  description: 'Use for red borders on non-bold backgrounds when there is no meaning tied to the color.',
355
- exampleValue: '#E2483D'
623
+ exampleValue: '#E2483D',
624
+ usageGuidelines: {
625
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
626
+ cssProperties: ['border-color', 'outline-color']
627
+ }
356
628
  }, {
357
629
  name: 'color.border.accent.orange',
358
630
  path: ['color', 'border', 'accent', 'orange'],
359
631
  description: 'Use for orange borders on non-bold backgrounds when there is no meaning tied to the color.',
360
- exampleValue: '#E06C00'
632
+ exampleValue: '#E06C00',
633
+ usageGuidelines: {
634
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
635
+ cssProperties: ['border-color', 'outline-color']
636
+ }
361
637
  }, {
362
638
  name: 'color.border.accent.yellow',
363
639
  path: ['color', 'border', 'accent', 'yellow'],
364
640
  description: 'Use for yellow borders on non-bold backgrounds when there is no meaning tied to the color.',
365
- exampleValue: '#B38600'
641
+ exampleValue: '#B38600',
642
+ usageGuidelines: {
643
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
644
+ cssProperties: ['border-color', 'outline-color']
645
+ }
366
646
  }, {
367
647
  name: 'color.border.accent.green',
368
648
  path: ['color', 'border', 'accent', 'green'],
369
649
  description: 'Use for green borders on non-bold backgrounds when there is no meaning tied to the color.',
370
- exampleValue: '#22A06B'
650
+ exampleValue: '#22A06B',
651
+ usageGuidelines: {
652
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
653
+ cssProperties: ['border-color', 'outline-color']
654
+ }
371
655
  }, {
372
656
  name: 'color.border.accent.teal',
373
657
  path: ['color', 'border', 'accent', 'teal'],
374
658
  description: 'Use for teal borders on non-bold backgrounds when there is no meaning tied to the color.',
375
- exampleValue: '#2898BD'
659
+ exampleValue: '#2898BD',
660
+ usageGuidelines: {
661
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
662
+ cssProperties: ['border-color', 'outline-color']
663
+ }
376
664
  }, {
377
665
  name: 'color.border.accent.blue',
378
666
  path: ['color', 'border', 'accent', 'blue'],
379
667
  description: 'Use for blue borders on non-bold backgrounds when there is no meaning tied to the color.',
380
- exampleValue: '#357DE8'
668
+ exampleValue: '#357DE8',
669
+ usageGuidelines: {
670
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
671
+ cssProperties: ['border-color', 'outline-color']
672
+ }
381
673
  }, {
382
674
  name: 'color.border.accent.purple',
383
675
  path: ['color', 'border', 'accent', 'purple'],
384
676
  description: 'Use for purple borders on non-bold backgrounds when there is no meaning tied to the color.',
385
- exampleValue: '#AF59E1'
677
+ exampleValue: '#AF59E1',
678
+ usageGuidelines: {
679
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
680
+ cssProperties: ['border-color', 'outline-color']
681
+ }
386
682
  }, {
387
683
  name: 'color.border.accent.magenta',
388
684
  path: ['color', 'border', 'accent', 'magenta'],
389
685
  description: 'Use for magenta borders on non-bold backgrounds when there is no meaning tied to the color.',
390
- exampleValue: '#CD519D'
686
+ exampleValue: '#CD519D',
687
+ usageGuidelines: {
688
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
689
+ cssProperties: ['border-color', 'outline-color']
690
+ }
391
691
  }, {
392
692
  name: 'color.border.accent.gray',
393
693
  path: ['color', 'border', 'accent', 'gray'],
394
694
  description: 'Use for borders on non-bold gray accent backgrounds.',
395
- exampleValue: '#7D818A'
695
+ exampleValue: '#7D818A',
696
+ usageGuidelines: {
697
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
698
+ cssProperties: ['border-color', 'outline-color']
699
+ }
396
700
  }, {
397
701
  name: 'color.border.disabled',
398
702
  path: ['color', 'border', 'disabled'],
399
703
  description: 'Use for borders of elements in a disabled state.',
400
- exampleValue: '#0515240F'
704
+ exampleValue: '#0515240F',
705
+ usageGuidelines: {
706
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
707
+ cssProperties: ['border-color', 'outline-color']
708
+ }
401
709
  }, {
402
710
  name: 'color.border.focused',
403
711
  path: ['color', 'border', 'focused'],
404
712
  description: 'Use for focus rings of elements in a focus state.',
405
- exampleValue: '#4688EC'
713
+ exampleValue: '#4688EC',
714
+ usageGuidelines: {
715
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
716
+ cssProperties: ['border-color', 'outline-color']
717
+ }
406
718
  }, {
407
719
  name: 'color.border.input',
408
720
  path: ['color', 'border', 'input'],
409
721
  description: 'Use for borders of form UI elements, such as text fields, checkboxes, and radio buttons.',
410
- exampleValue: '#8C8F97'
722
+ exampleValue: '#8C8F97',
723
+ usageGuidelines: {
724
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
725
+ cssProperties: ['border-color', 'outline-color']
726
+ }
411
727
  }, {
412
728
  name: 'color.border.inverse',
413
729
  path: ['color', 'border', 'inverse'],
414
730
  description: 'Use for borders on bold backgrounds.',
415
- exampleValue: '#FFFFFF'
731
+ exampleValue: '#FFFFFF',
732
+ usageGuidelines: {
733
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
734
+ cssProperties: ['border-color', 'outline-color']
735
+ }
416
736
  }, {
417
737
  name: 'color.border.selected',
418
738
  path: ['color', 'border', 'selected'],
419
739
  description: 'Use for borders or visual indicators of elements in a selected or opened state, such as in tabs or menu items.',
420
- exampleValue: '#1868DB'
740
+ exampleValue: '#1868DB',
741
+ usageGuidelines: {
742
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
743
+ cssProperties: ['border-color', 'outline-color']
744
+ }
421
745
  }, {
422
746
  name: 'color.border.brand',
423
747
  path: ['color', 'border', 'brand'],
424
748
  description: 'Use for borders or visual indicators of elements that reinforce our brand, such as logos or primary buttons.',
425
- exampleValue: '#1868DB'
749
+ exampleValue: '#1868DB',
750
+ usageGuidelines: {
751
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
752
+ cssProperties: ['border-color', 'outline-color']
753
+ }
426
754
  }, {
427
755
  name: 'color.border.danger',
428
756
  path: ['color', 'border', 'danger'],
429
757
  description: 'Use for borders communicating critical information, such as the borders on invalid text fields.',
430
- exampleValue: '#E2483D'
758
+ exampleValue: '#E2483D',
759
+ usageGuidelines: {
760
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
761
+ cssProperties: ['border-color', 'outline-color']
762
+ }
431
763
  }, {
432
764
  name: 'color.border.warning',
433
765
  path: ['color', 'border', 'warning'],
434
766
  description: 'Use for borders communicating caution.',
435
- exampleValue: '#E06C00'
767
+ exampleValue: '#E06C00',
768
+ usageGuidelines: {
769
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
770
+ cssProperties: ['border-color', 'outline-color']
771
+ }
436
772
  }, {
437
773
  name: 'color.border.success',
438
774
  path: ['color', 'border', 'success'],
439
775
  description: 'Use for borders communicating a favorable outcome, such as the borders on validated text fields.',
440
- exampleValue: '#6A9A23'
776
+ exampleValue: '#6A9A23',
777
+ usageGuidelines: {
778
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
779
+ cssProperties: ['border-color', 'outline-color']
780
+ }
441
781
  }, {
442
782
  name: 'color.border.discovery',
443
783
  path: ['color', 'border', 'discovery'],
444
784
  description: 'Use for borders communicating change or something new, such as the borders in onboarding spotlights.',
445
- exampleValue: '#AF59E1'
785
+ exampleValue: '#AF59E1',
786
+ usageGuidelines: {
787
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
788
+ cssProperties: ['border-color', 'outline-color']
789
+ }
446
790
  }, {
447
791
  name: 'color.border.information',
448
792
  path: ['color', 'border', 'information'],
449
793
  description: 'Use for borders communicating information or something in-progress.',
450
- exampleValue: '#357DE8'
794
+ exampleValue: '#357DE8',
795
+ usageGuidelines: {
796
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
797
+ cssProperties: ['border-color', 'outline-color']
798
+ }
451
799
  }, {
452
800
  name: 'color.border.bold',
453
801
  path: ['color', 'border', 'bold'],
454
802
  description: 'A neutral border option that passes min 3:1 contrast ratios.',
455
- exampleValue: '#7D818A'
803
+ exampleValue: '#7D818A',
804
+ usageGuidelines: {
805
+ usage: 'The color for borders or outlines. Use for border and outline colors on components (e.g. color.border, color.border.focused)',
806
+ cssProperties: ['border-color', 'outline-color']
807
+ }
456
808
  }, {
457
809
  name: 'color.background.accent.lime.subtlest',
458
810
  path: ['color', 'background', 'accent', 'lime', 'subtlest', '[default]'],
459
811
  description: 'Use for for backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
460
- exampleValue: '#EFFFD6'
812
+ exampleValue: '#EFFFD6',
813
+ usageGuidelines: {
814
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
815
+ cssProperties: ['background-color']
816
+ }
461
817
  }, {
462
818
  name: 'color.background.accent.lime.subtlest.hovered',
463
819
  path: ['color', 'background', 'accent', 'lime', 'subtlest', 'hovered'],
464
820
  description: 'Hovered state of color.background.accent.lime.subtlest.',
465
- exampleValue: '#D3F1A7'
821
+ exampleValue: '#D3F1A7',
822
+ usageGuidelines: {
823
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
824
+ cssProperties: ['background-color']
825
+ }
466
826
  }, {
467
827
  name: 'color.background.accent.lime.subtlest.pressed',
468
828
  path: ['color', 'background', 'accent', 'lime', 'subtlest', 'pressed'],
469
829
  description: 'Pressed state of color.background.accent.lime.subtlest.',
470
- exampleValue: '#BDE97C'
830
+ exampleValue: '#BDE97C',
831
+ usageGuidelines: {
832
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
833
+ cssProperties: ['background-color']
834
+ }
471
835
  }, {
472
836
  name: 'color.background.accent.lime.subtler',
473
837
  path: ['color', 'background', 'accent', 'lime', 'subtler', '[default]'],
474
838
  description: 'Use for for backgrounds when there is no meaning tied to the color, such as colored tags.',
475
- exampleValue: '#D3F1A7'
839
+ exampleValue: '#D3F1A7',
840
+ usageGuidelines: {
841
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
842
+ cssProperties: ['background-color']
843
+ }
476
844
  }, {
477
845
  name: 'color.background.accent.lime.subtler.hovered',
478
846
  path: ['color', 'background', 'accent', 'lime', 'subtler', 'hovered'],
479
847
  description: 'Hovered state of color.background.accent.lime.subtler.',
480
- exampleValue: '#BDE97C'
848
+ exampleValue: '#BDE97C',
849
+ usageGuidelines: {
850
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
851
+ cssProperties: ['background-color']
852
+ }
481
853
  }, {
482
854
  name: 'color.background.accent.lime.subtler.pressed',
483
855
  path: ['color', 'background', 'accent', 'lime', 'subtler', 'pressed'],
484
856
  description: 'Pressed state of color.background.accent.lime.subtler.',
485
- exampleValue: '#B3DF72'
857
+ exampleValue: '#B3DF72',
858
+ usageGuidelines: {
859
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
860
+ cssProperties: ['background-color']
861
+ }
486
862
  }, {
487
863
  name: 'color.background.accent.lime.subtle',
488
864
  path: ['color', 'background', 'accent', 'lime', 'subtle', '[default]'],
489
865
  description: 'Use for vibrant for backgrounds when there is no meaning tied to the color, such as colored tags.',
490
- exampleValue: '#94C748'
866
+ exampleValue: '#94C748',
867
+ usageGuidelines: {
868
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
869
+ cssProperties: ['background-color']
870
+ }
491
871
  }, {
492
872
  name: 'color.background.accent.lime.subtle.hovered',
493
873
  path: ['color', 'background', 'accent', 'lime', 'subtle', 'hovered'],
494
874
  description: 'Hovered state of color.background.accent.lime.subtle.',
495
- exampleValue: '#B3DF72'
875
+ exampleValue: '#B3DF72',
876
+ usageGuidelines: {
877
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
878
+ cssProperties: ['background-color']
879
+ }
496
880
  }, {
497
881
  name: 'color.background.accent.lime.subtle.pressed',
498
882
  path: ['color', 'background', 'accent', 'lime', 'subtle', 'pressed'],
499
883
  description: 'Pressed state of color.background.accent.lime.subtle.',
500
- exampleValue: '#BDE97C'
884
+ exampleValue: '#BDE97C',
885
+ usageGuidelines: {
886
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
887
+ cssProperties: ['background-color']
888
+ }
501
889
  }, {
502
890
  name: 'color.background.accent.lime.bolder',
503
891
  path: ['color', 'background', 'accent', 'lime', 'bolder', '[default]'],
504
892
  description: 'Use for for backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
505
- exampleValue: '#5B7F24'
893
+ exampleValue: '#5B7F24',
894
+ usageGuidelines: {
895
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
896
+ cssProperties: ['background-color']
897
+ }
506
898
  }, {
507
899
  name: 'color.background.accent.lime.bolder.hovered',
508
900
  path: ['color', 'background', 'accent', 'lime', 'bolder', 'hovered'],
509
901
  description: 'Hovered state of color.background.accent.lime.bolder.',
510
- exampleValue: '#4C6B1F'
902
+ exampleValue: '#4C6B1F',
903
+ usageGuidelines: {
904
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
905
+ cssProperties: ['background-color']
906
+ }
511
907
  }, {
512
908
  name: 'color.background.accent.lime.bolder.pressed',
513
909
  path: ['color', 'background', 'accent', 'lime', 'bolder', 'pressed'],
514
910
  description: 'Pressed state of color.background.accent.lime.bolder.',
515
- exampleValue: '#3F5224'
911
+ exampleValue: '#3F5224',
912
+ usageGuidelines: {
913
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
914
+ cssProperties: ['background-color']
915
+ }
516
916
  }, {
517
917
  name: 'color.background.accent.red.subtlest',
518
918
  path: ['color', 'background', 'accent', 'red', 'subtlest', '[default]'],
519
919
  description: 'Use for red backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
520
- exampleValue: '#FFECEB'
920
+ exampleValue: '#FFECEB',
921
+ usageGuidelines: {
922
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
923
+ cssProperties: ['background-color']
924
+ }
521
925
  }, {
522
926
  name: 'color.background.accent.red.subtlest.hovered',
523
927
  path: ['color', 'background', 'accent', 'red', 'subtlest', 'hovered'],
524
928
  description: 'Hovered state of color.background.accent.red.subtlest.',
525
- exampleValue: '#FFD5D2'
929
+ exampleValue: '#FFD5D2',
930
+ usageGuidelines: {
931
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
932
+ cssProperties: ['background-color']
933
+ }
526
934
  }, {
527
935
  name: 'color.background.accent.red.subtlest.pressed',
528
936
  path: ['color', 'background', 'accent', 'red', 'subtlest', 'pressed'],
529
937
  description: 'Pressed state of color.background.accent.red.subtlest.',
530
- exampleValue: '#FFB8B2'
938
+ exampleValue: '#FFB8B2',
939
+ usageGuidelines: {
940
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
941
+ cssProperties: ['background-color']
942
+ }
531
943
  }, {
532
944
  name: 'color.background.accent.red.subtler',
533
945
  path: ['color', 'background', 'accent', 'red', 'subtler', '[default]'],
534
946
  description: 'Use for red backgrounds when there is no meaning tied to the color, such as colored tags.',
535
- exampleValue: '#FFD5D2'
947
+ exampleValue: '#FFD5D2',
948
+ usageGuidelines: {
949
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
950
+ cssProperties: ['background-color']
951
+ }
536
952
  }, {
537
953
  name: 'color.background.accent.red.subtler.hovered',
538
954
  path: ['color', 'background', 'accent', 'red', 'subtler', 'hovered'],
539
955
  description: 'Hovered state of color.background.accent.red.subtler.',
540
- exampleValue: '#FFB8B2'
956
+ exampleValue: '#FFB8B2',
957
+ usageGuidelines: {
958
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
959
+ cssProperties: ['background-color']
960
+ }
541
961
  }, {
542
962
  name: 'color.background.accent.red.subtler.pressed',
543
963
  path: ['color', 'background', 'accent', 'red', 'subtler', 'pressed'],
544
964
  description: 'Pressed state of color.background.accent.red.subtler.',
545
- exampleValue: '#FD9891'
965
+ exampleValue: '#FD9891',
966
+ usageGuidelines: {
967
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
968
+ cssProperties: ['background-color']
969
+ }
546
970
  }, {
547
971
  name: 'color.background.accent.red.subtle',
548
972
  path: ['color', 'background', 'accent', 'red', 'subtle', '[default]'],
549
973
  description: 'Use for vibrant red backgrounds when there is no meaning tied to the color, such as colored tags.',
550
- exampleValue: '#F87168'
974
+ exampleValue: '#F87168',
975
+ usageGuidelines: {
976
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
977
+ cssProperties: ['background-color']
978
+ }
551
979
  }, {
552
980
  name: 'color.background.accent.red.subtle.hovered',
553
981
  path: ['color', 'background', 'accent', 'red', 'subtle', 'hovered'],
554
982
  description: 'Hovered state of color.background.accent.red.subtle.',
555
- exampleValue: '#FD9891'
983
+ exampleValue: '#FD9891',
984
+ usageGuidelines: {
985
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
986
+ cssProperties: ['background-color']
987
+ }
556
988
  }, {
557
989
  name: 'color.background.accent.red.subtle.pressed',
558
990
  path: ['color', 'background', 'accent', 'red', 'subtle', 'pressed'],
559
991
  description: 'Pressed state of color.background.accent.red.subtle.',
560
- exampleValue: '#FFB8B2'
992
+ exampleValue: '#FFB8B2',
993
+ usageGuidelines: {
994
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
995
+ cssProperties: ['background-color']
996
+ }
561
997
  }, {
562
998
  name: 'color.background.accent.red.bolder',
563
999
  path: ['color', 'background', 'accent', 'red', 'bolder', '[default]'],
564
1000
  description: 'Use for red backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
565
- exampleValue: '#C9372C'
1001
+ exampleValue: '#C9372C',
1002
+ usageGuidelines: {
1003
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1004
+ cssProperties: ['background-color']
1005
+ }
566
1006
  }, {
567
1007
  name: 'color.background.accent.red.bolder.hovered',
568
1008
  path: ['color', 'background', 'accent', 'red', 'bolder', 'hovered'],
569
1009
  description: 'Hovered state of color.background.accent.red.bolder.',
570
- exampleValue: '#AE2E24'
1010
+ exampleValue: '#AE2E24',
1011
+ usageGuidelines: {
1012
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1013
+ cssProperties: ['background-color']
1014
+ }
571
1015
  }, {
572
1016
  name: 'color.background.accent.red.bolder.pressed',
573
1017
  path: ['color', 'background', 'accent', 'red', 'bolder', 'pressed'],
574
1018
  description: 'Pressed state of color.background.accent.red.bolder.',
575
- exampleValue: '#872821'
1019
+ exampleValue: '#872821',
1020
+ usageGuidelines: {
1021
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1022
+ cssProperties: ['background-color']
1023
+ }
576
1024
  }, {
577
1025
  name: 'color.background.accent.orange.subtlest',
578
1026
  path: ['color', 'background', 'accent', 'orange', 'subtlest', '[default]'],
579
1027
  description: 'Use for orange backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
580
- exampleValue: '#FFF5DB'
1028
+ exampleValue: '#FFF5DB',
1029
+ usageGuidelines: {
1030
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1031
+ cssProperties: ['background-color']
1032
+ }
581
1033
  }, {
582
1034
  name: 'color.background.accent.orange.subtlest.hovered',
583
1035
  path: ['color', 'background', 'accent', 'orange', 'subtlest', 'hovered'],
584
1036
  description: 'Hovered state of color.background.accent.orange.subtlest.',
585
- exampleValue: '#FCE4A6'
1037
+ exampleValue: '#FCE4A6',
1038
+ usageGuidelines: {
1039
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1040
+ cssProperties: ['background-color']
1041
+ }
586
1042
  }, {
587
1043
  name: 'color.background.accent.orange.subtlest.pressed',
588
1044
  path: ['color', 'background', 'accent', 'orange', 'subtlest', 'pressed'],
589
1045
  description: 'Pressed state of color.background.accent.orange.subtlest.',
590
- exampleValue: '#FBD779'
1046
+ exampleValue: '#FBD779',
1047
+ usageGuidelines: {
1048
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1049
+ cssProperties: ['background-color']
1050
+ }
591
1051
  }, {
592
1052
  name: 'color.background.accent.orange.subtler',
593
1053
  path: ['color', 'background', 'accent', 'orange', 'subtler', '[default]'],
594
1054
  description: 'Use for orange backgrounds when there is no meaning tied to the color, such as colored tags.',
595
- exampleValue: '#FCE4A6'
1055
+ exampleValue: '#FCE4A6',
1056
+ usageGuidelines: {
1057
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1058
+ cssProperties: ['background-color']
1059
+ }
596
1060
  }, {
597
1061
  name: 'color.background.accent.orange.subtler.hovered',
598
1062
  path: ['color', 'background', 'accent', 'orange', 'subtler', 'hovered'],
599
1063
  description: 'Hovered state of color.background.accent.orange.subtler.',
600
- exampleValue: '#FBD779'
1064
+ exampleValue: '#FBD779',
1065
+ usageGuidelines: {
1066
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1067
+ cssProperties: ['background-color']
1068
+ }
601
1069
  }, {
602
1070
  name: 'color.background.accent.orange.subtler.pressed',
603
1071
  path: ['color', 'background', 'accent', 'orange', 'subtler', 'pressed'],
604
1072
  description: 'Pressed state of color.background.accent.orange.subtler.',
605
- exampleValue: '#FBC828'
1073
+ exampleValue: '#FBC828',
1074
+ usageGuidelines: {
1075
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1076
+ cssProperties: ['background-color']
1077
+ }
606
1078
  }, {
607
1079
  name: 'color.background.accent.orange.subtle',
608
1080
  path: ['color', 'background', 'accent', 'orange', 'subtle', '[default]'],
609
1081
  description: 'Use for vibrant orange backgrounds when there is no meaning tied to the color, such as colored tags.',
610
- exampleValue: '#FCA700'
1082
+ exampleValue: '#FCA700',
1083
+ usageGuidelines: {
1084
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1085
+ cssProperties: ['background-color']
1086
+ }
611
1087
  }, {
612
1088
  name: 'color.background.accent.orange.subtle.hovered',
613
1089
  path: ['color', 'background', 'accent', 'orange', 'subtle', 'hovered'],
614
1090
  description: 'Hovered state of color.background.accent.orange.subtle.',
615
- exampleValue: '#FBC828'
1091
+ exampleValue: '#FBC828',
1092
+ usageGuidelines: {
1093
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1094
+ cssProperties: ['background-color']
1095
+ }
616
1096
  }, {
617
1097
  name: 'color.background.accent.orange.subtle.pressed',
618
1098
  path: ['color', 'background', 'accent', 'orange', 'subtle', 'pressed'],
619
1099
  description: 'Pressed state of color.background.accent.orange.subtle.',
620
- exampleValue: '#FBD779'
1100
+ exampleValue: '#FBD779',
1101
+ usageGuidelines: {
1102
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1103
+ cssProperties: ['background-color']
1104
+ }
621
1105
  }, {
622
1106
  name: 'color.background.accent.orange.bolder',
623
1107
  path: ['color', 'background', 'accent', 'orange', 'bolder', '[default]'],
624
1108
  description: 'Use for orange backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
625
- exampleValue: '#BD5B00'
1109
+ exampleValue: '#BD5B00',
1110
+ usageGuidelines: {
1111
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1112
+ cssProperties: ['background-color']
1113
+ }
626
1114
  }, {
627
1115
  name: 'color.background.accent.orange.bolder.hovered',
628
1116
  path: ['color', 'background', 'accent', 'orange', 'bolder', 'hovered'],
629
1117
  description: 'Hovered state of color.background.accent.orange.bolder.',
630
- exampleValue: '#9E4C00'
1118
+ exampleValue: '#9E4C00',
1119
+ usageGuidelines: {
1120
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1121
+ cssProperties: ['background-color']
1122
+ }
631
1123
  }, {
632
1124
  name: 'color.background.accent.orange.bolder.pressed',
633
1125
  path: ['color', 'background', 'accent', 'orange', 'bolder', 'pressed'],
634
1126
  description: 'Pressed state of color.background.accent.orange.bolder.',
635
- exampleValue: '#7A3B00'
1127
+ exampleValue: '#7A3B00',
1128
+ usageGuidelines: {
1129
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1130
+ cssProperties: ['background-color']
1131
+ }
636
1132
  }, {
637
1133
  name: 'color.background.accent.yellow.subtlest',
638
1134
  path: ['color', 'background', 'accent', 'yellow', 'subtlest', '[default]'],
639
1135
  description: 'Use for yellow backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
640
- exampleValue: '#FEF7C8'
1136
+ exampleValue: '#FEF7C8',
1137
+ usageGuidelines: {
1138
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1139
+ cssProperties: ['background-color']
1140
+ }
641
1141
  }, {
642
1142
  name: 'color.background.accent.yellow.subtlest.hovered',
643
1143
  path: ['color', 'background', 'accent', 'yellow', 'subtlest', 'hovered'],
644
1144
  description: 'Hovered state of color.background.accent.yellow.subtlest.',
645
- exampleValue: '#F5E989'
1145
+ exampleValue: '#F5E989',
1146
+ usageGuidelines: {
1147
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1148
+ cssProperties: ['background-color']
1149
+ }
646
1150
  }, {
647
1151
  name: 'color.background.accent.yellow.subtlest.pressed',
648
1152
  path: ['color', 'background', 'accent', 'yellow', 'subtlest', 'pressed'],
649
1153
  description: 'Pressed state of color.background.accent.yellow.subtlest.',
650
- exampleValue: '#EFDD4E'
1154
+ exampleValue: '#EFDD4E',
1155
+ usageGuidelines: {
1156
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1157
+ cssProperties: ['background-color']
1158
+ }
651
1159
  }, {
652
1160
  name: 'color.background.accent.yellow.subtler',
653
1161
  path: ['color', 'background', 'accent', 'yellow', 'subtler', '[default]'],
654
1162
  description: 'Use for yellow backgrounds when there is no meaning tied to the color, such as colored tags.',
655
- exampleValue: '#F5E989'
1163
+ exampleValue: '#F5E989',
1164
+ usageGuidelines: {
1165
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1166
+ cssProperties: ['background-color']
1167
+ }
656
1168
  }, {
657
1169
  name: 'color.background.accent.yellow.subtler.hovered',
658
1170
  path: ['color', 'background', 'accent', 'yellow', 'subtler', 'hovered'],
659
1171
  description: 'Hovered state of color.background.accent.yellow.subtler.',
660
- exampleValue: '#EFDD4E'
1172
+ exampleValue: '#EFDD4E',
1173
+ usageGuidelines: {
1174
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1175
+ cssProperties: ['background-color']
1176
+ }
661
1177
  }, {
662
1178
  name: 'color.background.accent.yellow.subtler.pressed',
663
1179
  path: ['color', 'background', 'accent', 'yellow', 'subtler', 'pressed'],
664
1180
  description: 'Pressed state of color.background.accent.yellow.subtler.',
665
- exampleValue: '#EED12B'
1181
+ exampleValue: '#EED12B',
1182
+ usageGuidelines: {
1183
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1184
+ cssProperties: ['background-color']
1185
+ }
666
1186
  }, {
667
1187
  name: 'color.background.accent.yellow.subtle',
668
1188
  path: ['color', 'background', 'accent', 'yellow', 'subtle', '[default]'],
669
1189
  description: 'Use for vibrant yellow backgrounds when there is no meaning tied to the color, such as colored tags.',
670
- exampleValue: '#EED12B'
1190
+ exampleValue: '#EED12B',
1191
+ usageGuidelines: {
1192
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1193
+ cssProperties: ['background-color']
1194
+ }
671
1195
  }, {
672
1196
  name: 'color.background.accent.yellow.subtle.hovered',
673
1197
  path: ['color', 'background', 'accent', 'yellow', 'subtle', 'hovered'],
674
1198
  description: 'Hovered state of color.background.accent.yellow.subtle.',
675
- exampleValue: '#DDB30E'
1199
+ exampleValue: '#DDB30E',
1200
+ usageGuidelines: {
1201
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1202
+ cssProperties: ['background-color']
1203
+ }
676
1204
  }, {
677
1205
  name: 'color.background.accent.yellow.subtle.pressed',
678
1206
  path: ['color', 'background', 'accent', 'yellow', 'subtle', 'pressed'],
679
1207
  description: 'Pressed state of color.background.accent.yellow.subtle.',
680
- exampleValue: '#EFDD4E'
1208
+ exampleValue: '#EFDD4E',
1209
+ usageGuidelines: {
1210
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1211
+ cssProperties: ['background-color']
1212
+ }
681
1213
  }, {
682
1214
  name: 'color.background.accent.yellow.bolder',
683
1215
  path: ['color', 'background', 'accent', 'yellow', 'bolder', '[default]'],
684
1216
  description: 'Use for yellow backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
685
- exampleValue: '#946F00'
1217
+ exampleValue: '#946F00',
1218
+ usageGuidelines: {
1219
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1220
+ cssProperties: ['background-color']
1221
+ }
686
1222
  }, {
687
1223
  name: 'color.background.accent.yellow.bolder.hovered',
688
1224
  path: ['color', 'background', 'accent', 'yellow', 'bolder', 'hovered'],
689
1225
  description: 'Hovered state of color.background.accent.yellow.bolder.',
690
- exampleValue: '#7F5F01'
1226
+ exampleValue: '#7F5F01',
1227
+ usageGuidelines: {
1228
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1229
+ cssProperties: ['background-color']
1230
+ }
691
1231
  }, {
692
1232
  name: 'color.background.accent.yellow.bolder.pressed',
693
1233
  path: ['color', 'background', 'accent', 'yellow', 'bolder', 'pressed'],
694
1234
  description: 'Pressed state of color.background.accent.yellow.bolder.',
695
- exampleValue: '#614A05'
1235
+ exampleValue: '#614A05',
1236
+ usageGuidelines: {
1237
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1238
+ cssProperties: ['background-color']
1239
+ }
696
1240
  }, {
697
1241
  name: 'color.background.accent.green.subtlest',
698
1242
  path: ['color', 'background', 'accent', 'green', 'subtlest', '[default]'],
699
1243
  description: 'Use for green backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
700
- exampleValue: '#DCFFF1'
1244
+ exampleValue: '#DCFFF1',
1245
+ usageGuidelines: {
1246
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1247
+ cssProperties: ['background-color']
1248
+ }
701
1249
  }, {
702
1250
  name: 'color.background.accent.green.subtlest.hovered',
703
1251
  path: ['color', 'background', 'accent', 'green', 'subtlest', 'hovered'],
704
1252
  description: 'Hovered state of color.background.accent.green.subtlest.',
705
- exampleValue: '#BAF3DB'
1253
+ exampleValue: '#BAF3DB',
1254
+ usageGuidelines: {
1255
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1256
+ cssProperties: ['background-color']
1257
+ }
706
1258
  }, {
707
1259
  name: 'color.background.accent.green.subtlest.pressed',
708
1260
  path: ['color', 'background', 'accent', 'green', 'subtlest', 'pressed'],
709
1261
  description: 'Pressed state of color.background.accent.green.subtlest.',
710
- exampleValue: '#97EDC9'
1262
+ exampleValue: '#97EDC9',
1263
+ usageGuidelines: {
1264
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1265
+ cssProperties: ['background-color']
1266
+ }
711
1267
  }, {
712
1268
  name: 'color.background.accent.green.subtler',
713
1269
  path: ['color', 'background', 'accent', 'green', 'subtler', '[default]'],
714
1270
  description: 'Use for green backgrounds when there is no meaning tied to the color, such as colored tags.',
715
- exampleValue: '#BAF3DB'
1271
+ exampleValue: '#BAF3DB',
1272
+ usageGuidelines: {
1273
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1274
+ cssProperties: ['background-color']
1275
+ }
716
1276
  }, {
717
1277
  name: 'color.background.accent.green.subtler.hovered',
718
1278
  path: ['color', 'background', 'accent', 'green', 'subtler', 'hovered'],
719
1279
  description: 'Hovered state of color.background.accent.green.subtler.',
720
- exampleValue: '#97EDC9'
1280
+ exampleValue: '#97EDC9',
1281
+ usageGuidelines: {
1282
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1283
+ cssProperties: ['background-color']
1284
+ }
721
1285
  }, {
722
1286
  name: 'color.background.accent.green.subtler.pressed',
723
1287
  path: ['color', 'background', 'accent', 'green', 'subtler', 'pressed'],
724
1288
  description: 'Pressed state of color.background.accent.green.subtler.',
725
- exampleValue: '#7EE2B8'
1289
+ exampleValue: '#7EE2B8',
1290
+ usageGuidelines: {
1291
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1292
+ cssProperties: ['background-color']
1293
+ }
726
1294
  }, {
727
1295
  name: 'color.background.accent.green.subtle',
728
1296
  path: ['color', 'background', 'accent', 'green', 'subtle', '[default]'],
729
1297
  description: 'Use for vibrant green backgrounds when there is no meaning tied to the color, such as colored tags.',
730
- exampleValue: '#4BCE97'
1298
+ exampleValue: '#4BCE97',
1299
+ usageGuidelines: {
1300
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1301
+ cssProperties: ['background-color']
1302
+ }
731
1303
  }, {
732
1304
  name: 'color.background.accent.green.subtle.hovered',
733
1305
  path: ['color', 'background', 'accent', 'green', 'subtle', 'hovered'],
734
1306
  description: 'Hovered state of color.background.accent.green.subtle.',
735
- exampleValue: '#7EE2B8'
1307
+ exampleValue: '#7EE2B8',
1308
+ usageGuidelines: {
1309
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1310
+ cssProperties: ['background-color']
1311
+ }
736
1312
  }, {
737
1313
  name: 'color.background.accent.green.subtle.pressed',
738
1314
  path: ['color', 'background', 'accent', 'green', 'subtle', 'pressed'],
739
1315
  description: 'Pressed state of color.background.accent.green.subtle.',
740
- exampleValue: '#97EDC9'
1316
+ exampleValue: '#97EDC9',
1317
+ usageGuidelines: {
1318
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1319
+ cssProperties: ['background-color']
1320
+ }
741
1321
  }, {
742
1322
  name: 'color.background.accent.green.bolder',
743
1323
  path: ['color', 'background', 'accent', 'green', 'bolder', '[default]'],
744
1324
  description: 'Use for green backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
745
- exampleValue: '#1F845A'
1325
+ exampleValue: '#1F845A',
1326
+ usageGuidelines: {
1327
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1328
+ cssProperties: ['background-color']
1329
+ }
746
1330
  }, {
747
1331
  name: 'color.background.accent.green.bolder.hovered',
748
1332
  path: ['color', 'background', 'accent', 'green', 'bolder', 'hovered'],
749
1333
  description: 'Hovered state of color.background.accent.green.bolder.',
750
- exampleValue: '#216E4E'
1334
+ exampleValue: '#216E4E',
1335
+ usageGuidelines: {
1336
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1337
+ cssProperties: ['background-color']
1338
+ }
751
1339
  }, {
752
1340
  name: 'color.background.accent.green.bolder.pressed',
753
1341
  path: ['color', 'background', 'accent', 'green', 'bolder', 'pressed'],
754
1342
  description: 'Pressed state of color.background.accent.green.bolder.',
755
- exampleValue: '#19573D'
1343
+ exampleValue: '#19573D',
1344
+ usageGuidelines: {
1345
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1346
+ cssProperties: ['background-color']
1347
+ }
756
1348
  }, {
757
1349
  name: 'color.background.accent.teal.subtlest',
758
1350
  path: ['color', 'background', 'accent', 'teal', 'subtlest', '[default]'],
759
1351
  description: 'Use for teal backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
760
- exampleValue: '#E7F9FF'
1352
+ exampleValue: '#E7F9FF',
1353
+ usageGuidelines: {
1354
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1355
+ cssProperties: ['background-color']
1356
+ }
761
1357
  }, {
762
1358
  name: 'color.background.accent.teal.subtlest.hovered',
763
1359
  path: ['color', 'background', 'accent', 'teal', 'subtlest', 'hovered'],
764
1360
  description: 'Hovered state of color.background.accent.teal.subtlest.',
765
- exampleValue: '#C6EDFB'
1361
+ exampleValue: '#C6EDFB',
1362
+ usageGuidelines: {
1363
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1364
+ cssProperties: ['background-color']
1365
+ }
766
1366
  }, {
767
1367
  name: 'color.background.accent.teal.subtlest.pressed',
768
1368
  path: ['color', 'background', 'accent', 'teal', 'subtlest', 'pressed'],
769
1369
  description: 'Pressed state of color.background.accent.teal.subtlest.',
770
- exampleValue: '#B1E4F7'
1370
+ exampleValue: '#B1E4F7',
1371
+ usageGuidelines: {
1372
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1373
+ cssProperties: ['background-color']
1374
+ }
771
1375
  }, {
772
1376
  name: 'color.background.accent.teal.subtler',
773
1377
  path: ['color', 'background', 'accent', 'teal', 'subtler', '[default]'],
774
1378
  description: 'Use for teal backgrounds when there is no meaning tied to the color, such as colored tags.',
775
- exampleValue: '#C6EDFB'
1379
+ exampleValue: '#C6EDFB',
1380
+ usageGuidelines: {
1381
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1382
+ cssProperties: ['background-color']
1383
+ }
776
1384
  }, {
777
1385
  name: 'color.background.accent.teal.subtler.hovered',
778
1386
  path: ['color', 'background', 'accent', 'teal', 'subtler', 'hovered'],
779
1387
  description: 'Hovered state of color.background.accent.teal.subtler.',
780
- exampleValue: '#B1E4F7'
1388
+ exampleValue: '#B1E4F7',
1389
+ usageGuidelines: {
1390
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1391
+ cssProperties: ['background-color']
1392
+ }
781
1393
  }, {
782
1394
  name: 'color.background.accent.teal.subtler.pressed',
783
1395
  path: ['color', 'background', 'accent', 'teal', 'subtler', 'pressed'],
784
1396
  description: 'Pressed state of color.background.accent.teal.subtler.',
785
- exampleValue: '#9DD9EE'
1397
+ exampleValue: '#9DD9EE',
1398
+ usageGuidelines: {
1399
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1400
+ cssProperties: ['background-color']
1401
+ }
786
1402
  }, {
787
1403
  name: 'color.background.accent.teal.subtle',
788
1404
  path: ['color', 'background', 'accent', 'teal', 'subtle', '[default]'],
789
1405
  description: 'Use for vibrant teal backgrounds when there is no meaning tied to the color, such as colored tags.',
790
- exampleValue: '#6CC3E0'
1406
+ exampleValue: '#6CC3E0',
1407
+ usageGuidelines: {
1408
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1409
+ cssProperties: ['background-color']
1410
+ }
791
1411
  }, {
792
1412
  name: 'color.background.accent.teal.subtle.hovered',
793
1413
  path: ['color', 'background', 'accent', 'teal', 'subtle', 'hovered'],
794
1414
  description: 'Hovered state of color.background.accent.teal.subtle.',
795
- exampleValue: '#9DD9EE'
1415
+ exampleValue: '#9DD9EE',
1416
+ usageGuidelines: {
1417
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1418
+ cssProperties: ['background-color']
1419
+ }
796
1420
  }, {
797
1421
  name: 'color.background.accent.teal.subtle.pressed',
798
1422
  path: ['color', 'background', 'accent', 'teal', 'subtle', 'pressed'],
799
1423
  description: 'Pressed state of color.background.accent.teal.subtle.',
800
- exampleValue: '#B1E4F7'
1424
+ exampleValue: '#B1E4F7',
1425
+ usageGuidelines: {
1426
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1427
+ cssProperties: ['background-color']
1428
+ }
801
1429
  }, {
802
1430
  name: 'color.background.accent.teal.bolder',
803
1431
  path: ['color', 'background', 'accent', 'teal', 'bolder', '[default]'],
804
1432
  description: 'Use for teal backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
805
- exampleValue: '#227D9B'
1433
+ exampleValue: '#227D9B',
1434
+ usageGuidelines: {
1435
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1436
+ cssProperties: ['background-color']
1437
+ }
806
1438
  }, {
807
1439
  name: 'color.background.accent.teal.bolder.hovered',
808
1440
  path: ['color', 'background', 'accent', 'teal', 'bolder', 'hovered'],
809
1441
  description: 'Hovered state of color.background.accent.teal.bolder.',
810
- exampleValue: '#206A83'
1442
+ exampleValue: '#206A83',
1443
+ usageGuidelines: {
1444
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1445
+ cssProperties: ['background-color']
1446
+ }
811
1447
  }, {
812
1448
  name: 'color.background.accent.teal.bolder.pressed',
813
1449
  path: ['color', 'background', 'accent', 'teal', 'bolder', 'pressed'],
814
1450
  description: 'Pressed state of color.background.accent.teal.bolder.',
815
- exampleValue: '#1A5265'
1451
+ exampleValue: '#1A5265',
1452
+ usageGuidelines: {
1453
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1454
+ cssProperties: ['background-color']
1455
+ }
816
1456
  }, {
817
1457
  name: 'color.background.accent.blue.subtlest',
818
1458
  path: ['color', 'background', 'accent', 'blue', 'subtlest', '[default]'],
819
1459
  description: 'Use for blue backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
820
- exampleValue: '#E9F2FE'
1460
+ exampleValue: '#E9F2FE',
1461
+ usageGuidelines: {
1462
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1463
+ cssProperties: ['background-color']
1464
+ }
821
1465
  }, {
822
1466
  name: 'color.background.accent.blue.subtlest.hovered',
823
1467
  path: ['color', 'background', 'accent', 'blue', 'subtlest', 'hovered'],
824
1468
  description: 'Hovered state of color.background.accent.blue.subtlest.',
825
- exampleValue: '#CFE1FD'
1469
+ exampleValue: '#CFE1FD',
1470
+ usageGuidelines: {
1471
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1472
+ cssProperties: ['background-color']
1473
+ }
826
1474
  }, {
827
1475
  name: 'color.background.accent.blue.subtlest.pressed',
828
1476
  path: ['color', 'background', 'accent', 'blue', 'subtlest', 'pressed'],
829
1477
  description: 'Pressed state of color.background.accent.blue.subtlest.',
830
- exampleValue: '#ADCBFB'
1478
+ exampleValue: '#ADCBFB',
1479
+ usageGuidelines: {
1480
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1481
+ cssProperties: ['background-color']
1482
+ }
831
1483
  }, {
832
1484
  name: 'color.background.accent.blue.subtler',
833
1485
  path: ['color', 'background', 'accent', 'blue', 'subtler', '[default]'],
834
1486
  description: 'Use for blue backgrounds when there is no meaning tied to the color, such as colored tags.',
835
- exampleValue: '#CFE1FD'
1487
+ exampleValue: '#CFE1FD',
1488
+ usageGuidelines: {
1489
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1490
+ cssProperties: ['background-color']
1491
+ }
836
1492
  }, {
837
1493
  name: 'color.background.accent.blue.subtler.hovered',
838
1494
  path: ['color', 'background', 'accent', 'blue', 'subtler', 'hovered'],
839
1495
  description: 'Hovered state of color.background.accent.blue.subtler.',
840
- exampleValue: '#ADCBFB'
1496
+ exampleValue: '#ADCBFB',
1497
+ usageGuidelines: {
1498
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1499
+ cssProperties: ['background-color']
1500
+ }
841
1501
  }, {
842
1502
  name: 'color.background.accent.blue.subtler.pressed',
843
1503
  path: ['color', 'background', 'accent', 'blue', 'subtler', 'pressed'],
844
1504
  description: 'Pressed state of color.background.accent.blue.subtler.',
845
- exampleValue: '#8FB8F6'
1505
+ exampleValue: '#8FB8F6',
1506
+ usageGuidelines: {
1507
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1508
+ cssProperties: ['background-color']
1509
+ }
846
1510
  }, {
847
1511
  name: 'color.background.accent.blue.subtle',
848
1512
  path: ['color', 'background', 'accent', 'blue', 'subtle', '[default]'],
849
1513
  description: 'Use for vibrant blue backgrounds when there is no meaning tied to the color, such as colored tags.',
850
- exampleValue: '#669DF1'
1514
+ exampleValue: '#669DF1',
1515
+ usageGuidelines: {
1516
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1517
+ cssProperties: ['background-color']
1518
+ }
851
1519
  }, {
852
1520
  name: 'color.background.accent.blue.subtle.hovered',
853
1521
  path: ['color', 'background', 'accent', 'blue', 'subtle', 'hovered'],
854
1522
  description: 'Hovered state of color.background.accent.blue.subtle.',
855
- exampleValue: '#8FB8F6'
1523
+ exampleValue: '#8FB8F6',
1524
+ usageGuidelines: {
1525
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1526
+ cssProperties: ['background-color']
1527
+ }
856
1528
  }, {
857
1529
  name: 'color.background.accent.blue.subtle.pressed',
858
1530
  path: ['color', 'background', 'accent', 'blue', 'subtle', 'pressed'],
859
1531
  description: 'Pressed state of color.background.accent.blue.subtle.',
860
- exampleValue: '#ADCBFB'
1532
+ exampleValue: '#ADCBFB',
1533
+ usageGuidelines: {
1534
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1535
+ cssProperties: ['background-color']
1536
+ }
861
1537
  }, {
862
1538
  name: 'color.background.accent.blue.bolder',
863
1539
  path: ['color', 'background', 'accent', 'blue', 'bolder', '[default]'],
864
1540
  description: 'Use for blue backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
865
- exampleValue: '#1868DB'
1541
+ exampleValue: '#1868DB',
1542
+ usageGuidelines: {
1543
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1544
+ cssProperties: ['background-color']
1545
+ }
866
1546
  }, {
867
1547
  name: 'color.background.accent.blue.bolder.hovered',
868
1548
  path: ['color', 'background', 'accent', 'blue', 'bolder', 'hovered'],
869
1549
  description: 'Hovered state of color.background.accent.blue.bolder.',
870
- exampleValue: '#1558BC'
1550
+ exampleValue: '#1558BC',
1551
+ usageGuidelines: {
1552
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1553
+ cssProperties: ['background-color']
1554
+ }
871
1555
  }, {
872
1556
  name: 'color.background.accent.blue.bolder.pressed',
873
1557
  path: ['color', 'background', 'accent', 'blue', 'bolder', 'pressed'],
874
1558
  description: 'Pressed state of color.background.accent.blue.bolder.',
875
- exampleValue: '#144794'
1559
+ exampleValue: '#144794',
1560
+ usageGuidelines: {
1561
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1562
+ cssProperties: ['background-color']
1563
+ }
876
1564
  }, {
877
1565
  name: 'color.background.accent.purple.subtlest',
878
1566
  path: ['color', 'background', 'accent', 'purple', 'subtlest', '[default]'],
879
1567
  description: 'Use for purple backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
880
- exampleValue: '#F8EEFE'
1568
+ exampleValue: '#F8EEFE',
1569
+ usageGuidelines: {
1570
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1571
+ cssProperties: ['background-color']
1572
+ }
881
1573
  }, {
882
1574
  name: 'color.background.accent.purple.subtlest.hovered',
883
1575
  path: ['color', 'background', 'accent', 'purple', 'subtlest', 'hovered'],
884
1576
  description: 'Hovered state of color.background.accent.purple.subtlest.',
885
- exampleValue: '#EED7FC'
1577
+ exampleValue: '#EED7FC',
1578
+ usageGuidelines: {
1579
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1580
+ cssProperties: ['background-color']
1581
+ }
886
1582
  }, {
887
1583
  name: 'color.background.accent.purple.subtlest.pressed',
888
1584
  path: ['color', 'background', 'accent', 'purple', 'subtlest', 'pressed'],
889
1585
  description: 'Pressed state of color.background.accent.purple.subtlest.',
890
- exampleValue: '#E3BDFA'
1586
+ exampleValue: '#E3BDFA',
1587
+ usageGuidelines: {
1588
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1589
+ cssProperties: ['background-color']
1590
+ }
891
1591
  }, {
892
1592
  name: 'color.background.accent.purple.subtler',
893
1593
  path: ['color', 'background', 'accent', 'purple', 'subtler', '[default]'],
894
1594
  description: 'Use for purple backgrounds when there is no meaning tied to the color, such as colored tags.',
895
- exampleValue: '#EED7FC'
1595
+ exampleValue: '#EED7FC',
1596
+ usageGuidelines: {
1597
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1598
+ cssProperties: ['background-color']
1599
+ }
896
1600
  }, {
897
1601
  name: 'color.background.accent.purple.subtler.hovered',
898
1602
  path: ['color', 'background', 'accent', 'purple', 'subtler', 'hovered'],
899
1603
  description: 'Hovered state of color.background.accent.purple.subtler.',
900
- exampleValue: '#E3BDFA'
1604
+ exampleValue: '#E3BDFA',
1605
+ usageGuidelines: {
1606
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1607
+ cssProperties: ['background-color']
1608
+ }
901
1609
  }, {
902
1610
  name: 'color.background.accent.purple.subtler.pressed',
903
1611
  path: ['color', 'background', 'accent', 'purple', 'subtler', 'pressed'],
904
1612
  description: 'Pressed state of color.background.accent.purple.subtler.',
905
- exampleValue: '#D8A0F7'
1613
+ exampleValue: '#D8A0F7',
1614
+ usageGuidelines: {
1615
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1616
+ cssProperties: ['background-color']
1617
+ }
906
1618
  }, {
907
1619
  name: 'color.background.accent.purple.subtle',
908
1620
  path: ['color', 'background', 'accent', 'purple', 'subtle', '[default]'],
909
1621
  description: 'Use for vibrant purple backgrounds when there is no meaning tied to the color, such as colored tags.',
910
- exampleValue: '#C97CF4'
1622
+ exampleValue: '#C97CF4',
1623
+ usageGuidelines: {
1624
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1625
+ cssProperties: ['background-color']
1626
+ }
911
1627
  }, {
912
1628
  name: 'color.background.accent.purple.subtle.hovered',
913
1629
  path: ['color', 'background', 'accent', 'purple', 'subtle', 'hovered'],
914
1630
  description: 'Hovered state of color.background.accent.purple.subtle.',
915
- exampleValue: '#D8A0F7'
1631
+ exampleValue: '#D8A0F7',
1632
+ usageGuidelines: {
1633
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1634
+ cssProperties: ['background-color']
1635
+ }
916
1636
  }, {
917
1637
  name: 'color.background.accent.purple.subtle.pressed',
918
1638
  path: ['color', 'background', 'accent', 'purple', 'subtle', 'pressed'],
919
1639
  description: 'Pressed state of color.background.accent.purple.subtle.',
920
- exampleValue: '#E3BDFA'
1640
+ exampleValue: '#E3BDFA',
1641
+ usageGuidelines: {
1642
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1643
+ cssProperties: ['background-color']
1644
+ }
921
1645
  }, {
922
1646
  name: 'color.background.accent.purple.bolder',
923
1647
  path: ['color', 'background', 'accent', 'purple', 'bolder', '[default]'],
924
1648
  description: 'Use for purple backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
925
- exampleValue: '#964AC0'
1649
+ exampleValue: '#964AC0',
1650
+ usageGuidelines: {
1651
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1652
+ cssProperties: ['background-color']
1653
+ }
926
1654
  }, {
927
1655
  name: 'color.background.accent.purple.bolder.hovered',
928
1656
  path: ['color', 'background', 'accent', 'purple', 'bolder', 'hovered'],
929
1657
  description: 'Hovered state of color.background.accent.purple.bolder.',
930
- exampleValue: '#803FA5'
1658
+ exampleValue: '#803FA5',
1659
+ usageGuidelines: {
1660
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1661
+ cssProperties: ['background-color']
1662
+ }
931
1663
  }, {
932
1664
  name: 'color.background.accent.purple.bolder.pressed',
933
1665
  path: ['color', 'background', 'accent', 'purple', 'bolder', 'pressed'],
934
1666
  description: 'Pressed state of color.background.accent.purple.bolder.',
935
- exampleValue: '#673286'
1667
+ exampleValue: '#673286',
1668
+ usageGuidelines: {
1669
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1670
+ cssProperties: ['background-color']
1671
+ }
936
1672
  }, {
937
1673
  name: 'color.background.accent.magenta.subtlest',
938
1674
  path: ['color', 'background', 'accent', 'magenta', 'subtlest', '[default]'],
939
1675
  description: 'Use for magenta backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
940
- exampleValue: '#FFECF8'
1676
+ exampleValue: '#FFECF8',
1677
+ usageGuidelines: {
1678
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1679
+ cssProperties: ['background-color']
1680
+ }
941
1681
  }, {
942
1682
  name: 'color.background.accent.magenta.subtlest.hovered',
943
1683
  path: ['color', 'background', 'accent', 'magenta', 'subtlest', 'hovered'],
944
1684
  description: 'Hovered state of color.background.accent.magenta.subtlest.',
945
- exampleValue: '#FDD0EC'
1685
+ exampleValue: '#FDD0EC',
1686
+ usageGuidelines: {
1687
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1688
+ cssProperties: ['background-color']
1689
+ }
946
1690
  }, {
947
1691
  name: 'color.background.accent.magenta.subtlest.pressed',
948
1692
  path: ['color', 'background', 'accent', 'magenta', 'subtlest', 'pressed'],
949
1693
  description: 'Pressed state of color.background.accent.magenta.subtlest.',
950
- exampleValue: '#FCB6E1'
1694
+ exampleValue: '#FCB6E1',
1695
+ usageGuidelines: {
1696
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1697
+ cssProperties: ['background-color']
1698
+ }
951
1699
  }, {
952
1700
  name: 'color.background.accent.magenta.subtler',
953
1701
  path: ['color', 'background', 'accent', 'magenta', 'subtler', '[default]'],
954
1702
  description: 'Use for magenta backgrounds when there is no meaning tied to the color, such as colored tags.',
955
- exampleValue: '#FDD0EC'
1703
+ exampleValue: '#FDD0EC',
1704
+ usageGuidelines: {
1705
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1706
+ cssProperties: ['background-color']
1707
+ }
956
1708
  }, {
957
1709
  name: 'color.background.accent.magenta.subtler.hovered',
958
1710
  path: ['color', 'background', 'accent', 'magenta', 'subtler', 'hovered'],
959
1711
  description: 'Hovered state of color.background.accent.magenta.subtler.',
960
- exampleValue: '#FCB6E1'
1712
+ exampleValue: '#FCB6E1',
1713
+ usageGuidelines: {
1714
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1715
+ cssProperties: ['background-color']
1716
+ }
961
1717
  }, {
962
1718
  name: 'color.background.accent.magenta.subtler.pressed',
963
1719
  path: ['color', 'background', 'accent', 'magenta', 'subtler', 'pressed'],
964
1720
  description: 'Pressed state of color.background.accent.magenta.subtler.',
965
- exampleValue: '#F797D2'
1721
+ exampleValue: '#F797D2',
1722
+ usageGuidelines: {
1723
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1724
+ cssProperties: ['background-color']
1725
+ }
966
1726
  }, {
967
1727
  name: 'color.background.accent.magenta.subtle',
968
1728
  path: ['color', 'background', 'accent', 'magenta', 'subtle', '[default]'],
969
1729
  description: 'Use for vibrant magenta backgrounds when there is no meaning tied to the color, such as colored tags.',
970
- exampleValue: '#E774BB'
1730
+ exampleValue: '#E774BB',
1731
+ usageGuidelines: {
1732
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1733
+ cssProperties: ['background-color']
1734
+ }
971
1735
  }, {
972
1736
  name: 'color.background.accent.magenta.subtle.hovered',
973
1737
  path: ['color', 'background', 'accent', 'magenta', 'subtle', 'hovered'],
974
1738
  description: 'Hovered state of color.background.accent.magenta.subtle.',
975
- exampleValue: '#F797D2'
1739
+ exampleValue: '#F797D2',
1740
+ usageGuidelines: {
1741
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1742
+ cssProperties: ['background-color']
1743
+ }
976
1744
  }, {
977
1745
  name: 'color.background.accent.magenta.subtle.pressed',
978
1746
  path: ['color', 'background', 'accent', 'magenta', 'subtle', 'pressed'],
979
1747
  description: 'Pressed state of color.background.accent.magenta.subtle.',
980
- exampleValue: '#FCB6E1'
1748
+ exampleValue: '#FCB6E1',
1749
+ usageGuidelines: {
1750
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1751
+ cssProperties: ['background-color']
1752
+ }
981
1753
  }, {
982
1754
  name: 'color.background.accent.magenta.bolder',
983
1755
  path: ['color', 'background', 'accent', 'magenta', 'bolder', '[default]'],
984
1756
  description: 'Use for magenta backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
985
- exampleValue: '#AE4787'
1757
+ exampleValue: '#AE4787',
1758
+ usageGuidelines: {
1759
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1760
+ cssProperties: ['background-color']
1761
+ }
986
1762
  }, {
987
1763
  name: 'color.background.accent.magenta.bolder.hovered',
988
1764
  path: ['color', 'background', 'accent', 'magenta', 'bolder', 'hovered'],
989
1765
  description: 'Hovered state of color.background.accent.magenta.bolder.',
990
- exampleValue: '#943D73'
1766
+ exampleValue: '#943D73',
1767
+ usageGuidelines: {
1768
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1769
+ cssProperties: ['background-color']
1770
+ }
991
1771
  }, {
992
1772
  name: 'color.background.accent.magenta.bolder.pressed',
993
1773
  path: ['color', 'background', 'accent', 'magenta', 'bolder', 'pressed'],
994
1774
  description: 'Pressed state of color.background.accent.magenta.bolder.',
995
- exampleValue: '#77325B'
1775
+ exampleValue: '#77325B',
1776
+ usageGuidelines: {
1777
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1778
+ cssProperties: ['background-color']
1779
+ }
996
1780
  }, {
997
1781
  name: 'color.background.accent.gray.subtlest',
998
1782
  path: ['color', 'background', 'accent', 'gray', 'subtlest', '[default]'],
999
1783
  description: 'Use for gray backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.',
1000
- exampleValue: '#F0F1F2'
1784
+ exampleValue: '#F0F1F2',
1785
+ usageGuidelines: {
1786
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1787
+ cssProperties: ['background-color']
1788
+ }
1001
1789
  }, {
1002
1790
  name: 'color.background.accent.gray.subtlest.hovered',
1003
1791
  path: ['color', 'background', 'accent', 'gray', 'subtlest', 'hovered'],
1004
1792
  description: 'Hovered state of color.background.accent.gray.subtlest.',
1005
- exampleValue: '#DDDEE1'
1793
+ exampleValue: '#DDDEE1',
1794
+ usageGuidelines: {
1795
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1796
+ cssProperties: ['background-color']
1797
+ }
1006
1798
  }, {
1007
1799
  name: 'color.background.accent.gray.subtlest.pressed',
1008
1800
  path: ['color', 'background', 'accent', 'gray', 'subtlest', 'pressed'],
1009
1801
  description: 'Pressed state of color.background.accent.gray.subtlest.',
1010
- exampleValue: '#B7B9BE'
1802
+ exampleValue: '#B7B9BE',
1803
+ usageGuidelines: {
1804
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1805
+ cssProperties: ['background-color']
1806
+ }
1011
1807
  }, {
1012
1808
  name: 'color.background.accent.gray.subtler',
1013
1809
  path: ['color', 'background', 'accent', 'gray', 'subtler', '[default]'],
1014
1810
  description: 'Use for gray backgrounds when there is no meaning tied to the color, such as colored tags.',
1015
- exampleValue: '#DDDEE1'
1811
+ exampleValue: '#DDDEE1',
1812
+ usageGuidelines: {
1813
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1814
+ cssProperties: ['background-color']
1815
+ }
1016
1816
  }, {
1017
1817
  name: 'color.background.accent.gray.subtler.hovered',
1018
1818
  path: ['color', 'background', 'accent', 'gray', 'subtler', 'hovered'],
1019
1819
  description: 'Hovered state of color.background.accent.gray.subtler.',
1020
- exampleValue: '#B7B9BE'
1820
+ exampleValue: '#B7B9BE',
1821
+ usageGuidelines: {
1822
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1823
+ cssProperties: ['background-color']
1824
+ }
1021
1825
  }, {
1022
1826
  name: 'color.background.accent.gray.subtler.pressed',
1023
1827
  path: ['color', 'background', 'accent', 'gray', 'subtler', 'pressed'],
1024
1828
  description: 'Pressed state of color.background.accent.gray.subtler.',
1025
- exampleValue: '#8C8F97'
1829
+ exampleValue: '#8C8F97',
1830
+ usageGuidelines: {
1831
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1832
+ cssProperties: ['background-color']
1833
+ }
1026
1834
  }, {
1027
1835
  name: 'color.background.accent.gray.subtle',
1028
1836
  path: ['color', 'background', 'accent', 'gray', 'subtle', '[default]'],
1029
1837
  description: 'Use for vibrant gray backgrounds when there is no meaning tied to the color, such as colored tags.',
1030
- exampleValue: '#8C8F97'
1838
+ exampleValue: '#8C8F97',
1839
+ usageGuidelines: {
1840
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1841
+ cssProperties: ['background-color']
1842
+ }
1031
1843
  }, {
1032
1844
  name: 'color.background.accent.gray.subtle.hovered',
1033
1845
  path: ['color', 'background', 'accent', 'gray', 'subtle', 'hovered'],
1034
1846
  description: 'Hovered state of color.background.accent.gray.subtle.',
1035
- exampleValue: '#B7B9BE'
1847
+ exampleValue: '#B7B9BE',
1848
+ usageGuidelines: {
1849
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1850
+ cssProperties: ['background-color']
1851
+ }
1036
1852
  }, {
1037
1853
  name: 'color.background.accent.gray.subtle.pressed',
1038
1854
  path: ['color', 'background', 'accent', 'gray', 'subtle', 'pressed'],
1039
1855
  description: 'Pressed state of color.background.accent.gray.subtle.',
1040
- exampleValue: '#DDDEE1'
1856
+ exampleValue: '#DDDEE1',
1857
+ usageGuidelines: {
1858
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1859
+ cssProperties: ['background-color']
1860
+ }
1041
1861
  }, {
1042
1862
  name: 'color.background.accent.gray.bolder',
1043
1863
  path: ['color', 'background', 'accent', 'gray', 'bolder', '[default]'],
1044
1864
  description: 'Use for gray backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.',
1045
- exampleValue: '#6B6E76'
1865
+ exampleValue: '#6B6E76',
1866
+ usageGuidelines: {
1867
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1868
+ cssProperties: ['background-color']
1869
+ }
1046
1870
  }, {
1047
1871
  name: 'color.background.accent.gray.bolder.hovered',
1048
1872
  path: ['color', 'background', 'accent', 'gray', 'bolder', 'hovered'],
1049
1873
  description: 'Hovered state of color.background.accent.gray.bolder.',
1050
- exampleValue: '#505258'
1874
+ exampleValue: '#505258',
1875
+ usageGuidelines: {
1876
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1877
+ cssProperties: ['background-color']
1878
+ }
1051
1879
  }, {
1052
1880
  name: 'color.background.accent.gray.bolder.pressed',
1053
1881
  path: ['color', 'background', 'accent', 'gray', 'bolder', 'pressed'],
1054
1882
  description: 'Pressed state of color.background.accent.gray.subtlest.',
1055
- exampleValue: '#3B3D42'
1883
+ exampleValue: '#3B3D42',
1884
+ usageGuidelines: {
1885
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1886
+ cssProperties: ['background-color']
1887
+ }
1056
1888
  }, {
1057
1889
  name: 'color.background.disabled',
1058
1890
  path: ['color', 'background', 'disabled'],
1059
1891
  description: 'Use for backgrounds of elements in a disabled state.',
1060
- exampleValue: '#17171708'
1892
+ exampleValue: '#17171708',
1893
+ usageGuidelines: {
1894
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1895
+ cssProperties: ['background-color']
1896
+ }
1061
1897
  }, {
1062
1898
  name: 'color.background.input',
1063
1899
  path: ['color', 'background', 'input', '[default]'],
1064
1900
  description: 'Use for background of form UI elements, such as text fields, checkboxes, and radio buttons.',
1065
- exampleValue: '#FFFFFF'
1901
+ exampleValue: '#FFFFFF',
1902
+ usageGuidelines: {
1903
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1904
+ cssProperties: ['background-color']
1905
+ }
1066
1906
  }, {
1067
1907
  name: 'color.background.input.hovered',
1068
1908
  path: ['color', 'background', 'input', 'hovered'],
1069
1909
  description: 'Hovered state for color.background.input',
1070
- exampleValue: '#F8F8F8'
1910
+ exampleValue: '#F8F8F8',
1911
+ usageGuidelines: {
1912
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1913
+ cssProperties: ['background-color']
1914
+ }
1071
1915
  }, {
1072
1916
  name: 'color.background.input.pressed',
1073
1917
  path: ['color', 'background', 'input', 'pressed'],
1074
1918
  description: 'Pressed state for color.background.input',
1075
- exampleValue: '#FFFFFF'
1919
+ exampleValue: '#FFFFFF',
1920
+ usageGuidelines: {
1921
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1922
+ cssProperties: ['background-color']
1923
+ }
1076
1924
  }, {
1077
1925
  name: 'color.background.inverse.subtle',
1078
1926
  path: ['color', 'background', 'inverse', 'subtle', '[default]'],
1079
1927
  description: 'Use for backgrounds of elements on a bold background, such as in the buttons on spotlight cards.',
1080
- exampleValue: '#00000029'
1928
+ exampleValue: '#00000029',
1929
+ usageGuidelines: {
1930
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1931
+ cssProperties: ['background-color']
1932
+ }
1081
1933
  }, {
1082
1934
  name: 'color.background.inverse.subtle.hovered',
1083
1935
  path: ['color', 'background', 'inverse', 'subtle', 'hovered'],
1084
1936
  description: 'Use for the hovered state of color.background.inverse.subtle',
1085
- exampleValue: '#0000003D'
1937
+ exampleValue: '#0000003D',
1938
+ usageGuidelines: {
1939
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1940
+ cssProperties: ['background-color']
1941
+ }
1086
1942
  }, {
1087
1943
  name: 'color.background.inverse.subtle.pressed',
1088
1944
  path: ['color', 'background', 'inverse', 'subtle', 'pressed'],
1089
1945
  description: 'Use for the pressed state of color.background.inverse.subtle',
1090
- exampleValue: '#00000052'
1946
+ exampleValue: '#00000052',
1947
+ usageGuidelines: {
1948
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1949
+ cssProperties: ['background-color']
1950
+ }
1091
1951
  }, {
1092
1952
  name: 'color.background.neutral',
1093
1953
  path: ['color', 'background', 'neutral', '[default]', '[default]'],
1094
1954
  description: 'The default background for neutral elements, such as default buttons.',
1095
- exampleValue: '#0515240F'
1955
+ exampleValue: '#0515240F',
1956
+ usageGuidelines: {
1957
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1958
+ cssProperties: ['background-color']
1959
+ }
1096
1960
  }, {
1097
1961
  name: 'color.background.neutral.hovered',
1098
1962
  path: ['color', 'background', 'neutral', '[default]', 'hovered'],
1099
1963
  description: 'Hovered state for color.background.neutral',
1100
- exampleValue: '#0B120E24'
1964
+ exampleValue: '#0B120E24',
1965
+ usageGuidelines: {
1966
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1967
+ cssProperties: ['background-color']
1968
+ }
1101
1969
  }, {
1102
1970
  name: 'color.background.neutral.pressed',
1103
1971
  path: ['color', 'background', 'neutral', '[default]', 'pressed'],
1104
1972
  description: 'Pressed state for color.background.neutral',
1105
- exampleValue: '#080F214A'
1973
+ exampleValue: '#080F214A',
1974
+ usageGuidelines: {
1975
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1976
+ cssProperties: ['background-color']
1977
+ }
1106
1978
  }, {
1107
1979
  name: 'color.background.neutral.subtle',
1108
1980
  path: ['color', 'background', 'neutral', 'subtle', '[default]'],
1109
1981
  description: 'Use for the background of elements that appear to have no background in a resting state, such as subtle buttons and menu items.',
1110
- exampleValue: '#00000000'
1982
+ exampleValue: '#00000000',
1983
+ usageGuidelines: {
1984
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1985
+ cssProperties: ['background-color']
1986
+ }
1111
1987
  }, {
1112
1988
  name: 'color.background.neutral.subtle.hovered',
1113
1989
  path: ['color', 'background', 'neutral', 'subtle', 'hovered'],
1114
1990
  description: 'Hovered state for color.background.neutral.subtle',
1115
- exampleValue: '#0515240F'
1991
+ exampleValue: '#0515240F',
1992
+ usageGuidelines: {
1993
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
1994
+ cssProperties: ['background-color']
1995
+ }
1116
1996
  }, {
1117
1997
  name: 'color.background.neutral.subtle.pressed',
1118
1998
  path: ['color', 'background', 'neutral', 'subtle', 'pressed'],
1119
1999
  description: 'Pressed state for color.background.neutral.subtle',
1120
- exampleValue: '#0B120E24'
2000
+ exampleValue: '#0B120E24',
2001
+ usageGuidelines: {
2002
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2003
+ cssProperties: ['background-color']
2004
+ }
1121
2005
  }, {
1122
2006
  name: 'color.background.neutral.bold',
1123
2007
  path: ['color', 'background', 'neutral', 'bold', '[default]'],
1124
2008
  description: 'A vibrant background option for neutral UI elements, such as announcement banners.',
1125
- exampleValue: '#292A2E'
2009
+ exampleValue: '#292A2E',
2010
+ usageGuidelines: {
2011
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2012
+ cssProperties: ['background-color']
2013
+ }
1126
2014
  }, {
1127
2015
  name: 'color.background.neutral.bold.hovered',
1128
2016
  path: ['color', 'background', 'neutral', 'bold', 'hovered'],
1129
2017
  description: 'Hovered state of color.background.neutral.bold',
1130
- exampleValue: '#3B3D42'
2018
+ exampleValue: '#3B3D42',
2019
+ usageGuidelines: {
2020
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2021
+ cssProperties: ['background-color']
2022
+ }
1131
2023
  }, {
1132
2024
  name: 'color.background.neutral.bold.pressed',
1133
2025
  path: ['color', 'background', 'neutral', 'bold', 'pressed'],
1134
2026
  description: 'Pressed state of color.background.neutral.bold',
1135
- exampleValue: '#505258'
2027
+ exampleValue: '#505258',
2028
+ usageGuidelines: {
2029
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2030
+ cssProperties: ['background-color']
2031
+ }
1136
2032
  }, {
1137
2033
  name: 'color.background.selected',
1138
2034
  path: ['color', 'background', 'selected', '[default]', '[default]'],
1139
2035
  description: 'Use for the background of elements in a selected state, such as in opened dropdown buttons.',
1140
- exampleValue: '#E9F2FE'
2036
+ exampleValue: '#E9F2FE',
2037
+ usageGuidelines: {
2038
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2039
+ cssProperties: ['background-color']
2040
+ }
1141
2041
  }, {
1142
2042
  name: 'color.background.selected.hovered',
1143
2043
  path: ['color', 'background', 'selected', '[default]', 'hovered'],
1144
2044
  description: 'Hovered state for color.background.selected',
1145
- exampleValue: '#CFE1FD'
2045
+ exampleValue: '#CFE1FD',
2046
+ usageGuidelines: {
2047
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2048
+ cssProperties: ['background-color']
2049
+ }
1146
2050
  }, {
1147
2051
  name: 'color.background.selected.pressed',
1148
2052
  path: ['color', 'background', 'selected', '[default]', 'pressed'],
1149
2053
  description: 'Pressed state for color.background.selected',
1150
- exampleValue: '#8FB8F6'
2054
+ exampleValue: '#8FB8F6',
2055
+ usageGuidelines: {
2056
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2057
+ cssProperties: ['background-color']
2058
+ }
1151
2059
  }, {
1152
2060
  name: 'color.background.selected.bold',
1153
2061
  path: ['color', 'background', 'selected', 'bold', '[default]'],
1154
2062
  description: 'Use for the backgrounds of elements in a selected state, such as checkboxes and radio buttons.',
1155
- exampleValue: '#1868DB'
2063
+ exampleValue: '#1868DB',
2064
+ usageGuidelines: {
2065
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2066
+ cssProperties: ['background-color']
2067
+ }
1156
2068
  }, {
1157
2069
  name: 'color.background.selected.bold.hovered',
1158
2070
  path: ['color', 'background', 'selected', 'bold', 'hovered'],
1159
2071
  description: 'Hovered state of color.background.selected.bold',
1160
- exampleValue: '#1558BC'
2072
+ exampleValue: '#1558BC',
2073
+ usageGuidelines: {
2074
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2075
+ cssProperties: ['background-color']
2076
+ }
1161
2077
  }, {
1162
2078
  name: 'color.background.selected.bold.pressed',
1163
2079
  path: ['color', 'background', 'selected', 'bold', 'pressed'],
1164
2080
  description: 'Pressed state of color.background.selected.bold',
1165
- exampleValue: '#123263'
2081
+ exampleValue: '#123263',
2082
+ usageGuidelines: {
2083
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2084
+ cssProperties: ['background-color']
2085
+ }
1166
2086
  }, {
1167
2087
  name: 'color.background.brand.subtlest',
1168
2088
  path: ['color', 'background', 'brand', 'subtlest', '[default]'],
1169
2089
  description: 'Use for the background of elements used to reinforce our brand, but with less emphasis.',
1170
- exampleValue: '#E9F2FE'
2090
+ exampleValue: '#E9F2FE',
2091
+ usageGuidelines: {
2092
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2093
+ cssProperties: ['background-color']
2094
+ }
1171
2095
  }, {
1172
2096
  name: 'color.background.brand.subtlest.hovered',
1173
2097
  path: ['color', 'background', 'brand', 'subtlest', 'hovered'],
1174
2098
  description: 'Hovered state of color.background.brand.subtlest.',
1175
- exampleValue: '#CFE1FD'
2099
+ exampleValue: '#CFE1FD',
2100
+ usageGuidelines: {
2101
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2102
+ cssProperties: ['background-color']
2103
+ }
1176
2104
  }, {
1177
2105
  name: 'color.background.brand.subtlest.pressed',
1178
2106
  path: ['color', 'background', 'brand', 'subtlest', 'pressed'],
1179
2107
  description: 'Pressed state of color.background.brand.subtlest',
1180
- exampleValue: '#ADCBFB'
2108
+ exampleValue: '#ADCBFB',
2109
+ usageGuidelines: {
2110
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2111
+ cssProperties: ['background-color']
2112
+ }
1181
2113
  }, {
1182
2114
  name: 'color.background.brand.bold',
1183
2115
  path: ['color', 'background', 'brand', 'bold', '[default]'],
1184
2116
  description: 'Use for the background of elements used to reinforce our brand, but with more emphasis.',
1185
- exampleValue: '#1868DB'
2117
+ exampleValue: '#1868DB',
2118
+ usageGuidelines: {
2119
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2120
+ cssProperties: ['background-color']
2121
+ }
1186
2122
  }, {
1187
2123
  name: 'color.background.brand.bold.hovered',
1188
2124
  path: ['color', 'background', 'brand', 'bold', 'hovered'],
1189
2125
  description: 'Hovered state of color.background.brand.bold.',
1190
- exampleValue: '#1558BC'
2126
+ exampleValue: '#1558BC',
2127
+ usageGuidelines: {
2128
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2129
+ cssProperties: ['background-color']
2130
+ }
1191
2131
  }, {
1192
2132
  name: 'color.background.brand.bold.pressed',
1193
2133
  path: ['color', 'background', 'brand', 'bold', 'pressed'],
1194
2134
  description: 'Pressed state of color.background.brand.bold.',
1195
- exampleValue: '#144794'
2135
+ exampleValue: '#144794',
2136
+ usageGuidelines: {
2137
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2138
+ cssProperties: ['background-color']
2139
+ }
1196
2140
  }, {
1197
2141
  name: 'color.background.brand.boldest',
1198
2142
  path: ['color', 'background', 'brand', 'boldest', '[default]'],
1199
2143
  description: 'Use for the background of elements used to reinforce our brand, that need to stand out a lot.',
1200
- exampleValue: '#1C2B42'
2144
+ exampleValue: '#1C2B42',
2145
+ usageGuidelines: {
2146
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2147
+ cssProperties: ['background-color']
2148
+ }
1201
2149
  }, {
1202
2150
  name: 'color.background.brand.boldest.hovered',
1203
2151
  path: ['color', 'background', 'brand', 'boldest', 'hovered'],
1204
2152
  description: 'Hovered state of color.background.brand.boldest.',
1205
- exampleValue: '#123263'
2153
+ exampleValue: '#123263',
2154
+ usageGuidelines: {
2155
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2156
+ cssProperties: ['background-color']
2157
+ }
1206
2158
  }, {
1207
2159
  name: 'color.background.brand.boldest.pressed',
1208
2160
  path: ['color', 'background', 'brand', 'boldest', 'pressed'],
1209
2161
  description: 'Pressed state of color.background.brand.boldest.',
1210
- exampleValue: '#144794'
2162
+ exampleValue: '#144794',
2163
+ usageGuidelines: {
2164
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2165
+ cssProperties: ['background-color']
2166
+ }
1211
2167
  }, {
1212
2168
  name: 'color.background.danger',
1213
2169
  path: ['color', 'background', 'danger', '[default]', '[default]'],
1214
2170
  description: 'Use for backgrounds communicating critical information, such in error section messages.',
1215
- exampleValue: '#FFECEB'
2171
+ exampleValue: '#FFECEB',
2172
+ usageGuidelines: {
2173
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2174
+ cssProperties: ['background-color']
2175
+ }
1216
2176
  }, {
1217
2177
  name: 'color.background.danger.hovered',
1218
2178
  path: ['color', 'background', 'danger', '[default]', 'hovered'],
1219
2179
  description: 'Hovered state for color.background.danger',
1220
- exampleValue: '#FFD5D2'
2180
+ exampleValue: '#FFD5D2',
2181
+ usageGuidelines: {
2182
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2183
+ cssProperties: ['background-color']
2184
+ }
1221
2185
  }, {
1222
2186
  name: 'color.background.danger.pressed',
1223
2187
  path: ['color', 'background', 'danger', '[default]', 'pressed'],
1224
2188
  description: 'Pressed state for color.background.danger',
1225
- exampleValue: '#FFB8B2'
2189
+ exampleValue: '#FFB8B2',
2190
+ usageGuidelines: {
2191
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2192
+ cssProperties: ['background-color']
2193
+ }
1226
2194
  }, {
1227
2195
  name: 'color.background.danger.subtler',
1228
2196
  path: ['color', 'background', 'danger', 'subtler', '[default]'],
1229
2197
  description: 'Use for backgrounds of danger lozenges and badges to ensure accessibility and desired visual appearance.',
1230
- exampleValue: '#FFD5D2'
2198
+ exampleValue: '#FFD5D2',
2199
+ usageGuidelines: {
2200
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2201
+ cssProperties: ['background-color']
2202
+ }
1231
2203
  }, {
1232
2204
  name: 'color.background.danger.subtler.hovered',
1233
2205
  path: ['color', 'background', 'danger', 'subtler', 'hovered'],
1234
2206
  description: 'Hovered state of color.background.danger.subtler',
1235
- exampleValue: '#FFB8B2'
2207
+ exampleValue: '#FFB8B2',
2208
+ usageGuidelines: {
2209
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2210
+ cssProperties: ['background-color']
2211
+ }
1236
2212
  }, {
1237
2213
  name: 'color.background.danger.subtler.pressed',
1238
2214
  path: ['color', 'background', 'danger', 'subtler', 'pressed'],
1239
2215
  description: 'Pressed state of color.background.danger.subtler',
1240
- exampleValue: '#FD9891'
2216
+ exampleValue: '#FD9891',
2217
+ usageGuidelines: {
2218
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2219
+ cssProperties: ['background-color']
2220
+ }
1241
2221
  }, {
1242
2222
  name: 'color.background.danger.bold',
1243
2223
  path: ['color', 'background', 'danger', 'bold', '[default]'],
1244
2224
  description: 'A vibrant background option for communicating critical information, such as in danger buttons and error banners.',
1245
- exampleValue: '#C9372C'
2225
+ exampleValue: '#C9372C',
2226
+ usageGuidelines: {
2227
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2228
+ cssProperties: ['background-color']
2229
+ }
1246
2230
  }, {
1247
2231
  name: 'color.background.danger.bold.hovered',
1248
2232
  path: ['color', 'background', 'danger', 'bold', 'hovered'],
1249
2233
  description: 'Hovered state of color.background.danger.bold',
1250
- exampleValue: '#AE2E24'
2234
+ exampleValue: '#AE2E24',
2235
+ usageGuidelines: {
2236
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2237
+ cssProperties: ['background-color']
2238
+ }
1251
2239
  }, {
1252
2240
  name: 'color.background.danger.bold.pressed',
1253
2241
  path: ['color', 'background', 'danger', 'bold', 'pressed'],
1254
2242
  description: 'Pressed state of color.background.danger.bold',
1255
- exampleValue: '#872821'
2243
+ exampleValue: '#872821',
2244
+ usageGuidelines: {
2245
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2246
+ cssProperties: ['background-color']
2247
+ }
1256
2248
  }, {
1257
2249
  name: 'color.background.warning',
1258
2250
  path: ['color', 'background', 'warning', '[default]', '[default]'],
1259
2251
  description: 'Use for backgrounds communicating caution, such as in warning section messages.',
1260
- exampleValue: '#FFF5DB'
2252
+ exampleValue: '#FFF5DB',
2253
+ usageGuidelines: {
2254
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2255
+ cssProperties: ['background-color']
2256
+ }
1261
2257
  }, {
1262
2258
  name: 'color.background.warning.hovered',
1263
2259
  path: ['color', 'background', 'warning', '[default]', 'hovered'],
1264
2260
  description: 'Hovered state for color.background.warning',
1265
- exampleValue: '#FCE4A6'
2261
+ exampleValue: '#FCE4A6',
2262
+ usageGuidelines: {
2263
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2264
+ cssProperties: ['background-color']
2265
+ }
1266
2266
  }, {
1267
2267
  name: 'color.background.warning.pressed',
1268
2268
  path: ['color', 'background', 'warning', '[default]', 'pressed'],
1269
2269
  description: 'Pressed state for color.background.warning',
1270
- exampleValue: '#FBD779'
2270
+ exampleValue: '#FBD779',
2271
+ usageGuidelines: {
2272
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2273
+ cssProperties: ['background-color']
2274
+ }
1271
2275
  }, {
1272
2276
  name: 'color.background.warning.subtler',
1273
2277
  path: ['color', 'background', 'warning', 'subtler', '[default]'],
1274
2278
  description: 'Use for backgrounds of warning lozenges and badges to ensure accessibility and desired visual appearance.',
1275
- exampleValue: '#FCE4A6'
2279
+ exampleValue: '#FCE4A6',
2280
+ usageGuidelines: {
2281
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2282
+ cssProperties: ['background-color']
2283
+ }
1276
2284
  }, {
1277
2285
  name: 'color.background.warning.subtler.hovered',
1278
2286
  path: ['color', 'background', 'warning', 'subtler', 'hovered'],
1279
2287
  description: 'Hovered state of color.background.warning.subtler',
1280
- exampleValue: '#FBD779'
2288
+ exampleValue: '#FBD779',
2289
+ usageGuidelines: {
2290
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2291
+ cssProperties: ['background-color']
2292
+ }
1281
2293
  }, {
1282
2294
  name: 'color.background.warning.subtler.pressed',
1283
2295
  path: ['color', 'background', 'warning', 'subtler', 'pressed'],
1284
2296
  description: 'Pressed state of color.background.warning.subtler',
1285
- exampleValue: '#FBC828'
2297
+ exampleValue: '#FBC828',
2298
+ usageGuidelines: {
2299
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2300
+ cssProperties: ['background-color']
2301
+ }
1286
2302
  }, {
1287
2303
  name: 'color.background.warning.bold',
1288
2304
  path: ['color', 'background', 'warning', 'bold', '[default]'],
1289
2305
  description: 'A vibrant background option for communicating caution, such as in warning buttons and warning banners.',
1290
- exampleValue: '#FBC828'
2306
+ exampleValue: '#FBC828',
2307
+ usageGuidelines: {
2308
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2309
+ cssProperties: ['background-color']
2310
+ }
1291
2311
  }, {
1292
2312
  name: 'color.background.warning.bold.hovered',
1293
2313
  path: ['color', 'background', 'warning', 'bold', 'hovered'],
1294
2314
  description: 'Hovered state of color.background.warning.bold',
1295
- exampleValue: '#FCA700'
2315
+ exampleValue: '#FCA700',
2316
+ usageGuidelines: {
2317
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2318
+ cssProperties: ['background-color']
2319
+ }
1296
2320
  }, {
1297
2321
  name: 'color.background.warning.bold.pressed',
1298
2322
  path: ['color', 'background', 'warning', 'bold', 'pressed'],
1299
2323
  description: 'Pressed state of color.background.warning.bold',
1300
- exampleValue: '#F68909'
2324
+ exampleValue: '#F68909',
2325
+ usageGuidelines: {
2326
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2327
+ cssProperties: ['background-color']
2328
+ }
1301
2329
  }, {
1302
2330
  name: 'color.background.success',
1303
2331
  path: ['color', 'background', 'success', '[default]', '[default]'],
1304
2332
  description: 'Use for backgrounds communicating a favorable outcome, such as in success section messages.',
1305
- exampleValue: '#EFFFD6'
2333
+ exampleValue: '#EFFFD6',
2334
+ usageGuidelines: {
2335
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2336
+ cssProperties: ['background-color']
2337
+ }
1306
2338
  }, {
1307
2339
  name: 'color.background.success.hovered',
1308
2340
  path: ['color', 'background', 'success', '[default]', 'hovered'],
1309
2341
  description: 'Hovered state for color.background.success',
1310
- exampleValue: '#D3F1A7'
2342
+ exampleValue: '#D3F1A7',
2343
+ usageGuidelines: {
2344
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2345
+ cssProperties: ['background-color']
2346
+ }
1311
2347
  }, {
1312
2348
  name: 'color.background.success.pressed',
1313
2349
  path: ['color', 'background', 'success', '[default]', 'pressed'],
1314
2350
  description: 'Pressed state for color.background.success',
1315
- exampleValue: '#BDE97C'
2351
+ exampleValue: '#BDE97C',
2352
+ usageGuidelines: {
2353
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2354
+ cssProperties: ['background-color']
2355
+ }
1316
2356
  }, {
1317
2357
  name: 'color.background.success.subtler',
1318
2358
  path: ['color', 'background', 'success', 'subtler', '[default]'],
1319
2359
  description: 'Use for backgrounds of success lozenges and badges to ensure accessibility and desired visual appearance.',
1320
- exampleValue: '#D3F1A7'
2360
+ exampleValue: '#D3F1A7',
2361
+ usageGuidelines: {
2362
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2363
+ cssProperties: ['background-color']
2364
+ }
1321
2365
  }, {
1322
2366
  name: 'color.background.success.subtler.hovered',
1323
2367
  path: ['color', 'background', 'success', 'subtler', 'hovered'],
1324
2368
  description: 'Hovered state of color.background.success.subtler',
1325
- exampleValue: '#BDE97C'
2369
+ exampleValue: '#BDE97C',
2370
+ usageGuidelines: {
2371
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2372
+ cssProperties: ['background-color']
2373
+ }
1326
2374
  }, {
1327
2375
  name: 'color.background.success.subtler.pressed',
1328
2376
  path: ['color', 'background', 'success', 'subtler', 'pressed'],
1329
2377
  description: 'Pressed state of color.background.success.subtler',
1330
- exampleValue: '#B3DF72'
2378
+ exampleValue: '#B3DF72',
2379
+ usageGuidelines: {
2380
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2381
+ cssProperties: ['background-color']
2382
+ }
1331
2383
  }, {
1332
2384
  name: 'color.background.success.bold',
1333
2385
  path: ['color', 'background', 'success', 'bold', '[default]'],
1334
2386
  description: 'A vibrant background option for communicating a favorable outcome, such as in checked toggles.',
1335
- exampleValue: '#5B7F24'
2387
+ exampleValue: '#5B7F24',
2388
+ usageGuidelines: {
2389
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2390
+ cssProperties: ['background-color']
2391
+ }
1336
2392
  }, {
1337
2393
  name: 'color.background.success.bold.hovered',
1338
2394
  path: ['color', 'background', 'success', 'bold', 'hovered'],
1339
2395
  description: 'Hovered state of color.background.success.bold',
1340
- exampleValue: '#4C6B1F'
2396
+ exampleValue: '#4C6B1F',
2397
+ usageGuidelines: {
2398
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2399
+ cssProperties: ['background-color']
2400
+ }
1341
2401
  }, {
1342
2402
  name: 'color.background.success.bold.pressed',
1343
2403
  path: ['color', 'background', 'success', 'bold', 'pressed'],
1344
2404
  description: 'Pressed state of color.background.success.bold',
1345
- exampleValue: '#3F5224'
2405
+ exampleValue: '#3F5224',
2406
+ usageGuidelines: {
2407
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2408
+ cssProperties: ['background-color']
2409
+ }
1346
2410
  }, {
1347
2411
  name: 'color.background.discovery',
1348
2412
  path: ['color', 'background', 'discovery', '[default]', '[default]'],
1349
2413
  description: 'Use for backgrounds communicating change or something new, such as in discovery section messages.',
1350
- exampleValue: '#F8EEFE'
2414
+ exampleValue: '#F8EEFE',
2415
+ usageGuidelines: {
2416
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2417
+ cssProperties: ['background-color']
2418
+ }
1351
2419
  }, {
1352
2420
  name: 'color.background.discovery.hovered',
1353
2421
  path: ['color', 'background', 'discovery', '[default]', 'hovered'],
1354
2422
  description: 'Hover state for color.background.discovery',
1355
- exampleValue: '#EED7FC'
2423
+ exampleValue: '#EED7FC',
2424
+ usageGuidelines: {
2425
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2426
+ cssProperties: ['background-color']
2427
+ }
1356
2428
  }, {
1357
2429
  name: 'color.background.discovery.pressed',
1358
2430
  path: ['color', 'background', 'discovery', '[default]', 'pressed'],
1359
2431
  description: 'Pressed state for color.background.discovery',
1360
- exampleValue: '#E3BDFA'
2432
+ exampleValue: '#E3BDFA',
2433
+ usageGuidelines: {
2434
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2435
+ cssProperties: ['background-color']
2436
+ }
1361
2437
  }, {
1362
2438
  name: 'color.background.discovery.subtler',
1363
2439
  path: ['color', 'background', 'discovery', 'subtler', '[default]'],
1364
2440
  description: 'Use for backgrounds of discovery lozenges and badges to ensure accessibility and desired visual appearance.',
1365
- exampleValue: '#EED7FC'
2441
+ exampleValue: '#EED7FC',
2442
+ usageGuidelines: {
2443
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2444
+ cssProperties: ['background-color']
2445
+ }
1366
2446
  }, {
1367
2447
  name: 'color.background.discovery.subtler.hovered',
1368
2448
  path: ['color', 'background', 'discovery', 'subtler', 'hovered'],
1369
2449
  description: 'Hovered state of color.background.discovery.subtler',
1370
- exampleValue: '#E3BDFA'
2450
+ exampleValue: '#E3BDFA',
2451
+ usageGuidelines: {
2452
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2453
+ cssProperties: ['background-color']
2454
+ }
1371
2455
  }, {
1372
2456
  name: 'color.background.discovery.subtler.pressed',
1373
2457
  path: ['color', 'background', 'discovery', 'subtler', 'pressed'],
1374
2458
  description: 'Pressed state of color.background.discovery.subtler',
1375
- exampleValue: '#D8A0F7'
2459
+ exampleValue: '#D8A0F7',
2460
+ usageGuidelines: {
2461
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2462
+ cssProperties: ['background-color']
2463
+ }
1376
2464
  }, {
1377
2465
  name: 'color.background.discovery.bold',
1378
2466
  path: ['color', 'background', 'discovery', 'bold', '[default]'],
1379
2467
  description: 'A vibrant background option communicating change or something new, such as in onboarding spotlights.',
1380
- exampleValue: '#964AC0'
2468
+ exampleValue: '#964AC0',
2469
+ usageGuidelines: {
2470
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2471
+ cssProperties: ['background-color']
2472
+ }
1381
2473
  }, {
1382
2474
  name: 'color.background.discovery.bold.hovered',
1383
2475
  path: ['color', 'background', 'discovery', 'bold', 'hovered'],
1384
2476
  description: 'Hovered state of color.background.discovery.bold',
1385
- exampleValue: '#803FA5'
2477
+ exampleValue: '#803FA5',
2478
+ usageGuidelines: {
2479
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2480
+ cssProperties: ['background-color']
2481
+ }
1386
2482
  }, {
1387
2483
  name: 'color.background.discovery.bold.pressed',
1388
2484
  path: ['color', 'background', 'discovery', 'bold', 'pressed'],
1389
2485
  description: 'Pressed state of color.background.discovery.bold',
1390
- exampleValue: '#673286'
2486
+ exampleValue: '#673286',
2487
+ usageGuidelines: {
2488
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2489
+ cssProperties: ['background-color']
2490
+ }
1391
2491
  }, {
1392
2492
  name: 'color.background.information',
1393
2493
  path: ['color', 'background', 'information', '[default]', '[default]'],
1394
2494
  description: 'Use for backgrounds communicating information or something in-progress, such as in information section messages.',
1395
- exampleValue: '#E9F2FE'
2495
+ exampleValue: '#E9F2FE',
2496
+ usageGuidelines: {
2497
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2498
+ cssProperties: ['background-color']
2499
+ }
1396
2500
  }, {
1397
2501
  name: 'color.background.information.hovered',
1398
2502
  path: ['color', 'background', 'information', '[default]', 'hovered'],
1399
2503
  description: 'Hovered state of color.background.information',
1400
- exampleValue: '#CFE1FD'
2504
+ exampleValue: '#CFE1FD',
2505
+ usageGuidelines: {
2506
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2507
+ cssProperties: ['background-color']
2508
+ }
1401
2509
  }, {
1402
2510
  name: 'color.background.information.pressed',
1403
2511
  path: ['color', 'background', 'information', '[default]', 'pressed'],
1404
2512
  description: 'Pressed state of color.background.information',
1405
- exampleValue: '#ADCBFB'
2513
+ exampleValue: '#ADCBFB',
2514
+ usageGuidelines: {
2515
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2516
+ cssProperties: ['background-color']
2517
+ }
1406
2518
  }, {
1407
2519
  name: 'color.background.information.subtler',
1408
2520
  path: ['color', 'background', 'information', 'subtler', '[default]'],
1409
2521
  description: 'Use for backgrounds of information lozenges and badges to ensure accessibility and desired visual appearance.',
1410
- exampleValue: '#CFE1FD'
2522
+ exampleValue: '#CFE1FD',
2523
+ usageGuidelines: {
2524
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2525
+ cssProperties: ['background-color']
2526
+ }
1411
2527
  }, {
1412
2528
  name: 'color.background.information.subtler.hovered',
1413
2529
  path: ['color', 'background', 'information', 'subtler', 'hovered'],
1414
2530
  description: 'Hovered state of color.background.information.subtler',
1415
- exampleValue: '#ADCBFB'
2531
+ exampleValue: '#ADCBFB',
2532
+ usageGuidelines: {
2533
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2534
+ cssProperties: ['background-color']
2535
+ }
1416
2536
  }, {
1417
2537
  name: 'color.background.information.subtler.pressed',
1418
2538
  path: ['color', 'background', 'information', 'subtler', 'pressed'],
1419
2539
  description: 'Pressed state of color.background.information.subtler',
1420
- exampleValue: '#8FB8F6'
2540
+ exampleValue: '#8FB8F6',
2541
+ usageGuidelines: {
2542
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2543
+ cssProperties: ['background-color']
2544
+ }
1421
2545
  }, {
1422
2546
  name: 'color.background.information.bold',
1423
2547
  path: ['color', 'background', 'information', 'bold', '[default]'],
1424
2548
  description: 'A vibrant background option for communicating information or something in-progress.',
1425
- exampleValue: '#1868DB'
2549
+ exampleValue: '#1868DB',
2550
+ usageGuidelines: {
2551
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2552
+ cssProperties: ['background-color']
2553
+ }
1426
2554
  }, {
1427
2555
  name: 'color.background.information.bold.hovered',
1428
2556
  path: ['color', 'background', 'information', 'bold', 'hovered'],
1429
2557
  description: 'Hovered state of color.background.information.bold',
1430
- exampleValue: '#1558BC'
2558
+ exampleValue: '#1558BC',
2559
+ usageGuidelines: {
2560
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2561
+ cssProperties: ['background-color']
2562
+ }
1431
2563
  }, {
1432
2564
  name: 'color.background.information.bold.pressed',
1433
2565
  path: ['color', 'background', 'information', 'bold', 'pressed'],
1434
2566
  description: 'Pressed state of color.background.information.bold',
1435
- exampleValue: '#144794'
2567
+ exampleValue: '#144794',
2568
+ usageGuidelines: {
2569
+ usage: 'The color for backgrounds. Use for areas behind content (e.g. color.background.neutral, color.background.selected)',
2570
+ cssProperties: ['background-color']
2571
+ }
1436
2572
  }, {
1437
2573
  name: 'color.blanket',
1438
2574
  path: ['color', 'blanket', '[default]'],
1439
2575
  description: 'Use for the screen overlay that appears with modal dialogs',
1440
- exampleValue: '#050C1F75'
2576
+ exampleValue: '#050C1F75',
2577
+ usageGuidelines: {
2578
+ usage: 'The color for overlay "blankets" such as modals/dimmers/overlays (e.g. color.blanket)',
2579
+ cssProperties: ['background-color']
2580
+ }
1441
2581
  }, {
1442
2582
  name: 'color.blanket.selected',
1443
2583
  path: ['color', 'blanket', 'selected'],
1444
2584
  description: "Use as an overlay to communicate selected states when a simple background color change isn't possible, such as in Editor block elements",
1445
- exampleValue: '#388BFF14'
2585
+ exampleValue: '#388BFF14',
2586
+ usageGuidelines: {
2587
+ usage: 'The color for overlay "blankets" such as modals/dimmers/overlays (e.g. color.blanket)',
2588
+ cssProperties: ['background-color']
2589
+ }
1446
2590
  }, {
1447
2591
  name: 'color.blanket.danger',
1448
2592
  path: ['color', 'blanket', 'danger'],
1449
2593
  description: "Use as an overlay to communicate danger states when a simple background color change isn't possible, such as deletion of Editor block elements",
1450
- exampleValue: '#EF5C4814'
2594
+ exampleValue: '#EF5C4814',
2595
+ usageGuidelines: {
2596
+ usage: 'The color for overlay "blankets" such as modals/dimmers/overlays (e.g. color.blanket)',
2597
+ cssProperties: ['background-color']
2598
+ }
1451
2599
  }, {
1452
2600
  name: 'color.interaction.hovered',
1453
2601
  path: ['color', 'interaction', 'hovered'],
1454
2602
  description: 'Use as a background overlay for elements in a hovered state when their background color cannot change, such as avatars.',
1455
- exampleValue: '#00000029'
2603
+ exampleValue: '#00000029',
2604
+ usageGuidelines: {
2605
+ usage: 'Transparent interaction states for use over elements when their background color cannot change, such as images and avatars.',
2606
+ cssProperties: ['background-color', 'border-color']
2607
+ }
1456
2608
  }, {
1457
2609
  name: 'color.interaction.pressed',
1458
2610
  path: ['color', 'interaction', 'pressed'],
1459
2611
  description: 'Use as a background overlay for elements in a pressed state when their background color cannot change, such as avatars.',
1460
- exampleValue: '#00000052'
2612
+ exampleValue: '#00000052',
2613
+ usageGuidelines: {
2614
+ usage: 'Transparent interaction states for use over elements when their background color cannot change, such as images and avatars.',
2615
+ cssProperties: ['background-color', 'border-color']
2616
+ }
1461
2617
  }, {
1462
2618
  name: 'color.skeleton',
1463
2619
  path: ['color', 'skeleton', '[default]'],
1464
2620
  description: 'Use for skeleton loading states',
1465
- exampleValue: '#0515240F'
2621
+ exampleValue: '#0515240F',
2622
+ usageGuidelines: {
2623
+ usage: 'The color for skeleton/loading placeholders (e.g. color.skeleton)',
2624
+ cssProperties: ['background-color']
2625
+ }
1466
2626
  }, {
1467
2627
  name: 'color.skeleton.subtle',
1468
2628
  path: ['color', 'skeleton', 'subtle'],
1469
2629
  description: 'Use for the pulse or shimmer effect in skeleton loading states',
1470
- exampleValue: '#17171708'
2630
+ exampleValue: '#17171708',
2631
+ usageGuidelines: {
2632
+ usage: 'The color for skeleton/loading placeholders (e.g. color.skeleton)',
2633
+ cssProperties: ['background-color']
2634
+ }
1471
2635
  }, {
1472
2636
  name: 'color.chart.categorical.1',
1473
2637
  path: ['color', 'chart', 'categorical', '1', '[default]'],
1474
2638
  description: 'For data visualisation only. Follow numbered sequence.',
1475
- exampleValue: '#357DE8'
2639
+ exampleValue: '#357DE8',
2640
+ usageGuidelines: {
2641
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2642
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2643
+ }
1476
2644
  }, {
1477
2645
  name: 'color.chart.categorical.1.hovered',
1478
2646
  path: ['color', 'chart', 'categorical', '1', 'hovered'],
1479
2647
  description: 'Hovered state of color.chart.categorical.1.',
1480
- exampleValue: '#1868DB'
2648
+ exampleValue: '#1868DB',
2649
+ usageGuidelines: {
2650
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2651
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2652
+ }
1481
2653
  }, {
1482
2654
  name: 'color.chart.categorical.2',
1483
2655
  path: ['color', 'chart', 'categorical', '2', '[default]'],
1484
2656
  description: 'For data visualisation only. Follow numbered sequence.',
1485
- exampleValue: '#82B536'
2657
+ exampleValue: '#82B536',
2658
+ usageGuidelines: {
2659
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2660
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2661
+ }
1486
2662
  }, {
1487
2663
  name: 'color.chart.categorical.2.hovered',
1488
2664
  path: ['color', 'chart', 'categorical', '2', 'hovered'],
1489
2665
  description: 'Hovered state of color.chart.categorical.2.',
1490
- exampleValue: '#6A9A23'
2666
+ exampleValue: '#6A9A23',
2667
+ usageGuidelines: {
2668
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2669
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2670
+ }
1491
2671
  }, {
1492
2672
  name: 'color.chart.categorical.3',
1493
2673
  path: ['color', 'chart', 'categorical', '3', '[default]'],
1494
2674
  description: 'For data visualisation only. Follow numbered sequence.',
1495
- exampleValue: '#BF63F3'
2675
+ exampleValue: '#BF63F3',
2676
+ usageGuidelines: {
2677
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2678
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2679
+ }
1496
2680
  }, {
1497
2681
  name: 'color.chart.categorical.3.hovered',
1498
2682
  path: ['color', 'chart', 'categorical', '3', 'hovered'],
1499
2683
  description: 'Hovered state of color.chart.categorical.3.',
1500
- exampleValue: '#AF59E1'
2684
+ exampleValue: '#AF59E1',
2685
+ usageGuidelines: {
2686
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2687
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2688
+ }
1501
2689
  }, {
1502
2690
  name: 'color.chart.categorical.4',
1503
2691
  path: ['color', 'chart', 'categorical', '4', '[default]'],
1504
2692
  description: 'For data visualisation only. Follow numbered sequence.',
1505
- exampleValue: '#F68909'
2693
+ exampleValue: '#F68909',
2694
+ usageGuidelines: {
2695
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2696
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2697
+ }
1506
2698
  }, {
1507
2699
  name: 'color.chart.categorical.4.hovered',
1508
2700
  path: ['color', 'chart', 'categorical', '4', 'hovered'],
1509
2701
  description: 'Hovered state of color.chart.categorical.4.',
1510
- exampleValue: '#E06C00'
2702
+ exampleValue: '#E06C00',
2703
+ usageGuidelines: {
2704
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2705
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2706
+ }
1511
2707
  }, {
1512
2708
  name: 'color.chart.categorical.5',
1513
2709
  path: ['color', 'chart', 'categorical', '5', '[default]'],
1514
2710
  description: 'For data visualisation only. Follow numbered sequence.',
1515
- exampleValue: '#1558BC'
2711
+ exampleValue: '#1558BC',
2712
+ usageGuidelines: {
2713
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2714
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2715
+ }
1516
2716
  }, {
1517
2717
  name: 'color.chart.categorical.5.hovered',
1518
2718
  path: ['color', 'chart', 'categorical', '5', 'hovered'],
1519
2719
  description: 'Hovered state of color.chart.categorical.5.',
1520
- exampleValue: '#123263'
2720
+ exampleValue: '#123263',
2721
+ usageGuidelines: {
2722
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2723
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2724
+ }
1521
2725
  }, {
1522
2726
  name: 'color.chart.categorical.6',
1523
2727
  path: ['color', 'chart', 'categorical', '6', '[default]'],
1524
2728
  description: 'For data visualisation only. Follow numbered sequence.',
1525
- exampleValue: '#964AC0'
2729
+ exampleValue: '#964AC0',
2730
+ usageGuidelines: {
2731
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2732
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2733
+ }
1526
2734
  }, {
1527
2735
  name: 'color.chart.categorical.6.hovered',
1528
2736
  path: ['color', 'chart', 'categorical', '6', 'hovered'],
1529
2737
  description: 'Hovered state of color.chart.categorical.6.',
1530
- exampleValue: '#803FA5'
2738
+ exampleValue: '#803FA5',
2739
+ usageGuidelines: {
2740
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2741
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2742
+ }
1531
2743
  }, {
1532
2744
  name: 'color.chart.categorical.7',
1533
2745
  path: ['color', 'chart', 'categorical', '7', '[default]'],
1534
2746
  description: 'For data visualisation only. Follow numbered sequence.',
1535
- exampleValue: '#42B2D7'
2747
+ exampleValue: '#42B2D7',
2748
+ usageGuidelines: {
2749
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2750
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2751
+ }
1536
2752
  }, {
1537
2753
  name: 'color.chart.categorical.7.hovered',
1538
2754
  path: ['color', 'chart', 'categorical', '7', 'hovered'],
1539
2755
  description: 'Hovered state of color.chart.categorical.7.',
1540
- exampleValue: '#2898BD'
2756
+ exampleValue: '#2898BD',
2757
+ usageGuidelines: {
2758
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2759
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2760
+ }
1541
2761
  }, {
1542
2762
  name: 'color.chart.categorical.8',
1543
2763
  path: ['color', 'chart', 'categorical', '8', '[default]'],
1544
2764
  description: 'For data visualisation only. Follow numbered sequence.',
1545
- exampleValue: '#BD5B00'
2765
+ exampleValue: '#BD5B00',
2766
+ usageGuidelines: {
2767
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2768
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2769
+ }
1546
2770
  }, {
1547
2771
  name: 'color.chart.categorical.8.hovered',
1548
2772
  path: ['color', 'chart', 'categorical', '8', 'hovered'],
1549
2773
  description: 'Hovered state of color.chart.categorical.8.',
1550
- exampleValue: '#7A3B00'
2774
+ exampleValue: '#7A3B00',
2775
+ usageGuidelines: {
2776
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2777
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2778
+ }
1551
2779
  }, {
1552
2780
  name: 'color.chart.lime.bold',
1553
2781
  path: ['color', 'chart', 'lime', 'bold', '[default]'],
1554
2782
  description: 'For data visualisation only.',
1555
- exampleValue: '#6A9A23'
2783
+ exampleValue: '#6A9A23',
2784
+ usageGuidelines: {
2785
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2786
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2787
+ }
1556
2788
  }, {
1557
2789
  name: 'color.chart.lime.bold.hovered',
1558
2790
  path: ['color', 'chart', 'lime', 'bold', 'hovered'],
1559
2791
  description: 'Hovered state of color.chart.lime.bold.',
1560
- exampleValue: '#5B7F24'
2792
+ exampleValue: '#5B7F24',
2793
+ usageGuidelines: {
2794
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2795
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2796
+ }
1561
2797
  }, {
1562
2798
  name: 'color.chart.lime.bolder',
1563
2799
  path: ['color', 'chart', 'lime', 'bolder', '[default]'],
1564
2800
  description: 'For data visualisation only.',
1565
- exampleValue: '#5B7F24'
2801
+ exampleValue: '#5B7F24',
2802
+ usageGuidelines: {
2803
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2804
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2805
+ }
1566
2806
  }, {
1567
2807
  name: 'color.chart.lime.bolder.hovered',
1568
2808
  path: ['color', 'chart', 'lime', 'bolder', 'hovered'],
1569
2809
  description: 'Hovered state of color.chart.lime.bolder.',
1570
- exampleValue: '#4C6B1F'
2810
+ exampleValue: '#4C6B1F',
2811
+ usageGuidelines: {
2812
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2813
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2814
+ }
1571
2815
  }, {
1572
2816
  name: 'color.chart.lime.boldest',
1573
2817
  path: ['color', 'chart', 'lime', 'boldest', '[default]'],
1574
2818
  description: 'For data visualisation only.',
1575
- exampleValue: '#4C6B1F'
2819
+ exampleValue: '#4C6B1F',
2820
+ usageGuidelines: {
2821
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2822
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2823
+ }
1576
2824
  }, {
1577
2825
  name: 'color.chart.lime.boldest.hovered',
1578
2826
  path: ['color', 'chart', 'lime', 'boldest', 'hovered'],
1579
2827
  description: 'Hovered state of color.chart.lime.boldest.',
1580
- exampleValue: '#37471F'
2828
+ exampleValue: '#37471F',
2829
+ usageGuidelines: {
2830
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2831
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2832
+ }
1581
2833
  }, {
1582
2834
  name: 'color.chart.neutral',
1583
2835
  path: ['color', 'chart', 'neutral', '[default]'],
1584
2836
  description: "A secondary color for data visualisation or to communicate 'to-do' statues.",
1585
- exampleValue: '#8C8F97'
2837
+ exampleValue: '#8C8F97',
2838
+ usageGuidelines: {
2839
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2840
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2841
+ }
1586
2842
  }, {
1587
2843
  name: 'color.chart.neutral.hovered',
1588
2844
  path: ['color', 'chart', 'neutral', 'hovered'],
1589
2845
  description: 'Hovered state of color.chart.neutral.',
1590
- exampleValue: '#7D818A'
2846
+ exampleValue: '#7D818A',
2847
+ usageGuidelines: {
2848
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2849
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2850
+ }
1591
2851
  }, {
1592
2852
  name: 'color.chart.red.bold',
1593
2853
  path: ['color', 'chart', 'red', 'bold', '[default]'],
1594
2854
  description: 'For data visualisation only.',
1595
- exampleValue: '#F15B50'
2855
+ exampleValue: '#F15B50',
2856
+ usageGuidelines: {
2857
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2858
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2859
+ }
1596
2860
  }, {
1597
2861
  name: 'color.chart.red.bold.hovered',
1598
2862
  path: ['color', 'chart', 'red', 'bold', 'hovered'],
1599
2863
  description: 'Hovered state of color.chart.red.bold.',
1600
- exampleValue: '#E2483D'
2864
+ exampleValue: '#E2483D',
2865
+ usageGuidelines: {
2866
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2867
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2868
+ }
1601
2869
  }, {
1602
2870
  name: 'color.chart.red.bolder',
1603
2871
  path: ['color', 'chart', 'red', 'bolder', '[default]'],
1604
2872
  description: 'For data visualisation only.',
1605
- exampleValue: '#E2483D'
2873
+ exampleValue: '#E2483D',
2874
+ usageGuidelines: {
2875
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2876
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2877
+ }
1606
2878
  }, {
1607
2879
  name: 'color.chart.red.bolder.hovered',
1608
2880
  path: ['color', 'chart', 'red', 'bolder', 'hovered'],
1609
2881
  description: 'Hovered state of color.chart.red.bolder.',
1610
- exampleValue: '#C9372C'
2882
+ exampleValue: '#C9372C',
2883
+ usageGuidelines: {
2884
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2885
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2886
+ }
1611
2887
  }, {
1612
2888
  name: 'color.chart.red.boldest',
1613
2889
  path: ['color', 'chart', 'red', 'boldest', '[default]'],
1614
2890
  description: 'For data visualisation only.',
1615
- exampleValue: '#AE2E24'
2891
+ exampleValue: '#AE2E24',
2892
+ usageGuidelines: {
2893
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2894
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2895
+ }
1616
2896
  }, {
1617
2897
  name: 'color.chart.red.boldest.hovered',
1618
2898
  path: ['color', 'chart', 'red', 'boldest', 'hovered'],
1619
2899
  description: 'Hovered state of color.chart.red.boldest.',
1620
- exampleValue: '#5D1F1A'
2900
+ exampleValue: '#5D1F1A',
2901
+ usageGuidelines: {
2902
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2903
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2904
+ }
1621
2905
  }, {
1622
2906
  name: 'color.chart.orange.bold',
1623
2907
  path: ['color', 'chart', 'orange', 'bold', '[default]'],
1624
2908
  description: 'For data visualisation only.',
1625
- exampleValue: '#E06C00'
2909
+ exampleValue: '#E06C00',
2910
+ usageGuidelines: {
2911
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2912
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2913
+ }
1626
2914
  }, {
1627
2915
  name: 'color.chart.orange.bold.hovered',
1628
2916
  path: ['color', 'chart', 'orange', 'bold', 'hovered'],
1629
2917
  description: 'Hovered state of color.chart.orange.bold.',
1630
- exampleValue: '#BD5B00'
2918
+ exampleValue: '#BD5B00',
2919
+ usageGuidelines: {
2920
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2921
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2922
+ }
1631
2923
  }, {
1632
2924
  name: 'color.chart.orange.bolder',
1633
2925
  path: ['color', 'chart', 'orange', 'bolder', '[default]'],
1634
2926
  description: 'For data visualisation only.',
1635
- exampleValue: '#BD5B00'
2927
+ exampleValue: '#BD5B00',
2928
+ usageGuidelines: {
2929
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2930
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2931
+ }
1636
2932
  }, {
1637
2933
  name: 'color.chart.orange.bolder.hovered',
1638
2934
  path: ['color', 'chart', 'orange', 'bolder', 'hovered'],
1639
2935
  description: 'Hovered state of color.chart.orange.bolder.',
1640
- exampleValue: '#9E4C00'
2936
+ exampleValue: '#9E4C00',
2937
+ usageGuidelines: {
2938
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2939
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2940
+ }
1641
2941
  }, {
1642
2942
  name: 'color.chart.orange.boldest',
1643
2943
  path: ['color', 'chart', 'orange', 'boldest', '[default]'],
1644
2944
  description: 'For data visualisation only.',
1645
- exampleValue: '#7A3B00'
2945
+ exampleValue: '#7A3B00',
2946
+ usageGuidelines: {
2947
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2948
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2949
+ }
1646
2950
  }, {
1647
2951
  name: 'color.chart.orange.boldest.hovered',
1648
2952
  path: ['color', 'chart', 'orange', 'boldest', 'hovered'],
1649
2953
  description: 'Hovered state of color.chart.orange.boldest.',
1650
- exampleValue: '#693200'
2954
+ exampleValue: '#693200',
2955
+ usageGuidelines: {
2956
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2957
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2958
+ }
1651
2959
  }, {
1652
2960
  name: 'color.chart.yellow.bold',
1653
2961
  path: ['color', 'chart', 'yellow', 'bold', '[default]'],
1654
2962
  description: 'For data visualisation only.',
1655
- exampleValue: '#B38600'
2963
+ exampleValue: '#B38600',
2964
+ usageGuidelines: {
2965
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2966
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2967
+ }
1656
2968
  }, {
1657
2969
  name: 'color.chart.yellow.bold.hovered',
1658
2970
  path: ['color', 'chart', 'yellow', 'bold', 'hovered'],
1659
2971
  description: 'Hovered state of color.chart.yellow.bold.',
1660
- exampleValue: '#946F00'
2972
+ exampleValue: '#946F00',
2973
+ usageGuidelines: {
2974
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2975
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2976
+ }
1661
2977
  }, {
1662
2978
  name: 'color.chart.yellow.bolder',
1663
2979
  path: ['color', 'chart', 'yellow', 'bolder', '[default]'],
1664
2980
  description: 'For data visualisation only.',
1665
- exampleValue: '#946F00'
2981
+ exampleValue: '#946F00',
2982
+ usageGuidelines: {
2983
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2984
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2985
+ }
1666
2986
  }, {
1667
2987
  name: 'color.chart.yellow.bolder.hovered',
1668
2988
  path: ['color', 'chart', 'yellow', 'bolder', 'hovered'],
1669
2989
  description: 'Hovered state of color.chart.yellow.bolder.',
1670
- exampleValue: '#7F5F01'
2990
+ exampleValue: '#7F5F01',
2991
+ usageGuidelines: {
2992
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
2993
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
2994
+ }
1671
2995
  }, {
1672
2996
  name: 'color.chart.yellow.boldest',
1673
2997
  path: ['color', 'chart', 'yellow', 'boldest', '[default]'],
1674
2998
  description: 'For data visualisation only.',
1675
- exampleValue: '#7F5F01'
2999
+ exampleValue: '#7F5F01',
3000
+ usageGuidelines: {
3001
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3002
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3003
+ }
1676
3004
  }, {
1677
3005
  name: 'color.chart.yellow.boldest.hovered',
1678
3006
  path: ['color', 'chart', 'yellow', 'boldest', 'hovered'],
1679
3007
  description: 'Hovered state of color.chart.yellow.boldest.',
1680
- exampleValue: '#533F04'
3008
+ exampleValue: '#533F04',
3009
+ usageGuidelines: {
3010
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3011
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3012
+ }
1681
3013
  }, {
1682
3014
  name: 'color.chart.green.bold',
1683
3015
  path: ['color', 'chart', 'green', 'bold', '[default]'],
1684
3016
  description: 'For data visualisation only.',
1685
- exampleValue: '#22A06B'
3017
+ exampleValue: '#22A06B',
3018
+ usageGuidelines: {
3019
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3020
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3021
+ }
1686
3022
  }, {
1687
3023
  name: 'color.chart.green.bold.hovered',
1688
3024
  path: ['color', 'chart', 'green', 'bold', 'hovered'],
1689
3025
  description: 'Hovered state of color.chart.green.bold.',
1690
- exampleValue: '#1F845A'
3026
+ exampleValue: '#1F845A',
3027
+ usageGuidelines: {
3028
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3029
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3030
+ }
1691
3031
  }, {
1692
3032
  name: 'color.chart.green.bolder',
1693
3033
  path: ['color', 'chart', 'green', 'bolder', '[default]'],
1694
3034
  description: 'For data visualisation only.',
1695
- exampleValue: '#1F845A'
3035
+ exampleValue: '#1F845A',
3036
+ usageGuidelines: {
3037
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3038
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3039
+ }
1696
3040
  }, {
1697
3041
  name: 'color.chart.green.bolder.hovered',
1698
3042
  path: ['color', 'chart', 'green', 'bolder', 'hovered'],
1699
3043
  description: 'Hovered state of color.chart.green.bolder.',
1700
- exampleValue: '#216E4E'
3044
+ exampleValue: '#216E4E',
3045
+ usageGuidelines: {
3046
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3047
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3048
+ }
1701
3049
  }, {
1702
3050
  name: 'color.chart.green.boldest',
1703
3051
  path: ['color', 'chart', 'green', 'boldest', '[default]'],
1704
3052
  description: 'For data visualisation only.',
1705
- exampleValue: '#216E4E'
3053
+ exampleValue: '#216E4E',
3054
+ usageGuidelines: {
3055
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3056
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3057
+ }
1706
3058
  }, {
1707
3059
  name: 'color.chart.green.boldest.hovered',
1708
3060
  path: ['color', 'chart', 'green', 'boldest', 'hovered'],
1709
3061
  description: 'Hovered state of color.chart.green.boldest.',
1710
- exampleValue: '#164B35'
3062
+ exampleValue: '#164B35',
3063
+ usageGuidelines: {
3064
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3065
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3066
+ }
1711
3067
  }, {
1712
3068
  name: 'color.chart.teal.bold',
1713
3069
  path: ['color', 'chart', 'teal', 'bold', '[default]'],
1714
3070
  description: 'For data visualisation only.',
1715
- exampleValue: '#2898BD'
3071
+ exampleValue: '#2898BD',
3072
+ usageGuidelines: {
3073
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3074
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3075
+ }
1716
3076
  }, {
1717
3077
  name: 'color.chart.teal.bold.hovered',
1718
3078
  path: ['color', 'chart', 'teal', 'bold', 'hovered'],
1719
3079
  description: 'Hovered state of color.chart.teal.bold.',
1720
- exampleValue: '#227D9B'
3080
+ exampleValue: '#227D9B',
3081
+ usageGuidelines: {
3082
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3083
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3084
+ }
1721
3085
  }, {
1722
3086
  name: 'color.chart.teal.bolder',
1723
3087
  path: ['color', 'chart', 'teal', 'bolder', '[default]'],
1724
3088
  description: 'For data visualisation only.',
1725
- exampleValue: '#227D9B'
3089
+ exampleValue: '#227D9B',
3090
+ usageGuidelines: {
3091
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3092
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3093
+ }
1726
3094
  }, {
1727
3095
  name: 'color.chart.teal.bolder.hovered',
1728
3096
  path: ['color', 'chart', 'teal', 'bolder', 'hovered'],
1729
3097
  description: 'Hovered state of color.chart.teal.bolder.',
1730
- exampleValue: '#206A83'
3098
+ exampleValue: '#206A83',
3099
+ usageGuidelines: {
3100
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3101
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3102
+ }
1731
3103
  }, {
1732
3104
  name: 'color.chart.teal.boldest',
1733
3105
  path: ['color', 'chart', 'teal', 'boldest', '[default]'],
1734
3106
  description: 'For data visualisation only.',
1735
- exampleValue: '#206A83'
3107
+ exampleValue: '#206A83',
3108
+ usageGuidelines: {
3109
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3110
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3111
+ }
1736
3112
  }, {
1737
3113
  name: 'color.chart.teal.boldest.hovered',
1738
3114
  path: ['color', 'chart', 'teal', 'boldest', 'hovered'],
1739
3115
  description: 'Hovered state of color.chart.teal.boldest.',
1740
- exampleValue: '#164555'
3116
+ exampleValue: '#164555',
3117
+ usageGuidelines: {
3118
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3119
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3120
+ }
1741
3121
  }, {
1742
3122
  name: 'color.chart.blue.bold',
1743
3123
  path: ['color', 'chart', 'blue', 'bold', '[default]'],
1744
3124
  description: 'For data visualisation only.',
1745
- exampleValue: '#4688EC'
3125
+ exampleValue: '#4688EC',
3126
+ usageGuidelines: {
3127
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3128
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3129
+ }
1746
3130
  }, {
1747
3131
  name: 'color.chart.blue.bold.hovered',
1748
3132
  path: ['color', 'chart', 'blue', 'bold', 'hovered'],
1749
3133
  description: 'Hovered state of color.chart.blue.bold.',
1750
- exampleValue: '#357DE8'
3134
+ exampleValue: '#357DE8',
3135
+ usageGuidelines: {
3136
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3137
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3138
+ }
1751
3139
  }, {
1752
3140
  name: 'color.chart.blue.bolder',
1753
3141
  path: ['color', 'chart', 'blue', 'bolder', '[default]'],
1754
3142
  description: 'For data visualisation only.',
1755
- exampleValue: '#357DE8'
3143
+ exampleValue: '#357DE8',
3144
+ usageGuidelines: {
3145
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3146
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3147
+ }
1756
3148
  }, {
1757
3149
  name: 'color.chart.blue.bolder.hovered',
1758
3150
  path: ['color', 'chart', 'blue', 'bolder', 'hovered'],
1759
3151
  description: 'Hovered state of color.chart.blue.bolder.',
1760
- exampleValue: '#1868DB'
3152
+ exampleValue: '#1868DB',
3153
+ usageGuidelines: {
3154
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3155
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3156
+ }
1761
3157
  }, {
1762
3158
  name: 'color.chart.blue.boldest',
1763
3159
  path: ['color', 'chart', 'blue', 'boldest', '[default]'],
1764
3160
  description: 'For data visualisation only.',
1765
- exampleValue: '#1558BC'
3161
+ exampleValue: '#1558BC',
3162
+ usageGuidelines: {
3163
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3164
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3165
+ }
1766
3166
  }, {
1767
3167
  name: 'color.chart.blue.boldest.hovered',
1768
3168
  path: ['color', 'chart', 'blue', 'boldest', 'hovered'],
1769
3169
  description: 'Hovered state of color.chart.blue.boldest.',
1770
- exampleValue: '#123263'
3170
+ exampleValue: '#123263',
3171
+ usageGuidelines: {
3172
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3173
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3174
+ }
1771
3175
  }, {
1772
3176
  name: 'color.chart.purple.bold',
1773
3177
  path: ['color', 'chart', 'purple', 'bold', '[default]'],
1774
3178
  description: 'For data visualisation only.',
1775
- exampleValue: '#BF63F3'
3179
+ exampleValue: '#BF63F3',
3180
+ usageGuidelines: {
3181
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3182
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3183
+ }
1776
3184
  }, {
1777
3185
  name: 'color.chart.purple.bold.hovered',
1778
3186
  path: ['color', 'chart', 'purple', 'bold', 'hovered'],
1779
3187
  description: 'Hovered state of color.chart.purple.bold.',
1780
- exampleValue: '#AF59E1'
3188
+ exampleValue: '#AF59E1',
3189
+ usageGuidelines: {
3190
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3191
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3192
+ }
1781
3193
  }, {
1782
3194
  name: 'color.chart.purple.bolder',
1783
3195
  path: ['color', 'chart', 'purple', 'bolder', '[default]'],
1784
3196
  description: 'For data visualisation only.',
1785
- exampleValue: '#AF59E1'
3197
+ exampleValue: '#AF59E1',
3198
+ usageGuidelines: {
3199
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3200
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3201
+ }
1786
3202
  }, {
1787
3203
  name: 'color.chart.purple.bolder.hovered',
1788
3204
  path: ['color', 'chart', 'purple', 'bolder', 'hovered'],
1789
3205
  description: 'Hovered state of color.chart.purple.bolder.',
1790
- exampleValue: '#964AC0'
3206
+ exampleValue: '#964AC0',
3207
+ usageGuidelines: {
3208
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3209
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3210
+ }
1791
3211
  }, {
1792
3212
  name: 'color.chart.purple.boldest',
1793
3213
  path: ['color', 'chart', 'purple', 'boldest', '[default]'],
1794
3214
  description: 'For data visualisation only.',
1795
- exampleValue: '#803FA5'
3215
+ exampleValue: '#803FA5',
3216
+ usageGuidelines: {
3217
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3218
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3219
+ }
1796
3220
  }, {
1797
3221
  name: 'color.chart.purple.boldest.hovered',
1798
3222
  path: ['color', 'chart', 'purple', 'boldest', 'hovered'],
1799
3223
  description: 'Hovered state of color.chart.purple.boldest.',
1800
- exampleValue: '#48245D'
3224
+ exampleValue: '#48245D',
3225
+ usageGuidelines: {
3226
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3227
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3228
+ }
1801
3229
  }, {
1802
3230
  name: 'color.chart.magenta.bold',
1803
3231
  path: ['color', 'chart', 'magenta', 'bold', '[default]'],
1804
3232
  description: 'For data visualisation only.',
1805
- exampleValue: '#DA62AC'
3233
+ exampleValue: '#DA62AC',
3234
+ usageGuidelines: {
3235
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3236
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3237
+ }
1806
3238
  }, {
1807
3239
  name: 'color.chart.magenta.bold.hovered',
1808
3240
  path: ['color', 'chart', 'magenta', 'bold', 'hovered'],
1809
3241
  description: 'Hovered state of color.chart.magenta.bold.',
1810
- exampleValue: '#CD519D'
3242
+ exampleValue: '#CD519D',
3243
+ usageGuidelines: {
3244
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3245
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3246
+ }
1811
3247
  }, {
1812
3248
  name: 'color.chart.magenta.bolder',
1813
3249
  path: ['color', 'chart', 'magenta', 'bolder', '[default]'],
1814
3250
  description: 'For data visualisation only.',
1815
- exampleValue: '#CD519D'
3251
+ exampleValue: '#CD519D',
3252
+ usageGuidelines: {
3253
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3254
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3255
+ }
1816
3256
  }, {
1817
3257
  name: 'color.chart.magenta.bolder.hovered',
1818
3258
  path: ['color', 'chart', 'magenta', 'bolder', 'hovered'],
1819
3259
  description: 'Hovered state of color.chart.magenta.bolder.',
1820
- exampleValue: '#AE4787'
3260
+ exampleValue: '#AE4787',
3261
+ usageGuidelines: {
3262
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3263
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3264
+ }
1821
3265
  }, {
1822
3266
  name: 'color.chart.magenta.boldest',
1823
3267
  path: ['color', 'chart', 'magenta', 'boldest', '[default]'],
1824
3268
  description: 'For data visualisation only.',
1825
- exampleValue: '#943D73'
3269
+ exampleValue: '#943D73',
3270
+ usageGuidelines: {
3271
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3272
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3273
+ }
1826
3274
  }, {
1827
3275
  name: 'color.chart.magenta.boldest.hovered',
1828
3276
  path: ['color', 'chart', 'magenta', 'boldest', 'hovered'],
1829
3277
  description: 'Hovered state of color.chart.magenta.boldest.',
1830
- exampleValue: '#50253F'
3278
+ exampleValue: '#50253F',
3279
+ usageGuidelines: {
3280
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3281
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3282
+ }
1831
3283
  }, {
1832
3284
  name: 'color.chart.gray.bold',
1833
3285
  path: ['color', 'chart', 'gray', 'bold', '[default]'],
1834
3286
  description: 'For data visualisation only.',
1835
- exampleValue: '#8C8F97'
3287
+ exampleValue: '#8C8F97',
3288
+ usageGuidelines: {
3289
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3290
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3291
+ }
1836
3292
  }, {
1837
3293
  name: 'color.chart.gray.bold.hovered',
1838
3294
  path: ['color', 'chart', 'gray', 'bold', 'hovered'],
1839
3295
  description: 'Hovered state of color.chart.gray.bold.',
1840
- exampleValue: '#7D818A'
3296
+ exampleValue: '#7D818A',
3297
+ usageGuidelines: {
3298
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3299
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3300
+ }
1841
3301
  }, {
1842
3302
  name: 'color.chart.gray.bolder',
1843
3303
  path: ['color', 'chart', 'gray', 'bolder', '[default]'],
1844
3304
  description: 'For data visualisation only.',
1845
- exampleValue: '#7D818A'
3305
+ exampleValue: '#7D818A',
3306
+ usageGuidelines: {
3307
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3308
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3309
+ }
1846
3310
  }, {
1847
3311
  name: 'color.chart.gray.bolder.hovered',
1848
3312
  path: ['color', 'chart', 'gray', 'bolder', 'hovered'],
1849
3313
  description: 'Hovered state of color.chart.gray.bolder.',
1850
- exampleValue: '#6B6E76'
3314
+ exampleValue: '#6B6E76',
3315
+ usageGuidelines: {
3316
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3317
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3318
+ }
1851
3319
  }, {
1852
3320
  name: 'color.chart.gray.boldest',
1853
3321
  path: ['color', 'chart', 'gray', 'boldest', '[default]'],
1854
3322
  description: 'For data visualisation only.',
1855
- exampleValue: '#505258'
3323
+ exampleValue: '#505258',
3324
+ usageGuidelines: {
3325
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3326
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3327
+ }
1856
3328
  }, {
1857
3329
  name: 'color.chart.gray.boldest.hovered',
1858
3330
  path: ['color', 'chart', 'gray', 'boldest', 'hovered'],
1859
3331
  description: 'Hovered state of color.chart.gray.boldest.',
1860
- exampleValue: '#3B3D42'
3332
+ exampleValue: '#3B3D42',
3333
+ usageGuidelines: {
3334
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3335
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3336
+ }
1861
3337
  }, {
1862
3338
  name: 'color.chart.brand',
1863
3339
  path: ['color', 'chart', 'brand', '[default]'],
1864
3340
  description: 'Our primary color for data visualisation. Use when only one color is required.',
1865
- exampleValue: '#357DE8'
3341
+ exampleValue: '#357DE8',
3342
+ usageGuidelines: {
3343
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3344
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3345
+ }
1866
3346
  }, {
1867
3347
  name: 'color.chart.brand.hovered',
1868
3348
  path: ['color', 'chart', 'brand', 'hovered'],
1869
3349
  description: 'Hovered state of color.chart.brand.',
1870
- exampleValue: '#1868DB'
3350
+ exampleValue: '#1868DB',
3351
+ usageGuidelines: {
3352
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3353
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3354
+ }
1871
3355
  }, {
1872
3356
  name: 'color.chart.danger',
1873
3357
  path: ['color', 'chart', 'danger', '[default]', '[default]'],
1874
3358
  description: "For data visualisation communicating negative information, such as 'off track'.",
1875
- exampleValue: '#E2483D'
3359
+ exampleValue: '#E2483D',
3360
+ usageGuidelines: {
3361
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3362
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3363
+ }
1876
3364
  }, {
1877
3365
  name: 'color.chart.danger.hovered',
1878
3366
  path: ['color', 'chart', 'danger', '[default]', 'hovered'],
1879
3367
  description: 'Hovered state of color.chart.danger.',
1880
- exampleValue: '#C9372C'
3368
+ exampleValue: '#C9372C',
3369
+ usageGuidelines: {
3370
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3371
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3372
+ }
1881
3373
  }, {
1882
3374
  name: 'color.chart.danger.bold',
1883
3375
  path: ['color', 'chart', 'danger', 'bold', '[default]'],
1884
3376
  description: 'A stronger emphasis option of color.chart.danger.',
1885
- exampleValue: '#872821'
3377
+ exampleValue: '#872821',
3378
+ usageGuidelines: {
3379
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3380
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3381
+ }
1886
3382
  }, {
1887
3383
  name: 'color.chart.danger.bold.hovered',
1888
3384
  path: ['color', 'chart', 'danger', 'bold', 'hovered'],
1889
3385
  description: 'Hovered state of color.chart.danger.bold.',
1890
- exampleValue: '#5D1F1A'
3386
+ exampleValue: '#5D1F1A',
3387
+ usageGuidelines: {
3388
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3389
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3390
+ }
1891
3391
  }, {
1892
3392
  name: 'color.chart.warning',
1893
3393
  path: ['color', 'chart', 'warning', '[default]', '[default]'],
1894
3394
  description: "For data visualisation communicating caution, such as 'at risk' statuses.",
1895
- exampleValue: '#F68909'
3395
+ exampleValue: '#F68909',
3396
+ usageGuidelines: {
3397
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3398
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3399
+ }
1896
3400
  }, {
1897
3401
  name: 'color.chart.warning.hovered',
1898
3402
  path: ['color', 'chart', 'warning', '[default]', 'hovered'],
1899
3403
  description: 'Hovered state of color.chart.warning.',
1900
- exampleValue: '#E06C00'
3404
+ exampleValue: '#E06C00',
3405
+ usageGuidelines: {
3406
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3407
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3408
+ }
1901
3409
  }, {
1902
3410
  name: 'color.chart.warning.bold',
1903
3411
  path: ['color', 'chart', 'warning', 'bold', '[default]'],
1904
3412
  description: 'A stronger emphasis option of color.chart.warning.',
1905
- exampleValue: '#BD5B00'
3413
+ exampleValue: '#BD5B00',
3414
+ usageGuidelines: {
3415
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3416
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3417
+ }
1906
3418
  }, {
1907
3419
  name: 'color.chart.warning.bold.hovered',
1908
3420
  path: ['color', 'chart', 'warning', 'bold', 'hovered'],
1909
3421
  description: 'Hovered state of color.chart.warning.bold.',
1910
- exampleValue: '#9E4C00'
3422
+ exampleValue: '#9E4C00',
3423
+ usageGuidelines: {
3424
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3425
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3426
+ }
1911
3427
  }, {
1912
3428
  name: 'color.chart.success',
1913
3429
  path: ['color', 'chart', 'success', '[default]', '[default]'],
1914
3430
  description: "For data visualisation communicating positive information, such as 'on track'.",
1915
- exampleValue: '#82B536'
3431
+ exampleValue: '#82B536',
3432
+ usageGuidelines: {
3433
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3434
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3435
+ }
1916
3436
  }, {
1917
3437
  name: 'color.chart.success.hovered',
1918
3438
  path: ['color', 'chart', 'success', '[default]', 'hovered'],
1919
3439
  description: 'Hovered state of color.chart.success.',
1920
- exampleValue: '#6A9A23'
3440
+ exampleValue: '#6A9A23',
3441
+ usageGuidelines: {
3442
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3443
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3444
+ }
1921
3445
  }, {
1922
3446
  name: 'color.chart.success.bold',
1923
3447
  path: ['color', 'chart', 'success', 'bold', '[default]'],
1924
3448
  description: 'A stronger emphasis option of color.chart.success.',
1925
- exampleValue: '#5B7F24'
3449
+ exampleValue: '#5B7F24',
3450
+ usageGuidelines: {
3451
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3452
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3453
+ }
1926
3454
  }, {
1927
3455
  name: 'color.chart.success.bold.hovered',
1928
3456
  path: ['color', 'chart', 'success', 'bold', 'hovered'],
1929
3457
  description: 'Hovered state of color.chart.success.bold.',
1930
- exampleValue: '#4C6B1F'
3458
+ exampleValue: '#4C6B1F',
3459
+ usageGuidelines: {
3460
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3461
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3462
+ }
1931
3463
  }, {
1932
3464
  name: 'color.chart.discovery',
1933
3465
  path: ['color', 'chart', 'discovery', '[default]', '[default]'],
1934
3466
  description: "For data visualisation communicating 'new' statuses.",
1935
- exampleValue: '#BF63F3'
3467
+ exampleValue: '#BF63F3',
3468
+ usageGuidelines: {
3469
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3470
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3471
+ }
1936
3472
  }, {
1937
3473
  name: 'color.chart.discovery.hovered',
1938
3474
  path: ['color', 'chart', 'discovery', '[default]', 'hovered'],
1939
3475
  description: 'Hovered state of color.chart.discovery.',
1940
- exampleValue: '#AF59E1'
3476
+ exampleValue: '#AF59E1',
3477
+ usageGuidelines: {
3478
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3479
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3480
+ }
1941
3481
  }, {
1942
3482
  name: 'color.chart.discovery.bold',
1943
3483
  path: ['color', 'chart', 'discovery', 'bold', '[default]'],
1944
3484
  description: 'A stronger emphasis option of color.chart.discovery.',
1945
- exampleValue: '#803FA5'
3485
+ exampleValue: '#803FA5',
3486
+ usageGuidelines: {
3487
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3488
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3489
+ }
1946
3490
  }, {
1947
3491
  name: 'color.chart.discovery.bold.hovered',
1948
3492
  path: ['color', 'chart', 'discovery', 'bold', 'hovered'],
1949
3493
  description: 'Hovered state of color.chart.discovery.bold.',
1950
- exampleValue: '#964AC0'
3494
+ exampleValue: '#964AC0',
3495
+ usageGuidelines: {
3496
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3497
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3498
+ }
1951
3499
  }, {
1952
3500
  name: 'color.chart.information',
1953
3501
  path: ['color', 'chart', 'information', '[default]', '[default]'],
1954
3502
  description: 'For data visualisation communicating low priority or in-progress statuses.',
1955
- exampleValue: '#357DE8'
3503
+ exampleValue: '#357DE8',
3504
+ usageGuidelines: {
3505
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3506
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3507
+ }
1956
3508
  }, {
1957
3509
  name: 'color.chart.information.hovered',
1958
3510
  path: ['color', 'chart', 'information', '[default]', 'hovered'],
1959
3511
  description: 'Hovered state of color.chart.information.',
1960
- exampleValue: '#1868DB'
3512
+ exampleValue: '#1868DB',
3513
+ usageGuidelines: {
3514
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3515
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3516
+ }
1961
3517
  }, {
1962
3518
  name: 'color.chart.information.bold',
1963
3519
  path: ['color', 'chart', 'information', 'bold', '[default]'],
1964
3520
  description: 'A stronger emphasis option of color.chart.information.',
1965
- exampleValue: '#1558BC'
3521
+ exampleValue: '#1558BC',
3522
+ usageGuidelines: {
3523
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3524
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3525
+ }
1966
3526
  }, {
1967
3527
  name: 'color.chart.information.bold.hovered',
1968
3528
  path: ['color', 'chart', 'information', 'bold', 'hovered'],
1969
3529
  description: 'Hovered state of color.chart.information.bold.',
1970
- exampleValue: '#123263'
3530
+ exampleValue: '#123263',
3531
+ usageGuidelines: {
3532
+ usage: 'The color for chart and data visualization elements (e.g. color.chart)',
3533
+ cssProperties: ['fill', 'stroke', 'background-color', 'color']
3534
+ }
1971
3535
  }, {
1972
3536
  name: 'elevation.surface',
1973
3537
  path: ['elevation', 'surface', '[default]', '[default]'],
1974
3538
  description: 'Use as the primary background for the UI.',
1975
- exampleValue: '#FFFFFF'
3539
+ exampleValue: '#FFFFFF',
3540
+ usageGuidelines: {
3541
+ usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
3542
+ cssProperties: ['background-color']
3543
+ }
1976
3544
  }, {
1977
3545
  name: 'elevation.surface.hovered',
1978
3546
  path: ['elevation', 'surface', '[default]', 'hovered'],
1979
3547
  description: 'Hovered state of elevation.surface',
1980
- exampleValue: '#F0F1F2'
3548
+ exampleValue: '#F0F1F2',
3549
+ usageGuidelines: {
3550
+ usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
3551
+ cssProperties: ['background-color']
3552
+ }
1981
3553
  }, {
1982
3554
  name: 'elevation.surface.pressed',
1983
3555
  path: ['elevation', 'surface', '[default]', 'pressed'],
1984
3556
  description: 'Pressed state of elevation.surface',
1985
- exampleValue: '#DDDEE1'
3557
+ exampleValue: '#DDDEE1',
3558
+ usageGuidelines: {
3559
+ usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
3560
+ cssProperties: ['background-color']
3561
+ }
1986
3562
  }, {
1987
3563
  name: 'elevation.surface.overlay',
1988
3564
  path: ['elevation', 'surface', 'overlay', '[default]'],
1989
3565
  description: 'Use for the background of elements that sit on top of they UI, such as modals, dialogs, dropdown menus, floating toolbars, and floating single-action buttons. Also use for the background of raised cards in a dragged state. Combine with elevation.shadow.overlay.',
1990
- exampleValue: '#FFFFFF'
3566
+ exampleValue: '#FFFFFF',
3567
+ usageGuidelines: {
3568
+ usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
3569
+ cssProperties: ['background-color']
3570
+ }
1991
3571
  }, {
1992
3572
  name: 'elevation.surface.overlay.hovered',
1993
3573
  path: ['elevation', 'surface', 'overlay', 'hovered'],
1994
3574
  description: 'Hovered state of elevation.surface.overlay',
1995
- exampleValue: '#F0F1F2'
3575
+ exampleValue: '#F0F1F2',
3576
+ usageGuidelines: {
3577
+ usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
3578
+ cssProperties: ['background-color']
3579
+ }
1996
3580
  }, {
1997
3581
  name: 'elevation.surface.overlay.pressed',
1998
3582
  path: ['elevation', 'surface', 'overlay', 'pressed'],
1999
3583
  description: 'Pressed state of elevation.surface.overlay',
2000
- exampleValue: '#DDDEE1'
3584
+ exampleValue: '#DDDEE1',
3585
+ usageGuidelines: {
3586
+ usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
3587
+ cssProperties: ['background-color']
3588
+ }
2001
3589
  }, {
2002
3590
  name: 'elevation.surface.raised',
2003
3591
  path: ['elevation', 'surface', 'raised', '[default]'],
2004
3592
  description: 'Use for the background of cards that can be moved, such as Jira cards on a Kanban board. Combine with elevation.shadow.raised.',
2005
- exampleValue: '#FFFFFF'
3593
+ exampleValue: '#FFFFFF',
3594
+ usageGuidelines: {
3595
+ usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
3596
+ cssProperties: ['background-color']
3597
+ }
2006
3598
  }, {
2007
3599
  name: 'elevation.surface.raised.hovered',
2008
3600
  path: ['elevation', 'surface', 'raised', 'hovered'],
2009
3601
  description: 'Hovered state of elevation.surface.raised',
2010
- exampleValue: '#F0F1F2'
3602
+ exampleValue: '#F0F1F2',
3603
+ usageGuidelines: {
3604
+ usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
3605
+ cssProperties: ['background-color']
3606
+ }
2011
3607
  }, {
2012
3608
  name: 'elevation.surface.raised.pressed',
2013
3609
  path: ['elevation', 'surface', 'raised', 'pressed'],
2014
3610
  description: 'Pressed state of elevation.surface.raised',
2015
- exampleValue: '#DDDEE1'
3611
+ exampleValue: '#DDDEE1',
3612
+ usageGuidelines: {
3613
+ usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
3614
+ cssProperties: ['background-color']
3615
+ }
2016
3616
  }, {
2017
3617
  name: 'elevation.surface.sunken',
2018
3618
  path: ['elevation', 'surface', 'sunken'],
2019
3619
  description: 'A secondary background for the UI commonly used for grouping items, such as Jira cards in columns.',
2020
- exampleValue: '#F8F8F8'
3620
+ exampleValue: '#F8F8F8',
3621
+ usageGuidelines: {
3622
+ usage: 'The base color for app and component surfaces. Raised and overlay surfaces should be used in concert with shadows (e.g. elevation.surface.raised should be used with elevation.shadow.raised)',
3623
+ cssProperties: ['background-color']
3624
+ }
2021
3625
  }, {
2022
3626
  name: 'elevation.shadow.overflow',
2023
3627
  path: ['elevation', 'shadow', 'overflow', '[default]'],
2024
3628
  description: 'Use to create a shadow when content scrolls under other content.',
2025
- exampleValue: '0px 0px 8px #1E1F2129, 0px 0px 1px #1E1F211F'
3629
+ exampleValue: '0px 0px 8px #1E1F2129, 0px 0px 1px #1E1F211F',
3630
+ usageGuidelines: {
3631
+ usage: 'Shadows for showing depth and elevation (e.g. elevation.shadow.raised, elevation.shadow.overlay). Use via the box-shadow property to indicate layer hierarchy',
3632
+ cssProperties: ['box-shadow']
3633
+ }
2026
3634
  }, {
2027
3635
  name: 'elevation.shadow.overflow.perimeter',
2028
3636
  path: ['elevation', 'shadow', 'overflow', 'perimeter'],
2029
3637
  description: 'Use only when elevation.shadow.overflow is not technically feasible to implement. Pair with elevation.shadow.overflow.spread to replicate the overflow shadow.',
2030
- exampleValue: '#1E1F211f'
3638
+ exampleValue: '#1E1F211f',
3639
+ usageGuidelines: {
3640
+ usage: 'Shadows for showing depth and elevation (e.g. elevation.shadow.raised, elevation.shadow.overlay). Use via the box-shadow property to indicate layer hierarchy',
3641
+ cssProperties: ['box-shadow']
3642
+ }
2031
3643
  }, {
2032
3644
  name: 'elevation.shadow.overflow.spread',
2033
3645
  path: ['elevation', 'shadow', 'overflow', 'spread'],
2034
3646
  description: 'Use only when elevation.shadow.overflow is not technically feasible to implement. Pair with elevation.shadow.overflow.perimeter to replicate the overflow shadow.',
2035
- exampleValue: '#1E1F2129'
3647
+ exampleValue: '#1E1F2129',
3648
+ usageGuidelines: {
3649
+ usage: 'Shadows for showing depth and elevation (e.g. elevation.shadow.raised, elevation.shadow.overlay). Use via the box-shadow property to indicate layer hierarchy',
3650
+ cssProperties: ['box-shadow']
3651
+ }
2036
3652
  }, {
2037
3653
  name: 'elevation.shadow.overlay',
2038
3654
  path: ['elevation', 'shadow', 'overlay'],
2039
3655
  description: 'Use for the box shadow of elements that sit on top of the UI, such as modals, dropdown menus, flags, and inline dialogs. Combine with elevation.surface.overlay\n\nAlso use for the box shadow of raised cards in a dragged state.',
2040
- exampleValue: '0px 8px 12px #1E1F2126, 0px 0px 1px #1E1F214F'
3656
+ exampleValue: '0px 8px 12px #1E1F2126, 0px 0px 1px #1E1F214F',
3657
+ usageGuidelines: {
3658
+ usage: 'Shadows for showing depth and elevation (e.g. elevation.shadow.raised, elevation.shadow.overlay). Use via the box-shadow property to indicate layer hierarchy',
3659
+ cssProperties: ['box-shadow']
3660
+ }
2041
3661
  }, {
2042
3662
  name: 'elevation.shadow.raised',
2043
3663
  path: ['elevation', 'shadow', 'raised'],
2044
3664
  description: 'Use for the box shadow of raised card elements, such as Jira cards on a Kanban board. Combine with elevation.surface.raised',
2045
- exampleValue: '0px 1px 1px #1E1F2140, 0px 0px 1px #1E1F214F'
3665
+ exampleValue: '0px 1px 1px #1E1F2140, 0px 0px 1px #1E1F214F',
3666
+ usageGuidelines: {
3667
+ usage: 'Shadows for showing depth and elevation (e.g. elevation.shadow.raised, elevation.shadow.overlay). Use via the box-shadow property to indicate layer hierarchy',
3668
+ cssProperties: ['box-shadow']
3669
+ }
2046
3670
  }, {
2047
3671
  name: 'opacity.disabled',
2048
3672
  path: ['opacity', 'disabled'],
2049
3673
  description: 'Apply to images when in a disabled state.',
2050
- exampleValue: 0.4
3674
+ exampleValue: 0.4,
3675
+ usageGuidelines: {
3676
+ usage: 'Controls the transparency of an element (e.g. opacity.disabled, opacity.loading). Used for communication of loading and disabled states',
3677
+ cssProperties: ['opacity']
3678
+ }
2051
3679
  }, {
2052
3680
  name: 'opacity.loading',
2053
3681
  path: ['opacity', 'loading'],
2054
3682
  description: 'Apply to content that sits under a loading spinner.',
2055
- exampleValue: 0.2
3683
+ exampleValue: 0.2,
3684
+ usageGuidelines: {
3685
+ usage: 'Controls the transparency of an element (e.g. opacity.disabled, opacity.loading). Used for communication of loading and disabled states',
3686
+ cssProperties: ['opacity']
3687
+ }
2056
3688
  }, {
2057
3689
  name: 'utility.UNSAFE.transparent',
2058
3690
  path: ['utility', 'UNSAFE', 'transparent'],
2059
3691
  description: 'Transparent token used for backwards compatibility between new and old theming solutions',
2060
- exampleValue: 'transparent'
3692
+ exampleValue: 'transparent',
3693
+ usageGuidelines: {
3694
+ usage: 'Code-specific tokens to aid with migration or enable features such as automatic elevation detection',
3695
+ cssProperties: []
3696
+ }
2061
3697
  }, {
2062
3698
  name: 'utility.elevation.surface.current',
2063
3699
  path: ['utility', 'elevation', 'surface', 'current'],
2064
3700
  description: "A dynamic token that represents the current surface color set by a parent element. It defaults to the 'elevation.surface' token value.",
2065
- exampleValue: '#FFFFFF'
3701
+ exampleValue: '#FFFFFF',
3702
+ usageGuidelines: {
3703
+ usage: 'Code-specific tokens to aid with migration or enable features such as automatic elevation detection',
3704
+ cssProperties: []
3705
+ }
2066
3706
  }, {
2067
3707
  name: 'space.0',
2068
3708
  path: ['space', '0'],
2069
3709
  description: 'Equates to `0`. Use for resetting default spacing styles.',
2070
- exampleValue: '0rem'
3710
+ exampleValue: '0rem',
3711
+ usageGuidelines: {
3712
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3713
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3714
+ }
2071
3715
  }, {
2072
3716
  name: 'space.025',
2073
3717
  path: ['space', '025'],
2074
3718
  description: 'Use for small and compact pieces of UI.',
2075
- exampleValue: '0.125rem'
3719
+ exampleValue: '0.125rem',
3720
+ usageGuidelines: {
3721
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3722
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3723
+ }
2076
3724
  }, {
2077
3725
  name: 'space.050',
2078
3726
  path: ['space', '050'],
2079
3727
  description: 'Use for small and compact pieces of UI.',
2080
- exampleValue: '0.25rem'
3728
+ exampleValue: '0.25rem',
3729
+ usageGuidelines: {
3730
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3731
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3732
+ }
2081
3733
  }, {
2082
3734
  name: 'space.075',
2083
3735
  path: ['space', '075'],
2084
3736
  description: 'Use for small and compact pieces of UI.',
2085
- exampleValue: '0.375rem'
3737
+ exampleValue: '0.375rem',
3738
+ usageGuidelines: {
3739
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3740
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3741
+ }
2086
3742
  }, {
2087
3743
  name: 'space.100',
2088
3744
  path: ['space', '100'],
2089
3745
  description: 'Use for small and compact pieces of UI.',
2090
- exampleValue: '0.5rem'
3746
+ exampleValue: '0.5rem',
3747
+ usageGuidelines: {
3748
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3749
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3750
+ }
2091
3751
  }, {
2092
3752
  name: 'space.150',
2093
3753
  path: ['space', '150'],
2094
3754
  description: 'Use for larger and less dense pieces of UI.',
2095
- exampleValue: '0.75rem'
3755
+ exampleValue: '0.75rem',
3756
+ usageGuidelines: {
3757
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3758
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3759
+ }
2096
3760
  }, {
2097
3761
  name: 'space.200',
2098
3762
  path: ['space', '200'],
2099
3763
  description: 'Use for larger and less dense pieces of UI.',
2100
- exampleValue: '1rem'
3764
+ exampleValue: '1rem',
3765
+ usageGuidelines: {
3766
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3767
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3768
+ }
2101
3769
  }, {
2102
3770
  name: 'space.250',
2103
3771
  path: ['space', '250'],
2104
3772
  description: 'Use for larger and less dense pieces of UI.',
2105
- exampleValue: '1.25rem'
3773
+ exampleValue: '1.25rem',
3774
+ usageGuidelines: {
3775
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3776
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3777
+ }
2106
3778
  }, {
2107
3779
  name: 'space.300',
2108
3780
  path: ['space', '300'],
2109
3781
  description: 'Use for larger and less dense pieces of UI.',
2110
- exampleValue: '1.5rem'
3782
+ exampleValue: '1.5rem',
3783
+ usageGuidelines: {
3784
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3785
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3786
+ }
2111
3787
  }, {
2112
3788
  name: 'space.400',
2113
3789
  path: ['space', '400'],
2114
3790
  description: 'Use for the largest pieces of UI and for layout elements.',
2115
- exampleValue: '2rem'
3791
+ exampleValue: '2rem',
3792
+ usageGuidelines: {
3793
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3794
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3795
+ }
2116
3796
  }, {
2117
3797
  name: 'space.500',
2118
3798
  path: ['space', '500'],
2119
3799
  description: 'Use for the largest pieces of UI and for layout elements.',
2120
- exampleValue: '2.5rem'
3800
+ exampleValue: '2.5rem',
3801
+ usageGuidelines: {
3802
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3803
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3804
+ }
2121
3805
  }, {
2122
3806
  name: 'space.600',
2123
3807
  path: ['space', '600'],
2124
3808
  description: 'Use for the largest pieces of UI and for layout elements.',
2125
- exampleValue: '3rem'
3809
+ exampleValue: '3rem',
3810
+ usageGuidelines: {
3811
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3812
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3813
+ }
2126
3814
  }, {
2127
3815
  name: 'space.800',
2128
3816
  path: ['space', '800'],
2129
3817
  description: 'Use for the largest pieces of UI and for layout elements.',
2130
- exampleValue: '4rem'
3818
+ exampleValue: '4rem',
3819
+ usageGuidelines: {
3820
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3821
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3822
+ }
2131
3823
  }, {
2132
3824
  name: 'space.1000',
2133
3825
  path: ['space', '1000'],
2134
3826
  description: 'Use for the largest pieces of UI and for layout elements.',
2135
- exampleValue: '5rem'
3827
+ exampleValue: '5rem',
3828
+ usageGuidelines: {
3829
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3830
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3831
+ }
2136
3832
  }, {
2137
3833
  name: 'space.negative.025',
2138
3834
  path: ['space', 'negative', '025'],
2139
3835
  description: 'Use to negate parent whitespace or overlap small pieces of UI.',
2140
- exampleValue: '-0.125rem'
3836
+ exampleValue: '-0.125rem',
3837
+ usageGuidelines: {
3838
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3839
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3840
+ }
2141
3841
  }, {
2142
3842
  name: 'space.negative.050',
2143
3843
  path: ['space', 'negative', '050'],
2144
3844
  description: 'Use to negate parent whitespace or overlap small pieces of UI.',
2145
- exampleValue: '-0.25rem'
3845
+ exampleValue: '-0.25rem',
3846
+ usageGuidelines: {
3847
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3848
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3849
+ }
2146
3850
  }, {
2147
3851
  name: 'space.negative.075',
2148
3852
  path: ['space', 'negative', '075'],
2149
3853
  description: 'Use to negate parent whitespace or overlap small pieces of UI.',
2150
- exampleValue: '-0.375rem'
3854
+ exampleValue: '-0.375rem',
3855
+ usageGuidelines: {
3856
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3857
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3858
+ }
2151
3859
  }, {
2152
3860
  name: 'space.negative.100',
2153
3861
  path: ['space', 'negative', '100'],
2154
3862
  description: 'Use to negate parent whitespace or overlap small pieces of UI.',
2155
- exampleValue: '-0.5rem'
3863
+ exampleValue: '-0.5rem',
3864
+ usageGuidelines: {
3865
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3866
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3867
+ }
2156
3868
  }, {
2157
3869
  name: 'space.negative.150',
2158
3870
  path: ['space', 'negative', '150'],
2159
3871
  description: 'Use to negate parent whitespace or overlap larger pieces of UI.',
2160
- exampleValue: '-0.75rem'
3872
+ exampleValue: '-0.75rem',
3873
+ usageGuidelines: {
3874
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3875
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3876
+ }
2161
3877
  }, {
2162
3878
  name: 'space.negative.200',
2163
3879
  path: ['space', 'negative', '200'],
2164
3880
  description: 'Use to negate parent whitespace or overlap larger pieces of UI.',
2165
- exampleValue: '-1rem'
3881
+ exampleValue: '-1rem',
3882
+ usageGuidelines: {
3883
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3884
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3885
+ }
2166
3886
  }, {
2167
3887
  name: 'space.negative.250',
2168
3888
  path: ['space', 'negative', '250'],
2169
3889
  description: 'Use to negate parent whitespace or overlap larger pieces of UI.',
2170
- exampleValue: '-1.25rem'
3890
+ exampleValue: '-1.25rem',
3891
+ usageGuidelines: {
3892
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3893
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3894
+ }
2171
3895
  }, {
2172
3896
  name: 'space.negative.300',
2173
3897
  path: ['space', 'negative', '300'],
2174
3898
  description: 'Use to negate parent whitespace or overlap larger pieces of UI.',
2175
- exampleValue: '-1.5rem'
3899
+ exampleValue: '-1.5rem',
3900
+ usageGuidelines: {
3901
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3902
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3903
+ }
2176
3904
  }, {
2177
3905
  name: 'space.negative.400',
2178
3906
  path: ['space', 'negative', '400'],
2179
3907
  description: 'Use to negate parent whitespace or overlap the largest pieces of UI.',
2180
- exampleValue: '-2rem'
3908
+ exampleValue: '-2rem',
3909
+ usageGuidelines: {
3910
+ usage: 'Spacing tokens define the distance, alignment, and layout positioning (e.g. space.100, space.200, space.050). Use for margin, padding, gap, and layout positioning such as top, left, etc',
3911
+ cssProperties: ['padding', 'margin', 'gap', 'top', 'left', 'right', 'bottom', 'inset']
3912
+ }
2181
3913
  }, {
2182
3914
  name: 'font.heading.xxlarge',
2183
3915
  path: ['font', 'heading', 'xxlarge'],
2184
3916
  description: 'For overlapping brand with app promotions, such as marketplace content. Migrate instances of H900 to Heading XXL.',
2185
- exampleValue: 'normal 653 2rem/2.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
3917
+ exampleValue: 'normal 653 2rem/2.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
3918
+ usageGuidelines: {
3919
+ usage: 'A composite token that applies complete font-related properties for headings (e.g. font.heading.xlarge). Includes font size, weight, line height, and family',
3920
+ cssProperties: ['font']
3921
+ }
2186
3922
  }, {
2187
3923
  name: 'font.heading.xlarge',
2188
3924
  path: ['font', 'heading', 'xlarge'],
2189
3925
  description: 'For overlapping brand with app promotions, such as marketplace content. Migrate instances of H800 to Heading XL.',
2190
- exampleValue: 'normal 653 1.75rem/2rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
3926
+ exampleValue: 'normal 653 1.75rem/2rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
3927
+ usageGuidelines: {
3928
+ usage: 'A composite token that applies complete font-related properties for headings (e.g. font.heading.xlarge). Includes font size, weight, line height, and family',
3929
+ cssProperties: ['font']
3930
+ }
2191
3931
  }, {
2192
3932
  name: 'font.heading.large',
2193
3933
  path: ['font', 'heading', 'large'],
2194
3934
  description: 'App page titles, such as forms. Migrate instances of H700 to Heading L.',
2195
- exampleValue: 'normal 653 1.5rem/1.75rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
3935
+ exampleValue: 'normal 653 1.5rem/1.75rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
3936
+ usageGuidelines: {
3937
+ usage: 'A composite token that applies complete font-related properties for headings (e.g. font.heading.xlarge). Includes font size, weight, line height, and family',
3938
+ cssProperties: ['font']
3939
+ }
2196
3940
  }, {
2197
3941
  name: 'font.heading.medium',
2198
3942
  path: ['font', 'heading', 'medium'],
2199
3943
  description: 'Headers in large components, such as modal dialogs. Migrate instances of H600 to Heading M.',
2200
- exampleValue: 'normal 653 1.25rem/1.5rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
3944
+ exampleValue: 'normal 653 1.25rem/1.5rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
3945
+ usageGuidelines: {
3946
+ usage: 'A composite token that applies complete font-related properties for headings (e.g. font.heading.xlarge). Includes font size, weight, line height, and family',
3947
+ cssProperties: ['font']
3948
+ }
2201
3949
  }, {
2202
3950
  name: 'font.heading.small',
2203
3951
  path: ['font', 'heading', 'small'],
2204
3952
  description: 'For headers in small components where space is limited. Migrate instances of H500 to Heading S.',
2205
- exampleValue: 'normal 653 1rem/1.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
3953
+ exampleValue: 'normal 653 1rem/1.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
3954
+ usageGuidelines: {
3955
+ usage: 'A composite token that applies complete font-related properties for headings (e.g. font.heading.xlarge). Includes font size, weight, line height, and family',
3956
+ cssProperties: ['font']
3957
+ }
2206
3958
  }, {
2207
3959
  name: 'font.heading.xsmall',
2208
3960
  path: ['font', 'heading', 'xsmall'],
2209
3961
  description: 'For headers in small components where space is limited. Migrate instances of H400 to Heading XS.',
2210
- exampleValue: 'normal 653 0.875rem/1.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
3962
+ exampleValue: 'normal 653 0.875rem/1.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
3963
+ usageGuidelines: {
3964
+ usage: 'A composite token that applies complete font-related properties for headings (e.g. font.heading.xlarge). Includes font size, weight, line height, and family',
3965
+ cssProperties: ['font']
3966
+ }
2211
3967
  }, {
2212
3968
  name: 'font.heading.xxsmall',
2213
3969
  path: ['font', 'heading', 'xxsmall'],
2214
3970
  description: 'For headers in fine print or tight spaces. Use sparingly. Migrate instances of H100, H200 and H300 to Heading XXS.',
2215
- exampleValue: 'normal 653 0.75rem/1rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
3971
+ exampleValue: 'normal 653 0.75rem/1rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
3972
+ usageGuidelines: {
3973
+ usage: 'A composite token that applies complete font-related properties for headings (e.g. font.heading.xlarge). Includes font size, weight, line height, and family',
3974
+ cssProperties: ['font']
3975
+ }
2216
3976
  }, {
2217
3977
  name: 'font.body.large',
2218
3978
  path: ['font', 'body', 'large'],
2219
3979
  description: 'For long-form text, such as in blogs.',
2220
- exampleValue: 'normal 400 1rem/1.5rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
3980
+ exampleValue: 'normal 400 1rem/1.5rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
3981
+ usageGuidelines: {
3982
+ usage: 'A composite token that applies all font properties for standard body text (e.g. font.body)',
3983
+ cssProperties: ['font']
3984
+ }
2221
3985
  }, {
2222
3986
  name: 'font.body',
2223
3987
  path: ['font', 'body', '[default]'],
2224
3988
  description: 'Use in short descriptions or labels. The default size for text in components. Migrate instances of Paragraph Default and UI Text to Body M.',
2225
- exampleValue: 'normal 400 0.875rem/1.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
3989
+ exampleValue: 'normal 400 0.875rem/1.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
3990
+ usageGuidelines: {
3991
+ usage: 'A composite token that applies all font properties for standard body text (e.g. font.body)',
3992
+ cssProperties: ['font']
3993
+ }
2226
3994
  }, {
2227
3995
  name: 'font.body.small',
2228
3996
  path: ['font', 'body', 'small'],
2229
3997
  description: 'Use in secondary level content such as fine print or semantic messaging. Use sparingly. Migrate instances of Small text to Body S.',
2230
- exampleValue: 'normal 400 0.75rem/1rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
3998
+ exampleValue: 'normal 400 0.75rem/1rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
3999
+ usageGuidelines: {
4000
+ usage: 'A composite token that applies all font properties for standard body text (e.g. font.body)',
4001
+ cssProperties: ['font']
4002
+ }
2231
4003
  }, {
2232
4004
  name: 'font.body.UNSAFE_small',
2233
4005
  path: ['font', 'body', 'UNSAFE_small'],
2234
4006
  description: 'UNSAFE - Do not use. Temporary 12px fontsize token. Will be deprecated and replaced with stable small token',
2235
- exampleValue: 'normal 400 0.75rem/1rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
4007
+ exampleValue: 'normal 400 0.75rem/1rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
4008
+ usageGuidelines: {
4009
+ usage: 'A composite token that applies all font properties for standard body text (e.g. font.body)',
4010
+ cssProperties: ['font']
4011
+ }
2236
4012
  }, {
2237
4013
  name: 'font.metric.large',
2238
4014
  path: ['font', 'metric', 'large'],
2239
4015
  description: 'Use to emphasize a number within a large donut.',
2240
- exampleValue: 'normal 653 1.75rem/2rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
4016
+ exampleValue: 'normal 653 1.75rem/2rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
4017
+ usageGuidelines: {
4018
+ usage: 'Font settings for displaying numbers or metrics, ensuring legibility and alignment (e.g. font.metric)',
4019
+ cssProperties: ['font']
4020
+ }
2241
4021
  }, {
2242
4022
  name: 'font.metric.medium',
2243
4023
  path: ['font', 'metric', 'medium'],
2244
4024
  description: 'Use to emphasize a number within a medium donut.',
2245
- exampleValue: 'normal 653 1.5rem/1.75rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
4025
+ exampleValue: 'normal 653 1.5rem/1.75rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
4026
+ usageGuidelines: {
4027
+ usage: 'Font settings for displaying numbers or metrics, ensuring legibility and alignment (e.g. font.metric)',
4028
+ cssProperties: ['font']
4029
+ }
2246
4030
  }, {
2247
4031
  name: 'font.metric.small',
2248
4032
  path: ['font', 'metric', 'small'],
2249
4033
  description: 'Use to emphasize a number and words in single-value tiles, or small donuts.',
2250
- exampleValue: 'normal 653 1rem/1.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
4034
+ exampleValue: 'normal 653 1rem/1.25rem "Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
4035
+ usageGuidelines: {
4036
+ usage: 'Font settings for displaying numbers or metrics, ensuring legibility and alignment (e.g. font.metric)',
4037
+ cssProperties: ['font']
4038
+ }
2251
4039
  }, {
2252
4040
  name: 'font.code',
2253
4041
  path: ['font', 'code', '[default]'],
2254
4042
  description: 'For representing code only, either inline or in code blocks.',
2255
- exampleValue: 'normal 400 0.875em/1 "Atlassian Mono", ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace'
4043
+ exampleValue: 'normal 400 0.875em/1 "Atlassian Mono", ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace',
4044
+ usageGuidelines: {
4045
+ usage: 'Font settings for inline code and code blocks, enforcing monospace font and sizing (e.g. font.code)',
4046
+ cssProperties: ['font', 'font-family', 'font-size', 'font-weight', 'line-height']
4047
+ }
2256
4048
  }, {
2257
4049
  name: 'font.weight.regular',
2258
4050
  path: ['font', 'weight', 'regular'],
2259
4051
  description: 'Default font weight for body text styles.',
2260
- exampleValue: '400'
4052
+ exampleValue: '400',
4053
+ usageGuidelines: {
4054
+ usage: 'Granular control of font weight (e.g. font.weight.regular, font.weight.semibold). Use only to override the default font tokens for custom typography components beyond what’s supported by Text, MetricText and Heading',
4055
+ cssProperties: ['font-weight']
4056
+ }
2261
4057
  }, {
2262
4058
  name: 'font.weight.medium',
2263
4059
  path: ['font', 'weight', 'medium'],
2264
4060
  description: 'For all text that may appear beside iconography, such as in a button.',
2265
- exampleValue: '500'
4061
+ exampleValue: '500',
4062
+ usageGuidelines: {
4063
+ usage: 'Granular control of font weight (e.g. font.weight.regular, font.weight.semibold). Use only to override the default font tokens for custom typography components beyond what’s supported by Text, MetricText and Heading',
4064
+ cssProperties: ['font-weight']
4065
+ }
2266
4066
  }, {
2267
4067
  name: 'font.weight.semibold',
2268
4068
  path: ['font', 'weight', 'semibold'],
2269
4069
  description: 'Use with caution as fallback fonts do not support this font weight and will default to bold weight.',
2270
- exampleValue: '600'
4070
+ exampleValue: '600',
4071
+ usageGuidelines: {
4072
+ usage: 'Granular control of font weight (e.g. font.weight.regular, font.weight.semibold). Use only to override the default font tokens for custom typography components beyond what’s supported by Text, MetricText and Heading',
4073
+ cssProperties: ['font-weight']
4074
+ }
2271
4075
  }, {
2272
4076
  name: 'font.weight.bold',
2273
4077
  path: ['font', 'weight', 'bold'],
2274
4078
  description: 'Use sparingly for emphasising text, such as in a lozenge.',
2275
- exampleValue: '653'
4079
+ exampleValue: '653',
4080
+ usageGuidelines: {
4081
+ usage: 'Granular control of font weight (e.g. font.weight.regular, font.weight.semibold). Use only to override the default font tokens for custom typography components beyond what’s supported by Text, MetricText and Heading',
4082
+ cssProperties: ['font-weight']
4083
+ }
2276
4084
  }, {
2277
4085
  name: 'font.family.heading',
2278
4086
  path: ['font', 'family', 'heading'],
2279
4087
  description: 'For our default UI heading text.',
2280
- exampleValue: '"Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
4088
+ exampleValue: '"Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
4089
+ usageGuidelines: {
4090
+ usage: 'Granular control of font family (e.g. font.family.body). Use only when overriding the default in composites',
4091
+ cssProperties: ['font-family']
4092
+ }
2281
4093
  }, {
2282
4094
  name: 'font.family.body',
2283
4095
  path: ['font', 'family', 'body'],
2284
4096
  description: 'For our default UI body text.',
2285
- exampleValue: '"Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
4097
+ exampleValue: '"Atlassian Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
4098
+ usageGuidelines: {
4099
+ usage: 'Granular control of font family (e.g. font.family.body). Use only when overriding the default in composites',
4100
+ cssProperties: ['font-family']
4101
+ }
2286
4102
  }, {
2287
4103
  name: 'font.family.code',
2288
4104
  path: ['font', 'family', 'code'],
2289
4105
  description: 'For representing code only.',
2290
- exampleValue: '"Atlassian Mono", ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace'
4106
+ exampleValue: '"Atlassian Mono", ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace',
4107
+ usageGuidelines: {
4108
+ usage: 'Granular control of font family (e.g. font.family.body). Use only when overriding the default in composites',
4109
+ cssProperties: ['font-family']
4110
+ }
2291
4111
  }, {
2292
4112
  name: 'font.family.brand.heading',
2293
4113
  path: ['font', 'family', 'brand', 'heading'],
2294
4114
  description: 'For our brand heading text. Uses Charlie Display.',
2295
- exampleValue: '"Charlie Display", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
4115
+ exampleValue: '"Charlie Display", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
4116
+ usageGuidelines: {
4117
+ usage: 'Granular control of font family (e.g. font.family.body). Use only when overriding the default in composites',
4118
+ cssProperties: ['font-family']
4119
+ }
2296
4120
  }, {
2297
4121
  name: 'font.family.brand.body',
2298
4122
  path: ['font', 'family', 'brand', 'body'],
2299
4123
  description: 'For our brand body text. Uses Charlie Text.',
2300
- exampleValue: '"Charlie Text", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif'
4124
+ exampleValue: '"Charlie Text", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif',
4125
+ usageGuidelines: {
4126
+ usage: 'Granular control of font family (e.g. font.family.body). Use only when overriding the default in composites',
4127
+ cssProperties: ['font-family']
4128
+ }
2301
4129
  }, {
2302
4130
  name: 'radius.xsmall',
2303
4131
  path: ['radius', 'xsmall'],
2304
4132
  description: 'Use for small detail elements: badges, checkboxes, avatar labels, keyboard shortcuts.',
2305
- exampleValue: '0.125rem'
4133
+ exampleValue: '0.125rem',
4134
+ usageGuidelines: {
4135
+ usage: 'Controls the rounding of element corners, often for containers (e.g. radius.medium, radius.circle)',
4136
+ cssProperties: ['border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-left-radius', 'border-bottom-right-radius']
4137
+ }
2306
4138
  }, {
2307
4139
  name: 'radius.small',
2308
4140
  path: ['radius', 'small'],
2309
4141
  description: 'Use for supporting elements: labels, lozenges, timestamps, tags, dates, tooltip containers, imagery inside a table, compact buttons.',
2310
- exampleValue: '0.25rem'
4142
+ exampleValue: '0.25rem',
4143
+ usageGuidelines: {
4144
+ usage: 'Controls the rounding of element corners, often for containers (e.g. radius.medium, radius.circle)',
4145
+ cssProperties: ['border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-left-radius', 'border-bottom-right-radius']
4146
+ }
2311
4147
  }, {
2312
4148
  name: 'radius.medium',
2313
4149
  path: ['radius', 'medium'],
2314
4150
  description: 'Use for interactive elements: buttons, inputs, text areas, selects, navigation items, smart links.',
2315
- exampleValue: '0.375rem'
4151
+ exampleValue: '0.375rem',
4152
+ usageGuidelines: {
4153
+ usage: 'Controls the rounding of element corners, often for containers (e.g. radius.medium, radius.circle)',
4154
+ cssProperties: ['border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-left-radius', 'border-bottom-right-radius']
4155
+ }
2316
4156
  }, {
2317
4157
  name: 'radius.large',
2318
4158
  path: ['radius', 'large'],
2319
4159
  description: 'Use for containment elements: cards, in-page containers, floating UI, dropdown menus.',
2320
- exampleValue: '0.5rem'
4160
+ exampleValue: '0.5rem',
4161
+ usageGuidelines: {
4162
+ usage: 'Controls the rounding of element corners, often for containers (e.g. radius.medium, radius.circle)',
4163
+ cssProperties: ['border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-left-radius', 'border-bottom-right-radius']
4164
+ }
2321
4165
  }, {
2322
4166
  name: 'radius.xlarge',
2323
4167
  path: ['radius', 'xlarge'],
2324
4168
  description: 'Use for large page elements: full-page containers, large containers, modals, Kanban columns, tables.',
2325
- exampleValue: '0.75rem'
4169
+ exampleValue: '0.75rem',
4170
+ usageGuidelines: {
4171
+ usage: 'Controls the rounding of element corners, often for containers (e.g. radius.medium, radius.circle)',
4172
+ cssProperties: ['border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-left-radius', 'border-bottom-right-radius']
4173
+ }
2326
4174
  }, {
2327
4175
  name: 'radius.xxlarge',
2328
4176
  path: ['radius', 'xxlarge'],
2329
4177
  description: 'Use for video player containers.',
2330
- exampleValue: '1rem'
4178
+ exampleValue: '1rem',
4179
+ usageGuidelines: {
4180
+ usage: 'Controls the rounding of element corners, often for containers (e.g. radius.medium, radius.circle)',
4181
+ cssProperties: ['border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-left-radius', 'border-bottom-right-radius']
4182
+ }
2331
4183
  }, {
2332
4184
  name: 'radius.full',
2333
4185
  path: ['radius', 'full'],
2334
4186
  description: 'Use for circular elements (user/people related): avatars, names, user-related UI, emoji reactions.',
2335
- exampleValue: '624.9375rem'
4187
+ exampleValue: '624.9375rem',
4188
+ usageGuidelines: {
4189
+ usage: 'Controls the rounding of element corners, often for containers (e.g. radius.medium, radius.circle)',
4190
+ cssProperties: ['border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-left-radius', 'border-bottom-right-radius']
4191
+ }
2336
4192
  }, {
2337
4193
  name: 'radius.tile',
2338
4194
  path: ['radius', 'tile'],
2339
4195
  description: 'Use this specific radius token exclusively for the tile component system.',
2340
- exampleValue: '25%'
4196
+ exampleValue: '25%',
4197
+ usageGuidelines: {
4198
+ usage: 'Controls the rounding of element corners, often for containers (e.g. radius.medium, radius.circle)',
4199
+ cssProperties: ['border-radius', 'border-top-left-radius', 'border-top-right-radius', 'border-bottom-left-radius', 'border-bottom-right-radius']
4200
+ }
2341
4201
  }, {
2342
4202
  name: 'border.width',
2343
4203
  path: ['border', 'width', '[default]'],
2344
4204
  description: 'The default width for all standard component borders and dividers.',
2345
- exampleValue: '0.0625rem'
4205
+ exampleValue: '0.0625rem',
4206
+ usageGuidelines: {
4207
+ usage: 'Controls the thickness of borders/dividers (e.g. border.width, border.width.selected). Use to standardize border widths throughout UI',
4208
+ cssProperties: ['border-width']
4209
+ }
2346
4210
  }, {
2347
4211
  name: 'border.width.selected',
2348
4212
  path: ['border', 'width', 'selected'],
2349
4213
  description: 'The width used to indicate a selected element, such as an active tab or a chosen item.',
2350
- exampleValue: '0.125rem'
4214
+ exampleValue: '0.125rem',
4215
+ usageGuidelines: {
4216
+ usage: 'Controls the thickness of borders/dividers (e.g. border.width, border.width.selected). Use to standardize border widths throughout UI',
4217
+ cssProperties: ['border-width']
4218
+ }
2351
4219
  }, {
2352
4220
  name: 'border.width.focused',
2353
4221
  path: ['border', 'width', 'focused'],
2354
4222
  description: 'The width used for the focus ring on interactive elements.',
2355
- exampleValue: '0.125rem'
4223
+ exampleValue: '0.125rem',
4224
+ usageGuidelines: {
4225
+ usage: 'Controls the thickness of borders/dividers (e.g. border.width, border.width.selected). Use to standardize border widths throughout UI',
4226
+ cssProperties: ['border-width']
4227
+ }
2356
4228
  }];