@atlaskit/tokens 0.8.2 → 0.9.1
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.
- package/CHANGELOG.md +18 -0
- package/css/atlassian-dark.css +5 -1
- package/css/atlassian-light.css +5 -1
- package/dist/cjs/artifacts/rename-mapping.js +4 -0
- package/dist/cjs/artifacts/token-default-values.js +5 -1
- package/dist/cjs/artifacts/token-names.js +4 -0
- package/dist/cjs/artifacts/tokens-raw/atlassian-dark.js +638 -12
- package/dist/cjs/artifacts/tokens-raw/atlassian-light.js +636 -10
- package/dist/cjs/get-token.js +1 -1
- package/dist/cjs/tokens/atlassian-dark/color/background.js +14 -2
- package/dist/cjs/tokens/atlassian-dark/color/border.js +3 -0
- package/dist/cjs/tokens/atlassian-dark/deprecated/deprecated.js +6 -0
- package/dist/cjs/tokens/atlassian-light/color/background.js +14 -2
- package/dist/cjs/tokens/atlassian-light/color/border.js +3 -0
- package/dist/cjs/tokens/atlassian-light/deprecated/deprecated.js +6 -0
- package/dist/cjs/tokens/default/color/accent.js +65 -1
- package/dist/cjs/tokens/default/color/background.js +82 -6
- package/dist/cjs/tokens/default/color/border.js +19 -0
- package/dist/cjs/tokens/default/color/icon.js +13 -1
- package/dist/cjs/tokens/default/color/interaction.js +4 -0
- package/dist/cjs/tokens/default/color/skeleton.js +2 -0
- package/dist/cjs/tokens/default/color/text.js +15 -0
- package/dist/cjs/tokens/default/deprecated/deprecated.js +108 -0
- package/dist/cjs/tokens/default/elevation/shadow.js +3 -0
- package/dist/cjs/tokens/default/elevation/surface.js +4 -0
- package/dist/cjs/tokens/default/utility/utility.js +2 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/artifacts/rename-mapping.js +4 -0
- package/dist/es2019/artifacts/token-default-values.js +5 -1
- package/dist/es2019/artifacts/token-names.js +4 -0
- package/dist/es2019/artifacts/tokens-raw/atlassian-dark.js +638 -12
- package/dist/es2019/artifacts/tokens-raw/atlassian-light.js +636 -10
- package/dist/es2019/get-token.js +1 -1
- package/dist/es2019/tokens/atlassian-dark/color/background.js +14 -2
- package/dist/es2019/tokens/atlassian-dark/color/border.js +3 -0
- package/dist/es2019/tokens/atlassian-dark/deprecated/deprecated.js +6 -0
- package/dist/es2019/tokens/atlassian-light/color/background.js +14 -2
- package/dist/es2019/tokens/atlassian-light/color/border.js +3 -0
- package/dist/es2019/tokens/atlassian-light/deprecated/deprecated.js +6 -0
- package/dist/es2019/tokens/default/color/accent.js +65 -1
- package/dist/es2019/tokens/default/color/background.js +82 -6
- package/dist/es2019/tokens/default/color/border.js +19 -0
- package/dist/es2019/tokens/default/color/icon.js +13 -1
- package/dist/es2019/tokens/default/color/interaction.js +4 -0
- package/dist/es2019/tokens/default/color/skeleton.js +2 -0
- package/dist/es2019/tokens/default/color/text.js +15 -0
- package/dist/es2019/tokens/default/deprecated/deprecated.js +108 -0
- package/dist/es2019/tokens/default/elevation/shadow.js +3 -0
- package/dist/es2019/tokens/default/elevation/surface.js +4 -0
- package/dist/es2019/tokens/default/utility/utility.js +2 -0
- package/dist/es2019/version.json +1 -1
- package/dist/esm/artifacts/rename-mapping.js +4 -0
- package/dist/esm/artifacts/token-default-values.js +5 -1
- package/dist/esm/artifacts/token-names.js +4 -0
- package/dist/esm/artifacts/tokens-raw/atlassian-dark.js +638 -12
- package/dist/esm/artifacts/tokens-raw/atlassian-light.js +636 -10
- package/dist/esm/get-token.js +1 -1
- package/dist/esm/tokens/atlassian-dark/color/background.js +14 -2
- package/dist/esm/tokens/atlassian-dark/color/border.js +3 -0
- package/dist/esm/tokens/atlassian-dark/deprecated/deprecated.js +6 -0
- package/dist/esm/tokens/atlassian-light/color/background.js +14 -2
- package/dist/esm/tokens/atlassian-light/color/border.js +3 -0
- package/dist/esm/tokens/atlassian-light/deprecated/deprecated.js +6 -0
- package/dist/esm/tokens/default/color/accent.js +65 -1
- package/dist/esm/tokens/default/color/background.js +82 -6
- package/dist/esm/tokens/default/color/border.js +19 -0
- package/dist/esm/tokens/default/color/icon.js +13 -1
- package/dist/esm/tokens/default/color/interaction.js +4 -0
- package/dist/esm/tokens/default/color/skeleton.js +2 -0
- package/dist/esm/tokens/default/color/text.js +15 -0
- package/dist/esm/tokens/default/deprecated/deprecated.js +108 -0
- package/dist/esm/tokens/default/elevation/shadow.js +3 -0
- package/dist/esm/tokens/default/elevation/surface.js +4 -0
- package/dist/esm/tokens/default/utility/utility.js +2 -0
- package/dist/esm/version.json +1 -1
- package/dist/types/artifacts/token-default-values.d.ts +5 -1
- package/dist/types/artifacts/token-names.d.ts +8 -0
- package/dist/types/artifacts/tokens-raw/atlassian-dark.d.ts +8 -0
- package/dist/types/artifacts/tokens-raw/atlassian-light.d.ts +8 -0
- package/dist/types/artifacts/types-internal.d.ts +1 -1
- package/dist/types/artifacts/types.d.ts +1 -1
- package/dist/types/tokens/atlassian-dark/utility/utility.d.ts +2 -10
- package/dist/types/tokens/atlassian-light/utility/utility.d.ts +2 -10
- package/dist/types/tokens/default/utility/utility.d.ts +2 -138
- package/dist/types/types.d.ts +13 -1
- package/package.json +6 -2
|
@@ -4,6 +4,7 @@ const tokens = [{
|
|
|
4
4
|
"attributes": {
|
|
5
5
|
"group": "paint",
|
|
6
6
|
"state": "active",
|
|
7
|
+
"introduced": "0.6.0",
|
|
7
8
|
"description": "Use for blue text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
8
9
|
},
|
|
9
10
|
"value": "#0055CC",
|
|
@@ -13,6 +14,7 @@ const tokens = [{
|
|
|
13
14
|
"attributes": {
|
|
14
15
|
"group": "paint",
|
|
15
16
|
"state": "active",
|
|
17
|
+
"introduced": "0.6.0",
|
|
16
18
|
"description": "Use for blue text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
17
19
|
},
|
|
18
20
|
"value": "B800"
|
|
@@ -23,6 +25,7 @@ const tokens = [{
|
|
|
23
25
|
"attributes": {
|
|
24
26
|
"group": "paint",
|
|
25
27
|
"state": "active",
|
|
28
|
+
"introduced": "0.7.0",
|
|
26
29
|
"description": "Use on bold blue accent backgrounds."
|
|
27
30
|
},
|
|
28
31
|
"value": "#09326C",
|
|
@@ -32,6 +35,7 @@ const tokens = [{
|
|
|
32
35
|
"attributes": {
|
|
33
36
|
"group": "paint",
|
|
34
37
|
"state": "active",
|
|
38
|
+
"introduced": "0.7.0",
|
|
35
39
|
"description": "Use on bold blue accent backgrounds."
|
|
36
40
|
},
|
|
37
41
|
"value": "B900"
|
|
@@ -42,6 +46,7 @@ const tokens = [{
|
|
|
42
46
|
"attributes": {
|
|
43
47
|
"group": "paint",
|
|
44
48
|
"state": "active",
|
|
49
|
+
"introduced": "0.6.0",
|
|
45
50
|
"description": "Use for red text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
46
51
|
},
|
|
47
52
|
"value": "#AE2A19",
|
|
@@ -51,6 +56,7 @@ const tokens = [{
|
|
|
51
56
|
"attributes": {
|
|
52
57
|
"group": "paint",
|
|
53
58
|
"state": "active",
|
|
59
|
+
"introduced": "0.6.0",
|
|
54
60
|
"description": "Use for red text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
55
61
|
},
|
|
56
62
|
"value": "R800"
|
|
@@ -61,6 +67,7 @@ const tokens = [{
|
|
|
61
67
|
"attributes": {
|
|
62
68
|
"group": "paint",
|
|
63
69
|
"state": "active",
|
|
70
|
+
"introduced": "0.7.0",
|
|
64
71
|
"description": "Use on bold red accent backgrounds."
|
|
65
72
|
},
|
|
66
73
|
"value": "#601E16",
|
|
@@ -70,6 +77,7 @@ const tokens = [{
|
|
|
70
77
|
"attributes": {
|
|
71
78
|
"group": "paint",
|
|
72
79
|
"state": "active",
|
|
80
|
+
"introduced": "0.7.0",
|
|
73
81
|
"description": "Use on bold red accent backgrounds."
|
|
74
82
|
},
|
|
75
83
|
"value": "R900"
|
|
@@ -80,6 +88,7 @@ const tokens = [{
|
|
|
80
88
|
"attributes": {
|
|
81
89
|
"group": "paint",
|
|
82
90
|
"state": "active",
|
|
91
|
+
"introduced": "0.6.0",
|
|
83
92
|
"description": "Use for orange text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
84
93
|
},
|
|
85
94
|
"value": "#974F0C",
|
|
@@ -89,6 +98,7 @@ const tokens = [{
|
|
|
89
98
|
"attributes": {
|
|
90
99
|
"group": "paint",
|
|
91
100
|
"state": "active",
|
|
101
|
+
"introduced": "0.6.0",
|
|
92
102
|
"description": "Use for orange text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
93
103
|
},
|
|
94
104
|
"value": "O800"
|
|
@@ -99,6 +109,7 @@ const tokens = [{
|
|
|
99
109
|
"attributes": {
|
|
100
110
|
"group": "paint",
|
|
101
111
|
"state": "active",
|
|
112
|
+
"introduced": "0.7.0",
|
|
102
113
|
"description": "Use on bold orange accent backgrounds."
|
|
103
114
|
},
|
|
104
115
|
"value": "#5F3811",
|
|
@@ -108,6 +119,7 @@ const tokens = [{
|
|
|
108
119
|
"attributes": {
|
|
109
120
|
"group": "paint",
|
|
110
121
|
"state": "active",
|
|
122
|
+
"introduced": "0.7.0",
|
|
111
123
|
"description": "Use on bold orange accent backgrounds."
|
|
112
124
|
},
|
|
113
125
|
"value": "O900"
|
|
@@ -118,6 +130,7 @@ const tokens = [{
|
|
|
118
130
|
"attributes": {
|
|
119
131
|
"group": "paint",
|
|
120
132
|
"state": "active",
|
|
133
|
+
"introduced": "0.6.0",
|
|
121
134
|
"description": "Use for yellow text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
122
135
|
},
|
|
123
136
|
"value": "#7F5F01",
|
|
@@ -127,6 +140,7 @@ const tokens = [{
|
|
|
127
140
|
"attributes": {
|
|
128
141
|
"group": "paint",
|
|
129
142
|
"state": "active",
|
|
143
|
+
"introduced": "0.6.0",
|
|
130
144
|
"description": "Use for yellow text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
131
145
|
},
|
|
132
146
|
"value": "Y800"
|
|
@@ -137,6 +151,7 @@ const tokens = [{
|
|
|
137
151
|
"attributes": {
|
|
138
152
|
"group": "paint",
|
|
139
153
|
"state": "active",
|
|
154
|
+
"introduced": "0.7.0",
|
|
140
155
|
"description": "Use on bold yellow accent backgrounds."
|
|
141
156
|
},
|
|
142
157
|
"value": "#533F04",
|
|
@@ -146,6 +161,7 @@ const tokens = [{
|
|
|
146
161
|
"attributes": {
|
|
147
162
|
"group": "paint",
|
|
148
163
|
"state": "active",
|
|
164
|
+
"introduced": "0.7.0",
|
|
149
165
|
"description": "Use on bold yellow accent backgrounds."
|
|
150
166
|
},
|
|
151
167
|
"value": "Y900"
|
|
@@ -156,6 +172,7 @@ const tokens = [{
|
|
|
156
172
|
"attributes": {
|
|
157
173
|
"group": "paint",
|
|
158
174
|
"state": "active",
|
|
175
|
+
"introduced": "0.6.0",
|
|
159
176
|
"description": "Use for green text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
160
177
|
},
|
|
161
178
|
"value": "#216E4E",
|
|
@@ -165,6 +182,7 @@ const tokens = [{
|
|
|
165
182
|
"attributes": {
|
|
166
183
|
"group": "paint",
|
|
167
184
|
"state": "active",
|
|
185
|
+
"introduced": "0.6.0",
|
|
168
186
|
"description": "Use for green text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
169
187
|
},
|
|
170
188
|
"value": "G800"
|
|
@@ -175,6 +193,7 @@ const tokens = [{
|
|
|
175
193
|
"attributes": {
|
|
176
194
|
"group": "paint",
|
|
177
195
|
"state": "active",
|
|
196
|
+
"introduced": "0.7.0",
|
|
178
197
|
"description": "Use on bold green accent backgrounds."
|
|
179
198
|
},
|
|
180
199
|
"value": "#164B35",
|
|
@@ -184,6 +203,7 @@ const tokens = [{
|
|
|
184
203
|
"attributes": {
|
|
185
204
|
"group": "paint",
|
|
186
205
|
"state": "active",
|
|
206
|
+
"introduced": "0.7.0",
|
|
187
207
|
"description": "Use on bold green accent backgrounds."
|
|
188
208
|
},
|
|
189
209
|
"value": "G900"
|
|
@@ -194,6 +214,7 @@ const tokens = [{
|
|
|
194
214
|
"attributes": {
|
|
195
215
|
"group": "paint",
|
|
196
216
|
"state": "active",
|
|
217
|
+
"introduced": "0.6.0",
|
|
197
218
|
"description": "Use for purple text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
198
219
|
},
|
|
199
220
|
"value": "#5E4DB2",
|
|
@@ -203,6 +224,7 @@ const tokens = [{
|
|
|
203
224
|
"attributes": {
|
|
204
225
|
"group": "paint",
|
|
205
226
|
"state": "active",
|
|
227
|
+
"introduced": "0.6.0",
|
|
206
228
|
"description": "Use for purple text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
207
229
|
},
|
|
208
230
|
"value": "P800"
|
|
@@ -213,6 +235,7 @@ const tokens = [{
|
|
|
213
235
|
"attributes": {
|
|
214
236
|
"group": "paint",
|
|
215
237
|
"state": "active",
|
|
238
|
+
"introduced": "0.7.0",
|
|
216
239
|
"description": "Use on bold purple accent backgrounds."
|
|
217
240
|
},
|
|
218
241
|
"value": "#352C63",
|
|
@@ -222,6 +245,7 @@ const tokens = [{
|
|
|
222
245
|
"attributes": {
|
|
223
246
|
"group": "paint",
|
|
224
247
|
"state": "active",
|
|
248
|
+
"introduced": "0.7.0",
|
|
225
249
|
"description": "Use on bold purple accent backgrounds."
|
|
226
250
|
},
|
|
227
251
|
"value": "P900"
|
|
@@ -232,6 +256,7 @@ const tokens = [{
|
|
|
232
256
|
"attributes": {
|
|
233
257
|
"group": "paint",
|
|
234
258
|
"state": "active",
|
|
259
|
+
"introduced": "0.6.0",
|
|
235
260
|
"description": "Use for teal text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
236
261
|
},
|
|
237
262
|
"value": "#206B74",
|
|
@@ -241,6 +266,7 @@ const tokens = [{
|
|
|
241
266
|
"attributes": {
|
|
242
267
|
"group": "paint",
|
|
243
268
|
"state": "active",
|
|
269
|
+
"introduced": "0.6.0",
|
|
244
270
|
"description": "Use for teal text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
245
271
|
},
|
|
246
272
|
"value": "T800"
|
|
@@ -251,6 +277,7 @@ const tokens = [{
|
|
|
251
277
|
"attributes": {
|
|
252
278
|
"group": "paint",
|
|
253
279
|
"state": "active",
|
|
280
|
+
"introduced": "0.7.0",
|
|
254
281
|
"description": "Use on bold teal accent backgrounds."
|
|
255
282
|
},
|
|
256
283
|
"value": "#1D474C",
|
|
@@ -260,6 +287,7 @@ const tokens = [{
|
|
|
260
287
|
"attributes": {
|
|
261
288
|
"group": "paint",
|
|
262
289
|
"state": "active",
|
|
290
|
+
"introduced": "0.7.0",
|
|
263
291
|
"description": "Use on bold teal accent backgrounds."
|
|
264
292
|
},
|
|
265
293
|
"value": "T900"
|
|
@@ -270,7 +298,8 @@ const tokens = [{
|
|
|
270
298
|
"attributes": {
|
|
271
299
|
"group": "paint",
|
|
272
300
|
"state": "active",
|
|
273
|
-
"
|
|
301
|
+
"introduced": "0.6.0",
|
|
302
|
+
"description": "Use for magenta text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
274
303
|
},
|
|
275
304
|
"value": "#943D73",
|
|
276
305
|
"filePath": "src/tokens/atlassian-light/color/accent.tsx",
|
|
@@ -279,7 +308,8 @@ const tokens = [{
|
|
|
279
308
|
"attributes": {
|
|
280
309
|
"group": "paint",
|
|
281
310
|
"state": "active",
|
|
282
|
-
"
|
|
311
|
+
"introduced": "0.6.0",
|
|
312
|
+
"description": "Use for magenta text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
283
313
|
},
|
|
284
314
|
"value": "M800"
|
|
285
315
|
},
|
|
@@ -289,6 +319,7 @@ const tokens = [{
|
|
|
289
319
|
"attributes": {
|
|
290
320
|
"group": "paint",
|
|
291
321
|
"state": "active",
|
|
322
|
+
"introduced": "0.7.0",
|
|
292
323
|
"description": "Use on bold magenta accent backgrounds."
|
|
293
324
|
},
|
|
294
325
|
"value": "#50253F",
|
|
@@ -298,6 +329,7 @@ const tokens = [{
|
|
|
298
329
|
"attributes": {
|
|
299
330
|
"group": "paint",
|
|
300
331
|
"state": "active",
|
|
332
|
+
"introduced": "0.7.0",
|
|
301
333
|
"description": "Use on bold magenta accent backgrounds."
|
|
302
334
|
},
|
|
303
335
|
"value": "M900"
|
|
@@ -308,6 +340,7 @@ const tokens = [{
|
|
|
308
340
|
"attributes": {
|
|
309
341
|
"group": "paint",
|
|
310
342
|
"state": "active",
|
|
343
|
+
"introduced": "0.6.0",
|
|
311
344
|
"description": "Use for primary text, such as body copy, sentence case headers, and buttons."
|
|
312
345
|
},
|
|
313
346
|
"value": "#172B4D",
|
|
@@ -317,6 +350,7 @@ const tokens = [{
|
|
|
317
350
|
"attributes": {
|
|
318
351
|
"group": "paint",
|
|
319
352
|
"state": "active",
|
|
353
|
+
"introduced": "0.6.0",
|
|
320
354
|
"description": "Use for primary text, such as body copy, sentence case headers, and buttons."
|
|
321
355
|
},
|
|
322
356
|
"value": "N1000"
|
|
@@ -327,6 +361,7 @@ const tokens = [{
|
|
|
327
361
|
"attributes": {
|
|
328
362
|
"group": "paint",
|
|
329
363
|
"state": "active",
|
|
364
|
+
"introduced": "0.6.0",
|
|
330
365
|
"description": "Use for secondary text, such as navigation, subtle button links, input field labels, and all caps subheadings."
|
|
331
366
|
},
|
|
332
367
|
"value": "#44546F",
|
|
@@ -336,6 +371,7 @@ const tokens = [{
|
|
|
336
371
|
"attributes": {
|
|
337
372
|
"group": "paint",
|
|
338
373
|
"state": "active",
|
|
374
|
+
"introduced": "0.6.0",
|
|
339
375
|
"description": "Use for secondary text, such as navigation, subtle button links, input field labels, and all caps subheadings."
|
|
340
376
|
},
|
|
341
377
|
"value": "N800"
|
|
@@ -346,6 +382,7 @@ const tokens = [{
|
|
|
346
382
|
"attributes": {
|
|
347
383
|
"group": "paint",
|
|
348
384
|
"state": "active",
|
|
385
|
+
"introduced": "0.6.0",
|
|
349
386
|
"description": "Use for tertiary text, such as meta-data, breadcrumbs, input field placeholder and helper text."
|
|
350
387
|
},
|
|
351
388
|
"value": "#626F86",
|
|
@@ -355,6 +392,7 @@ const tokens = [{
|
|
|
355
392
|
"attributes": {
|
|
356
393
|
"group": "paint",
|
|
357
394
|
"state": "active",
|
|
395
|
+
"introduced": "0.6.0",
|
|
358
396
|
"description": "Use for tertiary text, such as meta-data, breadcrumbs, input field placeholder and helper text."
|
|
359
397
|
},
|
|
360
398
|
"value": "N700"
|
|
@@ -365,6 +403,7 @@ const tokens = [{
|
|
|
365
403
|
"attributes": {
|
|
366
404
|
"group": "paint",
|
|
367
405
|
"state": "active",
|
|
406
|
+
"introduced": "0.0.15",
|
|
368
407
|
"description": "Use for text in a disabled state."
|
|
369
408
|
},
|
|
370
409
|
"value": "#8993A5",
|
|
@@ -374,6 +413,7 @@ const tokens = [{
|
|
|
374
413
|
"attributes": {
|
|
375
414
|
"group": "paint",
|
|
376
415
|
"state": "active",
|
|
416
|
+
"introduced": "0.0.15",
|
|
377
417
|
"description": "Use for text in a disabled state."
|
|
378
418
|
},
|
|
379
419
|
"value": "N500"
|
|
@@ -384,6 +424,7 @@ const tokens = [{
|
|
|
384
424
|
"attributes": {
|
|
385
425
|
"group": "paint",
|
|
386
426
|
"state": "active",
|
|
427
|
+
"introduced": "0.6.0",
|
|
387
428
|
"description": "Use for text on bold backgrounds."
|
|
388
429
|
},
|
|
389
430
|
"value": "#FFFFFF",
|
|
@@ -393,6 +434,7 @@ const tokens = [{
|
|
|
393
434
|
"attributes": {
|
|
394
435
|
"group": "paint",
|
|
395
436
|
"state": "active",
|
|
437
|
+
"introduced": "0.6.0",
|
|
396
438
|
"description": "Use for text on bold backgrounds."
|
|
397
439
|
},
|
|
398
440
|
"value": "N0"
|
|
@@ -403,6 +445,7 @@ const tokens = [{
|
|
|
403
445
|
"attributes": {
|
|
404
446
|
"group": "paint",
|
|
405
447
|
"state": "active",
|
|
448
|
+
"introduced": "0.6.0",
|
|
406
449
|
"description": "Use for text that reinforces our brand."
|
|
407
450
|
},
|
|
408
451
|
"value": "#0C66E4",
|
|
@@ -412,6 +455,7 @@ const tokens = [{
|
|
|
412
455
|
"attributes": {
|
|
413
456
|
"group": "paint",
|
|
414
457
|
"state": "active",
|
|
458
|
+
"introduced": "0.6.0",
|
|
415
459
|
"description": "Use for text that reinforces our brand."
|
|
416
460
|
},
|
|
417
461
|
"value": "B700"
|
|
@@ -422,6 +466,7 @@ const tokens = [{
|
|
|
422
466
|
"attributes": {
|
|
423
467
|
"group": "paint",
|
|
424
468
|
"state": "active",
|
|
469
|
+
"introduced": "0.6.0",
|
|
425
470
|
"description": "Use for text in selected or opened states, such as tabs and dropdown buttons."
|
|
426
471
|
},
|
|
427
472
|
"value": "#0C66E4",
|
|
@@ -431,6 +476,7 @@ const tokens = [{
|
|
|
431
476
|
"attributes": {
|
|
432
477
|
"group": "paint",
|
|
433
478
|
"state": "active",
|
|
479
|
+
"introduced": "0.6.0",
|
|
434
480
|
"description": "Use for text in selected or opened states, such as tabs and dropdown buttons."
|
|
435
481
|
},
|
|
436
482
|
"value": "B700"
|
|
@@ -441,6 +487,7 @@ const tokens = [{
|
|
|
441
487
|
"attributes": {
|
|
442
488
|
"group": "paint",
|
|
443
489
|
"state": "active",
|
|
490
|
+
"introduced": "0.0.15",
|
|
444
491
|
"description": "Use for critical text, such as input field error messaging."
|
|
445
492
|
},
|
|
446
493
|
"value": "#AE2A19",
|
|
@@ -450,6 +497,7 @@ const tokens = [{
|
|
|
450
497
|
"attributes": {
|
|
451
498
|
"group": "paint",
|
|
452
499
|
"state": "active",
|
|
500
|
+
"introduced": "0.0.15",
|
|
453
501
|
"description": "Use for critical text, such as input field error messaging."
|
|
454
502
|
},
|
|
455
503
|
"value": "R800"
|
|
@@ -460,6 +508,7 @@ const tokens = [{
|
|
|
460
508
|
"attributes": {
|
|
461
509
|
"group": "paint",
|
|
462
510
|
"state": "active",
|
|
511
|
+
"introduced": "0.0.15",
|
|
463
512
|
"description": "Use for text to emphasize caution, such as in moved lozenges."
|
|
464
513
|
},
|
|
465
514
|
"value": "#974F0C",
|
|
@@ -469,6 +518,7 @@ const tokens = [{
|
|
|
469
518
|
"attributes": {
|
|
470
519
|
"group": "paint",
|
|
471
520
|
"state": "active",
|
|
521
|
+
"introduced": "0.0.15",
|
|
472
522
|
"description": "Use for text to emphasize caution, such as in moved lozenges."
|
|
473
523
|
},
|
|
474
524
|
"value": "O800"
|
|
@@ -479,6 +529,7 @@ const tokens = [{
|
|
|
479
529
|
"attributes": {
|
|
480
530
|
"group": "paint",
|
|
481
531
|
"state": "active",
|
|
532
|
+
"introduced": "0.6.0",
|
|
482
533
|
"description": "Use for text when on bold warning backgrounds."
|
|
483
534
|
},
|
|
484
535
|
"value": "#172B4D",
|
|
@@ -488,6 +539,7 @@ const tokens = [{
|
|
|
488
539
|
"attributes": {
|
|
489
540
|
"group": "paint",
|
|
490
541
|
"state": "active",
|
|
542
|
+
"introduced": "0.6.0",
|
|
491
543
|
"description": "Use for text when on bold warning backgrounds."
|
|
492
544
|
},
|
|
493
545
|
"value": "N1000"
|
|
@@ -498,6 +550,7 @@ const tokens = [{
|
|
|
498
550
|
"attributes": {
|
|
499
551
|
"group": "paint",
|
|
500
552
|
"state": "active",
|
|
553
|
+
"introduced": "0.0.15",
|
|
501
554
|
"description": "Use for text to communicate a favourable outcome, such as input field success messaging."
|
|
502
555
|
},
|
|
503
556
|
"value": "#216E4E",
|
|
@@ -507,6 +560,7 @@ const tokens = [{
|
|
|
507
560
|
"attributes": {
|
|
508
561
|
"group": "paint",
|
|
509
562
|
"state": "active",
|
|
563
|
+
"introduced": "0.0.15",
|
|
510
564
|
"description": "Use for text to communicate a favourable outcome, such as input field success messaging."
|
|
511
565
|
},
|
|
512
566
|
"value": "G800"
|
|
@@ -517,6 +571,7 @@ const tokens = [{
|
|
|
517
571
|
"attributes": {
|
|
518
572
|
"group": "paint",
|
|
519
573
|
"state": "active",
|
|
574
|
+
"introduced": "0.0.15",
|
|
520
575
|
"description": "Use for text to emphasize change or something new, such as in new lozenges."
|
|
521
576
|
},
|
|
522
577
|
"value": "#5E4DB2",
|
|
@@ -526,6 +581,7 @@ const tokens = [{
|
|
|
526
581
|
"attributes": {
|
|
527
582
|
"group": "paint",
|
|
528
583
|
"state": "active",
|
|
584
|
+
"introduced": "0.0.15",
|
|
529
585
|
"description": "Use for text to emphasize change or something new, such as in new lozenges."
|
|
530
586
|
},
|
|
531
587
|
"value": "P800"
|
|
@@ -536,6 +592,7 @@ const tokens = [{
|
|
|
536
592
|
"attributes": {
|
|
537
593
|
"group": "paint",
|
|
538
594
|
"state": "active",
|
|
595
|
+
"introduced": "0.6.0",
|
|
539
596
|
"description": "Use for informative text or to communicate something is in progress, such as in-progress lozenges."
|
|
540
597
|
},
|
|
541
598
|
"value": "#0055CC",
|
|
@@ -545,6 +602,7 @@ const tokens = [{
|
|
|
545
602
|
"attributes": {
|
|
546
603
|
"group": "paint",
|
|
547
604
|
"state": "active",
|
|
605
|
+
"introduced": "0.6.0",
|
|
548
606
|
"description": "Use for informative text or to communicate something is in progress, such as in-progress lozenges."
|
|
549
607
|
},
|
|
550
608
|
"value": "B800"
|
|
@@ -555,6 +613,7 @@ const tokens = [{
|
|
|
555
613
|
"attributes": {
|
|
556
614
|
"group": "paint",
|
|
557
615
|
"state": "deleted",
|
|
616
|
+
"introduced": "0.0.15",
|
|
558
617
|
"replacement": "color.text.[default]",
|
|
559
618
|
"description": "Use for primary text, such as body copy, sentence case headers, and buttons"
|
|
560
619
|
},
|
|
@@ -565,6 +624,7 @@ const tokens = [{
|
|
|
565
624
|
"attributes": {
|
|
566
625
|
"group": "paint",
|
|
567
626
|
"state": "deleted",
|
|
627
|
+
"introduced": "0.0.15",
|
|
568
628
|
"replacement": "color.text.[default]",
|
|
569
629
|
"description": "Use for primary text, such as body copy, sentence case headers, and buttons"
|
|
570
630
|
},
|
|
@@ -576,6 +636,7 @@ const tokens = [{
|
|
|
576
636
|
"attributes": {
|
|
577
637
|
"group": "paint",
|
|
578
638
|
"state": "deleted",
|
|
639
|
+
"introduced": "0.0.15",
|
|
579
640
|
"replacement": "color.link.pressed",
|
|
580
641
|
"description": "Use for links in a pressed state"
|
|
581
642
|
},
|
|
@@ -586,6 +647,7 @@ const tokens = [{
|
|
|
586
647
|
"attributes": {
|
|
587
648
|
"group": "paint",
|
|
588
649
|
"state": "deleted",
|
|
650
|
+
"introduced": "0.0.15",
|
|
589
651
|
"replacement": "color.link.pressed",
|
|
590
652
|
"description": "Use for links in a pressed state"
|
|
591
653
|
},
|
|
@@ -597,6 +659,7 @@ const tokens = [{
|
|
|
597
659
|
"attributes": {
|
|
598
660
|
"group": "paint",
|
|
599
661
|
"state": "deleted",
|
|
662
|
+
"introduced": "0.0.15",
|
|
600
663
|
"replacement": "color.link.[default]",
|
|
601
664
|
"description": "Use for links in a resting or hover state. Add an underline for hover states"
|
|
602
665
|
},
|
|
@@ -607,6 +670,7 @@ const tokens = [{
|
|
|
607
670
|
"attributes": {
|
|
608
671
|
"group": "paint",
|
|
609
672
|
"state": "deleted",
|
|
673
|
+
"introduced": "0.0.15",
|
|
610
674
|
"replacement": "color.link.[default]",
|
|
611
675
|
"description": "Use for links in a resting or hover state. Add an underline for hover states"
|
|
612
676
|
},
|
|
@@ -618,6 +682,7 @@ const tokens = [{
|
|
|
618
682
|
"attributes": {
|
|
619
683
|
"group": "paint",
|
|
620
684
|
"state": "deleted",
|
|
685
|
+
"introduced": "0.0.15",
|
|
621
686
|
"replacement": "color.text.subtlest",
|
|
622
687
|
"description": "\nUse for tertiary text, such as meta-data, breadcrumbs, input field placeholder and helper text.\n\nUse for icons that are paired with text.medEmphasis text"
|
|
623
688
|
},
|
|
@@ -628,6 +693,7 @@ const tokens = [{
|
|
|
628
693
|
"attributes": {
|
|
629
694
|
"group": "paint",
|
|
630
695
|
"state": "deleted",
|
|
696
|
+
"introduced": "0.0.15",
|
|
631
697
|
"replacement": "color.text.subtlest",
|
|
632
698
|
"description": "\nUse for tertiary text, such as meta-data, breadcrumbs, input field placeholder and helper text.\n\nUse for icons that are paired with text.medEmphasis text"
|
|
633
699
|
},
|
|
@@ -639,6 +705,7 @@ const tokens = [{
|
|
|
639
705
|
"attributes": {
|
|
640
706
|
"group": "paint",
|
|
641
707
|
"state": "deleted",
|
|
708
|
+
"introduced": "0.0.15",
|
|
642
709
|
"replacement": "color.text.subtle",
|
|
643
710
|
"description": "\nUse for secondary text, such navigation, subtle button links, input field labels, and all caps subheadings.\n\nUse for icon-only buttons, or icons paired with text.highEmphasis text\n "
|
|
644
711
|
},
|
|
@@ -649,6 +716,7 @@ const tokens = [{
|
|
|
649
716
|
"attributes": {
|
|
650
717
|
"group": "paint",
|
|
651
718
|
"state": "deleted",
|
|
719
|
+
"introduced": "0.0.15",
|
|
652
720
|
"replacement": "color.text.subtle",
|
|
653
721
|
"description": "\nUse for secondary text, such navigation, subtle button links, input field labels, and all caps subheadings.\n\nUse for icon-only buttons, or icons paired with text.highEmphasis text\n "
|
|
654
722
|
},
|
|
@@ -660,6 +728,7 @@ const tokens = [{
|
|
|
660
728
|
"attributes": {
|
|
661
729
|
"group": "paint",
|
|
662
730
|
"state": "deleted",
|
|
731
|
+
"introduced": "0.0.15",
|
|
663
732
|
"replacement": "color.text.inverse",
|
|
664
733
|
"description": "Use for text and icons when on bold backgrounds"
|
|
665
734
|
},
|
|
@@ -670,6 +739,7 @@ const tokens = [{
|
|
|
670
739
|
"attributes": {
|
|
671
740
|
"group": "paint",
|
|
672
741
|
"state": "deleted",
|
|
742
|
+
"introduced": "0.0.15",
|
|
673
743
|
"replacement": "color.text.inverse",
|
|
674
744
|
"description": "Use for text and icons when on bold backgrounds"
|
|
675
745
|
},
|
|
@@ -681,6 +751,7 @@ const tokens = [{
|
|
|
681
751
|
"attributes": {
|
|
682
752
|
"group": "paint",
|
|
683
753
|
"state": "deleted",
|
|
754
|
+
"introduced": "0.0.15",
|
|
684
755
|
"replacement": "color.text.warning.inverse",
|
|
685
756
|
"description": "Use for text and icons when on bold warning backgrounds"
|
|
686
757
|
},
|
|
@@ -691,6 +762,7 @@ const tokens = [{
|
|
|
691
762
|
"attributes": {
|
|
692
763
|
"group": "paint",
|
|
693
764
|
"state": "deleted",
|
|
765
|
+
"introduced": "0.0.15",
|
|
694
766
|
"replacement": "color.text.warning.inverse",
|
|
695
767
|
"description": "Use for text and icons when on bold warning backgrounds"
|
|
696
768
|
},
|
|
@@ -702,6 +774,7 @@ const tokens = [{
|
|
|
702
774
|
"attributes": {
|
|
703
775
|
"group": "paint",
|
|
704
776
|
"state": "active",
|
|
777
|
+
"introduced": "0.6.0",
|
|
705
778
|
"description": "Use for blue icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
|
|
706
779
|
},
|
|
707
780
|
"value": "#1D7AFC",
|
|
@@ -711,6 +784,7 @@ const tokens = [{
|
|
|
711
784
|
"attributes": {
|
|
712
785
|
"group": "paint",
|
|
713
786
|
"state": "active",
|
|
787
|
+
"introduced": "0.6.0",
|
|
714
788
|
"description": "Use for blue icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
|
|
715
789
|
},
|
|
716
790
|
"value": "B600"
|
|
@@ -721,6 +795,7 @@ const tokens = [{
|
|
|
721
795
|
"attributes": {
|
|
722
796
|
"group": "paint",
|
|
723
797
|
"state": "active",
|
|
798
|
+
"introduced": "0.6.0",
|
|
724
799
|
"description": "Use for red icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
|
|
725
800
|
},
|
|
726
801
|
"value": "#E34935",
|
|
@@ -730,6 +805,7 @@ const tokens = [{
|
|
|
730
805
|
"attributes": {
|
|
731
806
|
"group": "paint",
|
|
732
807
|
"state": "active",
|
|
808
|
+
"introduced": "0.6.0",
|
|
733
809
|
"description": "Use for red icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
|
|
734
810
|
},
|
|
735
811
|
"value": "R600"
|
|
@@ -740,6 +816,7 @@ const tokens = [{
|
|
|
740
816
|
"attributes": {
|
|
741
817
|
"group": "paint",
|
|
742
818
|
"state": "active",
|
|
819
|
+
"introduced": "0.6.0",
|
|
743
820
|
"description": "Use for orange icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
|
|
744
821
|
},
|
|
745
822
|
"value": "#D97008",
|
|
@@ -749,6 +826,7 @@ const tokens = [{
|
|
|
749
826
|
"attributes": {
|
|
750
827
|
"group": "paint",
|
|
751
828
|
"state": "active",
|
|
829
|
+
"introduced": "0.6.0",
|
|
752
830
|
"description": "Use for orange icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
|
|
753
831
|
},
|
|
754
832
|
"value": "O600"
|
|
@@ -759,6 +837,7 @@ const tokens = [{
|
|
|
759
837
|
"attributes": {
|
|
760
838
|
"group": "paint",
|
|
761
839
|
"state": "active",
|
|
840
|
+
"introduced": "0.6.0",
|
|
762
841
|
"description": "Use for yellow icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
|
|
763
842
|
},
|
|
764
843
|
"value": "#B38600",
|
|
@@ -768,6 +847,7 @@ const tokens = [{
|
|
|
768
847
|
"attributes": {
|
|
769
848
|
"group": "paint",
|
|
770
849
|
"state": "active",
|
|
850
|
+
"introduced": "0.6.0",
|
|
771
851
|
"description": "Use for yellow icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
|
|
772
852
|
},
|
|
773
853
|
"value": "Y600"
|
|
@@ -778,6 +858,7 @@ const tokens = [{
|
|
|
778
858
|
"attributes": {
|
|
779
859
|
"group": "paint",
|
|
780
860
|
"state": "active",
|
|
861
|
+
"introduced": "0.6.0",
|
|
781
862
|
"description": "Use for green icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
|
|
782
863
|
},
|
|
783
864
|
"value": "#22A06B",
|
|
@@ -787,6 +868,7 @@ const tokens = [{
|
|
|
787
868
|
"attributes": {
|
|
788
869
|
"group": "paint",
|
|
789
870
|
"state": "active",
|
|
871
|
+
"introduced": "0.6.0",
|
|
790
872
|
"description": "Use for green icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
|
|
791
873
|
},
|
|
792
874
|
"value": "G600"
|
|
@@ -797,6 +879,7 @@ const tokens = [{
|
|
|
797
879
|
"attributes": {
|
|
798
880
|
"group": "paint",
|
|
799
881
|
"state": "active",
|
|
882
|
+
"introduced": "0.6.0",
|
|
800
883
|
"description": "Use for purple icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
|
|
801
884
|
},
|
|
802
885
|
"value": "#8270DB",
|
|
@@ -806,6 +889,7 @@ const tokens = [{
|
|
|
806
889
|
"attributes": {
|
|
807
890
|
"group": "paint",
|
|
808
891
|
"state": "active",
|
|
892
|
+
"introduced": "0.6.0",
|
|
809
893
|
"description": "Use for purple icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
|
|
810
894
|
},
|
|
811
895
|
"value": "P600"
|
|
@@ -816,6 +900,7 @@ const tokens = [{
|
|
|
816
900
|
"attributes": {
|
|
817
901
|
"group": "paint",
|
|
818
902
|
"state": "active",
|
|
903
|
+
"introduced": "0.6.0",
|
|
819
904
|
"description": "Use for teal icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
|
|
820
905
|
},
|
|
821
906
|
"value": "#1D9AAA",
|
|
@@ -825,6 +910,7 @@ const tokens = [{
|
|
|
825
910
|
"attributes": {
|
|
826
911
|
"group": "paint",
|
|
827
912
|
"state": "active",
|
|
913
|
+
"introduced": "0.6.0",
|
|
828
914
|
"description": "Use for teal icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
|
|
829
915
|
},
|
|
830
916
|
"value": "T600"
|
|
@@ -835,6 +921,7 @@ const tokens = [{
|
|
|
835
921
|
"attributes": {
|
|
836
922
|
"group": "paint",
|
|
837
923
|
"state": "active",
|
|
924
|
+
"introduced": "0.6.0",
|
|
838
925
|
"description": "Use for magenta icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
|
|
839
926
|
},
|
|
840
927
|
"value": "#CD519D",
|
|
@@ -844,6 +931,7 @@ const tokens = [{
|
|
|
844
931
|
"attributes": {
|
|
845
932
|
"group": "paint",
|
|
846
933
|
"state": "active",
|
|
934
|
+
"introduced": "0.6.0",
|
|
847
935
|
"description": "Use for magenta icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons."
|
|
848
936
|
},
|
|
849
937
|
"value": "M600"
|
|
@@ -854,6 +942,7 @@ const tokens = [{
|
|
|
854
942
|
"attributes": {
|
|
855
943
|
"group": "paint",
|
|
856
944
|
"state": "active",
|
|
945
|
+
"introduced": "0.6.0",
|
|
857
946
|
"description": "Use for icon-only buttons, or icons paired with color.text"
|
|
858
947
|
},
|
|
859
948
|
"value": "#44546F",
|
|
@@ -863,6 +952,7 @@ const tokens = [{
|
|
|
863
952
|
"attributes": {
|
|
864
953
|
"group": "paint",
|
|
865
954
|
"state": "active",
|
|
955
|
+
"introduced": "0.6.0",
|
|
866
956
|
"description": "Use for icon-only buttons, or icons paired with color.text"
|
|
867
957
|
},
|
|
868
958
|
"value": "N800"
|
|
@@ -873,6 +963,7 @@ const tokens = [{
|
|
|
873
963
|
"attributes": {
|
|
874
964
|
"group": "paint",
|
|
875
965
|
"state": "active",
|
|
966
|
+
"introduced": "0.6.0",
|
|
876
967
|
"description": "Use for icons paired with color.text.subtle"
|
|
877
968
|
},
|
|
878
969
|
"value": "#626F86",
|
|
@@ -882,6 +973,7 @@ const tokens = [{
|
|
|
882
973
|
"attributes": {
|
|
883
974
|
"group": "paint",
|
|
884
975
|
"state": "active",
|
|
976
|
+
"introduced": "0.6.0",
|
|
885
977
|
"description": "Use for icons paired with color.text.subtle"
|
|
886
978
|
},
|
|
887
979
|
"value": "N700"
|
|
@@ -892,6 +984,7 @@ const tokens = [{
|
|
|
892
984
|
"attributes": {
|
|
893
985
|
"group": "paint",
|
|
894
986
|
"state": "active",
|
|
987
|
+
"introduced": "0.6.0",
|
|
895
988
|
"description": "Use for icons on bold backgrounds."
|
|
896
989
|
},
|
|
897
990
|
"value": "#FFFFFF",
|
|
@@ -901,6 +994,7 @@ const tokens = [{
|
|
|
901
994
|
"attributes": {
|
|
902
995
|
"group": "paint",
|
|
903
996
|
"state": "active",
|
|
997
|
+
"introduced": "0.6.0",
|
|
904
998
|
"description": "Use for icons on bold backgrounds."
|
|
905
999
|
},
|
|
906
1000
|
"value": "N0"
|
|
@@ -911,6 +1005,7 @@ const tokens = [{
|
|
|
911
1005
|
"attributes": {
|
|
912
1006
|
"group": "paint",
|
|
913
1007
|
"state": "active",
|
|
1008
|
+
"introduced": "0.6.0",
|
|
914
1009
|
"description": "Use for icons in a disabled state."
|
|
915
1010
|
},
|
|
916
1011
|
"value": "#8993A5",
|
|
@@ -920,6 +1015,7 @@ const tokens = [{
|
|
|
920
1015
|
"attributes": {
|
|
921
1016
|
"group": "paint",
|
|
922
1017
|
"state": "active",
|
|
1018
|
+
"introduced": "0.6.0",
|
|
923
1019
|
"description": "Use for icons in a disabled state."
|
|
924
1020
|
},
|
|
925
1021
|
"value": "N500"
|
|
@@ -930,6 +1026,7 @@ const tokens = [{
|
|
|
930
1026
|
"attributes": {
|
|
931
1027
|
"group": "paint",
|
|
932
1028
|
"state": "active",
|
|
1029
|
+
"introduced": "0.6.0",
|
|
933
1030
|
"description": "Use for icons that reinforce our brand."
|
|
934
1031
|
},
|
|
935
1032
|
"value": "#0C66E4",
|
|
@@ -939,6 +1036,7 @@ const tokens = [{
|
|
|
939
1036
|
"attributes": {
|
|
940
1037
|
"group": "paint",
|
|
941
1038
|
"state": "active",
|
|
1039
|
+
"introduced": "0.6.0",
|
|
942
1040
|
"description": "Use for icons that reinforce our brand."
|
|
943
1041
|
},
|
|
944
1042
|
"value": "B700"
|
|
@@ -949,6 +1047,7 @@ const tokens = [{
|
|
|
949
1047
|
"attributes": {
|
|
950
1048
|
"group": "paint",
|
|
951
1049
|
"state": "active",
|
|
1050
|
+
"introduced": "0.6.2",
|
|
952
1051
|
"description": "Use for icons in selected or opened states, such as those used in dropdown buttons."
|
|
953
1052
|
},
|
|
954
1053
|
"value": "#0C66E4",
|
|
@@ -958,6 +1057,7 @@ const tokens = [{
|
|
|
958
1057
|
"attributes": {
|
|
959
1058
|
"group": "paint",
|
|
960
1059
|
"state": "active",
|
|
1060
|
+
"introduced": "0.6.2",
|
|
961
1061
|
"description": "Use for icons in selected or opened states, such as those used in dropdown buttons."
|
|
962
1062
|
},
|
|
963
1063
|
"value": "B700"
|
|
@@ -968,7 +1068,8 @@ const tokens = [{
|
|
|
968
1068
|
"attributes": {
|
|
969
1069
|
"group": "paint",
|
|
970
1070
|
"state": "active",
|
|
971
|
-
"
|
|
1071
|
+
"introduced": "0.6.0",
|
|
1072
|
+
"description": "Use for icons communicating critical information, such as those used in error handing."
|
|
972
1073
|
},
|
|
973
1074
|
"value": "#E34935",
|
|
974
1075
|
"filePath": "src/tokens/atlassian-light/color/icon.tsx",
|
|
@@ -977,7 +1078,8 @@ const tokens = [{
|
|
|
977
1078
|
"attributes": {
|
|
978
1079
|
"group": "paint",
|
|
979
1080
|
"state": "active",
|
|
980
|
-
"
|
|
1081
|
+
"introduced": "0.6.0",
|
|
1082
|
+
"description": "Use for icons communicating critical information, such as those used in error handing."
|
|
981
1083
|
},
|
|
982
1084
|
"value": "R600"
|
|
983
1085
|
},
|
|
@@ -987,6 +1089,7 @@ const tokens = [{
|
|
|
987
1089
|
"attributes": {
|
|
988
1090
|
"group": "paint",
|
|
989
1091
|
"state": "active",
|
|
1092
|
+
"introduced": "0.6.0",
|
|
990
1093
|
"description": "Use for icons communicating caution, such as those used in warning section messages."
|
|
991
1094
|
},
|
|
992
1095
|
"value": "#D97008",
|
|
@@ -996,6 +1099,7 @@ const tokens = [{
|
|
|
996
1099
|
"attributes": {
|
|
997
1100
|
"group": "paint",
|
|
998
1101
|
"state": "active",
|
|
1102
|
+
"introduced": "0.6.0",
|
|
999
1103
|
"description": "Use for icons communicating caution, such as those used in warning section messages."
|
|
1000
1104
|
},
|
|
1001
1105
|
"value": "O600"
|
|
@@ -1006,6 +1110,7 @@ const tokens = [{
|
|
|
1006
1110
|
"attributes": {
|
|
1007
1111
|
"group": "paint",
|
|
1008
1112
|
"state": "active",
|
|
1113
|
+
"introduced": "0.6.0",
|
|
1009
1114
|
"description": "Use for icons when on bold warning backgrounds."
|
|
1010
1115
|
},
|
|
1011
1116
|
"value": "#172B4D",
|
|
@@ -1015,6 +1120,7 @@ const tokens = [{
|
|
|
1015
1120
|
"attributes": {
|
|
1016
1121
|
"group": "paint",
|
|
1017
1122
|
"state": "active",
|
|
1123
|
+
"introduced": "0.6.0",
|
|
1018
1124
|
"description": "Use for icons when on bold warning backgrounds."
|
|
1019
1125
|
},
|
|
1020
1126
|
"value": "N1000"
|
|
@@ -1025,6 +1131,7 @@ const tokens = [{
|
|
|
1025
1131
|
"attributes": {
|
|
1026
1132
|
"group": "paint",
|
|
1027
1133
|
"state": "active",
|
|
1134
|
+
"introduced": "0.6.0",
|
|
1028
1135
|
"description": "Use for icons communicating a favourable outcome, such as those used in success section messaged."
|
|
1029
1136
|
},
|
|
1030
1137
|
"value": "#22A06B",
|
|
@@ -1034,6 +1141,7 @@ const tokens = [{
|
|
|
1034
1141
|
"attributes": {
|
|
1035
1142
|
"group": "paint",
|
|
1036
1143
|
"state": "active",
|
|
1144
|
+
"introduced": "0.6.0",
|
|
1037
1145
|
"description": "Use for icons communicating a favourable outcome, such as those used in success section messaged."
|
|
1038
1146
|
},
|
|
1039
1147
|
"value": "G600"
|
|
@@ -1044,6 +1152,7 @@ const tokens = [{
|
|
|
1044
1152
|
"attributes": {
|
|
1045
1153
|
"group": "paint",
|
|
1046
1154
|
"state": "active",
|
|
1155
|
+
"introduced": "0.6.0",
|
|
1047
1156
|
"description": "Use for icons communicating change or something new, such as discovery section messages."
|
|
1048
1157
|
},
|
|
1049
1158
|
"value": "#8270DB",
|
|
@@ -1053,6 +1162,7 @@ const tokens = [{
|
|
|
1053
1162
|
"attributes": {
|
|
1054
1163
|
"group": "paint",
|
|
1055
1164
|
"state": "active",
|
|
1165
|
+
"introduced": "0.6.0",
|
|
1056
1166
|
"description": "Use for icons communicating change or something new, such as discovery section messages."
|
|
1057
1167
|
},
|
|
1058
1168
|
"value": "P600"
|
|
@@ -1063,6 +1173,7 @@ const tokens = [{
|
|
|
1063
1173
|
"attributes": {
|
|
1064
1174
|
"group": "paint",
|
|
1065
1175
|
"state": "active",
|
|
1176
|
+
"introduced": "0.6.0",
|
|
1066
1177
|
"description": "Use for icons communicating information or something in-progress, such as information section messages."
|
|
1067
1178
|
},
|
|
1068
1179
|
"value": "#1D7AFC",
|
|
@@ -1072,6 +1183,7 @@ const tokens = [{
|
|
|
1072
1183
|
"attributes": {
|
|
1073
1184
|
"group": "paint",
|
|
1074
1185
|
"state": "active",
|
|
1186
|
+
"introduced": "0.6.0",
|
|
1075
1187
|
"description": "Use for icons communicating information or something in-progress, such as information section messages."
|
|
1076
1188
|
},
|
|
1077
1189
|
"value": "B600"
|
|
@@ -1082,6 +1194,7 @@ const tokens = [{
|
|
|
1082
1194
|
"attributes": {
|
|
1083
1195
|
"group": "paint",
|
|
1084
1196
|
"state": "active",
|
|
1197
|
+
"introduced": "0.6.0",
|
|
1085
1198
|
"description": "Use for blue borders on non-bold backgrounds when there is no meaning tied to the color."
|
|
1086
1199
|
},
|
|
1087
1200
|
"value": "#1D7AFC",
|
|
@@ -1091,6 +1204,7 @@ const tokens = [{
|
|
|
1091
1204
|
"attributes": {
|
|
1092
1205
|
"group": "paint",
|
|
1093
1206
|
"state": "active",
|
|
1207
|
+
"introduced": "0.6.0",
|
|
1094
1208
|
"description": "Use for blue borders on non-bold backgrounds when there is no meaning tied to the color."
|
|
1095
1209
|
},
|
|
1096
1210
|
"value": "B600"
|
|
@@ -1101,6 +1215,7 @@ const tokens = [{
|
|
|
1101
1215
|
"attributes": {
|
|
1102
1216
|
"group": "paint",
|
|
1103
1217
|
"state": "active",
|
|
1218
|
+
"introduced": "0.6.0",
|
|
1104
1219
|
"description": "Use for red borders on non-bold backgrounds when there is no meaning tied to the color."
|
|
1105
1220
|
},
|
|
1106
1221
|
"value": "#E34935",
|
|
@@ -1110,6 +1225,7 @@ const tokens = [{
|
|
|
1110
1225
|
"attributes": {
|
|
1111
1226
|
"group": "paint",
|
|
1112
1227
|
"state": "active",
|
|
1228
|
+
"introduced": "0.6.0",
|
|
1113
1229
|
"description": "Use for red borders on non-bold backgrounds when there is no meaning tied to the color."
|
|
1114
1230
|
},
|
|
1115
1231
|
"value": "R600"
|
|
@@ -1120,6 +1236,7 @@ const tokens = [{
|
|
|
1120
1236
|
"attributes": {
|
|
1121
1237
|
"group": "paint",
|
|
1122
1238
|
"state": "active",
|
|
1239
|
+
"introduced": "0.6.0",
|
|
1123
1240
|
"description": "Use for orange borders on non-bold backgrounds when there is no meaning tied to the color."
|
|
1124
1241
|
},
|
|
1125
1242
|
"value": "#D97008",
|
|
@@ -1129,6 +1246,7 @@ const tokens = [{
|
|
|
1129
1246
|
"attributes": {
|
|
1130
1247
|
"group": "paint",
|
|
1131
1248
|
"state": "active",
|
|
1249
|
+
"introduced": "0.6.0",
|
|
1132
1250
|
"description": "Use for orange borders on non-bold backgrounds when there is no meaning tied to the color."
|
|
1133
1251
|
},
|
|
1134
1252
|
"value": "O600"
|
|
@@ -1139,6 +1257,7 @@ const tokens = [{
|
|
|
1139
1257
|
"attributes": {
|
|
1140
1258
|
"group": "paint",
|
|
1141
1259
|
"state": "active",
|
|
1260
|
+
"introduced": "0.6.0",
|
|
1142
1261
|
"description": "Use for yellow borders on non-bold backgrounds when there is no meaning tied to the color."
|
|
1143
1262
|
},
|
|
1144
1263
|
"value": "#B38600",
|
|
@@ -1148,6 +1267,7 @@ const tokens = [{
|
|
|
1148
1267
|
"attributes": {
|
|
1149
1268
|
"group": "paint",
|
|
1150
1269
|
"state": "active",
|
|
1270
|
+
"introduced": "0.6.0",
|
|
1151
1271
|
"description": "Use for yellow borders on non-bold backgrounds when there is no meaning tied to the color."
|
|
1152
1272
|
},
|
|
1153
1273
|
"value": "Y600"
|
|
@@ -1158,6 +1278,7 @@ const tokens = [{
|
|
|
1158
1278
|
"attributes": {
|
|
1159
1279
|
"group": "paint",
|
|
1160
1280
|
"state": "active",
|
|
1281
|
+
"introduced": "0.6.0",
|
|
1161
1282
|
"description": "Use for green borders on non-bold backgrounds when there is no meaning tied to the color."
|
|
1162
1283
|
},
|
|
1163
1284
|
"value": "#22A06B",
|
|
@@ -1167,6 +1288,7 @@ const tokens = [{
|
|
|
1167
1288
|
"attributes": {
|
|
1168
1289
|
"group": "paint",
|
|
1169
1290
|
"state": "active",
|
|
1291
|
+
"introduced": "0.6.0",
|
|
1170
1292
|
"description": "Use for green borders on non-bold backgrounds when there is no meaning tied to the color."
|
|
1171
1293
|
},
|
|
1172
1294
|
"value": "G600"
|
|
@@ -1177,6 +1299,7 @@ const tokens = [{
|
|
|
1177
1299
|
"attributes": {
|
|
1178
1300
|
"group": "paint",
|
|
1179
1301
|
"state": "active",
|
|
1302
|
+
"introduced": "0.6.0",
|
|
1180
1303
|
"description": "Use for purple borders on non-bold backgrounds when there is no meaning tied to the color."
|
|
1181
1304
|
},
|
|
1182
1305
|
"value": "#8270DB",
|
|
@@ -1186,6 +1309,7 @@ const tokens = [{
|
|
|
1186
1309
|
"attributes": {
|
|
1187
1310
|
"group": "paint",
|
|
1188
1311
|
"state": "active",
|
|
1312
|
+
"introduced": "0.6.0",
|
|
1189
1313
|
"description": "Use for purple borders on non-bold backgrounds when there is no meaning tied to the color."
|
|
1190
1314
|
},
|
|
1191
1315
|
"value": "P600"
|
|
@@ -1196,6 +1320,7 @@ const tokens = [{
|
|
|
1196
1320
|
"attributes": {
|
|
1197
1321
|
"group": "paint",
|
|
1198
1322
|
"state": "active",
|
|
1323
|
+
"introduced": "0.6.0",
|
|
1199
1324
|
"description": "Use for teal borders on non-bold backgrounds when there is no meaning tied to the color."
|
|
1200
1325
|
},
|
|
1201
1326
|
"value": "#1D9AAA",
|
|
@@ -1205,6 +1330,7 @@ const tokens = [{
|
|
|
1205
1330
|
"attributes": {
|
|
1206
1331
|
"group": "paint",
|
|
1207
1332
|
"state": "active",
|
|
1333
|
+
"introduced": "0.6.0",
|
|
1208
1334
|
"description": "Use for teal borders on non-bold backgrounds when there is no meaning tied to the color."
|
|
1209
1335
|
},
|
|
1210
1336
|
"value": "T600"
|
|
@@ -1215,6 +1341,7 @@ const tokens = [{
|
|
|
1215
1341
|
"attributes": {
|
|
1216
1342
|
"group": "paint",
|
|
1217
1343
|
"state": "active",
|
|
1344
|
+
"introduced": "0.6.0",
|
|
1218
1345
|
"description": "Use for magenta borders on non-bold backgrounds when there is no meaning tied to the color."
|
|
1219
1346
|
},
|
|
1220
1347
|
"value": "#CD519D",
|
|
@@ -1224,6 +1351,7 @@ const tokens = [{
|
|
|
1224
1351
|
"attributes": {
|
|
1225
1352
|
"group": "paint",
|
|
1226
1353
|
"state": "active",
|
|
1354
|
+
"introduced": "0.6.0",
|
|
1227
1355
|
"description": "Use for magenta borders on non-bold backgrounds when there is no meaning tied to the color."
|
|
1228
1356
|
},
|
|
1229
1357
|
"value": "M600"
|
|
@@ -1234,6 +1362,7 @@ const tokens = [{
|
|
|
1234
1362
|
"attributes": {
|
|
1235
1363
|
"group": "paint",
|
|
1236
1364
|
"state": "active",
|
|
1365
|
+
"introduced": "0.6.0",
|
|
1237
1366
|
"description": "Use to visually group or separate UI elements, such as flat cards or side panel dividers."
|
|
1238
1367
|
},
|
|
1239
1368
|
"value": "#091E4224",
|
|
@@ -1243,6 +1372,7 @@ const tokens = [{
|
|
|
1243
1372
|
"attributes": {
|
|
1244
1373
|
"group": "paint",
|
|
1245
1374
|
"state": "active",
|
|
1375
|
+
"introduced": "0.6.0",
|
|
1246
1376
|
"description": "Use to visually group or separate UI elements, such as flat cards or side panel dividers."
|
|
1247
1377
|
},
|
|
1248
1378
|
"value": "N300A"
|
|
@@ -1253,6 +1383,28 @@ const tokens = [{
|
|
|
1253
1383
|
"attributes": {
|
|
1254
1384
|
"group": "paint",
|
|
1255
1385
|
"state": "active",
|
|
1386
|
+
"introduced": "0.6.0",
|
|
1387
|
+
"description": "Use for borders on bold backgrounds."
|
|
1388
|
+
},
|
|
1389
|
+
"value": "#FFFFFF",
|
|
1390
|
+
"filePath": "src/tokens/atlassian-light/color/border.tsx",
|
|
1391
|
+
"isSource": true,
|
|
1392
|
+
"original": {
|
|
1393
|
+
"attributes": {
|
|
1394
|
+
"group": "paint",
|
|
1395
|
+
"state": "active",
|
|
1396
|
+
"introduced": "0.6.0",
|
|
1397
|
+
"description": "Use for borders on bold backgrounds."
|
|
1398
|
+
},
|
|
1399
|
+
"value": "N0"
|
|
1400
|
+
},
|
|
1401
|
+
"name": "color.border.inverse",
|
|
1402
|
+
"path": ["color", "border", "inverse"]
|
|
1403
|
+
}, {
|
|
1404
|
+
"attributes": {
|
|
1405
|
+
"group": "paint",
|
|
1406
|
+
"state": "active",
|
|
1407
|
+
"introduced": "0.6.0",
|
|
1256
1408
|
"description": "Use for focus rings of elements in a focus state."
|
|
1257
1409
|
},
|
|
1258
1410
|
"value": "#388BFF",
|
|
@@ -1262,6 +1414,7 @@ const tokens = [{
|
|
|
1262
1414
|
"attributes": {
|
|
1263
1415
|
"group": "paint",
|
|
1264
1416
|
"state": "active",
|
|
1417
|
+
"introduced": "0.6.0",
|
|
1265
1418
|
"description": "Use for focus rings of elements in a focus state."
|
|
1266
1419
|
},
|
|
1267
1420
|
"value": "B500"
|
|
@@ -1272,6 +1425,7 @@ const tokens = [{
|
|
|
1272
1425
|
"attributes": {
|
|
1273
1426
|
"group": "paint",
|
|
1274
1427
|
"state": "active",
|
|
1428
|
+
"introduced": "0.6.0",
|
|
1275
1429
|
"description": "Use for borders of form UI elements, such as text fields, checkboxes, and radio buttons."
|
|
1276
1430
|
},
|
|
1277
1431
|
"value": "#091E4224",
|
|
@@ -1281,6 +1435,7 @@ const tokens = [{
|
|
|
1281
1435
|
"attributes": {
|
|
1282
1436
|
"group": "paint",
|
|
1283
1437
|
"state": "active",
|
|
1438
|
+
"introduced": "0.6.0",
|
|
1284
1439
|
"description": "Use for borders of form UI elements, such as text fields, checkboxes, and radio buttons."
|
|
1285
1440
|
},
|
|
1286
1441
|
"value": "N300A"
|
|
@@ -1291,6 +1446,7 @@ const tokens = [{
|
|
|
1291
1446
|
"attributes": {
|
|
1292
1447
|
"group": "paint",
|
|
1293
1448
|
"state": "active",
|
|
1449
|
+
"introduced": "0.6.0",
|
|
1294
1450
|
"description": "Use for borders of elements in a disabled state."
|
|
1295
1451
|
},
|
|
1296
1452
|
"value": "#091E420F",
|
|
@@ -1300,6 +1456,7 @@ const tokens = [{
|
|
|
1300
1456
|
"attributes": {
|
|
1301
1457
|
"group": "paint",
|
|
1302
1458
|
"state": "active",
|
|
1459
|
+
"introduced": "0.6.0",
|
|
1303
1460
|
"description": "Use for borders of elements in a disabled state."
|
|
1304
1461
|
},
|
|
1305
1462
|
"value": "N200A"
|
|
@@ -1310,6 +1467,7 @@ const tokens = [{
|
|
|
1310
1467
|
"attributes": {
|
|
1311
1468
|
"group": "paint",
|
|
1312
1469
|
"state": "active",
|
|
1470
|
+
"introduced": "0.6.0",
|
|
1313
1471
|
"description": "Use for borders or visual indicators of elements that reinforce our brand, such as logos or primary buttons."
|
|
1314
1472
|
},
|
|
1315
1473
|
"value": "#0C66E4",
|
|
@@ -1319,6 +1477,7 @@ const tokens = [{
|
|
|
1319
1477
|
"attributes": {
|
|
1320
1478
|
"group": "paint",
|
|
1321
1479
|
"state": "active",
|
|
1480
|
+
"introduced": "0.6.0",
|
|
1322
1481
|
"description": "Use for borders or visual indicators of elements that reinforce our brand, such as logos or primary buttons."
|
|
1323
1482
|
},
|
|
1324
1483
|
"value": "B700"
|
|
@@ -1329,6 +1488,7 @@ const tokens = [{
|
|
|
1329
1488
|
"attributes": {
|
|
1330
1489
|
"group": "paint",
|
|
1331
1490
|
"state": "active",
|
|
1491
|
+
"introduced": "0.6.2",
|
|
1332
1492
|
"description": "Use for borders or visual indicators of elements in a selected or opened state, such as in tabs or menu items."
|
|
1333
1493
|
},
|
|
1334
1494
|
"value": "#0C66E4",
|
|
@@ -1338,6 +1498,7 @@ const tokens = [{
|
|
|
1338
1498
|
"attributes": {
|
|
1339
1499
|
"group": "paint",
|
|
1340
1500
|
"state": "active",
|
|
1501
|
+
"introduced": "0.6.2",
|
|
1341
1502
|
"description": "Use for borders or visual indicators of elements in a selected or opened state, such as in tabs or menu items."
|
|
1342
1503
|
},
|
|
1343
1504
|
"value": "B700"
|
|
@@ -1348,6 +1509,7 @@ const tokens = [{
|
|
|
1348
1509
|
"attributes": {
|
|
1349
1510
|
"group": "paint",
|
|
1350
1511
|
"state": "active",
|
|
1512
|
+
"introduced": "0.6.0",
|
|
1351
1513
|
"description": "Use for borders communicating critical information, such as the borders on invalid text fields."
|
|
1352
1514
|
},
|
|
1353
1515
|
"value": "#E34935",
|
|
@@ -1357,6 +1519,7 @@ const tokens = [{
|
|
|
1357
1519
|
"attributes": {
|
|
1358
1520
|
"group": "paint",
|
|
1359
1521
|
"state": "active",
|
|
1522
|
+
"introduced": "0.6.0",
|
|
1360
1523
|
"description": "Use for borders communicating critical information, such as the borders on invalid text fields."
|
|
1361
1524
|
},
|
|
1362
1525
|
"value": "R600"
|
|
@@ -1367,6 +1530,7 @@ const tokens = [{
|
|
|
1367
1530
|
"attributes": {
|
|
1368
1531
|
"group": "paint",
|
|
1369
1532
|
"state": "active",
|
|
1533
|
+
"introduced": "0.6.0",
|
|
1370
1534
|
"description": "Use for borders communicating caution."
|
|
1371
1535
|
},
|
|
1372
1536
|
"value": "#D97008",
|
|
@@ -1376,6 +1540,7 @@ const tokens = [{
|
|
|
1376
1540
|
"attributes": {
|
|
1377
1541
|
"group": "paint",
|
|
1378
1542
|
"state": "active",
|
|
1543
|
+
"introduced": "0.6.0",
|
|
1379
1544
|
"description": "Use for borders communicating caution."
|
|
1380
1545
|
},
|
|
1381
1546
|
"value": "O600"
|
|
@@ -1386,6 +1551,7 @@ const tokens = [{
|
|
|
1386
1551
|
"attributes": {
|
|
1387
1552
|
"group": "paint",
|
|
1388
1553
|
"state": "active",
|
|
1554
|
+
"introduced": "0.6.0",
|
|
1389
1555
|
"description": "Use for borders communicating a favourable outcome, such as the borders on validated text fields."
|
|
1390
1556
|
},
|
|
1391
1557
|
"value": "#22A06B",
|
|
@@ -1395,6 +1561,7 @@ const tokens = [{
|
|
|
1395
1561
|
"attributes": {
|
|
1396
1562
|
"group": "paint",
|
|
1397
1563
|
"state": "active",
|
|
1564
|
+
"introduced": "0.6.0",
|
|
1398
1565
|
"description": "Use for borders communicating a favourable outcome, such as the borders on validated text fields."
|
|
1399
1566
|
},
|
|
1400
1567
|
"value": "G600"
|
|
@@ -1405,6 +1572,7 @@ const tokens = [{
|
|
|
1405
1572
|
"attributes": {
|
|
1406
1573
|
"group": "paint",
|
|
1407
1574
|
"state": "active",
|
|
1575
|
+
"introduced": "0.6.0",
|
|
1408
1576
|
"description": "Use for borders communicating change or something new, such as the borders in onboarding spotlights."
|
|
1409
1577
|
},
|
|
1410
1578
|
"value": "#8270DB",
|
|
@@ -1414,6 +1582,7 @@ const tokens = [{
|
|
|
1414
1582
|
"attributes": {
|
|
1415
1583
|
"group": "paint",
|
|
1416
1584
|
"state": "active",
|
|
1585
|
+
"introduced": "0.6.0",
|
|
1417
1586
|
"description": "Use for borders communicating change or something new, such as the borders in onboarding spotlights."
|
|
1418
1587
|
},
|
|
1419
1588
|
"value": "P600"
|
|
@@ -1424,6 +1593,7 @@ const tokens = [{
|
|
|
1424
1593
|
"attributes": {
|
|
1425
1594
|
"group": "paint",
|
|
1426
1595
|
"state": "active",
|
|
1596
|
+
"introduced": "0.6.0",
|
|
1427
1597
|
"description": "Use for borders communicating information or something in-progress."
|
|
1428
1598
|
},
|
|
1429
1599
|
"value": "#1D7AFC",
|
|
@@ -1433,6 +1603,7 @@ const tokens = [{
|
|
|
1433
1603
|
"attributes": {
|
|
1434
1604
|
"group": "paint",
|
|
1435
1605
|
"state": "active",
|
|
1606
|
+
"introduced": "0.6.0",
|
|
1436
1607
|
"description": "Use for borders communicating information or something in-progress."
|
|
1437
1608
|
},
|
|
1438
1609
|
"value": "B600"
|
|
@@ -1443,6 +1614,7 @@ const tokens = [{
|
|
|
1443
1614
|
"attributes": {
|
|
1444
1615
|
"group": "paint",
|
|
1445
1616
|
"state": "deleted",
|
|
1617
|
+
"introduced": "0.0.15",
|
|
1446
1618
|
"replacement": "color.border.focused",
|
|
1447
1619
|
"description": "Use for focus rings of elements in a focus state"
|
|
1448
1620
|
},
|
|
@@ -1453,6 +1625,7 @@ const tokens = [{
|
|
|
1453
1625
|
"attributes": {
|
|
1454
1626
|
"group": "paint",
|
|
1455
1627
|
"state": "deleted",
|
|
1628
|
+
"introduced": "0.0.15",
|
|
1456
1629
|
"replacement": "color.border.focused",
|
|
1457
1630
|
"description": "Use for focus rings of elements in a focus state"
|
|
1458
1631
|
},
|
|
@@ -1464,6 +1637,7 @@ const tokens = [{
|
|
|
1464
1637
|
"attributes": {
|
|
1465
1638
|
"group": "paint",
|
|
1466
1639
|
"state": "deleted",
|
|
1640
|
+
"introduced": "0.0.15",
|
|
1467
1641
|
"replacement": "color.border.[default]",
|
|
1468
1642
|
"description": "Use to create borders around UI elements such as text fields, checkboxes, and radio buttons, or to visually group or separate UI elements, such as flat cards or side panel dividers"
|
|
1469
1643
|
},
|
|
@@ -1474,6 +1648,7 @@ const tokens = [{
|
|
|
1474
1648
|
"attributes": {
|
|
1475
1649
|
"group": "paint",
|
|
1476
1650
|
"state": "deleted",
|
|
1651
|
+
"introduced": "0.0.15",
|
|
1477
1652
|
"replacement": "color.border.[default]",
|
|
1478
1653
|
"description": "Use to create borders around UI elements such as text fields, checkboxes, and radio buttons, or to visually group or separate UI elements, such as flat cards or side panel dividers"
|
|
1479
1654
|
},
|
|
@@ -1485,6 +1660,7 @@ const tokens = [{
|
|
|
1485
1660
|
"attributes": {
|
|
1486
1661
|
"group": "paint",
|
|
1487
1662
|
"state": "active",
|
|
1663
|
+
"introduced": "0.7.0",
|
|
1488
1664
|
"description": "Use for blue backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
1489
1665
|
},
|
|
1490
1666
|
"value": "#E9F2FF",
|
|
@@ -1494,6 +1670,7 @@ const tokens = [{
|
|
|
1494
1670
|
"attributes": {
|
|
1495
1671
|
"group": "paint",
|
|
1496
1672
|
"state": "active",
|
|
1673
|
+
"introduced": "0.7.0",
|
|
1497
1674
|
"description": "Use for blue backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
1498
1675
|
},
|
|
1499
1676
|
"value": "B100"
|
|
@@ -1504,6 +1681,7 @@ const tokens = [{
|
|
|
1504
1681
|
"attributes": {
|
|
1505
1682
|
"group": "paint",
|
|
1506
1683
|
"state": "active",
|
|
1684
|
+
"introduced": "0.7.0",
|
|
1507
1685
|
"description": "Use for blue backgrounds when there is no meaning tied to the color, such as coloured tags."
|
|
1508
1686
|
},
|
|
1509
1687
|
"value": "#CCE0FF",
|
|
@@ -1513,6 +1691,7 @@ const tokens = [{
|
|
|
1513
1691
|
"attributes": {
|
|
1514
1692
|
"group": "paint",
|
|
1515
1693
|
"state": "active",
|
|
1694
|
+
"introduced": "0.7.0",
|
|
1516
1695
|
"description": "Use for blue backgrounds when there is no meaning tied to the color, such as coloured tags."
|
|
1517
1696
|
},
|
|
1518
1697
|
"value": "B200"
|
|
@@ -1523,6 +1702,7 @@ const tokens = [{
|
|
|
1523
1702
|
"attributes": {
|
|
1524
1703
|
"group": "paint",
|
|
1525
1704
|
"state": "active",
|
|
1705
|
+
"introduced": "0.7.0",
|
|
1526
1706
|
"description": "Use for vibrant blue backgrounds when there is no meaning tied to the color, such as coloured tags."
|
|
1527
1707
|
},
|
|
1528
1708
|
"value": "#579DFF",
|
|
@@ -1532,6 +1712,7 @@ const tokens = [{
|
|
|
1532
1712
|
"attributes": {
|
|
1533
1713
|
"group": "paint",
|
|
1534
1714
|
"state": "active",
|
|
1715
|
+
"introduced": "0.7.0",
|
|
1535
1716
|
"description": "Use for vibrant blue backgrounds when there is no meaning tied to the color, such as coloured tags."
|
|
1536
1717
|
},
|
|
1537
1718
|
"value": "B400"
|
|
@@ -1542,6 +1723,7 @@ const tokens = [{
|
|
|
1542
1723
|
"attributes": {
|
|
1543
1724
|
"group": "paint",
|
|
1544
1725
|
"state": "active",
|
|
1726
|
+
"introduced": "0.7.0",
|
|
1545
1727
|
"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."
|
|
1546
1728
|
},
|
|
1547
1729
|
"value": "#0C66E4",
|
|
@@ -1551,6 +1733,7 @@ const tokens = [{
|
|
|
1551
1733
|
"attributes": {
|
|
1552
1734
|
"group": "paint",
|
|
1553
1735
|
"state": "active",
|
|
1736
|
+
"introduced": "0.7.0",
|
|
1554
1737
|
"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."
|
|
1555
1738
|
},
|
|
1556
1739
|
"value": "B700"
|
|
@@ -1561,6 +1744,7 @@ const tokens = [{
|
|
|
1561
1744
|
"attributes": {
|
|
1562
1745
|
"group": "paint",
|
|
1563
1746
|
"state": "deleted",
|
|
1747
|
+
"introduced": "0.6.0",
|
|
1564
1748
|
"replacement": "color.background.accent.blue.subtler",
|
|
1565
1749
|
"description": "Use for blue backgrounds when there is no meaning tied to the color, such as coloured tags."
|
|
1566
1750
|
},
|
|
@@ -1571,6 +1755,7 @@ const tokens = [{
|
|
|
1571
1755
|
"attributes": {
|
|
1572
1756
|
"group": "paint",
|
|
1573
1757
|
"state": "deleted",
|
|
1758
|
+
"introduced": "0.6.0",
|
|
1574
1759
|
"replacement": "color.background.accent.blue.subtler",
|
|
1575
1760
|
"description": "Use for blue backgrounds when there is no meaning tied to the color, such as coloured tags."
|
|
1576
1761
|
},
|
|
@@ -1582,6 +1767,7 @@ const tokens = [{
|
|
|
1582
1767
|
"attributes": {
|
|
1583
1768
|
"group": "paint",
|
|
1584
1769
|
"state": "deleted",
|
|
1770
|
+
"introduced": "0.6.0",
|
|
1585
1771
|
"replacement": "color.background.accent.blue.subtle",
|
|
1586
1772
|
"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."
|
|
1587
1773
|
},
|
|
@@ -1592,6 +1778,7 @@ const tokens = [{
|
|
|
1592
1778
|
"attributes": {
|
|
1593
1779
|
"group": "paint",
|
|
1594
1780
|
"state": "deleted",
|
|
1781
|
+
"introduced": "0.6.0",
|
|
1595
1782
|
"replacement": "color.background.accent.blue.subtle",
|
|
1596
1783
|
"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."
|
|
1597
1784
|
},
|
|
@@ -1603,6 +1790,7 @@ const tokens = [{
|
|
|
1603
1790
|
"attributes": {
|
|
1604
1791
|
"group": "paint",
|
|
1605
1792
|
"state": "active",
|
|
1793
|
+
"introduced": "0.7.0",
|
|
1606
1794
|
"description": "Use for red backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
1607
1795
|
},
|
|
1608
1796
|
"value": "#FFEDEB",
|
|
@@ -1612,6 +1800,7 @@ const tokens = [{
|
|
|
1612
1800
|
"attributes": {
|
|
1613
1801
|
"group": "paint",
|
|
1614
1802
|
"state": "active",
|
|
1803
|
+
"introduced": "0.7.0",
|
|
1615
1804
|
"description": "Use for red backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
1616
1805
|
},
|
|
1617
1806
|
"value": "R100"
|
|
@@ -1622,6 +1811,7 @@ const tokens = [{
|
|
|
1622
1811
|
"attributes": {
|
|
1623
1812
|
"group": "paint",
|
|
1624
1813
|
"state": "active",
|
|
1814
|
+
"introduced": "0.7.0",
|
|
1625
1815
|
"description": "Use for red backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1626
1816
|
},
|
|
1627
1817
|
"value": "#FFD2CC",
|
|
@@ -1631,6 +1821,7 @@ const tokens = [{
|
|
|
1631
1821
|
"attributes": {
|
|
1632
1822
|
"group": "paint",
|
|
1633
1823
|
"state": "active",
|
|
1824
|
+
"introduced": "0.7.0",
|
|
1634
1825
|
"description": "Use for red backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1635
1826
|
},
|
|
1636
1827
|
"value": "R200"
|
|
@@ -1641,6 +1832,7 @@ const tokens = [{
|
|
|
1641
1832
|
"attributes": {
|
|
1642
1833
|
"group": "paint",
|
|
1643
1834
|
"state": "active",
|
|
1835
|
+
"introduced": "0.7.0",
|
|
1644
1836
|
"description": "Use for vibrant red backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1645
1837
|
},
|
|
1646
1838
|
"value": "#F87462",
|
|
@@ -1650,6 +1842,7 @@ const tokens = [{
|
|
|
1650
1842
|
"attributes": {
|
|
1651
1843
|
"group": "paint",
|
|
1652
1844
|
"state": "active",
|
|
1845
|
+
"introduced": "0.7.0",
|
|
1653
1846
|
"description": "Use for vibrant red backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1654
1847
|
},
|
|
1655
1848
|
"value": "R400"
|
|
@@ -1660,6 +1853,7 @@ const tokens = [{
|
|
|
1660
1853
|
"attributes": {
|
|
1661
1854
|
"group": "paint",
|
|
1662
1855
|
"state": "active",
|
|
1856
|
+
"introduced": "0.7.0",
|
|
1663
1857
|
"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."
|
|
1664
1858
|
},
|
|
1665
1859
|
"value": "#CA3521",
|
|
@@ -1669,6 +1863,7 @@ const tokens = [{
|
|
|
1669
1863
|
"attributes": {
|
|
1670
1864
|
"group": "paint",
|
|
1671
1865
|
"state": "active",
|
|
1866
|
+
"introduced": "0.7.0",
|
|
1672
1867
|
"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."
|
|
1673
1868
|
},
|
|
1674
1869
|
"value": "R700"
|
|
@@ -1679,6 +1874,7 @@ const tokens = [{
|
|
|
1679
1874
|
"attributes": {
|
|
1680
1875
|
"group": "paint",
|
|
1681
1876
|
"state": "deleted",
|
|
1877
|
+
"introduced": "0.6.0",
|
|
1682
1878
|
"replacement": "color.background.accent.red.subtler",
|
|
1683
1879
|
"description": "Use for red backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1684
1880
|
},
|
|
@@ -1689,6 +1885,7 @@ const tokens = [{
|
|
|
1689
1885
|
"attributes": {
|
|
1690
1886
|
"group": "paint",
|
|
1691
1887
|
"state": "deleted",
|
|
1888
|
+
"introduced": "0.6.0",
|
|
1692
1889
|
"replacement": "color.background.accent.red.subtler",
|
|
1693
1890
|
"description": "Use for red backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1694
1891
|
},
|
|
@@ -1700,6 +1897,7 @@ const tokens = [{
|
|
|
1700
1897
|
"attributes": {
|
|
1701
1898
|
"group": "paint",
|
|
1702
1899
|
"state": "deleted",
|
|
1900
|
+
"introduced": "0.6.0",
|
|
1703
1901
|
"replacement": "color.background.accent.red.subtle",
|
|
1704
1902
|
"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."
|
|
1705
1903
|
},
|
|
@@ -1710,6 +1908,7 @@ const tokens = [{
|
|
|
1710
1908
|
"attributes": {
|
|
1711
1909
|
"group": "paint",
|
|
1712
1910
|
"state": "deleted",
|
|
1911
|
+
"introduced": "0.6.0",
|
|
1713
1912
|
"replacement": "color.background.accent.red.subtle",
|
|
1714
1913
|
"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."
|
|
1715
1914
|
},
|
|
@@ -1721,6 +1920,7 @@ const tokens = [{
|
|
|
1721
1920
|
"attributes": {
|
|
1722
1921
|
"group": "paint",
|
|
1723
1922
|
"state": "active",
|
|
1923
|
+
"introduced": "0.7.0",
|
|
1724
1924
|
"description": "Use for orange backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
1725
1925
|
},
|
|
1726
1926
|
"value": "#FFF4E5",
|
|
@@ -1730,6 +1930,7 @@ const tokens = [{
|
|
|
1730
1930
|
"attributes": {
|
|
1731
1931
|
"group": "paint",
|
|
1732
1932
|
"state": "active",
|
|
1933
|
+
"introduced": "0.7.0",
|
|
1733
1934
|
"description": "Use for orange backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
1734
1935
|
},
|
|
1735
1936
|
"value": "O100"
|
|
@@ -1740,6 +1941,7 @@ const tokens = [{
|
|
|
1740
1941
|
"attributes": {
|
|
1741
1942
|
"group": "paint",
|
|
1742
1943
|
"state": "active",
|
|
1944
|
+
"introduced": "0.7.0",
|
|
1743
1945
|
"description": "Use for orange backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1744
1946
|
},
|
|
1745
1947
|
"value": "#FFE2BD",
|
|
@@ -1749,6 +1951,7 @@ const tokens = [{
|
|
|
1749
1951
|
"attributes": {
|
|
1750
1952
|
"group": "paint",
|
|
1751
1953
|
"state": "active",
|
|
1954
|
+
"introduced": "0.7.0",
|
|
1752
1955
|
"description": "Use for orange backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1753
1956
|
},
|
|
1754
1957
|
"value": "O200"
|
|
@@ -1759,6 +1962,7 @@ const tokens = [{
|
|
|
1759
1962
|
"attributes": {
|
|
1760
1963
|
"group": "paint",
|
|
1761
1964
|
"state": "active",
|
|
1965
|
+
"introduced": "0.7.0",
|
|
1762
1966
|
"description": "Use for vibrant orange backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1763
1967
|
},
|
|
1764
1968
|
"value": "#FAA53D",
|
|
@@ -1768,6 +1972,7 @@ const tokens = [{
|
|
|
1768
1972
|
"attributes": {
|
|
1769
1973
|
"group": "paint",
|
|
1770
1974
|
"state": "active",
|
|
1975
|
+
"introduced": "0.7.0",
|
|
1771
1976
|
"description": "Use for vibrant orange backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1772
1977
|
},
|
|
1773
1978
|
"value": "O400"
|
|
@@ -1778,6 +1983,7 @@ const tokens = [{
|
|
|
1778
1983
|
"attributes": {
|
|
1779
1984
|
"group": "paint",
|
|
1780
1985
|
"state": "active",
|
|
1986
|
+
"introduced": "0.7.0",
|
|
1781
1987
|
"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."
|
|
1782
1988
|
},
|
|
1783
1989
|
"value": "#B65C02",
|
|
@@ -1787,6 +1993,7 @@ const tokens = [{
|
|
|
1787
1993
|
"attributes": {
|
|
1788
1994
|
"group": "paint",
|
|
1789
1995
|
"state": "active",
|
|
1996
|
+
"introduced": "0.7.0",
|
|
1790
1997
|
"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."
|
|
1791
1998
|
},
|
|
1792
1999
|
"value": "O700"
|
|
@@ -1797,6 +2004,7 @@ const tokens = [{
|
|
|
1797
2004
|
"attributes": {
|
|
1798
2005
|
"group": "paint",
|
|
1799
2006
|
"state": "deleted",
|
|
2007
|
+
"introduced": "0.6.0",
|
|
1800
2008
|
"replacement": "color.background.accent.orange.subtler",
|
|
1801
2009
|
"description": "Use for orange backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1802
2010
|
},
|
|
@@ -1807,6 +2015,7 @@ const tokens = [{
|
|
|
1807
2015
|
"attributes": {
|
|
1808
2016
|
"group": "paint",
|
|
1809
2017
|
"state": "deleted",
|
|
2018
|
+
"introduced": "0.6.0",
|
|
1810
2019
|
"replacement": "color.background.accent.orange.subtler",
|
|
1811
2020
|
"description": "Use for orange backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1812
2021
|
},
|
|
@@ -1818,6 +2027,7 @@ const tokens = [{
|
|
|
1818
2027
|
"attributes": {
|
|
1819
2028
|
"group": "paint",
|
|
1820
2029
|
"state": "deleted",
|
|
2030
|
+
"introduced": "0.6.0",
|
|
1821
2031
|
"replacement": "color.background.accent.orange.subtle",
|
|
1822
2032
|
"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."
|
|
1823
2033
|
},
|
|
@@ -1828,6 +2038,7 @@ const tokens = [{
|
|
|
1828
2038
|
"attributes": {
|
|
1829
2039
|
"group": "paint",
|
|
1830
2040
|
"state": "deleted",
|
|
2041
|
+
"introduced": "0.6.0",
|
|
1831
2042
|
"replacement": "color.background.accent.orange.subtle",
|
|
1832
2043
|
"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."
|
|
1833
2044
|
},
|
|
@@ -1839,6 +2050,7 @@ const tokens = [{
|
|
|
1839
2050
|
"attributes": {
|
|
1840
2051
|
"group": "paint",
|
|
1841
2052
|
"state": "active",
|
|
2053
|
+
"introduced": "0.7.0",
|
|
1842
2054
|
"description": "Use for yellow backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
1843
2055
|
},
|
|
1844
2056
|
"value": "#FFF7D6",
|
|
@@ -1848,6 +2060,7 @@ const tokens = [{
|
|
|
1848
2060
|
"attributes": {
|
|
1849
2061
|
"group": "paint",
|
|
1850
2062
|
"state": "active",
|
|
2063
|
+
"introduced": "0.7.0",
|
|
1851
2064
|
"description": "Use for yellow backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
1852
2065
|
},
|
|
1853
2066
|
"value": "Y100"
|
|
@@ -1858,6 +2071,7 @@ const tokens = [{
|
|
|
1858
2071
|
"attributes": {
|
|
1859
2072
|
"group": "paint",
|
|
1860
2073
|
"state": "active",
|
|
2074
|
+
"introduced": "0.7.0",
|
|
1861
2075
|
"description": "Use for yellow backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1862
2076
|
},
|
|
1863
2077
|
"value": "#F8E6A0",
|
|
@@ -1867,6 +2081,7 @@ const tokens = [{
|
|
|
1867
2081
|
"attributes": {
|
|
1868
2082
|
"group": "paint",
|
|
1869
2083
|
"state": "active",
|
|
2084
|
+
"introduced": "0.7.0",
|
|
1870
2085
|
"description": "Use for yellow backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1871
2086
|
},
|
|
1872
2087
|
"value": "Y200"
|
|
@@ -1877,6 +2092,7 @@ const tokens = [{
|
|
|
1877
2092
|
"attributes": {
|
|
1878
2093
|
"group": "paint",
|
|
1879
2094
|
"state": "active",
|
|
2095
|
+
"introduced": "0.7.0",
|
|
1880
2096
|
"description": "Use for vibrant yellow backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1881
2097
|
},
|
|
1882
2098
|
"value": "#E2B203",
|
|
@@ -1886,6 +2102,7 @@ const tokens = [{
|
|
|
1886
2102
|
"attributes": {
|
|
1887
2103
|
"group": "paint",
|
|
1888
2104
|
"state": "active",
|
|
2105
|
+
"introduced": "0.7.0",
|
|
1889
2106
|
"description": "Use for vibrant yellow backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1890
2107
|
},
|
|
1891
2108
|
"value": "Y400"
|
|
@@ -1896,6 +2113,7 @@ const tokens = [{
|
|
|
1896
2113
|
"attributes": {
|
|
1897
2114
|
"group": "paint",
|
|
1898
2115
|
"state": "active",
|
|
2116
|
+
"introduced": "0.7.0",
|
|
1899
2117
|
"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."
|
|
1900
2118
|
},
|
|
1901
2119
|
"value": "#946F00",
|
|
@@ -1905,6 +2123,7 @@ const tokens = [{
|
|
|
1905
2123
|
"attributes": {
|
|
1906
2124
|
"group": "paint",
|
|
1907
2125
|
"state": "active",
|
|
2126
|
+
"introduced": "0.7.0",
|
|
1908
2127
|
"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."
|
|
1909
2128
|
},
|
|
1910
2129
|
"value": "Y700"
|
|
@@ -1915,6 +2134,7 @@ const tokens = [{
|
|
|
1915
2134
|
"attributes": {
|
|
1916
2135
|
"group": "paint",
|
|
1917
2136
|
"state": "deleted",
|
|
2137
|
+
"introduced": "0.6.0",
|
|
1918
2138
|
"replacement": "color.background.accent.yellow.subtler",
|
|
1919
2139
|
"description": "Use for yellow backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1920
2140
|
},
|
|
@@ -1925,6 +2145,7 @@ const tokens = [{
|
|
|
1925
2145
|
"attributes": {
|
|
1926
2146
|
"group": "paint",
|
|
1927
2147
|
"state": "deleted",
|
|
2148
|
+
"introduced": "0.6.0",
|
|
1928
2149
|
"replacement": "color.background.accent.yellow.subtler",
|
|
1929
2150
|
"description": "Use for yellow backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1930
2151
|
},
|
|
@@ -1936,6 +2157,7 @@ const tokens = [{
|
|
|
1936
2157
|
"attributes": {
|
|
1937
2158
|
"group": "paint",
|
|
1938
2159
|
"state": "deleted",
|
|
2160
|
+
"introduced": "0.6.0",
|
|
1939
2161
|
"replacement": "color.background.accent.yellow.subtle",
|
|
1940
2162
|
"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."
|
|
1941
2163
|
},
|
|
@@ -1946,6 +2168,7 @@ const tokens = [{
|
|
|
1946
2168
|
"attributes": {
|
|
1947
2169
|
"group": "paint",
|
|
1948
2170
|
"state": "deleted",
|
|
2171
|
+
"introduced": "0.6.0",
|
|
1949
2172
|
"replacement": "color.background.accent.yellow.subtle",
|
|
1950
2173
|
"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."
|
|
1951
2174
|
},
|
|
@@ -1957,6 +2180,7 @@ const tokens = [{
|
|
|
1957
2180
|
"attributes": {
|
|
1958
2181
|
"group": "paint",
|
|
1959
2182
|
"state": "active",
|
|
2183
|
+
"introduced": "0.7.0",
|
|
1960
2184
|
"description": "Use for green backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
1961
2185
|
},
|
|
1962
2186
|
"value": "#DFFCF0",
|
|
@@ -1966,6 +2190,7 @@ const tokens = [{
|
|
|
1966
2190
|
"attributes": {
|
|
1967
2191
|
"group": "paint",
|
|
1968
2192
|
"state": "active",
|
|
2193
|
+
"introduced": "0.7.0",
|
|
1969
2194
|
"description": "Use for green backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
1970
2195
|
},
|
|
1971
2196
|
"value": "G100"
|
|
@@ -1976,6 +2201,7 @@ const tokens = [{
|
|
|
1976
2201
|
"attributes": {
|
|
1977
2202
|
"group": "paint",
|
|
1978
2203
|
"state": "active",
|
|
2204
|
+
"introduced": "0.7.0",
|
|
1979
2205
|
"description": "Use for green backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1980
2206
|
},
|
|
1981
2207
|
"value": "#BAF3DB",
|
|
@@ -1985,6 +2211,7 @@ const tokens = [{
|
|
|
1985
2211
|
"attributes": {
|
|
1986
2212
|
"group": "paint",
|
|
1987
2213
|
"state": "active",
|
|
2214
|
+
"introduced": "0.7.0",
|
|
1988
2215
|
"description": "Use for green backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1989
2216
|
},
|
|
1990
2217
|
"value": "G200"
|
|
@@ -1995,6 +2222,7 @@ const tokens = [{
|
|
|
1995
2222
|
"attributes": {
|
|
1996
2223
|
"group": "paint",
|
|
1997
2224
|
"state": "active",
|
|
2225
|
+
"introduced": "0.7.0",
|
|
1998
2226
|
"description": "Use for vibrant green backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
1999
2227
|
},
|
|
2000
2228
|
"value": "#4BCE97",
|
|
@@ -2004,6 +2232,7 @@ const tokens = [{
|
|
|
2004
2232
|
"attributes": {
|
|
2005
2233
|
"group": "paint",
|
|
2006
2234
|
"state": "active",
|
|
2235
|
+
"introduced": "0.7.0",
|
|
2007
2236
|
"description": "Use for vibrant green backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2008
2237
|
},
|
|
2009
2238
|
"value": "G400"
|
|
@@ -2014,6 +2243,7 @@ const tokens = [{
|
|
|
2014
2243
|
"attributes": {
|
|
2015
2244
|
"group": "paint",
|
|
2016
2245
|
"state": "active",
|
|
2246
|
+
"introduced": "0.7.0",
|
|
2017
2247
|
"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."
|
|
2018
2248
|
},
|
|
2019
2249
|
"value": "#1F845A",
|
|
@@ -2023,6 +2253,7 @@ const tokens = [{
|
|
|
2023
2253
|
"attributes": {
|
|
2024
2254
|
"group": "paint",
|
|
2025
2255
|
"state": "active",
|
|
2256
|
+
"introduced": "0.7.0",
|
|
2026
2257
|
"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."
|
|
2027
2258
|
},
|
|
2028
2259
|
"value": "G700"
|
|
@@ -2033,6 +2264,7 @@ const tokens = [{
|
|
|
2033
2264
|
"attributes": {
|
|
2034
2265
|
"group": "paint",
|
|
2035
2266
|
"state": "deleted",
|
|
2267
|
+
"introduced": "0.6.0",
|
|
2036
2268
|
"replacement": "color.background.accent.green.subtler",
|
|
2037
2269
|
"description": "Use for green backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2038
2270
|
},
|
|
@@ -2043,6 +2275,7 @@ const tokens = [{
|
|
|
2043
2275
|
"attributes": {
|
|
2044
2276
|
"group": "paint",
|
|
2045
2277
|
"state": "deleted",
|
|
2278
|
+
"introduced": "0.6.0",
|
|
2046
2279
|
"replacement": "color.background.accent.green.subtler",
|
|
2047
2280
|
"description": "Use for green backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2048
2281
|
},
|
|
@@ -2054,6 +2287,7 @@ const tokens = [{
|
|
|
2054
2287
|
"attributes": {
|
|
2055
2288
|
"group": "paint",
|
|
2056
2289
|
"state": "deleted",
|
|
2290
|
+
"introduced": "0.6.0",
|
|
2057
2291
|
"replacement": "color.background.accent.green.subtle",
|
|
2058
2292
|
"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."
|
|
2059
2293
|
},
|
|
@@ -2064,6 +2298,7 @@ const tokens = [{
|
|
|
2064
2298
|
"attributes": {
|
|
2065
2299
|
"group": "paint",
|
|
2066
2300
|
"state": "deleted",
|
|
2301
|
+
"introduced": "0.6.0",
|
|
2067
2302
|
"replacement": "color.background.accent.green.subtle",
|
|
2068
2303
|
"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."
|
|
2069
2304
|
},
|
|
@@ -2075,6 +2310,7 @@ const tokens = [{
|
|
|
2075
2310
|
"attributes": {
|
|
2076
2311
|
"group": "paint",
|
|
2077
2312
|
"state": "active",
|
|
2313
|
+
"introduced": "0.7.0",
|
|
2078
2314
|
"description": "Use for teal backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
2079
2315
|
},
|
|
2080
2316
|
"value": "#E3FAFC",
|
|
@@ -2084,6 +2320,7 @@ const tokens = [{
|
|
|
2084
2320
|
"attributes": {
|
|
2085
2321
|
"group": "paint",
|
|
2086
2322
|
"state": "active",
|
|
2323
|
+
"introduced": "0.7.0",
|
|
2087
2324
|
"description": "Use for teal backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
2088
2325
|
},
|
|
2089
2326
|
"value": "T100"
|
|
@@ -2094,6 +2331,7 @@ const tokens = [{
|
|
|
2094
2331
|
"attributes": {
|
|
2095
2332
|
"group": "paint",
|
|
2096
2333
|
"state": "active",
|
|
2334
|
+
"introduced": "0.7.0",
|
|
2097
2335
|
"description": "Use for teal backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2098
2336
|
},
|
|
2099
2337
|
"value": "#C1F0F5",
|
|
@@ -2103,6 +2341,7 @@ const tokens = [{
|
|
|
2103
2341
|
"attributes": {
|
|
2104
2342
|
"group": "paint",
|
|
2105
2343
|
"state": "active",
|
|
2344
|
+
"introduced": "0.7.0",
|
|
2106
2345
|
"description": "Use for teal backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2107
2346
|
},
|
|
2108
2347
|
"value": "T200"
|
|
@@ -2113,6 +2352,7 @@ const tokens = [{
|
|
|
2113
2352
|
"attributes": {
|
|
2114
2353
|
"group": "paint",
|
|
2115
2354
|
"state": "active",
|
|
2355
|
+
"introduced": "0.7.0",
|
|
2116
2356
|
"description": "Use for vibrant teal backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2117
2357
|
},
|
|
2118
2358
|
"value": "#60C6D2",
|
|
@@ -2122,6 +2362,7 @@ const tokens = [{
|
|
|
2122
2362
|
"attributes": {
|
|
2123
2363
|
"group": "paint",
|
|
2124
2364
|
"state": "active",
|
|
2365
|
+
"introduced": "0.7.0",
|
|
2125
2366
|
"description": "Use for vibrant teal backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2126
2367
|
},
|
|
2127
2368
|
"value": "T400"
|
|
@@ -2132,6 +2373,7 @@ const tokens = [{
|
|
|
2132
2373
|
"attributes": {
|
|
2133
2374
|
"group": "paint",
|
|
2134
2375
|
"state": "active",
|
|
2376
|
+
"introduced": "0.7.0",
|
|
2135
2377
|
"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."
|
|
2136
2378
|
},
|
|
2137
2379
|
"value": "#1D7F8C",
|
|
@@ -2141,6 +2383,7 @@ const tokens = [{
|
|
|
2141
2383
|
"attributes": {
|
|
2142
2384
|
"group": "paint",
|
|
2143
2385
|
"state": "active",
|
|
2386
|
+
"introduced": "0.7.0",
|
|
2144
2387
|
"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."
|
|
2145
2388
|
},
|
|
2146
2389
|
"value": "T700"
|
|
@@ -2151,6 +2394,7 @@ const tokens = [{
|
|
|
2151
2394
|
"attributes": {
|
|
2152
2395
|
"group": "paint",
|
|
2153
2396
|
"state": "deleted",
|
|
2397
|
+
"introduced": "0.6.0",
|
|
2154
2398
|
"replacement": "color.background.accent.teal.subtler",
|
|
2155
2399
|
"description": "Use for teal backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2156
2400
|
},
|
|
@@ -2161,6 +2405,7 @@ const tokens = [{
|
|
|
2161
2405
|
"attributes": {
|
|
2162
2406
|
"group": "paint",
|
|
2163
2407
|
"state": "deleted",
|
|
2408
|
+
"introduced": "0.6.0",
|
|
2164
2409
|
"replacement": "color.background.accent.teal.subtler",
|
|
2165
2410
|
"description": "Use for teal backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2166
2411
|
},
|
|
@@ -2172,6 +2417,7 @@ const tokens = [{
|
|
|
2172
2417
|
"attributes": {
|
|
2173
2418
|
"group": "paint",
|
|
2174
2419
|
"state": "deleted",
|
|
2420
|
+
"introduced": "0.6.0",
|
|
2175
2421
|
"replacement": "color.background.accent.teal.subtle",
|
|
2176
2422
|
"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."
|
|
2177
2423
|
},
|
|
@@ -2182,6 +2428,7 @@ const tokens = [{
|
|
|
2182
2428
|
"attributes": {
|
|
2183
2429
|
"group": "paint",
|
|
2184
2430
|
"state": "deleted",
|
|
2431
|
+
"introduced": "0.6.0",
|
|
2185
2432
|
"replacement": "color.background.accent.teal.subtle",
|
|
2186
2433
|
"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."
|
|
2187
2434
|
},
|
|
@@ -2193,6 +2440,7 @@ const tokens = [{
|
|
|
2193
2440
|
"attributes": {
|
|
2194
2441
|
"group": "paint",
|
|
2195
2442
|
"state": "active",
|
|
2443
|
+
"introduced": "0.7.0",
|
|
2196
2444
|
"description": "Use for purple backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
2197
2445
|
},
|
|
2198
2446
|
"value": "#F3F0FF",
|
|
@@ -2202,6 +2450,7 @@ const tokens = [{
|
|
|
2202
2450
|
"attributes": {
|
|
2203
2451
|
"group": "paint",
|
|
2204
2452
|
"state": "active",
|
|
2453
|
+
"introduced": "0.7.0",
|
|
2205
2454
|
"description": "Use for purple backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
2206
2455
|
},
|
|
2207
2456
|
"value": "P100"
|
|
@@ -2212,6 +2461,7 @@ const tokens = [{
|
|
|
2212
2461
|
"attributes": {
|
|
2213
2462
|
"group": "paint",
|
|
2214
2463
|
"state": "active",
|
|
2464
|
+
"introduced": "0.7.0",
|
|
2215
2465
|
"description": "Use for purple backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2216
2466
|
},
|
|
2217
2467
|
"value": "#DFD8FD",
|
|
@@ -2221,6 +2471,7 @@ const tokens = [{
|
|
|
2221
2471
|
"attributes": {
|
|
2222
2472
|
"group": "paint",
|
|
2223
2473
|
"state": "active",
|
|
2474
|
+
"introduced": "0.7.0",
|
|
2224
2475
|
"description": "Use for purple backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2225
2476
|
},
|
|
2226
2477
|
"value": "P200"
|
|
@@ -2231,6 +2482,7 @@ const tokens = [{
|
|
|
2231
2482
|
"attributes": {
|
|
2232
2483
|
"group": "paint",
|
|
2233
2484
|
"state": "active",
|
|
2485
|
+
"introduced": "0.7.0",
|
|
2234
2486
|
"description": "Use for vibrant purple backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2235
2487
|
},
|
|
2236
2488
|
"value": "#9F8FEF",
|
|
@@ -2240,6 +2492,7 @@ const tokens = [{
|
|
|
2240
2492
|
"attributes": {
|
|
2241
2493
|
"group": "paint",
|
|
2242
2494
|
"state": "active",
|
|
2495
|
+
"introduced": "0.7.0",
|
|
2243
2496
|
"description": "Use for vibrant purple backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2244
2497
|
},
|
|
2245
2498
|
"value": "P400"
|
|
@@ -2250,6 +2503,7 @@ const tokens = [{
|
|
|
2250
2503
|
"attributes": {
|
|
2251
2504
|
"group": "paint",
|
|
2252
2505
|
"state": "active",
|
|
2506
|
+
"introduced": "0.7.0",
|
|
2253
2507
|
"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."
|
|
2254
2508
|
},
|
|
2255
2509
|
"value": "#6E5DC6",
|
|
@@ -2259,6 +2513,7 @@ const tokens = [{
|
|
|
2259
2513
|
"attributes": {
|
|
2260
2514
|
"group": "paint",
|
|
2261
2515
|
"state": "active",
|
|
2516
|
+
"introduced": "0.7.0",
|
|
2262
2517
|
"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."
|
|
2263
2518
|
},
|
|
2264
2519
|
"value": "P700"
|
|
@@ -2269,6 +2524,7 @@ const tokens = [{
|
|
|
2269
2524
|
"attributes": {
|
|
2270
2525
|
"group": "paint",
|
|
2271
2526
|
"state": "deleted",
|
|
2527
|
+
"introduced": "0.6.0",
|
|
2272
2528
|
"replacement": "color.background.accent.purple.subtler",
|
|
2273
2529
|
"description": "Use for purple backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2274
2530
|
},
|
|
@@ -2279,6 +2535,7 @@ const tokens = [{
|
|
|
2279
2535
|
"attributes": {
|
|
2280
2536
|
"group": "paint",
|
|
2281
2537
|
"state": "deleted",
|
|
2538
|
+
"introduced": "0.6.0",
|
|
2282
2539
|
"replacement": "color.background.accent.purple.subtler",
|
|
2283
2540
|
"description": "Use for purple backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2284
2541
|
},
|
|
@@ -2290,6 +2547,7 @@ const tokens = [{
|
|
|
2290
2547
|
"attributes": {
|
|
2291
2548
|
"group": "paint",
|
|
2292
2549
|
"state": "deleted",
|
|
2550
|
+
"introduced": "0.6.0",
|
|
2293
2551
|
"replacement": "color.background.accent.purple.subtle",
|
|
2294
2552
|
"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."
|
|
2295
2553
|
},
|
|
@@ -2300,6 +2558,7 @@ const tokens = [{
|
|
|
2300
2558
|
"attributes": {
|
|
2301
2559
|
"group": "paint",
|
|
2302
2560
|
"state": "deleted",
|
|
2561
|
+
"introduced": "0.6.0",
|
|
2303
2562
|
"replacement": "color.background.accent.purple.subtle",
|
|
2304
2563
|
"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."
|
|
2305
2564
|
},
|
|
@@ -2311,6 +2570,7 @@ const tokens = [{
|
|
|
2311
2570
|
"attributes": {
|
|
2312
2571
|
"group": "paint",
|
|
2313
2572
|
"state": "active",
|
|
2573
|
+
"introduced": "0.7.0",
|
|
2314
2574
|
"description": "Use for magenta backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
2315
2575
|
},
|
|
2316
2576
|
"value": "#FFECF8",
|
|
@@ -2320,6 +2580,7 @@ const tokens = [{
|
|
|
2320
2580
|
"attributes": {
|
|
2321
2581
|
"group": "paint",
|
|
2322
2582
|
"state": "active",
|
|
2583
|
+
"introduced": "0.7.0",
|
|
2323
2584
|
"description": "Use for magenta backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color."
|
|
2324
2585
|
},
|
|
2325
2586
|
"value": "M100"
|
|
@@ -2330,6 +2591,7 @@ const tokens = [{
|
|
|
2330
2591
|
"attributes": {
|
|
2331
2592
|
"group": "paint",
|
|
2332
2593
|
"state": "active",
|
|
2594
|
+
"introduced": "0.7.0",
|
|
2333
2595
|
"description": "Use for magenta backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2334
2596
|
},
|
|
2335
2597
|
"value": "#FDD0EC",
|
|
@@ -2339,6 +2601,7 @@ const tokens = [{
|
|
|
2339
2601
|
"attributes": {
|
|
2340
2602
|
"group": "paint",
|
|
2341
2603
|
"state": "active",
|
|
2604
|
+
"introduced": "0.7.0",
|
|
2342
2605
|
"description": "Use for magenta backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2343
2606
|
},
|
|
2344
2607
|
"value": "M200"
|
|
@@ -2349,6 +2612,7 @@ const tokens = [{
|
|
|
2349
2612
|
"attributes": {
|
|
2350
2613
|
"group": "paint",
|
|
2351
2614
|
"state": "active",
|
|
2615
|
+
"introduced": "0.7.0",
|
|
2352
2616
|
"description": "Use for vibrant magenta backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2353
2617
|
},
|
|
2354
2618
|
"value": "#E774BB",
|
|
@@ -2358,6 +2622,7 @@ const tokens = [{
|
|
|
2358
2622
|
"attributes": {
|
|
2359
2623
|
"group": "paint",
|
|
2360
2624
|
"state": "active",
|
|
2625
|
+
"introduced": "0.7.0",
|
|
2361
2626
|
"description": "Use for vibrant magenta backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2362
2627
|
},
|
|
2363
2628
|
"value": "M400"
|
|
@@ -2368,6 +2633,7 @@ const tokens = [{
|
|
|
2368
2633
|
"attributes": {
|
|
2369
2634
|
"group": "paint",
|
|
2370
2635
|
"state": "active",
|
|
2636
|
+
"introduced": "0.7.0",
|
|
2371
2637
|
"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."
|
|
2372
2638
|
},
|
|
2373
2639
|
"value": "#AE4787",
|
|
@@ -2377,6 +2643,7 @@ const tokens = [{
|
|
|
2377
2643
|
"attributes": {
|
|
2378
2644
|
"group": "paint",
|
|
2379
2645
|
"state": "active",
|
|
2646
|
+
"introduced": "0.7.0",
|
|
2380
2647
|
"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."
|
|
2381
2648
|
},
|
|
2382
2649
|
"value": "M700"
|
|
@@ -2387,6 +2654,7 @@ const tokens = [{
|
|
|
2387
2654
|
"attributes": {
|
|
2388
2655
|
"group": "paint",
|
|
2389
2656
|
"state": "deleted",
|
|
2657
|
+
"introduced": "0.6.0",
|
|
2390
2658
|
"replacement": "color.background.accent.magenta.subtler",
|
|
2391
2659
|
"description": "Use for magenta backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2392
2660
|
},
|
|
@@ -2397,6 +2665,7 @@ const tokens = [{
|
|
|
2397
2665
|
"attributes": {
|
|
2398
2666
|
"group": "paint",
|
|
2399
2667
|
"state": "deleted",
|
|
2668
|
+
"introduced": "0.6.0",
|
|
2400
2669
|
"replacement": "color.background.accent.magenta.subtler",
|
|
2401
2670
|
"description": "Use for magenta backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
2402
2671
|
},
|
|
@@ -2408,6 +2677,7 @@ const tokens = [{
|
|
|
2408
2677
|
"attributes": {
|
|
2409
2678
|
"group": "paint",
|
|
2410
2679
|
"state": "deleted",
|
|
2680
|
+
"introduced": "0.6.0",
|
|
2411
2681
|
"replacement": "color.background.accent.magenta.subtle",
|
|
2412
2682
|
"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."
|
|
2413
2683
|
},
|
|
@@ -2418,6 +2688,7 @@ const tokens = [{
|
|
|
2418
2688
|
"attributes": {
|
|
2419
2689
|
"group": "paint",
|
|
2420
2690
|
"state": "deleted",
|
|
2691
|
+
"introduced": "0.6.0",
|
|
2421
2692
|
"replacement": "color.background.accent.magenta.subtle",
|
|
2422
2693
|
"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."
|
|
2423
2694
|
},
|
|
@@ -2429,6 +2700,7 @@ const tokens = [{
|
|
|
2429
2700
|
"attributes": {
|
|
2430
2701
|
"group": "paint",
|
|
2431
2702
|
"state": "active",
|
|
2703
|
+
"introduced": "0.0.15",
|
|
2432
2704
|
"description": "Use for backgrounds of elements in a disabled state."
|
|
2433
2705
|
},
|
|
2434
2706
|
"value": "#091E420F",
|
|
@@ -2438,6 +2710,7 @@ const tokens = [{
|
|
|
2438
2710
|
"attributes": {
|
|
2439
2711
|
"group": "paint",
|
|
2440
2712
|
"state": "active",
|
|
2713
|
+
"introduced": "0.0.15",
|
|
2441
2714
|
"description": "Use for backgrounds of elements in a disabled state."
|
|
2442
2715
|
},
|
|
2443
2716
|
"value": "N200A"
|
|
@@ -2448,6 +2721,7 @@ const tokens = [{
|
|
|
2448
2721
|
"attributes": {
|
|
2449
2722
|
"group": "paint",
|
|
2450
2723
|
"state": "active",
|
|
2724
|
+
"introduced": "0.8.3",
|
|
2451
2725
|
"description": "Use for backgrounds of elements on a bold background, such as in the buttons on spotlight cards."
|
|
2452
2726
|
},
|
|
2453
2727
|
"value": "#00000029",
|
|
@@ -2457,16 +2731,83 @@ const tokens = [{
|
|
|
2457
2731
|
"attributes": {
|
|
2458
2732
|
"group": "paint",
|
|
2459
2733
|
"state": "active",
|
|
2734
|
+
"introduced": "0.8.3",
|
|
2460
2735
|
"description": "Use for backgrounds of elements on a bold background, such as in the buttons on spotlight cards."
|
|
2461
2736
|
},
|
|
2462
2737
|
"value": "#00000029"
|
|
2463
2738
|
},
|
|
2464
|
-
"name": "color.background.inverse",
|
|
2465
|
-
"path": ["color", "background", "inverse"]
|
|
2739
|
+
"name": "color.background.inverse.subtle.[default]",
|
|
2740
|
+
"path": ["color", "background", "inverse", "subtle", "[default]"]
|
|
2741
|
+
}, {
|
|
2742
|
+
"attributes": {
|
|
2743
|
+
"group": "paint",
|
|
2744
|
+
"state": "active",
|
|
2745
|
+
"introduced": "0.8.3",
|
|
2746
|
+
"description": "Use for the hovered state of color.background.inverse.subtle"
|
|
2747
|
+
},
|
|
2748
|
+
"value": "#0000003D",
|
|
2749
|
+
"filePath": "src/tokens/atlassian-light/color/background.tsx",
|
|
2750
|
+
"isSource": true,
|
|
2751
|
+
"original": {
|
|
2752
|
+
"attributes": {
|
|
2753
|
+
"group": "paint",
|
|
2754
|
+
"state": "active",
|
|
2755
|
+
"introduced": "0.8.3",
|
|
2756
|
+
"description": "Use for the hovered state of color.background.inverse.subtle"
|
|
2757
|
+
},
|
|
2758
|
+
"value": "#0000003D"
|
|
2759
|
+
},
|
|
2760
|
+
"name": "color.background.inverse.subtle.hovered",
|
|
2761
|
+
"path": ["color", "background", "inverse", "subtle", "hovered"]
|
|
2762
|
+
}, {
|
|
2763
|
+
"attributes": {
|
|
2764
|
+
"group": "paint",
|
|
2765
|
+
"state": "active",
|
|
2766
|
+
"introduced": "0.8.3",
|
|
2767
|
+
"description": "Use for the pressed state of color.background.inverse.subtle"
|
|
2768
|
+
},
|
|
2769
|
+
"value": "#00000052",
|
|
2770
|
+
"filePath": "src/tokens/atlassian-light/color/background.tsx",
|
|
2771
|
+
"isSource": true,
|
|
2772
|
+
"original": {
|
|
2773
|
+
"attributes": {
|
|
2774
|
+
"group": "paint",
|
|
2775
|
+
"state": "active",
|
|
2776
|
+
"introduced": "0.8.3",
|
|
2777
|
+
"description": "Use for the pressed state of color.background.inverse.subtle"
|
|
2778
|
+
},
|
|
2779
|
+
"value": "#00000052"
|
|
2780
|
+
},
|
|
2781
|
+
"name": "color.background.inverse.subtle.pressed",
|
|
2782
|
+
"path": ["color", "background", "inverse", "subtle", "pressed"]
|
|
2783
|
+
}, {
|
|
2784
|
+
"attributes": {
|
|
2785
|
+
"group": "paint",
|
|
2786
|
+
"state": "deprecated",
|
|
2787
|
+
"introduced": "0.1.0",
|
|
2788
|
+
"replacement": "color.background.inverse.subtle.[default]",
|
|
2789
|
+
"description": "Use for backgrounds of elements on a bold background, such as in the buttons on spotlight cards."
|
|
2790
|
+
},
|
|
2791
|
+
"value": "#FFFFFF29",
|
|
2792
|
+
"filePath": "src/tokens/atlassian-light/deprecated/deprecated.tsx",
|
|
2793
|
+
"isSource": true,
|
|
2794
|
+
"original": {
|
|
2795
|
+
"attributes": {
|
|
2796
|
+
"group": "paint",
|
|
2797
|
+
"state": "deprecated",
|
|
2798
|
+
"introduced": "0.1.0",
|
|
2799
|
+
"replacement": "color.background.inverse.subtle.[default]",
|
|
2800
|
+
"description": "Use for backgrounds of elements on a bold background, such as in the buttons on spotlight cards."
|
|
2801
|
+
},
|
|
2802
|
+
"value": "#FFFFFF29"
|
|
2803
|
+
},
|
|
2804
|
+
"name": "color.background.inverse.[default]",
|
|
2805
|
+
"path": ["color", "background", "inverse", "[default]"]
|
|
2466
2806
|
}, {
|
|
2467
2807
|
"attributes": {
|
|
2468
2808
|
"group": "paint",
|
|
2469
2809
|
"state": "active",
|
|
2810
|
+
"introduced": "0.6.0",
|
|
2470
2811
|
"description": "Use for background of form UI elements, such as text fields, checkboxes, and radio buttons."
|
|
2471
2812
|
},
|
|
2472
2813
|
"value": "#FFFFFF",
|
|
@@ -2476,6 +2817,7 @@ const tokens = [{
|
|
|
2476
2817
|
"attributes": {
|
|
2477
2818
|
"group": "paint",
|
|
2478
2819
|
"state": "active",
|
|
2820
|
+
"introduced": "0.6.0",
|
|
2479
2821
|
"description": "Use for background of form UI elements, such as text fields, checkboxes, and radio buttons."
|
|
2480
2822
|
},
|
|
2481
2823
|
"value": "N0"
|
|
@@ -2486,6 +2828,7 @@ const tokens = [{
|
|
|
2486
2828
|
"attributes": {
|
|
2487
2829
|
"group": "paint",
|
|
2488
2830
|
"state": "active",
|
|
2831
|
+
"introduced": "0.6.0",
|
|
2489
2832
|
"description": "Hovered state for color.background.input"
|
|
2490
2833
|
},
|
|
2491
2834
|
"value": "#F7F8F9",
|
|
@@ -2495,6 +2838,7 @@ const tokens = [{
|
|
|
2495
2838
|
"attributes": {
|
|
2496
2839
|
"group": "paint",
|
|
2497
2840
|
"state": "active",
|
|
2841
|
+
"introduced": "0.6.0",
|
|
2498
2842
|
"description": "Hovered state for color.background.input"
|
|
2499
2843
|
},
|
|
2500
2844
|
"value": "N100"
|
|
@@ -2505,6 +2849,7 @@ const tokens = [{
|
|
|
2505
2849
|
"attributes": {
|
|
2506
2850
|
"group": "paint",
|
|
2507
2851
|
"state": "active",
|
|
2852
|
+
"introduced": "0.6.0",
|
|
2508
2853
|
"description": "Pressed state for color.background.input"
|
|
2509
2854
|
},
|
|
2510
2855
|
"value": "#FFFFFF",
|
|
@@ -2514,6 +2859,7 @@ const tokens = [{
|
|
|
2514
2859
|
"attributes": {
|
|
2515
2860
|
"group": "paint",
|
|
2516
2861
|
"state": "active",
|
|
2862
|
+
"introduced": "0.6.0",
|
|
2517
2863
|
"description": "Pressed state for color.background.input"
|
|
2518
2864
|
},
|
|
2519
2865
|
"value": "N0"
|
|
@@ -2524,6 +2870,7 @@ const tokens = [{
|
|
|
2524
2870
|
"attributes": {
|
|
2525
2871
|
"group": "paint",
|
|
2526
2872
|
"state": "active",
|
|
2873
|
+
"introduced": "0.6.0",
|
|
2527
2874
|
"description": "The default background for neutral elements, such as default buttons."
|
|
2528
2875
|
},
|
|
2529
2876
|
"value": "#091E420F",
|
|
@@ -2533,6 +2880,7 @@ const tokens = [{
|
|
|
2533
2880
|
"attributes": {
|
|
2534
2881
|
"group": "paint",
|
|
2535
2882
|
"state": "active",
|
|
2883
|
+
"introduced": "0.6.0",
|
|
2536
2884
|
"description": "The default background for neutral elements, such as default buttons."
|
|
2537
2885
|
},
|
|
2538
2886
|
"value": "N200A"
|
|
@@ -2543,6 +2891,7 @@ const tokens = [{
|
|
|
2543
2891
|
"attributes": {
|
|
2544
2892
|
"group": "paint",
|
|
2545
2893
|
"state": "active",
|
|
2894
|
+
"introduced": "0.6.0",
|
|
2546
2895
|
"description": "Hovered state for color.background.neutral"
|
|
2547
2896
|
},
|
|
2548
2897
|
"value": "#091E4224",
|
|
@@ -2552,6 +2901,7 @@ const tokens = [{
|
|
|
2552
2901
|
"attributes": {
|
|
2553
2902
|
"group": "paint",
|
|
2554
2903
|
"state": "active",
|
|
2904
|
+
"introduced": "0.6.0",
|
|
2555
2905
|
"description": "Hovered state for color.background.neutral"
|
|
2556
2906
|
},
|
|
2557
2907
|
"value": "N300A"
|
|
@@ -2562,6 +2912,7 @@ const tokens = [{
|
|
|
2562
2912
|
"attributes": {
|
|
2563
2913
|
"group": "paint",
|
|
2564
2914
|
"state": "active",
|
|
2915
|
+
"introduced": "0.6.0",
|
|
2565
2916
|
"description": "Pressed state for color.background.neutral"
|
|
2566
2917
|
},
|
|
2567
2918
|
"value": "#091E424F",
|
|
@@ -2571,6 +2922,7 @@ const tokens = [{
|
|
|
2571
2922
|
"attributes": {
|
|
2572
2923
|
"group": "paint",
|
|
2573
2924
|
"state": "active",
|
|
2925
|
+
"introduced": "0.6.0",
|
|
2574
2926
|
"description": "Pressed state for color.background.neutral"
|
|
2575
2927
|
},
|
|
2576
2928
|
"value": "N400A"
|
|
@@ -2581,6 +2933,7 @@ const tokens = [{
|
|
|
2581
2933
|
"attributes": {
|
|
2582
2934
|
"group": "paint",
|
|
2583
2935
|
"state": "active",
|
|
2936
|
+
"introduced": "0.6.0",
|
|
2584
2937
|
"description": "Use for the background of elements that appear to have no background in a resting state, such as subtle buttons and menu items."
|
|
2585
2938
|
},
|
|
2586
2939
|
"value": "#00000000",
|
|
@@ -2590,6 +2943,7 @@ const tokens = [{
|
|
|
2590
2943
|
"attributes": {
|
|
2591
2944
|
"group": "paint",
|
|
2592
2945
|
"state": "active",
|
|
2946
|
+
"introduced": "0.6.0",
|
|
2593
2947
|
"description": "Use for the background of elements that appear to have no background in a resting state, such as subtle buttons and menu items."
|
|
2594
2948
|
},
|
|
2595
2949
|
"value": "transparent"
|
|
@@ -2600,6 +2954,7 @@ const tokens = [{
|
|
|
2600
2954
|
"attributes": {
|
|
2601
2955
|
"group": "paint",
|
|
2602
2956
|
"state": "active",
|
|
2957
|
+
"introduced": "0.6.0",
|
|
2603
2958
|
"description": "Hovered state for color.background.neutral.subtle"
|
|
2604
2959
|
},
|
|
2605
2960
|
"value": "#091E420F",
|
|
@@ -2609,6 +2964,7 @@ const tokens = [{
|
|
|
2609
2964
|
"attributes": {
|
|
2610
2965
|
"group": "paint",
|
|
2611
2966
|
"state": "active",
|
|
2967
|
+
"introduced": "0.6.0",
|
|
2612
2968
|
"description": "Hovered state for color.background.neutral.subtle"
|
|
2613
2969
|
},
|
|
2614
2970
|
"value": "N200A"
|
|
@@ -2619,6 +2975,7 @@ const tokens = [{
|
|
|
2619
2975
|
"attributes": {
|
|
2620
2976
|
"group": "paint",
|
|
2621
2977
|
"state": "active",
|
|
2978
|
+
"introduced": "0.6.0",
|
|
2622
2979
|
"description": "Pressed state for color.background.neutral.subtle"
|
|
2623
2980
|
},
|
|
2624
2981
|
"value": "#091E4224",
|
|
@@ -2628,6 +2985,7 @@ const tokens = [{
|
|
|
2628
2985
|
"attributes": {
|
|
2629
2986
|
"group": "paint",
|
|
2630
2987
|
"state": "active",
|
|
2988
|
+
"introduced": "0.6.0",
|
|
2631
2989
|
"description": "Pressed state for color.background.neutral.subtle"
|
|
2632
2990
|
},
|
|
2633
2991
|
"value": "N300A"
|
|
@@ -2638,6 +2996,7 @@ const tokens = [{
|
|
|
2638
2996
|
"attributes": {
|
|
2639
2997
|
"group": "paint",
|
|
2640
2998
|
"state": "active",
|
|
2999
|
+
"introduced": "0.6.0",
|
|
2641
3000
|
"description": "A vibrant background option for neutral UI elements, such as announcement banners."
|
|
2642
3001
|
},
|
|
2643
3002
|
"value": "#44546F",
|
|
@@ -2647,6 +3006,7 @@ const tokens = [{
|
|
|
2647
3006
|
"attributes": {
|
|
2648
3007
|
"group": "paint",
|
|
2649
3008
|
"state": "active",
|
|
3009
|
+
"introduced": "0.6.0",
|
|
2650
3010
|
"description": "A vibrant background option for neutral UI elements, such as announcement banners."
|
|
2651
3011
|
},
|
|
2652
3012
|
"value": "N800"
|
|
@@ -2657,6 +3017,7 @@ const tokens = [{
|
|
|
2657
3017
|
"attributes": {
|
|
2658
3018
|
"group": "paint",
|
|
2659
3019
|
"state": "active",
|
|
3020
|
+
"introduced": "0.6.0",
|
|
2660
3021
|
"description": "Hovered state of color.background.neutral.bold"
|
|
2661
3022
|
},
|
|
2662
3023
|
"value": "#2C3E5D",
|
|
@@ -2666,6 +3027,7 @@ const tokens = [{
|
|
|
2666
3027
|
"attributes": {
|
|
2667
3028
|
"group": "paint",
|
|
2668
3029
|
"state": "active",
|
|
3030
|
+
"introduced": "0.6.0",
|
|
2669
3031
|
"description": "Hovered state of color.background.neutral.bold"
|
|
2670
3032
|
},
|
|
2671
3033
|
"value": "N900"
|
|
@@ -2676,6 +3038,7 @@ const tokens = [{
|
|
|
2676
3038
|
"attributes": {
|
|
2677
3039
|
"group": "paint",
|
|
2678
3040
|
"state": "active",
|
|
3041
|
+
"introduced": "0.6.0",
|
|
2679
3042
|
"description": "Pressed state of color.background.neutral.bold"
|
|
2680
3043
|
},
|
|
2681
3044
|
"value": "#172B4D",
|
|
@@ -2685,6 +3048,7 @@ const tokens = [{
|
|
|
2685
3048
|
"attributes": {
|
|
2686
3049
|
"group": "paint",
|
|
2687
3050
|
"state": "active",
|
|
3051
|
+
"introduced": "0.6.0",
|
|
2688
3052
|
"description": "Pressed state of color.background.neutral.bold"
|
|
2689
3053
|
},
|
|
2690
3054
|
"value": "N1000"
|
|
@@ -2695,6 +3059,7 @@ const tokens = [{
|
|
|
2695
3059
|
"attributes": {
|
|
2696
3060
|
"group": "paint",
|
|
2697
3061
|
"state": "active",
|
|
3062
|
+
"introduced": "0.6.0",
|
|
2698
3063
|
"description": "Use for the background of elements used to reinforce our brand, but with more emphasis."
|
|
2699
3064
|
},
|
|
2700
3065
|
"value": "#0C66E4",
|
|
@@ -2704,6 +3069,7 @@ const tokens = [{
|
|
|
2704
3069
|
"attributes": {
|
|
2705
3070
|
"group": "paint",
|
|
2706
3071
|
"state": "active",
|
|
3072
|
+
"introduced": "0.6.0",
|
|
2707
3073
|
"description": "Use for the background of elements used to reinforce our brand, but with more emphasis."
|
|
2708
3074
|
},
|
|
2709
3075
|
"value": "B700"
|
|
@@ -2714,6 +3080,7 @@ const tokens = [{
|
|
|
2714
3080
|
"attributes": {
|
|
2715
3081
|
"group": "paint",
|
|
2716
3082
|
"state": "active",
|
|
3083
|
+
"introduced": "0.6.0",
|
|
2717
3084
|
"description": "Hovered state of color.background.brand.bold"
|
|
2718
3085
|
},
|
|
2719
3086
|
"value": "#0055CC",
|
|
@@ -2723,6 +3090,7 @@ const tokens = [{
|
|
|
2723
3090
|
"attributes": {
|
|
2724
3091
|
"group": "paint",
|
|
2725
3092
|
"state": "active",
|
|
3093
|
+
"introduced": "0.6.0",
|
|
2726
3094
|
"description": "Hovered state of color.background.brand.bold"
|
|
2727
3095
|
},
|
|
2728
3096
|
"value": "B800"
|
|
@@ -2733,6 +3101,7 @@ const tokens = [{
|
|
|
2733
3101
|
"attributes": {
|
|
2734
3102
|
"group": "paint",
|
|
2735
3103
|
"state": "active",
|
|
3104
|
+
"introduced": "0.6.0",
|
|
2736
3105
|
"description": "Pressed state of color.background.brand.bold"
|
|
2737
3106
|
},
|
|
2738
3107
|
"value": "#09326C",
|
|
@@ -2742,6 +3111,7 @@ const tokens = [{
|
|
|
2742
3111
|
"attributes": {
|
|
2743
3112
|
"group": "paint",
|
|
2744
3113
|
"state": "active",
|
|
3114
|
+
"introduced": "0.6.0",
|
|
2745
3115
|
"description": "Pressed state of color.background.brand.bold"
|
|
2746
3116
|
},
|
|
2747
3117
|
"value": "B900"
|
|
@@ -2752,6 +3122,7 @@ const tokens = [{
|
|
|
2752
3122
|
"attributes": {
|
|
2753
3123
|
"group": "paint",
|
|
2754
3124
|
"state": "deprecated",
|
|
3125
|
+
"introduced": "0.6.0",
|
|
2755
3126
|
"replacement": "color.background.selected.[default].[default]",
|
|
2756
3127
|
"description": "Use for the background of elements used to reinforce our brand."
|
|
2757
3128
|
},
|
|
@@ -2762,6 +3133,7 @@ const tokens = [{
|
|
|
2762
3133
|
"attributes": {
|
|
2763
3134
|
"group": "paint",
|
|
2764
3135
|
"state": "deprecated",
|
|
3136
|
+
"introduced": "0.6.0",
|
|
2765
3137
|
"replacement": "color.background.selected.[default].[default]",
|
|
2766
3138
|
"description": "Use for the background of elements used to reinforce our brand."
|
|
2767
3139
|
},
|
|
@@ -2773,6 +3145,7 @@ const tokens = [{
|
|
|
2773
3145
|
"attributes": {
|
|
2774
3146
|
"group": "paint",
|
|
2775
3147
|
"state": "deprecated",
|
|
3148
|
+
"introduced": "0.6.0",
|
|
2776
3149
|
"replacement": "color.background.selected.[default].hovered",
|
|
2777
3150
|
"description": "Hovered state for color.background.brand"
|
|
2778
3151
|
},
|
|
@@ -2783,6 +3156,7 @@ const tokens = [{
|
|
|
2783
3156
|
"attributes": {
|
|
2784
3157
|
"group": "paint",
|
|
2785
3158
|
"state": "deprecated",
|
|
3159
|
+
"introduced": "0.6.0",
|
|
2786
3160
|
"replacement": "color.background.selected.[default].hovered",
|
|
2787
3161
|
"description": "Hovered state for color.background.brand"
|
|
2788
3162
|
},
|
|
@@ -2794,6 +3168,7 @@ const tokens = [{
|
|
|
2794
3168
|
"attributes": {
|
|
2795
3169
|
"group": "paint",
|
|
2796
3170
|
"state": "deprecated",
|
|
3171
|
+
"introduced": "0.6.0",
|
|
2797
3172
|
"replacement": "color.background.selected.[default].pressed",
|
|
2798
3173
|
"description": "Pressed state for color.background.brand"
|
|
2799
3174
|
},
|
|
@@ -2804,6 +3179,7 @@ const tokens = [{
|
|
|
2804
3179
|
"attributes": {
|
|
2805
3180
|
"group": "paint",
|
|
2806
3181
|
"state": "deprecated",
|
|
3182
|
+
"introduced": "0.6.0",
|
|
2807
3183
|
"replacement": "color.background.selected.[default].pressed",
|
|
2808
3184
|
"description": "Pressed state for color.background.brand"
|
|
2809
3185
|
},
|
|
@@ -2815,6 +3191,7 @@ const tokens = [{
|
|
|
2815
3191
|
"attributes": {
|
|
2816
3192
|
"group": "paint",
|
|
2817
3193
|
"state": "active",
|
|
3194
|
+
"introduced": "0.6.2",
|
|
2818
3195
|
"description": "Use for the background of elements in a selected state, such as in opened dropdown buttons."
|
|
2819
3196
|
},
|
|
2820
3197
|
"value": "#E9F2FF",
|
|
@@ -2824,6 +3201,7 @@ const tokens = [{
|
|
|
2824
3201
|
"attributes": {
|
|
2825
3202
|
"group": "paint",
|
|
2826
3203
|
"state": "active",
|
|
3204
|
+
"introduced": "0.6.2",
|
|
2827
3205
|
"description": "Use for the background of elements in a selected state, such as in opened dropdown buttons."
|
|
2828
3206
|
},
|
|
2829
3207
|
"value": "B100"
|
|
@@ -2834,6 +3212,7 @@ const tokens = [{
|
|
|
2834
3212
|
"attributes": {
|
|
2835
3213
|
"group": "paint",
|
|
2836
3214
|
"state": "active",
|
|
3215
|
+
"introduced": "0.6.2",
|
|
2837
3216
|
"description": "Hovered state for color.background.selected"
|
|
2838
3217
|
},
|
|
2839
3218
|
"value": "#CCE0FF",
|
|
@@ -2843,6 +3222,7 @@ const tokens = [{
|
|
|
2843
3222
|
"attributes": {
|
|
2844
3223
|
"group": "paint",
|
|
2845
3224
|
"state": "active",
|
|
3225
|
+
"introduced": "0.6.2",
|
|
2846
3226
|
"description": "Hovered state for color.background.selected"
|
|
2847
3227
|
},
|
|
2848
3228
|
"value": "B200"
|
|
@@ -2853,6 +3233,7 @@ const tokens = [{
|
|
|
2853
3233
|
"attributes": {
|
|
2854
3234
|
"group": "paint",
|
|
2855
3235
|
"state": "active",
|
|
3236
|
+
"introduced": "0.6.2",
|
|
2856
3237
|
"description": "Pressed state for color.background.selected"
|
|
2857
3238
|
},
|
|
2858
3239
|
"value": "#85B8FF",
|
|
@@ -2862,6 +3243,7 @@ const tokens = [{
|
|
|
2862
3243
|
"attributes": {
|
|
2863
3244
|
"group": "paint",
|
|
2864
3245
|
"state": "active",
|
|
3246
|
+
"introduced": "0.6.2",
|
|
2865
3247
|
"description": "Pressed state for color.background.selected"
|
|
2866
3248
|
},
|
|
2867
3249
|
"value": "B300"
|
|
@@ -2872,7 +3254,8 @@ const tokens = [{
|
|
|
2872
3254
|
"attributes": {
|
|
2873
3255
|
"group": "paint",
|
|
2874
3256
|
"state": "active",
|
|
2875
|
-
"
|
|
3257
|
+
"introduced": "0.6.2",
|
|
3258
|
+
"description": "Use for the backgrounds of elements in a selected state, such as checkboxes and radio buttons."
|
|
2876
3259
|
},
|
|
2877
3260
|
"value": "#0C66E4",
|
|
2878
3261
|
"filePath": "src/tokens/atlassian-light/color/background.tsx",
|
|
@@ -2881,7 +3264,8 @@ const tokens = [{
|
|
|
2881
3264
|
"attributes": {
|
|
2882
3265
|
"group": "paint",
|
|
2883
3266
|
"state": "active",
|
|
2884
|
-
"
|
|
3267
|
+
"introduced": "0.6.2",
|
|
3268
|
+
"description": "Use for the backgrounds of elements in a selected state, such as checkboxes and radio buttons."
|
|
2885
3269
|
},
|
|
2886
3270
|
"value": "B700"
|
|
2887
3271
|
},
|
|
@@ -2891,6 +3275,7 @@ const tokens = [{
|
|
|
2891
3275
|
"attributes": {
|
|
2892
3276
|
"group": "paint",
|
|
2893
3277
|
"state": "active",
|
|
3278
|
+
"introduced": "0.6.2",
|
|
2894
3279
|
"description": "Hovered state of color.background.selected.bold"
|
|
2895
3280
|
},
|
|
2896
3281
|
"value": "#0055CC",
|
|
@@ -2900,6 +3285,7 @@ const tokens = [{
|
|
|
2900
3285
|
"attributes": {
|
|
2901
3286
|
"group": "paint",
|
|
2902
3287
|
"state": "active",
|
|
3288
|
+
"introduced": "0.6.2",
|
|
2903
3289
|
"description": "Hovered state of color.background.selected.bold"
|
|
2904
3290
|
},
|
|
2905
3291
|
"value": "B800"
|
|
@@ -2910,6 +3296,7 @@ const tokens = [{
|
|
|
2910
3296
|
"attributes": {
|
|
2911
3297
|
"group": "paint",
|
|
2912
3298
|
"state": "active",
|
|
3299
|
+
"introduced": "0.6.2",
|
|
2913
3300
|
"description": "Pressed state of color.background.selected.bold"
|
|
2914
3301
|
},
|
|
2915
3302
|
"value": "#09326C",
|
|
@@ -2919,6 +3306,7 @@ const tokens = [{
|
|
|
2919
3306
|
"attributes": {
|
|
2920
3307
|
"group": "paint",
|
|
2921
3308
|
"state": "active",
|
|
3309
|
+
"introduced": "0.6.2",
|
|
2922
3310
|
"description": "Pressed state of color.background.selected.bold"
|
|
2923
3311
|
},
|
|
2924
3312
|
"value": "B900"
|
|
@@ -2929,6 +3317,7 @@ const tokens = [{
|
|
|
2929
3317
|
"attributes": {
|
|
2930
3318
|
"group": "paint",
|
|
2931
3319
|
"state": "deprecated",
|
|
3320
|
+
"introduced": "0.1.0",
|
|
2932
3321
|
"replacement": "color.background.selected.[default].[default]",
|
|
2933
3322
|
"description": "Use for backgrounds of elements in a selected state"
|
|
2934
3323
|
},
|
|
@@ -2939,6 +3328,7 @@ const tokens = [{
|
|
|
2939
3328
|
"attributes": {
|
|
2940
3329
|
"group": "paint",
|
|
2941
3330
|
"state": "deprecated",
|
|
3331
|
+
"introduced": "0.1.0",
|
|
2942
3332
|
"replacement": "color.background.selected.[default].[default]",
|
|
2943
3333
|
"description": "Use for backgrounds of elements in a selected state"
|
|
2944
3334
|
},
|
|
@@ -2950,6 +3340,7 @@ const tokens = [{
|
|
|
2950
3340
|
"attributes": {
|
|
2951
3341
|
"group": "paint",
|
|
2952
3342
|
"state": "deprecated",
|
|
3343
|
+
"introduced": "0.1.0",
|
|
2953
3344
|
"replacement": "color.background.selected.[default].hovered",
|
|
2954
3345
|
"description": "Hover state for color.background.selected"
|
|
2955
3346
|
},
|
|
@@ -2960,6 +3351,7 @@ const tokens = [{
|
|
|
2960
3351
|
"attributes": {
|
|
2961
3352
|
"group": "paint",
|
|
2962
3353
|
"state": "deprecated",
|
|
3354
|
+
"introduced": "0.1.0",
|
|
2963
3355
|
"replacement": "color.background.selected.[default].hovered",
|
|
2964
3356
|
"description": "Hover state for color.background.selected"
|
|
2965
3357
|
},
|
|
@@ -2971,7 +3363,8 @@ const tokens = [{
|
|
|
2971
3363
|
"attributes": {
|
|
2972
3364
|
"group": "paint",
|
|
2973
3365
|
"state": "active",
|
|
2974
|
-
"
|
|
3366
|
+
"introduced": "0.6.0",
|
|
3367
|
+
"description": "Use for backgrounds communicating critical information, such in error section messages."
|
|
2975
3368
|
},
|
|
2976
3369
|
"value": "#FFEDEB",
|
|
2977
3370
|
"filePath": "src/tokens/atlassian-light/color/background.tsx",
|
|
@@ -2980,7 +3373,8 @@ const tokens = [{
|
|
|
2980
3373
|
"attributes": {
|
|
2981
3374
|
"group": "paint",
|
|
2982
3375
|
"state": "active",
|
|
2983
|
-
"
|
|
3376
|
+
"introduced": "0.6.0",
|
|
3377
|
+
"description": "Use for backgrounds communicating critical information, such in error section messages."
|
|
2984
3378
|
},
|
|
2985
3379
|
"value": "R100"
|
|
2986
3380
|
},
|
|
@@ -2990,6 +3384,7 @@ const tokens = [{
|
|
|
2990
3384
|
"attributes": {
|
|
2991
3385
|
"group": "paint",
|
|
2992
3386
|
"state": "active",
|
|
3387
|
+
"introduced": "0.6.0",
|
|
2993
3388
|
"description": "Hovered state for color.background.danger"
|
|
2994
3389
|
},
|
|
2995
3390
|
"value": "#FFD2CC",
|
|
@@ -2999,6 +3394,7 @@ const tokens = [{
|
|
|
2999
3394
|
"attributes": {
|
|
3000
3395
|
"group": "paint",
|
|
3001
3396
|
"state": "active",
|
|
3397
|
+
"introduced": "0.6.0",
|
|
3002
3398
|
"description": "Hovered state for color.background.danger"
|
|
3003
3399
|
},
|
|
3004
3400
|
"value": "R200"
|
|
@@ -3009,6 +3405,7 @@ const tokens = [{
|
|
|
3009
3405
|
"attributes": {
|
|
3010
3406
|
"group": "paint",
|
|
3011
3407
|
"state": "active",
|
|
3408
|
+
"introduced": "0.6.0",
|
|
3012
3409
|
"description": "Pressed state for color.background.danger"
|
|
3013
3410
|
},
|
|
3014
3411
|
"value": "#FF9C8F",
|
|
@@ -3018,6 +3415,7 @@ const tokens = [{
|
|
|
3018
3415
|
"attributes": {
|
|
3019
3416
|
"group": "paint",
|
|
3020
3417
|
"state": "active",
|
|
3418
|
+
"introduced": "0.6.0",
|
|
3021
3419
|
"description": "Pressed state for color.background.danger"
|
|
3022
3420
|
},
|
|
3023
3421
|
"value": "R300"
|
|
@@ -3028,6 +3426,7 @@ const tokens = [{
|
|
|
3028
3426
|
"attributes": {
|
|
3029
3427
|
"group": "paint",
|
|
3030
3428
|
"state": "active",
|
|
3429
|
+
"introduced": "0.6.0",
|
|
3031
3430
|
"description": "A vibrant background option for communicating critical information, such as in danger buttons and error banners."
|
|
3032
3431
|
},
|
|
3033
3432
|
"value": "#CA3521",
|
|
@@ -3037,6 +3436,7 @@ const tokens = [{
|
|
|
3037
3436
|
"attributes": {
|
|
3038
3437
|
"group": "paint",
|
|
3039
3438
|
"state": "active",
|
|
3439
|
+
"introduced": "0.6.0",
|
|
3040
3440
|
"description": "A vibrant background option for communicating critical information, such as in danger buttons and error banners."
|
|
3041
3441
|
},
|
|
3042
3442
|
"value": "R700"
|
|
@@ -3047,6 +3447,7 @@ const tokens = [{
|
|
|
3047
3447
|
"attributes": {
|
|
3048
3448
|
"group": "paint",
|
|
3049
3449
|
"state": "active",
|
|
3450
|
+
"introduced": "0.6.0",
|
|
3050
3451
|
"description": "Hovered state of color.background.danger.bold"
|
|
3051
3452
|
},
|
|
3052
3453
|
"value": "#AE2A19",
|
|
@@ -3056,6 +3457,7 @@ const tokens = [{
|
|
|
3056
3457
|
"attributes": {
|
|
3057
3458
|
"group": "paint",
|
|
3058
3459
|
"state": "active",
|
|
3460
|
+
"introduced": "0.6.0",
|
|
3059
3461
|
"description": "Hovered state of color.background.danger.bold"
|
|
3060
3462
|
},
|
|
3061
3463
|
"value": "R800"
|
|
@@ -3066,6 +3468,7 @@ const tokens = [{
|
|
|
3066
3468
|
"attributes": {
|
|
3067
3469
|
"group": "paint",
|
|
3068
3470
|
"state": "active",
|
|
3471
|
+
"introduced": "0.6.0",
|
|
3069
3472
|
"description": "Pressed state of color.background.danger.bold"
|
|
3070
3473
|
},
|
|
3071
3474
|
"value": "#601E16",
|
|
@@ -3075,6 +3478,7 @@ const tokens = [{
|
|
|
3075
3478
|
"attributes": {
|
|
3076
3479
|
"group": "paint",
|
|
3077
3480
|
"state": "active",
|
|
3481
|
+
"introduced": "0.6.0",
|
|
3078
3482
|
"description": "Pressed state of color.background.danger.bold"
|
|
3079
3483
|
},
|
|
3080
3484
|
"value": "R900"
|
|
@@ -3085,6 +3489,7 @@ const tokens = [{
|
|
|
3085
3489
|
"attributes": {
|
|
3086
3490
|
"group": "paint",
|
|
3087
3491
|
"state": "active",
|
|
3492
|
+
"introduced": "0.6.0",
|
|
3088
3493
|
"description": "Use for backgrounds communicating caution, such as in warning section messages."
|
|
3089
3494
|
},
|
|
3090
3495
|
"value": "#FFF7D6",
|
|
@@ -3094,6 +3499,7 @@ const tokens = [{
|
|
|
3094
3499
|
"attributes": {
|
|
3095
3500
|
"group": "paint",
|
|
3096
3501
|
"state": "active",
|
|
3502
|
+
"introduced": "0.6.0",
|
|
3097
3503
|
"description": "Use for backgrounds communicating caution, such as in warning section messages."
|
|
3098
3504
|
},
|
|
3099
3505
|
"value": "Y100"
|
|
@@ -3104,6 +3510,7 @@ const tokens = [{
|
|
|
3104
3510
|
"attributes": {
|
|
3105
3511
|
"group": "paint",
|
|
3106
3512
|
"state": "active",
|
|
3513
|
+
"introduced": "0.6.0",
|
|
3107
3514
|
"description": "Hovered state for color.background.warning"
|
|
3108
3515
|
},
|
|
3109
3516
|
"value": "#F8E6A0",
|
|
@@ -3113,6 +3520,7 @@ const tokens = [{
|
|
|
3113
3520
|
"attributes": {
|
|
3114
3521
|
"group": "paint",
|
|
3115
3522
|
"state": "active",
|
|
3523
|
+
"introduced": "0.6.0",
|
|
3116
3524
|
"description": "Hovered state for color.background.warning"
|
|
3117
3525
|
},
|
|
3118
3526
|
"value": "Y200"
|
|
@@ -3123,6 +3531,7 @@ const tokens = [{
|
|
|
3123
3531
|
"attributes": {
|
|
3124
3532
|
"group": "paint",
|
|
3125
3533
|
"state": "active",
|
|
3534
|
+
"introduced": "0.6.0",
|
|
3126
3535
|
"description": "Pressed state for color.background.warning"
|
|
3127
3536
|
},
|
|
3128
3537
|
"value": "#F5CD47",
|
|
@@ -3132,6 +3541,7 @@ const tokens = [{
|
|
|
3132
3541
|
"attributes": {
|
|
3133
3542
|
"group": "paint",
|
|
3134
3543
|
"state": "active",
|
|
3544
|
+
"introduced": "0.6.0",
|
|
3135
3545
|
"description": "Pressed state for color.background.warning"
|
|
3136
3546
|
},
|
|
3137
3547
|
"value": "Y300"
|
|
@@ -3142,6 +3552,7 @@ const tokens = [{
|
|
|
3142
3552
|
"attributes": {
|
|
3143
3553
|
"group": "paint",
|
|
3144
3554
|
"state": "active",
|
|
3555
|
+
"introduced": "0.6.0",
|
|
3145
3556
|
"description": "A vibrant background option for communicating caution, such as in warning buttons and warning banners."
|
|
3146
3557
|
},
|
|
3147
3558
|
"value": "#E2B203",
|
|
@@ -3151,6 +3562,7 @@ const tokens = [{
|
|
|
3151
3562
|
"attributes": {
|
|
3152
3563
|
"group": "paint",
|
|
3153
3564
|
"state": "active",
|
|
3565
|
+
"introduced": "0.6.0",
|
|
3154
3566
|
"description": "A vibrant background option for communicating caution, such as in warning buttons and warning banners."
|
|
3155
3567
|
},
|
|
3156
3568
|
"value": "Y400"
|
|
@@ -3161,6 +3573,7 @@ const tokens = [{
|
|
|
3161
3573
|
"attributes": {
|
|
3162
3574
|
"group": "paint",
|
|
3163
3575
|
"state": "active",
|
|
3576
|
+
"introduced": "0.6.0",
|
|
3164
3577
|
"description": "Hovered state of color.background.warning.bold"
|
|
3165
3578
|
},
|
|
3166
3579
|
"value": "#CF9F02",
|
|
@@ -3170,6 +3583,7 @@ const tokens = [{
|
|
|
3170
3583
|
"attributes": {
|
|
3171
3584
|
"group": "paint",
|
|
3172
3585
|
"state": "active",
|
|
3586
|
+
"introduced": "0.6.0",
|
|
3173
3587
|
"description": "Hovered state of color.background.warning.bold"
|
|
3174
3588
|
},
|
|
3175
3589
|
"value": "Y500"
|
|
@@ -3180,6 +3594,7 @@ const tokens = [{
|
|
|
3180
3594
|
"attributes": {
|
|
3181
3595
|
"group": "paint",
|
|
3182
3596
|
"state": "active",
|
|
3597
|
+
"introduced": "0.6.0",
|
|
3183
3598
|
"description": "Pressed state of color.background.warning.bold"
|
|
3184
3599
|
},
|
|
3185
3600
|
"value": "#B38600",
|
|
@@ -3189,6 +3604,7 @@ const tokens = [{
|
|
|
3189
3604
|
"attributes": {
|
|
3190
3605
|
"group": "paint",
|
|
3191
3606
|
"state": "active",
|
|
3607
|
+
"introduced": "0.6.0",
|
|
3192
3608
|
"description": "Pressed state of color.background.warning.bold"
|
|
3193
3609
|
},
|
|
3194
3610
|
"value": "Y600"
|
|
@@ -3199,6 +3615,7 @@ const tokens = [{
|
|
|
3199
3615
|
"attributes": {
|
|
3200
3616
|
"group": "paint",
|
|
3201
3617
|
"state": "active",
|
|
3618
|
+
"introduced": "0.6.0",
|
|
3202
3619
|
"description": "Use for backgrounds communicating a favourable outcome, such as in success section messages."
|
|
3203
3620
|
},
|
|
3204
3621
|
"value": "#DFFCF0",
|
|
@@ -3208,6 +3625,7 @@ const tokens = [{
|
|
|
3208
3625
|
"attributes": {
|
|
3209
3626
|
"group": "paint",
|
|
3210
3627
|
"state": "active",
|
|
3628
|
+
"introduced": "0.6.0",
|
|
3211
3629
|
"description": "Use for backgrounds communicating a favourable outcome, such as in success section messages."
|
|
3212
3630
|
},
|
|
3213
3631
|
"value": "G100"
|
|
@@ -3218,6 +3636,7 @@ const tokens = [{
|
|
|
3218
3636
|
"attributes": {
|
|
3219
3637
|
"group": "paint",
|
|
3220
3638
|
"state": "active",
|
|
3639
|
+
"introduced": "0.6.0",
|
|
3221
3640
|
"description": "Hovered state for color.background.success"
|
|
3222
3641
|
},
|
|
3223
3642
|
"value": "#BAF3DB",
|
|
@@ -3227,6 +3646,7 @@ const tokens = [{
|
|
|
3227
3646
|
"attributes": {
|
|
3228
3647
|
"group": "paint",
|
|
3229
3648
|
"state": "active",
|
|
3649
|
+
"introduced": "0.6.0",
|
|
3230
3650
|
"description": "Hovered state for color.background.success"
|
|
3231
3651
|
},
|
|
3232
3652
|
"value": "G200"
|
|
@@ -3237,6 +3657,7 @@ const tokens = [{
|
|
|
3237
3657
|
"attributes": {
|
|
3238
3658
|
"group": "paint",
|
|
3239
3659
|
"state": "active",
|
|
3660
|
+
"introduced": "0.6.0",
|
|
3240
3661
|
"description": "Pressed state for color.background.success"
|
|
3241
3662
|
},
|
|
3242
3663
|
"value": "#7EE2B8",
|
|
@@ -3246,6 +3667,7 @@ const tokens = [{
|
|
|
3246
3667
|
"attributes": {
|
|
3247
3668
|
"group": "paint",
|
|
3248
3669
|
"state": "active",
|
|
3670
|
+
"introduced": "0.6.0",
|
|
3249
3671
|
"description": "Pressed state for color.background.success"
|
|
3250
3672
|
},
|
|
3251
3673
|
"value": "G300"
|
|
@@ -3256,6 +3678,7 @@ const tokens = [{
|
|
|
3256
3678
|
"attributes": {
|
|
3257
3679
|
"group": "paint",
|
|
3258
3680
|
"state": "active",
|
|
3681
|
+
"introduced": "0.6.0",
|
|
3259
3682
|
"description": "A vibrant background option for communicating a favourable outcome, such as in checked toggles."
|
|
3260
3683
|
},
|
|
3261
3684
|
"value": "#1F845A",
|
|
@@ -3265,6 +3688,7 @@ const tokens = [{
|
|
|
3265
3688
|
"attributes": {
|
|
3266
3689
|
"group": "paint",
|
|
3267
3690
|
"state": "active",
|
|
3691
|
+
"introduced": "0.6.0",
|
|
3268
3692
|
"description": "A vibrant background option for communicating a favourable outcome, such as in checked toggles."
|
|
3269
3693
|
},
|
|
3270
3694
|
"value": "G700"
|
|
@@ -3275,6 +3699,7 @@ const tokens = [{
|
|
|
3275
3699
|
"attributes": {
|
|
3276
3700
|
"group": "paint",
|
|
3277
3701
|
"state": "active",
|
|
3702
|
+
"introduced": "0.6.0",
|
|
3278
3703
|
"description": "Hovered state of color.background.success.bold"
|
|
3279
3704
|
},
|
|
3280
3705
|
"value": "#216E4E",
|
|
@@ -3284,6 +3709,7 @@ const tokens = [{
|
|
|
3284
3709
|
"attributes": {
|
|
3285
3710
|
"group": "paint",
|
|
3286
3711
|
"state": "active",
|
|
3712
|
+
"introduced": "0.6.0",
|
|
3287
3713
|
"description": "Hovered state of color.background.success.bold"
|
|
3288
3714
|
},
|
|
3289
3715
|
"value": "G800"
|
|
@@ -3294,6 +3720,7 @@ const tokens = [{
|
|
|
3294
3720
|
"attributes": {
|
|
3295
3721
|
"group": "paint",
|
|
3296
3722
|
"state": "active",
|
|
3723
|
+
"introduced": "0.6.0",
|
|
3297
3724
|
"description": "Pressed state of color.background.success.bold"
|
|
3298
3725
|
},
|
|
3299
3726
|
"value": "#164B35",
|
|
@@ -3303,6 +3730,7 @@ const tokens = [{
|
|
|
3303
3730
|
"attributes": {
|
|
3304
3731
|
"group": "paint",
|
|
3305
3732
|
"state": "active",
|
|
3733
|
+
"introduced": "0.6.0",
|
|
3306
3734
|
"description": "Pressed state of color.background.success.bold"
|
|
3307
3735
|
},
|
|
3308
3736
|
"value": "G900"
|
|
@@ -3313,6 +3741,7 @@ const tokens = [{
|
|
|
3313
3741
|
"attributes": {
|
|
3314
3742
|
"group": "paint",
|
|
3315
3743
|
"state": "active",
|
|
3744
|
+
"introduced": "0.6.0",
|
|
3316
3745
|
"description": "Use for backgrounds communicating change or something new, such as in discovery section messages."
|
|
3317
3746
|
},
|
|
3318
3747
|
"value": "#F3F0FF",
|
|
@@ -3322,6 +3751,7 @@ const tokens = [{
|
|
|
3322
3751
|
"attributes": {
|
|
3323
3752
|
"group": "paint",
|
|
3324
3753
|
"state": "active",
|
|
3754
|
+
"introduced": "0.6.0",
|
|
3325
3755
|
"description": "Use for backgrounds communicating change or something new, such as in discovery section messages."
|
|
3326
3756
|
},
|
|
3327
3757
|
"value": "P100"
|
|
@@ -3332,6 +3762,7 @@ const tokens = [{
|
|
|
3332
3762
|
"attributes": {
|
|
3333
3763
|
"group": "paint",
|
|
3334
3764
|
"state": "active",
|
|
3765
|
+
"introduced": "0.6.0",
|
|
3335
3766
|
"description": "Hover state for color.background.discovery"
|
|
3336
3767
|
},
|
|
3337
3768
|
"value": "#DFD8FD",
|
|
@@ -3341,6 +3772,7 @@ const tokens = [{
|
|
|
3341
3772
|
"attributes": {
|
|
3342
3773
|
"group": "paint",
|
|
3343
3774
|
"state": "active",
|
|
3775
|
+
"introduced": "0.6.0",
|
|
3344
3776
|
"description": "Hover state for color.background.discovery"
|
|
3345
3777
|
},
|
|
3346
3778
|
"value": "P200"
|
|
@@ -3351,6 +3783,7 @@ const tokens = [{
|
|
|
3351
3783
|
"attributes": {
|
|
3352
3784
|
"group": "paint",
|
|
3353
3785
|
"state": "active",
|
|
3786
|
+
"introduced": "0.6.0",
|
|
3354
3787
|
"description": "Pressed state for color.background.discovery"
|
|
3355
3788
|
},
|
|
3356
3789
|
"value": "#B8ACF6",
|
|
@@ -3360,6 +3793,7 @@ const tokens = [{
|
|
|
3360
3793
|
"attributes": {
|
|
3361
3794
|
"group": "paint",
|
|
3362
3795
|
"state": "active",
|
|
3796
|
+
"introduced": "0.6.0",
|
|
3363
3797
|
"description": "Pressed state for color.background.discovery"
|
|
3364
3798
|
},
|
|
3365
3799
|
"value": "P300"
|
|
@@ -3370,6 +3804,7 @@ const tokens = [{
|
|
|
3370
3804
|
"attributes": {
|
|
3371
3805
|
"group": "paint",
|
|
3372
3806
|
"state": "active",
|
|
3807
|
+
"introduced": "0.6.0",
|
|
3373
3808
|
"description": "A vibrant background option communicating change or something new, such as in onboarding spotlights."
|
|
3374
3809
|
},
|
|
3375
3810
|
"value": "#6E5DC6",
|
|
@@ -3379,6 +3814,7 @@ const tokens = [{
|
|
|
3379
3814
|
"attributes": {
|
|
3380
3815
|
"group": "paint",
|
|
3381
3816
|
"state": "active",
|
|
3817
|
+
"introduced": "0.6.0",
|
|
3382
3818
|
"description": "A vibrant background option communicating change or something new, such as in onboarding spotlights."
|
|
3383
3819
|
},
|
|
3384
3820
|
"value": "P700"
|
|
@@ -3389,6 +3825,7 @@ const tokens = [{
|
|
|
3389
3825
|
"attributes": {
|
|
3390
3826
|
"group": "paint",
|
|
3391
3827
|
"state": "active",
|
|
3828
|
+
"introduced": "0.6.0",
|
|
3392
3829
|
"description": "Hovered state of color.background.discovery.bold"
|
|
3393
3830
|
},
|
|
3394
3831
|
"value": "#5E4DB2",
|
|
@@ -3398,6 +3835,7 @@ const tokens = [{
|
|
|
3398
3835
|
"attributes": {
|
|
3399
3836
|
"group": "paint",
|
|
3400
3837
|
"state": "active",
|
|
3838
|
+
"introduced": "0.6.0",
|
|
3401
3839
|
"description": "Hovered state of color.background.discovery.bold"
|
|
3402
3840
|
},
|
|
3403
3841
|
"value": "P800"
|
|
@@ -3408,6 +3846,7 @@ const tokens = [{
|
|
|
3408
3846
|
"attributes": {
|
|
3409
3847
|
"group": "paint",
|
|
3410
3848
|
"state": "active",
|
|
3849
|
+
"introduced": "0.6.0",
|
|
3411
3850
|
"description": "Pressed state of color.background.discovery.bold"
|
|
3412
3851
|
},
|
|
3413
3852
|
"value": "#352C63",
|
|
@@ -3417,6 +3856,7 @@ const tokens = [{
|
|
|
3417
3856
|
"attributes": {
|
|
3418
3857
|
"group": "paint",
|
|
3419
3858
|
"state": "active",
|
|
3859
|
+
"introduced": "0.6.0",
|
|
3420
3860
|
"description": "Pressed state of color.background.discovery.bold"
|
|
3421
3861
|
},
|
|
3422
3862
|
"value": "P900"
|
|
@@ -3427,6 +3867,7 @@ const tokens = [{
|
|
|
3427
3867
|
"attributes": {
|
|
3428
3868
|
"group": "paint",
|
|
3429
3869
|
"state": "active",
|
|
3870
|
+
"introduced": "0.6.0",
|
|
3430
3871
|
"description": "Use for backgrounds communicating information or something in-progress, such as in information section messages."
|
|
3431
3872
|
},
|
|
3432
3873
|
"value": "#E9F2FF",
|
|
@@ -3436,6 +3877,7 @@ const tokens = [{
|
|
|
3436
3877
|
"attributes": {
|
|
3437
3878
|
"group": "paint",
|
|
3438
3879
|
"state": "active",
|
|
3880
|
+
"introduced": "0.6.0",
|
|
3439
3881
|
"description": "Use for backgrounds communicating information or something in-progress, such as in information section messages."
|
|
3440
3882
|
},
|
|
3441
3883
|
"value": "B100"
|
|
@@ -3446,6 +3888,7 @@ const tokens = [{
|
|
|
3446
3888
|
"attributes": {
|
|
3447
3889
|
"group": "paint",
|
|
3448
3890
|
"state": "active",
|
|
3891
|
+
"introduced": "0.6.0",
|
|
3449
3892
|
"description": "Hovered state of color.background.information"
|
|
3450
3893
|
},
|
|
3451
3894
|
"value": "#CCE0FF",
|
|
@@ -3455,6 +3898,7 @@ const tokens = [{
|
|
|
3455
3898
|
"attributes": {
|
|
3456
3899
|
"group": "paint",
|
|
3457
3900
|
"state": "active",
|
|
3901
|
+
"introduced": "0.6.0",
|
|
3458
3902
|
"description": "Hovered state of color.background.information"
|
|
3459
3903
|
},
|
|
3460
3904
|
"value": "B200"
|
|
@@ -3465,6 +3909,7 @@ const tokens = [{
|
|
|
3465
3909
|
"attributes": {
|
|
3466
3910
|
"group": "paint",
|
|
3467
3911
|
"state": "active",
|
|
3912
|
+
"introduced": "0.6.0",
|
|
3468
3913
|
"description": "Pressed state of color.background.information"
|
|
3469
3914
|
},
|
|
3470
3915
|
"value": "#85B8FF",
|
|
@@ -3474,6 +3919,7 @@ const tokens = [{
|
|
|
3474
3919
|
"attributes": {
|
|
3475
3920
|
"group": "paint",
|
|
3476
3921
|
"state": "active",
|
|
3922
|
+
"introduced": "0.6.0",
|
|
3477
3923
|
"description": "Pressed state of color.background.information"
|
|
3478
3924
|
},
|
|
3479
3925
|
"value": "B300"
|
|
@@ -3484,6 +3930,7 @@ const tokens = [{
|
|
|
3484
3930
|
"attributes": {
|
|
3485
3931
|
"group": "paint",
|
|
3486
3932
|
"state": "active",
|
|
3933
|
+
"introduced": "0.6.0",
|
|
3487
3934
|
"description": "A vibrant background option for communicating information or something in-progress."
|
|
3488
3935
|
},
|
|
3489
3936
|
"value": "#0C66E4",
|
|
@@ -3493,6 +3940,7 @@ const tokens = [{
|
|
|
3493
3940
|
"attributes": {
|
|
3494
3941
|
"group": "paint",
|
|
3495
3942
|
"state": "active",
|
|
3943
|
+
"introduced": "0.6.0",
|
|
3496
3944
|
"description": "A vibrant background option for communicating information or something in-progress."
|
|
3497
3945
|
},
|
|
3498
3946
|
"value": "B700"
|
|
@@ -3503,6 +3951,7 @@ const tokens = [{
|
|
|
3503
3951
|
"attributes": {
|
|
3504
3952
|
"group": "paint",
|
|
3505
3953
|
"state": "active",
|
|
3954
|
+
"introduced": "0.6.0",
|
|
3506
3955
|
"description": "Hovered state of color.background.information.bold"
|
|
3507
3956
|
},
|
|
3508
3957
|
"value": "#0055CC",
|
|
@@ -3512,6 +3961,7 @@ const tokens = [{
|
|
|
3512
3961
|
"attributes": {
|
|
3513
3962
|
"group": "paint",
|
|
3514
3963
|
"state": "active",
|
|
3964
|
+
"introduced": "0.6.0",
|
|
3515
3965
|
"description": "Hovered state of color.background.information.bold"
|
|
3516
3966
|
},
|
|
3517
3967
|
"value": "B800"
|
|
@@ -3522,6 +3972,7 @@ const tokens = [{
|
|
|
3522
3972
|
"attributes": {
|
|
3523
3973
|
"group": "paint",
|
|
3524
3974
|
"state": "active",
|
|
3975
|
+
"introduced": "0.6.0",
|
|
3525
3976
|
"description": "Pressed state of color.background.information.bold"
|
|
3526
3977
|
},
|
|
3527
3978
|
"value": "#09326C",
|
|
@@ -3531,6 +3982,7 @@ const tokens = [{
|
|
|
3531
3982
|
"attributes": {
|
|
3532
3983
|
"group": "paint",
|
|
3533
3984
|
"state": "active",
|
|
3985
|
+
"introduced": "0.6.0",
|
|
3534
3986
|
"description": "Pressed state of color.background.information.bold"
|
|
3535
3987
|
},
|
|
3536
3988
|
"value": "B900"
|
|
@@ -3541,6 +3993,7 @@ const tokens = [{
|
|
|
3541
3993
|
"attributes": {
|
|
3542
3994
|
"group": "paint",
|
|
3543
3995
|
"state": "deleted",
|
|
3996
|
+
"introduced": "0.0.15",
|
|
3544
3997
|
"replacement": "color.blanket.[default]",
|
|
3545
3998
|
"description": "Use for the screen overlay that appears with modal dialogs"
|
|
3546
3999
|
},
|
|
@@ -3551,6 +4004,7 @@ const tokens = [{
|
|
|
3551
4004
|
"attributes": {
|
|
3552
4005
|
"group": "paint",
|
|
3553
4006
|
"state": "deleted",
|
|
4007
|
+
"introduced": "0.0.15",
|
|
3554
4008
|
"replacement": "color.blanket.[default]",
|
|
3555
4009
|
"description": "Use for the screen overlay that appears with modal dialogs"
|
|
3556
4010
|
},
|
|
@@ -3562,6 +4016,7 @@ const tokens = [{
|
|
|
3562
4016
|
"attributes": {
|
|
3563
4017
|
"group": "paint",
|
|
3564
4018
|
"state": "deleted",
|
|
4019
|
+
"introduced": "0.0.15",
|
|
3565
4020
|
"replacement": "color.background.brand.bold.hovered",
|
|
3566
4021
|
"description": "Hover state of background.boldBrand"
|
|
3567
4022
|
},
|
|
@@ -3572,6 +4027,7 @@ const tokens = [{
|
|
|
3572
4027
|
"attributes": {
|
|
3573
4028
|
"group": "paint",
|
|
3574
4029
|
"state": "deleted",
|
|
4030
|
+
"introduced": "0.0.15",
|
|
3575
4031
|
"replacement": "color.background.brand.bold.hovered",
|
|
3576
4032
|
"description": "Hover state of background.boldBrand"
|
|
3577
4033
|
},
|
|
@@ -3583,6 +4039,7 @@ const tokens = [{
|
|
|
3583
4039
|
"attributes": {
|
|
3584
4040
|
"group": "paint",
|
|
3585
4041
|
"state": "deleted",
|
|
4042
|
+
"introduced": "0.0.15",
|
|
3586
4043
|
"replacement": "color.background.brand.bold.pressed",
|
|
3587
4044
|
"description": "Pressed state of background.boldBrand"
|
|
3588
4045
|
},
|
|
@@ -3593,6 +4050,7 @@ const tokens = [{
|
|
|
3593
4050
|
"attributes": {
|
|
3594
4051
|
"group": "paint",
|
|
3595
4052
|
"state": "deleted",
|
|
4053
|
+
"introduced": "0.0.15",
|
|
3596
4054
|
"replacement": "color.background.brand.bold.pressed",
|
|
3597
4055
|
"description": "Pressed state of background.boldBrand"
|
|
3598
4056
|
},
|
|
@@ -3604,6 +4062,7 @@ const tokens = [{
|
|
|
3604
4062
|
"attributes": {
|
|
3605
4063
|
"group": "paint",
|
|
3606
4064
|
"state": "deleted",
|
|
4065
|
+
"introduced": "0.0.15",
|
|
3607
4066
|
"replacement": "color.background.brand.bold.[default]",
|
|
3608
4067
|
"description": "A vibrant background for small UI elements like primary buttons and bold in progress lozenges."
|
|
3609
4068
|
},
|
|
@@ -3614,6 +4073,7 @@ const tokens = [{
|
|
|
3614
4073
|
"attributes": {
|
|
3615
4074
|
"group": "paint",
|
|
3616
4075
|
"state": "deleted",
|
|
4076
|
+
"introduced": "0.0.15",
|
|
3617
4077
|
"replacement": "color.background.brand.bold.[default]",
|
|
3618
4078
|
"description": "A vibrant background for small UI elements like primary buttons and bold in progress lozenges."
|
|
3619
4079
|
},
|
|
@@ -3625,6 +4085,7 @@ const tokens = [{
|
|
|
3625
4085
|
"attributes": {
|
|
3626
4086
|
"group": "paint",
|
|
3627
4087
|
"state": "deleted",
|
|
4088
|
+
"introduced": "0.0.15",
|
|
3628
4089
|
"replacement": "color.background.danger.bold.hovered",
|
|
3629
4090
|
"description": "Hover state of background.boldDanger"
|
|
3630
4091
|
},
|
|
@@ -3635,6 +4096,7 @@ const tokens = [{
|
|
|
3635
4096
|
"attributes": {
|
|
3636
4097
|
"group": "paint",
|
|
3637
4098
|
"state": "deleted",
|
|
4099
|
+
"introduced": "0.0.15",
|
|
3638
4100
|
"replacement": "color.background.danger.bold.hovered",
|
|
3639
4101
|
"description": "Hover state of background.boldDanger"
|
|
3640
4102
|
},
|
|
@@ -3646,6 +4108,7 @@ const tokens = [{
|
|
|
3646
4108
|
"attributes": {
|
|
3647
4109
|
"group": "paint",
|
|
3648
4110
|
"state": "deleted",
|
|
4111
|
+
"introduced": "0.0.15",
|
|
3649
4112
|
"replacement": "color.background.danger.bold.pressed",
|
|
3650
4113
|
"description": "Pressed state of background.boldDanger"
|
|
3651
4114
|
},
|
|
@@ -3656,6 +4119,7 @@ const tokens = [{
|
|
|
3656
4119
|
"attributes": {
|
|
3657
4120
|
"group": "paint",
|
|
3658
4121
|
"state": "deleted",
|
|
4122
|
+
"introduced": "0.0.15",
|
|
3659
4123
|
"replacement": "color.background.danger.bold.pressed",
|
|
3660
4124
|
"description": "Pressed state of background.boldDanger"
|
|
3661
4125
|
},
|
|
@@ -3667,6 +4131,7 @@ const tokens = [{
|
|
|
3667
4131
|
"attributes": {
|
|
3668
4132
|
"group": "paint",
|
|
3669
4133
|
"state": "deleted",
|
|
4134
|
+
"introduced": "0.0.15",
|
|
3670
4135
|
"replacement": "color.background.danger.bold.[default]",
|
|
3671
4136
|
"description": "A vibrant background for small UI elements like danger buttons and bold removed lozenges."
|
|
3672
4137
|
},
|
|
@@ -3677,6 +4142,7 @@ const tokens = [{
|
|
|
3677
4142
|
"attributes": {
|
|
3678
4143
|
"group": "paint",
|
|
3679
4144
|
"state": "deleted",
|
|
4145
|
+
"introduced": "0.0.15",
|
|
3680
4146
|
"replacement": "color.background.danger.bold.[default]",
|
|
3681
4147
|
"description": "A vibrant background for small UI elements like danger buttons and bold removed lozenges."
|
|
3682
4148
|
},
|
|
@@ -3688,6 +4154,7 @@ const tokens = [{
|
|
|
3688
4154
|
"attributes": {
|
|
3689
4155
|
"group": "paint",
|
|
3690
4156
|
"state": "deleted",
|
|
4157
|
+
"introduced": "0.0.15",
|
|
3691
4158
|
"replacement": "color.background.discovery.bold.hovered",
|
|
3692
4159
|
"description": "Hover state of background.boldDiscovery"
|
|
3693
4160
|
},
|
|
@@ -3698,6 +4165,7 @@ const tokens = [{
|
|
|
3698
4165
|
"attributes": {
|
|
3699
4166
|
"group": "paint",
|
|
3700
4167
|
"state": "deleted",
|
|
4168
|
+
"introduced": "0.0.15",
|
|
3701
4169
|
"replacement": "color.background.discovery.bold.hovered",
|
|
3702
4170
|
"description": "Hover state of background.boldDiscovery"
|
|
3703
4171
|
},
|
|
@@ -3709,6 +4177,7 @@ const tokens = [{
|
|
|
3709
4177
|
"attributes": {
|
|
3710
4178
|
"group": "paint",
|
|
3711
4179
|
"state": "deleted",
|
|
4180
|
+
"introduced": "0.0.15",
|
|
3712
4181
|
"replacement": "color.background.discovery.bold.pressed",
|
|
3713
4182
|
"description": "Pressed state of background.boldDiscovery"
|
|
3714
4183
|
},
|
|
@@ -3719,6 +4188,7 @@ const tokens = [{
|
|
|
3719
4188
|
"attributes": {
|
|
3720
4189
|
"group": "paint",
|
|
3721
4190
|
"state": "deleted",
|
|
4191
|
+
"introduced": "0.0.15",
|
|
3722
4192
|
"replacement": "color.background.discovery.bold.pressed",
|
|
3723
4193
|
"description": "Pressed state of background.boldDiscovery"
|
|
3724
4194
|
},
|
|
@@ -3730,6 +4200,7 @@ const tokens = [{
|
|
|
3730
4200
|
"attributes": {
|
|
3731
4201
|
"group": "paint",
|
|
3732
4202
|
"state": "deleted",
|
|
4203
|
+
"introduced": "0.0.15",
|
|
3733
4204
|
"replacement": "color.background.discovery.bold.[default]",
|
|
3734
4205
|
"description": "A vibrant background for small UI elements like onboarding buttons and bold new lozenges."
|
|
3735
4206
|
},
|
|
@@ -3740,6 +4211,7 @@ const tokens = [{
|
|
|
3740
4211
|
"attributes": {
|
|
3741
4212
|
"group": "paint",
|
|
3742
4213
|
"state": "deleted",
|
|
4214
|
+
"introduced": "0.0.15",
|
|
3743
4215
|
"replacement": "color.background.discovery.bold.[default]",
|
|
3744
4216
|
"description": "A vibrant background for small UI elements like onboarding buttons and bold new lozenges."
|
|
3745
4217
|
},
|
|
@@ -3751,6 +4223,7 @@ const tokens = [{
|
|
|
3751
4223
|
"attributes": {
|
|
3752
4224
|
"group": "paint",
|
|
3753
4225
|
"state": "deleted",
|
|
4226
|
+
"introduced": "0.0.15",
|
|
3754
4227
|
"replacement": "color.background.neutral.bold.hovered",
|
|
3755
4228
|
"description": "Hover state of background.boldNeutral"
|
|
3756
4229
|
},
|
|
@@ -3761,6 +4234,7 @@ const tokens = [{
|
|
|
3761
4234
|
"attributes": {
|
|
3762
4235
|
"group": "paint",
|
|
3763
4236
|
"state": "deleted",
|
|
4237
|
+
"introduced": "0.0.15",
|
|
3764
4238
|
"replacement": "color.background.neutral.bold.hovered",
|
|
3765
4239
|
"description": "Hover state of background.boldNeutral"
|
|
3766
4240
|
},
|
|
@@ -3772,6 +4246,7 @@ const tokens = [{
|
|
|
3772
4246
|
"attributes": {
|
|
3773
4247
|
"group": "paint",
|
|
3774
4248
|
"state": "deleted",
|
|
4249
|
+
"introduced": "0.0.15",
|
|
3775
4250
|
"replacement": "color.background.neutral.bold.pressed",
|
|
3776
4251
|
"description": "Pressed state of background.boldNeutral"
|
|
3777
4252
|
},
|
|
@@ -3782,6 +4257,7 @@ const tokens = [{
|
|
|
3782
4257
|
"attributes": {
|
|
3783
4258
|
"group": "paint",
|
|
3784
4259
|
"state": "deleted",
|
|
4260
|
+
"introduced": "0.0.15",
|
|
3785
4261
|
"replacement": "color.background.neutral.bold.pressed",
|
|
3786
4262
|
"description": "Pressed state of background.boldNeutral"
|
|
3787
4263
|
},
|
|
@@ -3793,6 +4269,7 @@ const tokens = [{
|
|
|
3793
4269
|
"attributes": {
|
|
3794
4270
|
"group": "paint",
|
|
3795
4271
|
"state": "deleted",
|
|
4272
|
+
"introduced": "0.0.15",
|
|
3796
4273
|
"replacement": "color.background.neutral.bold.[default]",
|
|
3797
4274
|
"description": "A vibrant background for small UI elements like unchecked toggles and bold default lozenges."
|
|
3798
4275
|
},
|
|
@@ -3803,6 +4280,7 @@ const tokens = [{
|
|
|
3803
4280
|
"attributes": {
|
|
3804
4281
|
"group": "paint",
|
|
3805
4282
|
"state": "deleted",
|
|
4283
|
+
"introduced": "0.0.15",
|
|
3806
4284
|
"replacement": "color.background.neutral.bold.[default]",
|
|
3807
4285
|
"description": "A vibrant background for small UI elements like unchecked toggles and bold default lozenges."
|
|
3808
4286
|
},
|
|
@@ -3814,6 +4292,7 @@ const tokens = [{
|
|
|
3814
4292
|
"attributes": {
|
|
3815
4293
|
"group": "paint",
|
|
3816
4294
|
"state": "deleted",
|
|
4295
|
+
"introduced": "0.0.15",
|
|
3817
4296
|
"replacement": "color.background.success.bold.hovered",
|
|
3818
4297
|
"description": "Hover state of background.boldSuccess"
|
|
3819
4298
|
},
|
|
@@ -3824,6 +4303,7 @@ const tokens = [{
|
|
|
3824
4303
|
"attributes": {
|
|
3825
4304
|
"group": "paint",
|
|
3826
4305
|
"state": "deleted",
|
|
4306
|
+
"introduced": "0.0.15",
|
|
3827
4307
|
"replacement": "color.background.success.bold.hovered",
|
|
3828
4308
|
"description": "Hover state of background.boldSuccess"
|
|
3829
4309
|
},
|
|
@@ -3835,6 +4315,7 @@ const tokens = [{
|
|
|
3835
4315
|
"attributes": {
|
|
3836
4316
|
"group": "paint",
|
|
3837
4317
|
"state": "deleted",
|
|
4318
|
+
"introduced": "0.0.15",
|
|
3838
4319
|
"replacement": "color.background.success.bold.pressed",
|
|
3839
4320
|
"description": "Pressed state of background.boldSuccess"
|
|
3840
4321
|
},
|
|
@@ -3845,6 +4326,7 @@ const tokens = [{
|
|
|
3845
4326
|
"attributes": {
|
|
3846
4327
|
"group": "paint",
|
|
3847
4328
|
"state": "deleted",
|
|
4329
|
+
"introduced": "0.0.15",
|
|
3848
4330
|
"replacement": "color.background.success.bold.pressed",
|
|
3849
4331
|
"description": "Pressed state of background.boldSuccess"
|
|
3850
4332
|
},
|
|
@@ -3856,6 +4338,7 @@ const tokens = [{
|
|
|
3856
4338
|
"attributes": {
|
|
3857
4339
|
"group": "paint",
|
|
3858
4340
|
"state": "deleted",
|
|
4341
|
+
"introduced": "0.0.15",
|
|
3859
4342
|
"replacement": "color.background.success.bold.[default]",
|
|
3860
4343
|
"description": "A vibrant background for small UI elements like checked toggles and bold success lozenges."
|
|
3861
4344
|
},
|
|
@@ -3866,6 +4349,7 @@ const tokens = [{
|
|
|
3866
4349
|
"attributes": {
|
|
3867
4350
|
"group": "paint",
|
|
3868
4351
|
"state": "deleted",
|
|
4352
|
+
"introduced": "0.0.15",
|
|
3869
4353
|
"replacement": "color.background.success.bold.[default]",
|
|
3870
4354
|
"description": "A vibrant background for small UI elements like checked toggles and bold success lozenges."
|
|
3871
4355
|
},
|
|
@@ -3877,6 +4361,7 @@ const tokens = [{
|
|
|
3877
4361
|
"attributes": {
|
|
3878
4362
|
"group": "paint",
|
|
3879
4363
|
"state": "deleted",
|
|
4364
|
+
"introduced": "0.0.15",
|
|
3880
4365
|
"replacement": "color.background.warning.bold.hovered",
|
|
3881
4366
|
"description": "Hover state of background.boldWarning"
|
|
3882
4367
|
},
|
|
@@ -3887,6 +4372,7 @@ const tokens = [{
|
|
|
3887
4372
|
"attributes": {
|
|
3888
4373
|
"group": "paint",
|
|
3889
4374
|
"state": "deleted",
|
|
4375
|
+
"introduced": "0.0.15",
|
|
3890
4376
|
"replacement": "color.background.warning.bold.hovered",
|
|
3891
4377
|
"description": "Hover state of background.boldWarning"
|
|
3892
4378
|
},
|
|
@@ -3898,6 +4384,7 @@ const tokens = [{
|
|
|
3898
4384
|
"attributes": {
|
|
3899
4385
|
"group": "paint",
|
|
3900
4386
|
"state": "deleted",
|
|
4387
|
+
"introduced": "0.0.15",
|
|
3901
4388
|
"replacement": "color.background.warning.bold.pressed",
|
|
3902
4389
|
"description": "Pressed state of background.boldWarning"
|
|
3903
4390
|
},
|
|
@@ -3908,6 +4395,7 @@ const tokens = [{
|
|
|
3908
4395
|
"attributes": {
|
|
3909
4396
|
"group": "paint",
|
|
3910
4397
|
"state": "deleted",
|
|
4398
|
+
"introduced": "0.0.15",
|
|
3911
4399
|
"replacement": "color.background.warning.bold.pressed",
|
|
3912
4400
|
"description": "Pressed state of background.boldWarning"
|
|
3913
4401
|
},
|
|
@@ -3919,6 +4407,7 @@ const tokens = [{
|
|
|
3919
4407
|
"attributes": {
|
|
3920
4408
|
"group": "paint",
|
|
3921
4409
|
"state": "deleted",
|
|
4410
|
+
"introduced": "0.0.15",
|
|
3922
4411
|
"replacement": "color.background.warning.bold.[default]",
|
|
3923
4412
|
"description": "A vibrant background for small UI elements like warning buttons and bold moved lozenges."
|
|
3924
4413
|
},
|
|
@@ -3929,6 +4418,7 @@ const tokens = [{
|
|
|
3929
4418
|
"attributes": {
|
|
3930
4419
|
"group": "paint",
|
|
3931
4420
|
"state": "deleted",
|
|
4421
|
+
"introduced": "0.0.15",
|
|
3932
4422
|
"replacement": "color.background.warning.bold.[default]",
|
|
3933
4423
|
"description": "A vibrant background for small UI elements like warning buttons and bold moved lozenges."
|
|
3934
4424
|
},
|
|
@@ -3940,6 +4430,7 @@ const tokens = [{
|
|
|
3940
4430
|
"attributes": {
|
|
3941
4431
|
"group": "paint",
|
|
3942
4432
|
"state": "deleted",
|
|
4433
|
+
"introduced": "0.0.15",
|
|
3943
4434
|
"replacement": "elevation.surface.raised",
|
|
3944
4435
|
"description": "Use for the background of raised cards, such as Jira cards on a Kanban board.\nCombine with shadow.card."
|
|
3945
4436
|
},
|
|
@@ -3950,6 +4441,7 @@ const tokens = [{
|
|
|
3950
4441
|
"attributes": {
|
|
3951
4442
|
"group": "paint",
|
|
3952
4443
|
"state": "deleted",
|
|
4444
|
+
"introduced": "0.0.15",
|
|
3953
4445
|
"replacement": "elevation.surface.raised",
|
|
3954
4446
|
"description": "Use for the background of raised cards, such as Jira cards on a Kanban board.\nCombine with shadow.card."
|
|
3955
4447
|
},
|
|
@@ -3961,6 +4453,7 @@ const tokens = [{
|
|
|
3961
4453
|
"attributes": {
|
|
3962
4454
|
"group": "paint",
|
|
3963
4455
|
"state": "deleted",
|
|
4456
|
+
"introduced": "0.0.15",
|
|
3964
4457
|
"replacement": "elevation.surface.[default]",
|
|
3965
4458
|
"description": "Use as the primary background for the UI"
|
|
3966
4459
|
},
|
|
@@ -3971,6 +4464,7 @@ const tokens = [{
|
|
|
3971
4464
|
"attributes": {
|
|
3972
4465
|
"group": "paint",
|
|
3973
4466
|
"state": "deleted",
|
|
4467
|
+
"introduced": "0.0.15",
|
|
3974
4468
|
"replacement": "elevation.surface.[default]",
|
|
3975
4469
|
"description": "Use as the primary background for the UI"
|
|
3976
4470
|
},
|
|
@@ -3982,6 +4476,7 @@ const tokens = [{
|
|
|
3982
4476
|
"attributes": {
|
|
3983
4477
|
"group": "paint",
|
|
3984
4478
|
"state": "deleted",
|
|
4479
|
+
"introduced": "0.0.15",
|
|
3985
4480
|
"replacement": "elevation.surface.overlay",
|
|
3986
4481
|
"description": "\nUse for the background of overlay elements, such as modals, dropdown menus, flags, and inline dialogs (i.e. elements that sit on top of the UI).\n\nAlso use for the background of raised cards in a dragged state.\n\nCombine with shadow.overlay."
|
|
3987
4482
|
},
|
|
@@ -3992,6 +4487,7 @@ const tokens = [{
|
|
|
3992
4487
|
"attributes": {
|
|
3993
4488
|
"group": "paint",
|
|
3994
4489
|
"state": "deleted",
|
|
4490
|
+
"introduced": "0.0.15",
|
|
3995
4491
|
"replacement": "elevation.surface.overlay",
|
|
3996
4492
|
"description": "\nUse for the background of overlay elements, such as modals, dropdown menus, flags, and inline dialogs (i.e. elements that sit on top of the UI).\n\nAlso use for the background of raised cards in a dragged state.\n\nCombine with shadow.overlay."
|
|
3997
4493
|
},
|
|
@@ -4003,6 +4499,7 @@ const tokens = [{
|
|
|
4003
4499
|
"attributes": {
|
|
4004
4500
|
"group": "paint",
|
|
4005
4501
|
"state": "deleted",
|
|
4502
|
+
"introduced": "0.0.15",
|
|
4006
4503
|
"replacement": "color.background.input.pressed",
|
|
4007
4504
|
"description": "Pressed state for background.subtleBorderedNeutral"
|
|
4008
4505
|
},
|
|
@@ -4013,6 +4510,7 @@ const tokens = [{
|
|
|
4013
4510
|
"attributes": {
|
|
4014
4511
|
"group": "paint",
|
|
4015
4512
|
"state": "deleted",
|
|
4513
|
+
"introduced": "0.0.15",
|
|
4016
4514
|
"replacement": "color.background.input.pressed",
|
|
4017
4515
|
"description": "Pressed state for background.subtleBorderedNeutral"
|
|
4018
4516
|
},
|
|
@@ -4024,6 +4522,7 @@ const tokens = [{
|
|
|
4024
4522
|
"attributes": {
|
|
4025
4523
|
"group": "paint",
|
|
4026
4524
|
"state": "deleted",
|
|
4525
|
+
"introduced": "0.0.15",
|
|
4027
4526
|
"replacement": "color.background.input.[default]",
|
|
4028
4527
|
"description": "Hover state for background.subtleBorderedNeutral"
|
|
4029
4528
|
},
|
|
@@ -4034,6 +4533,7 @@ const tokens = [{
|
|
|
4034
4533
|
"attributes": {
|
|
4035
4534
|
"group": "paint",
|
|
4036
4535
|
"state": "deleted",
|
|
4536
|
+
"introduced": "0.0.15",
|
|
4037
4537
|
"replacement": "color.background.input.[default]",
|
|
4038
4538
|
"description": "Hover state for background.subtleBorderedNeutral"
|
|
4039
4539
|
},
|
|
@@ -4045,6 +4545,7 @@ const tokens = [{
|
|
|
4045
4545
|
"attributes": {
|
|
4046
4546
|
"group": "paint",
|
|
4047
4547
|
"state": "deprecated",
|
|
4548
|
+
"introduced": "0.0.15",
|
|
4048
4549
|
"replacement": "color.background.selected.[default].hovered",
|
|
4049
4550
|
"description": "Hover state for background.subtleBrand"
|
|
4050
4551
|
},
|
|
@@ -4055,6 +4556,7 @@ const tokens = [{
|
|
|
4055
4556
|
"attributes": {
|
|
4056
4557
|
"group": "paint",
|
|
4057
4558
|
"state": "deprecated",
|
|
4559
|
+
"introduced": "0.0.15",
|
|
4058
4560
|
"replacement": "color.background.selected.[default].hovered",
|
|
4059
4561
|
"description": "Hover state for background.subtleBrand"
|
|
4060
4562
|
},
|
|
@@ -4066,6 +4568,7 @@ const tokens = [{
|
|
|
4066
4568
|
"attributes": {
|
|
4067
4569
|
"group": "paint",
|
|
4068
4570
|
"state": "deprecated",
|
|
4571
|
+
"introduced": "0.0.15",
|
|
4069
4572
|
"replacement": "color.background.selected.[default].pressed",
|
|
4070
4573
|
"description": "Pressed state for background.subtleBrand"
|
|
4071
4574
|
},
|
|
@@ -4076,6 +4579,7 @@ const tokens = [{
|
|
|
4076
4579
|
"attributes": {
|
|
4077
4580
|
"group": "paint",
|
|
4078
4581
|
"state": "deprecated",
|
|
4582
|
+
"introduced": "0.0.15",
|
|
4079
4583
|
"replacement": "color.background.selected.[default].pressed",
|
|
4080
4584
|
"description": "Pressed state for background.subtleBrand"
|
|
4081
4585
|
},
|
|
@@ -4087,6 +4591,7 @@ const tokens = [{
|
|
|
4087
4591
|
"attributes": {
|
|
4088
4592
|
"group": "paint",
|
|
4089
4593
|
"state": "deprecated",
|
|
4594
|
+
"introduced": "0.0.15",
|
|
4090
4595
|
"replacement": "color.background.selected.[default].[default]",
|
|
4091
4596
|
"description": "Use for subdued backgrounds of UI elements like information section messages and in progress lozenges."
|
|
4092
4597
|
},
|
|
@@ -4097,6 +4602,7 @@ const tokens = [{
|
|
|
4097
4602
|
"attributes": {
|
|
4098
4603
|
"group": "paint",
|
|
4099
4604
|
"state": "deprecated",
|
|
4605
|
+
"introduced": "0.0.15",
|
|
4100
4606
|
"replacement": "color.background.selected.[default].[default]",
|
|
4101
4607
|
"description": "Use for subdued backgrounds of UI elements like information section messages and in progress lozenges."
|
|
4102
4608
|
},
|
|
@@ -4108,6 +4614,7 @@ const tokens = [{
|
|
|
4108
4614
|
"attributes": {
|
|
4109
4615
|
"group": "paint",
|
|
4110
4616
|
"state": "deleted",
|
|
4617
|
+
"introduced": "0.0.15",
|
|
4111
4618
|
"replacement": "color.background.danger.[default].hovered",
|
|
4112
4619
|
"description": "Hover state for background.subtleDanger"
|
|
4113
4620
|
},
|
|
@@ -4118,6 +4625,7 @@ const tokens = [{
|
|
|
4118
4625
|
"attributes": {
|
|
4119
4626
|
"group": "paint",
|
|
4120
4627
|
"state": "deleted",
|
|
4628
|
+
"introduced": "0.0.15",
|
|
4121
4629
|
"replacement": "color.background.danger.[default].hovered",
|
|
4122
4630
|
"description": "Hover state for background.subtleDanger"
|
|
4123
4631
|
},
|
|
@@ -4129,6 +4637,7 @@ const tokens = [{
|
|
|
4129
4637
|
"attributes": {
|
|
4130
4638
|
"group": "paint",
|
|
4131
4639
|
"state": "deleted",
|
|
4640
|
+
"introduced": "0.0.15",
|
|
4132
4641
|
"replacement": "color.background.danger.[default].pressed",
|
|
4133
4642
|
"description": "Pressed state for background.subtleDanger"
|
|
4134
4643
|
},
|
|
@@ -4139,6 +4648,7 @@ const tokens = [{
|
|
|
4139
4648
|
"attributes": {
|
|
4140
4649
|
"group": "paint",
|
|
4141
4650
|
"state": "deleted",
|
|
4651
|
+
"introduced": "0.0.15",
|
|
4142
4652
|
"replacement": "color.background.danger.[default].pressed",
|
|
4143
4653
|
"description": "Pressed state for background.subtleDanger"
|
|
4144
4654
|
},
|
|
@@ -4150,6 +4660,7 @@ const tokens = [{
|
|
|
4150
4660
|
"attributes": {
|
|
4151
4661
|
"group": "paint",
|
|
4152
4662
|
"state": "deleted",
|
|
4663
|
+
"introduced": "0.0.15",
|
|
4153
4664
|
"replacement": "color.background.danger.[default].[default]",
|
|
4154
4665
|
"description": "Use for subdued backgrounds of UI elements like error section messages and removed lozenges."
|
|
4155
4666
|
},
|
|
@@ -4160,6 +4671,7 @@ const tokens = [{
|
|
|
4160
4671
|
"attributes": {
|
|
4161
4672
|
"group": "paint",
|
|
4162
4673
|
"state": "deleted",
|
|
4674
|
+
"introduced": "0.0.15",
|
|
4163
4675
|
"replacement": "color.background.danger.[default].[default]",
|
|
4164
4676
|
"description": "Use for subdued backgrounds of UI elements like error section messages and removed lozenges."
|
|
4165
4677
|
},
|
|
@@ -4171,6 +4683,7 @@ const tokens = [{
|
|
|
4171
4683
|
"attributes": {
|
|
4172
4684
|
"group": "paint",
|
|
4173
4685
|
"state": "deleted",
|
|
4686
|
+
"introduced": "0.0.15",
|
|
4174
4687
|
"replacement": "color.background.discovery.[default].hovered",
|
|
4175
4688
|
"description": "Hover state for background.subtleDiscovery"
|
|
4176
4689
|
},
|
|
@@ -4181,6 +4694,7 @@ const tokens = [{
|
|
|
4181
4694
|
"attributes": {
|
|
4182
4695
|
"group": "paint",
|
|
4183
4696
|
"state": "deleted",
|
|
4697
|
+
"introduced": "0.0.15",
|
|
4184
4698
|
"replacement": "color.background.discovery.[default].hovered",
|
|
4185
4699
|
"description": "Hover state for background.subtleDiscovery"
|
|
4186
4700
|
},
|
|
@@ -4192,6 +4706,7 @@ const tokens = [{
|
|
|
4192
4706
|
"attributes": {
|
|
4193
4707
|
"group": "paint",
|
|
4194
4708
|
"state": "deleted",
|
|
4709
|
+
"introduced": "0.0.15",
|
|
4195
4710
|
"replacement": "color.background.discovery.[default].pressed",
|
|
4196
4711
|
"description": "Pressed state for background.subtleDiscovery"
|
|
4197
4712
|
},
|
|
@@ -4202,6 +4717,7 @@ const tokens = [{
|
|
|
4202
4717
|
"attributes": {
|
|
4203
4718
|
"group": "paint",
|
|
4204
4719
|
"state": "deleted",
|
|
4720
|
+
"introduced": "0.0.15",
|
|
4205
4721
|
"replacement": "color.background.discovery.[default].pressed",
|
|
4206
4722
|
"description": "Pressed state for background.subtleDiscovery"
|
|
4207
4723
|
},
|
|
@@ -4213,6 +4729,7 @@ const tokens = [{
|
|
|
4213
4729
|
"attributes": {
|
|
4214
4730
|
"group": "paint",
|
|
4215
4731
|
"state": "deleted",
|
|
4732
|
+
"introduced": "0.0.15",
|
|
4216
4733
|
"replacement": "color.background.discovery.[default].[default]",
|
|
4217
4734
|
"description": "Use for subdued backgrounds of UI elements like discovery section messages and new lozenges."
|
|
4218
4735
|
},
|
|
@@ -4223,6 +4740,7 @@ const tokens = [{
|
|
|
4223
4740
|
"attributes": {
|
|
4224
4741
|
"group": "paint",
|
|
4225
4742
|
"state": "deleted",
|
|
4743
|
+
"introduced": "0.0.15",
|
|
4226
4744
|
"replacement": "color.background.discovery.[default].[default]",
|
|
4227
4745
|
"description": "Use for subdued backgrounds of UI elements like discovery section messages and new lozenges."
|
|
4228
4746
|
},
|
|
@@ -4234,6 +4752,7 @@ const tokens = [{
|
|
|
4234
4752
|
"attributes": {
|
|
4235
4753
|
"group": "paint",
|
|
4236
4754
|
"state": "deleted",
|
|
4755
|
+
"introduced": "0.0.15",
|
|
4237
4756
|
"replacement": "color.background.neutral.[default].hovered",
|
|
4238
4757
|
"description": "Hover state for background.subtleNeutral"
|
|
4239
4758
|
},
|
|
@@ -4244,6 +4763,7 @@ const tokens = [{
|
|
|
4244
4763
|
"attributes": {
|
|
4245
4764
|
"group": "paint",
|
|
4246
4765
|
"state": "deleted",
|
|
4766
|
+
"introduced": "0.0.15",
|
|
4247
4767
|
"replacement": "color.background.neutral.[default].hovered",
|
|
4248
4768
|
"description": "Hover state for background.subtleNeutral"
|
|
4249
4769
|
},
|
|
@@ -4255,6 +4775,7 @@ const tokens = [{
|
|
|
4255
4775
|
"attributes": {
|
|
4256
4776
|
"group": "paint",
|
|
4257
4777
|
"state": "deleted",
|
|
4778
|
+
"introduced": "0.0.15",
|
|
4258
4779
|
"replacement": "color.background.neutral.[default].pressed",
|
|
4259
4780
|
"description": "Pressed state for background.subtleNeutral"
|
|
4260
4781
|
},
|
|
@@ -4265,6 +4786,7 @@ const tokens = [{
|
|
|
4265
4786
|
"attributes": {
|
|
4266
4787
|
"group": "paint",
|
|
4267
4788
|
"state": "deleted",
|
|
4789
|
+
"introduced": "0.0.15",
|
|
4268
4790
|
"replacement": "color.background.neutral.[default].pressed",
|
|
4269
4791
|
"description": "Pressed state for background.subtleNeutral"
|
|
4270
4792
|
},
|
|
@@ -4276,6 +4798,7 @@ const tokens = [{
|
|
|
4276
4798
|
"attributes": {
|
|
4277
4799
|
"group": "paint",
|
|
4278
4800
|
"state": "deleted",
|
|
4801
|
+
"introduced": "0.0.15",
|
|
4279
4802
|
"replacement": "color.background.neutral.[default].[default]",
|
|
4280
4803
|
"description": "Use as the default background of UI elements like buttons, lozenges, and tags."
|
|
4281
4804
|
},
|
|
@@ -4286,6 +4809,7 @@ const tokens = [{
|
|
|
4286
4809
|
"attributes": {
|
|
4287
4810
|
"group": "paint",
|
|
4288
4811
|
"state": "deleted",
|
|
4812
|
+
"introduced": "0.0.15",
|
|
4289
4813
|
"replacement": "color.background.neutral.[default].[default]",
|
|
4290
4814
|
"description": "Use as the default background of UI elements like buttons, lozenges, and tags."
|
|
4291
4815
|
},
|
|
@@ -4297,6 +4821,7 @@ const tokens = [{
|
|
|
4297
4821
|
"attributes": {
|
|
4298
4822
|
"group": "paint",
|
|
4299
4823
|
"state": "deleted",
|
|
4824
|
+
"introduced": "0.0.15",
|
|
4300
4825
|
"replacement": "color.background.success.[default].hovered",
|
|
4301
4826
|
"description": "Hover state for background.subtleSuccess"
|
|
4302
4827
|
},
|
|
@@ -4307,6 +4832,7 @@ const tokens = [{
|
|
|
4307
4832
|
"attributes": {
|
|
4308
4833
|
"group": "paint",
|
|
4309
4834
|
"state": "deleted",
|
|
4835
|
+
"introduced": "0.0.15",
|
|
4310
4836
|
"replacement": "color.background.success.[default].hovered",
|
|
4311
4837
|
"description": "Hover state for background.subtleSuccess"
|
|
4312
4838
|
},
|
|
@@ -4318,6 +4844,7 @@ const tokens = [{
|
|
|
4318
4844
|
"attributes": {
|
|
4319
4845
|
"group": "paint",
|
|
4320
4846
|
"state": "deleted",
|
|
4847
|
+
"introduced": "0.0.15",
|
|
4321
4848
|
"replacement": "color.background.success.[default].pressed",
|
|
4322
4849
|
"description": "Pressed state for background.subtleSuccess"
|
|
4323
4850
|
},
|
|
@@ -4328,6 +4855,7 @@ const tokens = [{
|
|
|
4328
4855
|
"attributes": {
|
|
4329
4856
|
"group": "paint",
|
|
4330
4857
|
"state": "deleted",
|
|
4858
|
+
"introduced": "0.0.15",
|
|
4331
4859
|
"replacement": "color.background.success.[default].pressed",
|
|
4332
4860
|
"description": "Pressed state for background.subtleSuccess"
|
|
4333
4861
|
},
|
|
@@ -4339,6 +4867,7 @@ const tokens = [{
|
|
|
4339
4867
|
"attributes": {
|
|
4340
4868
|
"group": "paint",
|
|
4341
4869
|
"state": "deleted",
|
|
4870
|
+
"introduced": "0.0.15",
|
|
4342
4871
|
"replacement": "color.background.success.[default].[default]",
|
|
4343
4872
|
"description": "Use for subdued backgrounds of UI elements like success section messages and success lozenges."
|
|
4344
4873
|
},
|
|
@@ -4349,6 +4878,7 @@ const tokens = [{
|
|
|
4349
4878
|
"attributes": {
|
|
4350
4879
|
"group": "paint",
|
|
4351
4880
|
"state": "deleted",
|
|
4881
|
+
"introduced": "0.0.15",
|
|
4352
4882
|
"replacement": "color.background.success.[default].[default]",
|
|
4353
4883
|
"description": "Use for subdued backgrounds of UI elements like success section messages and success lozenges."
|
|
4354
4884
|
},
|
|
@@ -4360,6 +4890,7 @@ const tokens = [{
|
|
|
4360
4890
|
"attributes": {
|
|
4361
4891
|
"group": "paint",
|
|
4362
4892
|
"state": "deleted",
|
|
4893
|
+
"introduced": "0.0.15",
|
|
4363
4894
|
"replacement": "color.background.warning.[default].hovered",
|
|
4364
4895
|
"description": "Hover state for background.subtleWarning"
|
|
4365
4896
|
},
|
|
@@ -4370,6 +4901,7 @@ const tokens = [{
|
|
|
4370
4901
|
"attributes": {
|
|
4371
4902
|
"group": "paint",
|
|
4372
4903
|
"state": "deleted",
|
|
4904
|
+
"introduced": "0.0.15",
|
|
4373
4905
|
"replacement": "color.background.warning.[default].hovered",
|
|
4374
4906
|
"description": "Hover state for background.subtleWarning"
|
|
4375
4907
|
},
|
|
@@ -4381,6 +4913,7 @@ const tokens = [{
|
|
|
4381
4913
|
"attributes": {
|
|
4382
4914
|
"group": "paint",
|
|
4383
4915
|
"state": "deleted",
|
|
4916
|
+
"introduced": "0.0.15",
|
|
4384
4917
|
"replacement": "color.background.warning.[default].pressed",
|
|
4385
4918
|
"description": "Pressed state for background.subtleWarning"
|
|
4386
4919
|
},
|
|
@@ -4391,6 +4924,7 @@ const tokens = [{
|
|
|
4391
4924
|
"attributes": {
|
|
4392
4925
|
"group": "paint",
|
|
4393
4926
|
"state": "deleted",
|
|
4927
|
+
"introduced": "0.0.15",
|
|
4394
4928
|
"replacement": "color.background.warning.[default].pressed",
|
|
4395
4929
|
"description": "Pressed state for background.subtleWarning"
|
|
4396
4930
|
},
|
|
@@ -4402,6 +4936,7 @@ const tokens = [{
|
|
|
4402
4936
|
"attributes": {
|
|
4403
4937
|
"group": "paint",
|
|
4404
4938
|
"state": "deleted",
|
|
4939
|
+
"introduced": "0.0.15",
|
|
4405
4940
|
"replacement": "color.background.warning.[default].[default]",
|
|
4406
4941
|
"description": "Use for subdued backgrounds of UI elements like warning section messages and moved lozenges."
|
|
4407
4942
|
},
|
|
@@ -4412,6 +4947,7 @@ const tokens = [{
|
|
|
4412
4947
|
"attributes": {
|
|
4413
4948
|
"group": "paint",
|
|
4414
4949
|
"state": "deleted",
|
|
4950
|
+
"introduced": "0.0.15",
|
|
4415
4951
|
"replacement": "color.background.warning.[default].[default]",
|
|
4416
4952
|
"description": "Use for subdued backgrounds of UI elements like warning section messages and moved lozenges."
|
|
4417
4953
|
},
|
|
@@ -4423,6 +4959,7 @@ const tokens = [{
|
|
|
4423
4959
|
"attributes": {
|
|
4424
4960
|
"group": "paint",
|
|
4425
4961
|
"state": "deleted",
|
|
4962
|
+
"introduced": "0.0.15",
|
|
4426
4963
|
"replacement": "elevation.surface.sunken",
|
|
4427
4964
|
"description": "Use as a secondary background for the UI"
|
|
4428
4965
|
},
|
|
@@ -4433,6 +4970,7 @@ const tokens = [{
|
|
|
4433
4970
|
"attributes": {
|
|
4434
4971
|
"group": "paint",
|
|
4435
4972
|
"state": "deleted",
|
|
4973
|
+
"introduced": "0.0.15",
|
|
4436
4974
|
"replacement": "elevation.surface.sunken",
|
|
4437
4975
|
"description": "Use as a secondary background for the UI"
|
|
4438
4976
|
},
|
|
@@ -4444,6 +4982,7 @@ const tokens = [{
|
|
|
4444
4982
|
"attributes": {
|
|
4445
4983
|
"group": "paint",
|
|
4446
4984
|
"state": "deleted",
|
|
4985
|
+
"introduced": "0.0.15",
|
|
4447
4986
|
"replacement": "color.background.neutral.subtle.hovered",
|
|
4448
4987
|
"description": "Hover state for UIs that do not have a default background, such as menu items or subtle buttons."
|
|
4449
4988
|
},
|
|
@@ -4454,6 +4993,7 @@ const tokens = [{
|
|
|
4454
4993
|
"attributes": {
|
|
4455
4994
|
"group": "paint",
|
|
4456
4995
|
"state": "deleted",
|
|
4996
|
+
"introduced": "0.0.15",
|
|
4457
4997
|
"replacement": "color.background.neutral.subtle.hovered",
|
|
4458
4998
|
"description": "Hover state for UIs that do not have a default background, such as menu items or subtle buttons."
|
|
4459
4999
|
},
|
|
@@ -4465,6 +5005,7 @@ const tokens = [{
|
|
|
4465
5005
|
"attributes": {
|
|
4466
5006
|
"group": "paint",
|
|
4467
5007
|
"state": "deleted",
|
|
5008
|
+
"introduced": "0.0.15",
|
|
4468
5009
|
"replacement": "color.background.neutral.subtle.pressed",
|
|
4469
5010
|
"description": "Pressed state for UIs that do not have a default background, such as menu items or subtle buttons."
|
|
4470
5011
|
},
|
|
@@ -4475,6 +5016,7 @@ const tokens = [{
|
|
|
4475
5016
|
"attributes": {
|
|
4476
5017
|
"group": "paint",
|
|
4477
5018
|
"state": "deleted",
|
|
5019
|
+
"introduced": "0.0.15",
|
|
4478
5020
|
"replacement": "color.background.neutral.subtle.pressed",
|
|
4479
5021
|
"description": "Pressed state for UIs that do not have a default background, such as menu items or subtle buttons."
|
|
4480
5022
|
},
|
|
@@ -4486,6 +5028,7 @@ const tokens = [{
|
|
|
4486
5028
|
"attributes": {
|
|
4487
5029
|
"group": "paint",
|
|
4488
5030
|
"state": "active",
|
|
5031
|
+
"introduced": "0.0.15",
|
|
4489
5032
|
"description": "Use for the screen overlay that appears with modal dialogs"
|
|
4490
5033
|
},
|
|
4491
5034
|
"value": "#091E427A",
|
|
@@ -4495,6 +5038,7 @@ const tokens = [{
|
|
|
4495
5038
|
"attributes": {
|
|
4496
5039
|
"group": "paint",
|
|
4497
5040
|
"state": "active",
|
|
5041
|
+
"introduced": "0.0.15",
|
|
4498
5042
|
"description": "Use for the screen overlay that appears with modal dialogs"
|
|
4499
5043
|
},
|
|
4500
5044
|
"value": "N500A"
|
|
@@ -4505,6 +5049,7 @@ const tokens = [{
|
|
|
4505
5049
|
"attributes": {
|
|
4506
5050
|
"group": "paint",
|
|
4507
5051
|
"state": "active",
|
|
5052
|
+
"introduced": "0.6.0",
|
|
4508
5053
|
"description": "Use as an overlay to communicate selected states when a simple background color change isn't possible, such as in Editor block elements"
|
|
4509
5054
|
},
|
|
4510
5055
|
"value": "#388BFFCC",
|
|
@@ -4514,6 +5059,7 @@ const tokens = [{
|
|
|
4514
5059
|
"attributes": {
|
|
4515
5060
|
"group": "paint",
|
|
4516
5061
|
"state": "active",
|
|
5062
|
+
"introduced": "0.6.0",
|
|
4517
5063
|
"description": "Use as an overlay to communicate selected states when a simple background color change isn't possible, such as in Editor block elements"
|
|
4518
5064
|
},
|
|
4519
5065
|
"value": "#388BFFCC"
|
|
@@ -4524,6 +5070,7 @@ const tokens = [{
|
|
|
4524
5070
|
"attributes": {
|
|
4525
5071
|
"group": "paint",
|
|
4526
5072
|
"state": "active",
|
|
5073
|
+
"introduced": "0.6.0",
|
|
4527
5074
|
"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"
|
|
4528
5075
|
},
|
|
4529
5076
|
"value": "#EF5C48CC",
|
|
@@ -4533,6 +5080,7 @@ const tokens = [{
|
|
|
4533
5080
|
"attributes": {
|
|
4534
5081
|
"group": "paint",
|
|
4535
5082
|
"state": "active",
|
|
5083
|
+
"introduced": "0.6.0",
|
|
4536
5084
|
"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"
|
|
4537
5085
|
},
|
|
4538
5086
|
"value": "#EF5C48CC"
|
|
@@ -4543,6 +5091,7 @@ const tokens = [{
|
|
|
4543
5091
|
"attributes": {
|
|
4544
5092
|
"group": "paint",
|
|
4545
5093
|
"state": "active",
|
|
5094
|
+
"introduced": "0.6.0",
|
|
4546
5095
|
"description": "Use as a background overlay for elements in a hovered state when their background color cannot change, such as avatars."
|
|
4547
5096
|
},
|
|
4548
5097
|
"value": "#ffffff33",
|
|
@@ -4552,6 +5101,7 @@ const tokens = [{
|
|
|
4552
5101
|
"attributes": {
|
|
4553
5102
|
"group": "paint",
|
|
4554
5103
|
"state": "active",
|
|
5104
|
+
"introduced": "0.6.0",
|
|
4555
5105
|
"description": "Use as a background overlay for elements in a hovered state when their background color cannot change, such as avatars."
|
|
4556
5106
|
},
|
|
4557
5107
|
"value": "#ffffff33"
|
|
@@ -4562,6 +5112,7 @@ const tokens = [{
|
|
|
4562
5112
|
"attributes": {
|
|
4563
5113
|
"group": "paint",
|
|
4564
5114
|
"state": "active",
|
|
5115
|
+
"introduced": "0.6.0",
|
|
4565
5116
|
"description": "Use as a background overlay for elements in a pressed state when their background color cannot change, such as avatars."
|
|
4566
5117
|
},
|
|
4567
5118
|
"value": "#ffffff5c",
|
|
@@ -4571,6 +5122,7 @@ const tokens = [{
|
|
|
4571
5122
|
"attributes": {
|
|
4572
5123
|
"group": "paint",
|
|
4573
5124
|
"state": "active",
|
|
5125
|
+
"introduced": "0.6.0",
|
|
4574
5126
|
"description": "Use as a background overlay for elements in a pressed state when their background color cannot change, such as avatars."
|
|
4575
5127
|
},
|
|
4576
5128
|
"value": "#ffffff5c"
|
|
@@ -4581,6 +5133,7 @@ const tokens = [{
|
|
|
4581
5133
|
"attributes": {
|
|
4582
5134
|
"group": "paint",
|
|
4583
5135
|
"state": "active",
|
|
5136
|
+
"introduced": "0.6.0",
|
|
4584
5137
|
"description": "Use as a background overlay for elements in a hovered state on bold backgrounds, such as the buttons on spotlight cards."
|
|
4585
5138
|
},
|
|
4586
5139
|
"value": "#00000029",
|
|
@@ -4590,6 +5143,7 @@ const tokens = [{
|
|
|
4590
5143
|
"attributes": {
|
|
4591
5144
|
"group": "paint",
|
|
4592
5145
|
"state": "active",
|
|
5146
|
+
"introduced": "0.6.0",
|
|
4593
5147
|
"description": "Use as a background overlay for elements in a hovered state on bold backgrounds, such as the buttons on spotlight cards."
|
|
4594
5148
|
},
|
|
4595
5149
|
"value": "#00000029"
|
|
@@ -4600,6 +5154,7 @@ const tokens = [{
|
|
|
4600
5154
|
"attributes": {
|
|
4601
5155
|
"group": "paint",
|
|
4602
5156
|
"state": "active",
|
|
5157
|
+
"introduced": "0.6.0",
|
|
4603
5158
|
"description": "Use as a background overlay for elements in a hovered state on bold backgrounds, such as the buttons on spotlight cards."
|
|
4604
5159
|
},
|
|
4605
5160
|
"value": "#00000052",
|
|
@@ -4609,6 +5164,7 @@ const tokens = [{
|
|
|
4609
5164
|
"attributes": {
|
|
4610
5165
|
"group": "paint",
|
|
4611
5166
|
"state": "active",
|
|
5167
|
+
"introduced": "0.6.0",
|
|
4612
5168
|
"description": "Use as a background overlay for elements in a hovered state on bold backgrounds, such as the buttons on spotlight cards."
|
|
4613
5169
|
},
|
|
4614
5170
|
"value": "#00000052"
|
|
@@ -4619,6 +5175,7 @@ const tokens = [{
|
|
|
4619
5175
|
"attributes": {
|
|
4620
5176
|
"group": "paint",
|
|
4621
5177
|
"state": "active",
|
|
5178
|
+
"introduced": "0.8.0",
|
|
4622
5179
|
"description": "Use for skeleton loading states"
|
|
4623
5180
|
},
|
|
4624
5181
|
"value": "#091E420F",
|
|
@@ -4628,6 +5185,7 @@ const tokens = [{
|
|
|
4628
5185
|
"attributes": {
|
|
4629
5186
|
"group": "paint",
|
|
4630
5187
|
"state": "active",
|
|
5188
|
+
"introduced": "0.8.0",
|
|
4631
5189
|
"description": "Use for skeleton loading states"
|
|
4632
5190
|
},
|
|
4633
5191
|
"value": "N200A"
|
|
@@ -4638,6 +5196,7 @@ const tokens = [{
|
|
|
4638
5196
|
"attributes": {
|
|
4639
5197
|
"group": "paint",
|
|
4640
5198
|
"state": "active",
|
|
5199
|
+
"introduced": "0.8.0",
|
|
4641
5200
|
"description": "Use for the pulse or shimmer effect in skeleton loading states"
|
|
4642
5201
|
},
|
|
4643
5202
|
"value": "#091E4208",
|
|
@@ -4647,6 +5206,7 @@ const tokens = [{
|
|
|
4647
5206
|
"attributes": {
|
|
4648
5207
|
"group": "paint",
|
|
4649
5208
|
"state": "active",
|
|
5209
|
+
"introduced": "0.8.0",
|
|
4650
5210
|
"description": "Use for the pulse or shimmer effect in skeleton loading states"
|
|
4651
5211
|
},
|
|
4652
5212
|
"value": "N100A"
|
|
@@ -4657,6 +5217,7 @@ const tokens = [{
|
|
|
4657
5217
|
"attributes": {
|
|
4658
5218
|
"group": "paint",
|
|
4659
5219
|
"state": "active",
|
|
5220
|
+
"introduced": "0.6.0",
|
|
4660
5221
|
"description": "Use for links in a default or hovered state. Add an underline for hovered states."
|
|
4661
5222
|
},
|
|
4662
5223
|
"value": "#0C66E4",
|
|
@@ -4666,6 +5227,7 @@ const tokens = [{
|
|
|
4666
5227
|
"attributes": {
|
|
4667
5228
|
"group": "paint",
|
|
4668
5229
|
"state": "active",
|
|
5230
|
+
"introduced": "0.6.0",
|
|
4669
5231
|
"description": "Use for links in a default or hovered state. Add an underline for hovered states."
|
|
4670
5232
|
},
|
|
4671
5233
|
"value": "B700"
|
|
@@ -4676,6 +5238,7 @@ const tokens = [{
|
|
|
4676
5238
|
"attributes": {
|
|
4677
5239
|
"group": "paint",
|
|
4678
5240
|
"state": "active",
|
|
5241
|
+
"introduced": "0.6.0",
|
|
4679
5242
|
"description": "Use for links in a pressed state."
|
|
4680
5243
|
},
|
|
4681
5244
|
"value": "#0055CC",
|
|
@@ -4685,6 +5248,7 @@ const tokens = [{
|
|
|
4685
5248
|
"attributes": {
|
|
4686
5249
|
"group": "paint",
|
|
4687
5250
|
"state": "active",
|
|
5251
|
+
"introduced": "0.6.0",
|
|
4688
5252
|
"description": "Use for links in a pressed state."
|
|
4689
5253
|
},
|
|
4690
5254
|
"value": "B800"
|
|
@@ -4695,6 +5259,7 @@ const tokens = [{
|
|
|
4695
5259
|
"attributes": {
|
|
4696
5260
|
"group": "paint",
|
|
4697
5261
|
"state": "deleted",
|
|
5262
|
+
"introduced": "0.1.1",
|
|
4698
5263
|
"replacement": "color.background.accent.blue.bolder",
|
|
4699
5264
|
"description": "Use for blue backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
4700
5265
|
},
|
|
@@ -4705,6 +5270,7 @@ const tokens = [{
|
|
|
4705
5270
|
"attributes": {
|
|
4706
5271
|
"group": "paint",
|
|
4707
5272
|
"state": "deleted",
|
|
5273
|
+
"introduced": "0.1.1",
|
|
4708
5274
|
"replacement": "color.background.accent.blue.bolder",
|
|
4709
5275
|
"description": "Use for blue backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
4710
5276
|
},
|
|
@@ -4716,6 +5282,7 @@ const tokens = [{
|
|
|
4716
5282
|
"attributes": {
|
|
4717
5283
|
"group": "paint",
|
|
4718
5284
|
"state": "deleted",
|
|
5285
|
+
"introduced": "0.1.1",
|
|
4719
5286
|
"replacement": "color.background.accent.green.bolder",
|
|
4720
5287
|
"description": "Use for green backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
4721
5288
|
},
|
|
@@ -4726,6 +5293,7 @@ const tokens = [{
|
|
|
4726
5293
|
"attributes": {
|
|
4727
5294
|
"group": "paint",
|
|
4728
5295
|
"state": "deleted",
|
|
5296
|
+
"introduced": "0.1.1",
|
|
4729
5297
|
"replacement": "color.background.accent.green.bolder",
|
|
4730
5298
|
"description": "Use for green backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
4731
5299
|
},
|
|
@@ -4737,6 +5305,7 @@ const tokens = [{
|
|
|
4737
5305
|
"attributes": {
|
|
4738
5306
|
"group": "paint",
|
|
4739
5307
|
"state": "deleted",
|
|
5308
|
+
"introduced": "0.1.1",
|
|
4740
5309
|
"replacement": "color.background.accent.orange.bolder",
|
|
4741
5310
|
"description": "Use for orange backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
4742
5311
|
},
|
|
@@ -4747,6 +5316,7 @@ const tokens = [{
|
|
|
4747
5316
|
"attributes": {
|
|
4748
5317
|
"group": "paint",
|
|
4749
5318
|
"state": "deleted",
|
|
5319
|
+
"introduced": "0.1.1",
|
|
4750
5320
|
"replacement": "color.background.accent.orange.bolder",
|
|
4751
5321
|
"description": "Use for orange backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
4752
5322
|
},
|
|
@@ -4758,6 +5328,7 @@ const tokens = [{
|
|
|
4758
5328
|
"attributes": {
|
|
4759
5329
|
"group": "paint",
|
|
4760
5330
|
"state": "deleted",
|
|
5331
|
+
"introduced": "0.1.1",
|
|
4761
5332
|
"replacement": "color.background.accent.purple.bolder",
|
|
4762
5333
|
"description": "Use for purple backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
4763
5334
|
},
|
|
@@ -4768,6 +5339,7 @@ const tokens = [{
|
|
|
4768
5339
|
"attributes": {
|
|
4769
5340
|
"group": "paint",
|
|
4770
5341
|
"state": "deleted",
|
|
5342
|
+
"introduced": "0.1.1",
|
|
4771
5343
|
"replacement": "color.background.accent.purple.bolder",
|
|
4772
5344
|
"description": "Use for purple backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
4773
5345
|
},
|
|
@@ -4779,6 +5351,7 @@ const tokens = [{
|
|
|
4779
5351
|
"attributes": {
|
|
4780
5352
|
"group": "paint",
|
|
4781
5353
|
"state": "deleted",
|
|
5354
|
+
"introduced": "0.1.1",
|
|
4782
5355
|
"replacement": "color.background.accent.red.bolder",
|
|
4783
5356
|
"description": "Use for red backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
4784
5357
|
},
|
|
@@ -4789,6 +5362,7 @@ const tokens = [{
|
|
|
4789
5362
|
"attributes": {
|
|
4790
5363
|
"group": "paint",
|
|
4791
5364
|
"state": "deleted",
|
|
5365
|
+
"introduced": "0.1.1",
|
|
4792
5366
|
"replacement": "color.background.accent.red.bolder",
|
|
4793
5367
|
"description": "Use for red backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
4794
5368
|
},
|
|
@@ -4800,6 +5374,7 @@ const tokens = [{
|
|
|
4800
5374
|
"attributes": {
|
|
4801
5375
|
"group": "paint",
|
|
4802
5376
|
"state": "deleted",
|
|
5377
|
+
"introduced": "0.1.1",
|
|
4803
5378
|
"replacement": "color.background.accent.teal.bolder",
|
|
4804
5379
|
"description": "Use for teal backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
4805
5380
|
},
|
|
@@ -4810,6 +5385,7 @@ const tokens = [{
|
|
|
4810
5385
|
"attributes": {
|
|
4811
5386
|
"group": "paint",
|
|
4812
5387
|
"state": "deleted",
|
|
5388
|
+
"introduced": "0.1.1",
|
|
4813
5389
|
"replacement": "color.background.accent.teal.bolder",
|
|
4814
5390
|
"description": "Use for teal backgrounds of stronger emphasis when there is no meaning tied to the color, such as bold tags."
|
|
4815
5391
|
},
|
|
@@ -4821,6 +5397,7 @@ const tokens = [{
|
|
|
4821
5397
|
"attributes": {
|
|
4822
5398
|
"group": "paint",
|
|
4823
5399
|
"state": "deleted",
|
|
5400
|
+
"introduced": "0.1.0",
|
|
4824
5401
|
"replacement": "color.background.accent.blue.subtler",
|
|
4825
5402
|
"description": "Use for blue subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
4826
5403
|
},
|
|
@@ -4831,6 +5408,7 @@ const tokens = [{
|
|
|
4831
5408
|
"attributes": {
|
|
4832
5409
|
"group": "paint",
|
|
4833
5410
|
"state": "deleted",
|
|
5411
|
+
"introduced": "0.1.0",
|
|
4834
5412
|
"replacement": "color.background.accent.blue.subtler",
|
|
4835
5413
|
"description": "Use for blue subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
4836
5414
|
},
|
|
@@ -4842,6 +5420,7 @@ const tokens = [{
|
|
|
4842
5420
|
"attributes": {
|
|
4843
5421
|
"group": "paint",
|
|
4844
5422
|
"state": "deleted",
|
|
5423
|
+
"introduced": "0.1.0",
|
|
4845
5424
|
"replacement": "color.background.accent.green.subtler",
|
|
4846
5425
|
"description": "Use for green subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
4847
5426
|
},
|
|
@@ -4852,6 +5431,7 @@ const tokens = [{
|
|
|
4852
5431
|
"attributes": {
|
|
4853
5432
|
"group": "paint",
|
|
4854
5433
|
"state": "deleted",
|
|
5434
|
+
"introduced": "0.1.0",
|
|
4855
5435
|
"replacement": "color.background.accent.green.subtler",
|
|
4856
5436
|
"description": "Use for green subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
4857
5437
|
},
|
|
@@ -4863,6 +5443,7 @@ const tokens = [{
|
|
|
4863
5443
|
"attributes": {
|
|
4864
5444
|
"group": "paint",
|
|
4865
5445
|
"state": "deleted",
|
|
5446
|
+
"introduced": "0.1.0",
|
|
4866
5447
|
"replacement": "color.background.accent.magenta.subtler",
|
|
4867
5448
|
"description": "Use for magenta subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
4868
5449
|
},
|
|
@@ -4873,6 +5454,7 @@ const tokens = [{
|
|
|
4873
5454
|
"attributes": {
|
|
4874
5455
|
"group": "paint",
|
|
4875
5456
|
"state": "deleted",
|
|
5457
|
+
"introduced": "0.1.0",
|
|
4876
5458
|
"replacement": "color.background.accent.magenta.subtler",
|
|
4877
5459
|
"description": "Use for magenta subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
4878
5460
|
},
|
|
@@ -4884,6 +5466,7 @@ const tokens = [{
|
|
|
4884
5466
|
"attributes": {
|
|
4885
5467
|
"group": "paint",
|
|
4886
5468
|
"state": "deleted",
|
|
5469
|
+
"introduced": "0.1.0",
|
|
4887
5470
|
"replacement": "color.background.accent.orange.subtler",
|
|
4888
5471
|
"description": "Use for orange subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
4889
5472
|
},
|
|
@@ -4894,6 +5477,7 @@ const tokens = [{
|
|
|
4894
5477
|
"attributes": {
|
|
4895
5478
|
"group": "paint",
|
|
4896
5479
|
"state": "deleted",
|
|
5480
|
+
"introduced": "0.1.0",
|
|
4897
5481
|
"replacement": "color.background.accent.orange.subtler",
|
|
4898
5482
|
"description": "Use for orange subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
4899
5483
|
},
|
|
@@ -4905,6 +5489,7 @@ const tokens = [{
|
|
|
4905
5489
|
"attributes": {
|
|
4906
5490
|
"group": "paint",
|
|
4907
5491
|
"state": "deleted",
|
|
5492
|
+
"introduced": "0.1.0",
|
|
4908
5493
|
"replacement": "color.background.accent.purple.subtler",
|
|
4909
5494
|
"description": "Use for purple subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
4910
5495
|
},
|
|
@@ -4915,6 +5500,7 @@ const tokens = [{
|
|
|
4915
5500
|
"attributes": {
|
|
4916
5501
|
"group": "paint",
|
|
4917
5502
|
"state": "deleted",
|
|
5503
|
+
"introduced": "0.1.0",
|
|
4918
5504
|
"replacement": "color.background.accent.purple.subtler",
|
|
4919
5505
|
"description": "Use for purple subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
4920
5506
|
},
|
|
@@ -4926,6 +5512,7 @@ const tokens = [{
|
|
|
4926
5512
|
"attributes": {
|
|
4927
5513
|
"group": "paint",
|
|
4928
5514
|
"state": "deleted",
|
|
5515
|
+
"introduced": "0.1.0",
|
|
4929
5516
|
"replacement": "color.background.accent.red.subtler",
|
|
4930
5517
|
"description": "Use for red subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
4931
5518
|
},
|
|
@@ -4936,6 +5523,7 @@ const tokens = [{
|
|
|
4936
5523
|
"attributes": {
|
|
4937
5524
|
"group": "paint",
|
|
4938
5525
|
"state": "deleted",
|
|
5526
|
+
"introduced": "0.1.0",
|
|
4939
5527
|
"replacement": "color.background.accent.red.subtler",
|
|
4940
5528
|
"description": "Use for red subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
4941
5529
|
},
|
|
@@ -4947,6 +5535,7 @@ const tokens = [{
|
|
|
4947
5535
|
"attributes": {
|
|
4948
5536
|
"group": "paint",
|
|
4949
5537
|
"state": "deleted",
|
|
5538
|
+
"introduced": "0.1.0",
|
|
4950
5539
|
"replacement": "color.background.accent.teal.subtler",
|
|
4951
5540
|
"description": "Use for teal subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
4952
5541
|
},
|
|
@@ -4957,6 +5546,7 @@ const tokens = [{
|
|
|
4957
5546
|
"attributes": {
|
|
4958
5547
|
"group": "paint",
|
|
4959
5548
|
"state": "deleted",
|
|
5549
|
+
"introduced": "0.1.0",
|
|
4960
5550
|
"replacement": "color.background.accent.teal.subtler",
|
|
4961
5551
|
"description": "Use for teal subdued backgrounds when there is no meaning tied to the color, such as colored tags."
|
|
4962
5552
|
},
|
|
@@ -4968,6 +5558,7 @@ const tokens = [{
|
|
|
4968
5558
|
"attributes": {
|
|
4969
5559
|
"group": "paint",
|
|
4970
5560
|
"state": "deleted",
|
|
5561
|
+
"introduced": "0.0.15",
|
|
4971
5562
|
"replacement": "color.icon.brand",
|
|
4972
5563
|
"description": "\nUse rarely for icons or borders representing brand, in-progress, or information, such as the icons in information sections messages.\n\nAlso use for blue icons or borders when there is no meaning tied to the color, such as file type icons."
|
|
4973
5564
|
},
|
|
@@ -4978,6 +5569,7 @@ const tokens = [{
|
|
|
4978
5569
|
"attributes": {
|
|
4979
5570
|
"group": "paint",
|
|
4980
5571
|
"state": "deleted",
|
|
5572
|
+
"introduced": "0.0.15",
|
|
4981
5573
|
"replacement": "color.icon.brand",
|
|
4982
5574
|
"description": "\nUse rarely for icons or borders representing brand, in-progress, or information, such as the icons in information sections messages.\n\nAlso use for blue icons or borders when there is no meaning tied to the color, such as file type icons."
|
|
4983
5575
|
},
|
|
@@ -4989,6 +5581,7 @@ const tokens = [{
|
|
|
4989
5581
|
"attributes": {
|
|
4990
5582
|
"group": "paint",
|
|
4991
5583
|
"state": "deleted",
|
|
5584
|
+
"introduced": "0.0.15",
|
|
4992
5585
|
"replacement": "color.icon.danger",
|
|
4993
5586
|
"description": "\nUse rarely for icons and borders representing critical information, such the icons in error section messages or the borders on invalid text fields.\n\nAlso use for red icons or borders when there is no meaning tied to the color, such as file type icons."
|
|
4994
5587
|
},
|
|
@@ -4999,6 +5592,7 @@ const tokens = [{
|
|
|
4999
5592
|
"attributes": {
|
|
5000
5593
|
"group": "paint",
|
|
5001
5594
|
"state": "deleted",
|
|
5595
|
+
"introduced": "0.0.15",
|
|
5002
5596
|
"replacement": "color.icon.danger",
|
|
5003
5597
|
"description": "\nUse rarely for icons and borders representing critical information, such the icons in error section messages or the borders on invalid text fields.\n\nAlso use for red icons or borders when there is no meaning tied to the color, such as file type icons."
|
|
5004
5598
|
},
|
|
@@ -5010,6 +5604,7 @@ const tokens = [{
|
|
|
5010
5604
|
"attributes": {
|
|
5011
5605
|
"group": "paint",
|
|
5012
5606
|
"state": "deleted",
|
|
5607
|
+
"introduced": "0.0.15",
|
|
5013
5608
|
"replacement": "color.icon.discovery",
|
|
5014
5609
|
"description": "\nUse rarely for icons and borders representing new information, such as the icons in discovery section mesages or the borders in onboarding spotlights.\n\nAlso use for purple icons or borders when there is no meaning tied to the color, such as file type icons.\n"
|
|
5015
5610
|
},
|
|
@@ -5020,6 +5615,7 @@ const tokens = [{
|
|
|
5020
5615
|
"attributes": {
|
|
5021
5616
|
"group": "paint",
|
|
5022
5617
|
"state": "deleted",
|
|
5618
|
+
"introduced": "0.0.15",
|
|
5023
5619
|
"replacement": "color.icon.discovery",
|
|
5024
5620
|
"description": "\nUse rarely for icons and borders representing new information, such as the icons in discovery section mesages or the borders in onboarding spotlights.\n\nAlso use for purple icons or borders when there is no meaning tied to the color, such as file type icons.\n"
|
|
5025
5621
|
},
|
|
@@ -5031,6 +5627,7 @@ const tokens = [{
|
|
|
5031
5627
|
"attributes": {
|
|
5032
5628
|
"group": "paint",
|
|
5033
5629
|
"state": "deleted",
|
|
5630
|
+
"introduced": "0.0.15",
|
|
5034
5631
|
"replacement": "color.icon.success",
|
|
5035
5632
|
"description": "\nUse rarely for icons and borders representing positive information, such as the icons in success section messages or the borders on validated text fields.\n\nAlso use for green icons or borders when there is no meaning tied to the color, such as file type icons.\n"
|
|
5036
5633
|
},
|
|
@@ -5041,6 +5638,7 @@ const tokens = [{
|
|
|
5041
5638
|
"attributes": {
|
|
5042
5639
|
"group": "paint",
|
|
5043
5640
|
"state": "deleted",
|
|
5641
|
+
"introduced": "0.0.15",
|
|
5044
5642
|
"replacement": "color.icon.success",
|
|
5045
5643
|
"description": "\nUse rarely for icons and borders representing positive information, such as the icons in success section messages or the borders on validated text fields.\n\nAlso use for green icons or borders when there is no meaning tied to the color, such as file type icons.\n"
|
|
5046
5644
|
},
|
|
@@ -5052,6 +5650,7 @@ const tokens = [{
|
|
|
5052
5650
|
"attributes": {
|
|
5053
5651
|
"group": "paint",
|
|
5054
5652
|
"state": "deleted",
|
|
5653
|
+
"introduced": "0.0.15",
|
|
5055
5654
|
"replacement": "color.icon.warning.[default]",
|
|
5056
5655
|
"description": "\nUse rarely for icons and borders representing semi-urgent information, such as the icons in warning section messages.\n\nAlso use for yellow icons or borders when there is no meaning tied to the color, such as file type icons.\n"
|
|
5057
5656
|
},
|
|
@@ -5062,6 +5661,7 @@ const tokens = [{
|
|
|
5062
5661
|
"attributes": {
|
|
5063
5662
|
"group": "paint",
|
|
5064
5663
|
"state": "deleted",
|
|
5664
|
+
"introduced": "0.0.15",
|
|
5065
5665
|
"replacement": "color.icon.warning.[default]",
|
|
5066
5666
|
"description": "\nUse rarely for icons and borders representing semi-urgent information, such as the icons in warning section messages.\n\nAlso use for yellow icons or borders when there is no meaning tied to the color, such as file type icons.\n"
|
|
5067
5667
|
},
|
|
@@ -5073,6 +5673,7 @@ const tokens = [{
|
|
|
5073
5673
|
"attributes": {
|
|
5074
5674
|
"group": "paint",
|
|
5075
5675
|
"state": "deleted",
|
|
5676
|
+
"introduced": "0.1.0",
|
|
5076
5677
|
"replacement": "color.interaction.hovered",
|
|
5077
5678
|
"description": "Use as a background overlay for elements in a hover state when their background color cannot change, such as avatars."
|
|
5078
5679
|
},
|
|
@@ -5083,6 +5684,7 @@ const tokens = [{
|
|
|
5083
5684
|
"attributes": {
|
|
5084
5685
|
"group": "paint",
|
|
5085
5686
|
"state": "deleted",
|
|
5687
|
+
"introduced": "0.1.0",
|
|
5086
5688
|
"replacement": "color.interaction.hovered",
|
|
5087
5689
|
"description": "Use as a background overlay for elements in a hover state when their background color cannot change, such as avatars."
|
|
5088
5690
|
},
|
|
@@ -5094,6 +5696,7 @@ const tokens = [{
|
|
|
5094
5696
|
"attributes": {
|
|
5095
5697
|
"group": "paint",
|
|
5096
5698
|
"state": "deleted",
|
|
5699
|
+
"introduced": "0.1.0",
|
|
5097
5700
|
"replacement": "color.interaction.pressed",
|
|
5098
5701
|
"description": "Use as a background overlay for elements in a pressed state when their background color cannot change, such as avatars."
|
|
5099
5702
|
},
|
|
@@ -5104,6 +5707,7 @@ const tokens = [{
|
|
|
5104
5707
|
"attributes": {
|
|
5105
5708
|
"group": "paint",
|
|
5106
5709
|
"state": "deleted",
|
|
5710
|
+
"introduced": "0.1.0",
|
|
5107
5711
|
"replacement": "color.interaction.pressed",
|
|
5108
5712
|
"description": "Use as a background overlay for elements in a pressed state when their background color cannot change, such as avatars."
|
|
5109
5713
|
},
|
|
@@ -5115,6 +5719,7 @@ const tokens = [{
|
|
|
5115
5719
|
"attributes": {
|
|
5116
5720
|
"group": "shadow",
|
|
5117
5721
|
"state": "deleted",
|
|
5722
|
+
"introduced": "0.6.0",
|
|
5118
5723
|
"replacement": "elevation.shadow.raised",
|
|
5119
5724
|
"description": "\nUse for the box shadow of raised card elements, such as Jira cards on a Kanban board.\n\nCombine with background.overlay"
|
|
5120
5725
|
},
|
|
@@ -5141,6 +5746,7 @@ const tokens = [{
|
|
|
5141
5746
|
"attributes": {
|
|
5142
5747
|
"group": "shadow",
|
|
5143
5748
|
"state": "deleted",
|
|
5749
|
+
"introduced": "0.6.0",
|
|
5144
5750
|
"replacement": "elevation.shadow.raised",
|
|
5145
5751
|
"description": "\nUse for the box shadow of raised card elements, such as Jira cards on a Kanban board.\n\nCombine with background.overlay"
|
|
5146
5752
|
},
|
|
@@ -5168,6 +5774,7 @@ const tokens = [{
|
|
|
5168
5774
|
"attributes": {
|
|
5169
5775
|
"group": "shadow",
|
|
5170
5776
|
"state": "deleted",
|
|
5777
|
+
"introduced": "0.6.0",
|
|
5171
5778
|
"replacement": "elevation.shadow.overlay",
|
|
5172
5779
|
"description": "\nUse for the box shadow of overlay elements, such as modals, dropdown menus, flags, and inline dialogs (i.e. elements that sit on top of the UI).\n\nAlso use for the box shadow of raised cards in a dragged state.\n\nCombine with background.overlay"
|
|
5173
5780
|
},
|
|
@@ -5194,6 +5801,7 @@ const tokens = [{
|
|
|
5194
5801
|
"attributes": {
|
|
5195
5802
|
"group": "shadow",
|
|
5196
5803
|
"state": "deleted",
|
|
5804
|
+
"introduced": "0.6.0",
|
|
5197
5805
|
"replacement": "elevation.shadow.overlay",
|
|
5198
5806
|
"description": "\nUse for the box shadow of overlay elements, such as modals, dropdown menus, flags, and inline dialogs (i.e. elements that sit on top of the UI).\n\nAlso use for the box shadow of raised cards in a dragged state.\n\nCombine with background.overlay"
|
|
5199
5807
|
},
|
|
@@ -5221,6 +5829,7 @@ const tokens = [{
|
|
|
5221
5829
|
"attributes": {
|
|
5222
5830
|
"group": "shadow",
|
|
5223
5831
|
"state": "active",
|
|
5832
|
+
"introduced": "0.6.0",
|
|
5224
5833
|
"description": "Use for the box shadow of raised card elements, such as Jira cards on a Kanban board. Combine with elevation.surface.raised"
|
|
5225
5834
|
},
|
|
5226
5835
|
"value": [{
|
|
@@ -5246,6 +5855,7 @@ const tokens = [{
|
|
|
5246
5855
|
"attributes": {
|
|
5247
5856
|
"group": "shadow",
|
|
5248
5857
|
"state": "active",
|
|
5858
|
+
"introduced": "0.6.0",
|
|
5249
5859
|
"description": "Use for the box shadow of raised card elements, such as Jira cards on a Kanban board. Combine with elevation.surface.raised"
|
|
5250
5860
|
},
|
|
5251
5861
|
"value": [{
|
|
@@ -5272,6 +5882,7 @@ const tokens = [{
|
|
|
5272
5882
|
"attributes": {
|
|
5273
5883
|
"group": "shadow",
|
|
5274
5884
|
"state": "active",
|
|
5885
|
+
"introduced": "0.6.0",
|
|
5275
5886
|
"description": "Use to create a shadow when content scolls under other content."
|
|
5276
5887
|
},
|
|
5277
5888
|
"value": [{
|
|
@@ -5297,6 +5908,7 @@ const tokens = [{
|
|
|
5297
5908
|
"attributes": {
|
|
5298
5909
|
"group": "shadow",
|
|
5299
5910
|
"state": "active",
|
|
5911
|
+
"introduced": "0.6.0",
|
|
5300
5912
|
"description": "Use to create a shadow when content scolls under other content."
|
|
5301
5913
|
},
|
|
5302
5914
|
"value": [{
|
|
@@ -5323,6 +5935,7 @@ const tokens = [{
|
|
|
5323
5935
|
"attributes": {
|
|
5324
5936
|
"group": "shadow",
|
|
5325
5937
|
"state": "active",
|
|
5938
|
+
"introduced": "0.6.0",
|
|
5326
5939
|
"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."
|
|
5327
5940
|
},
|
|
5328
5941
|
"value": [{
|
|
@@ -5348,6 +5961,7 @@ const tokens = [{
|
|
|
5348
5961
|
"attributes": {
|
|
5349
5962
|
"group": "shadow",
|
|
5350
5963
|
"state": "active",
|
|
5964
|
+
"introduced": "0.6.0",
|
|
5351
5965
|
"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."
|
|
5352
5966
|
},
|
|
5353
5967
|
"value": [{
|
|
@@ -5374,6 +5988,7 @@ const tokens = [{
|
|
|
5374
5988
|
"attributes": {
|
|
5375
5989
|
"group": "paint",
|
|
5376
5990
|
"state": "active",
|
|
5991
|
+
"introduced": "0.6.0",
|
|
5377
5992
|
"description": "Use as the primary background for the UI."
|
|
5378
5993
|
},
|
|
5379
5994
|
"value": "#FFFFFF",
|
|
@@ -5383,6 +5998,7 @@ const tokens = [{
|
|
|
5383
5998
|
"attributes": {
|
|
5384
5999
|
"group": "paint",
|
|
5385
6000
|
"state": "active",
|
|
6001
|
+
"introduced": "0.6.0",
|
|
5386
6002
|
"description": "Use as the primary background for the UI."
|
|
5387
6003
|
},
|
|
5388
6004
|
"value": "N0"
|
|
@@ -5393,6 +6009,7 @@ const tokens = [{
|
|
|
5393
6009
|
"attributes": {
|
|
5394
6010
|
"group": "paint",
|
|
5395
6011
|
"state": "active",
|
|
6012
|
+
"introduced": "0.6.0",
|
|
5396
6013
|
"description": "A secondary background for the UI commonly used for grouping items, such as Jira cards in columns."
|
|
5397
6014
|
},
|
|
5398
6015
|
"value": "#F7F8F9",
|
|
@@ -5402,6 +6019,7 @@ const tokens = [{
|
|
|
5402
6019
|
"attributes": {
|
|
5403
6020
|
"group": "paint",
|
|
5404
6021
|
"state": "active",
|
|
6022
|
+
"introduced": "0.6.0",
|
|
5405
6023
|
"description": "A secondary background for the UI commonly used for grouping items, such as Jira cards in columns."
|
|
5406
6024
|
},
|
|
5407
6025
|
"value": "N100"
|
|
@@ -5412,6 +6030,7 @@ const tokens = [{
|
|
|
5412
6030
|
"attributes": {
|
|
5413
6031
|
"group": "paint",
|
|
5414
6032
|
"state": "active",
|
|
6033
|
+
"introduced": "0.6.0",
|
|
5415
6034
|
"description": "Use for the background of raised cards, such as Jira cards on a Kanban board. Combine with elevation.shadow.raised"
|
|
5416
6035
|
},
|
|
5417
6036
|
"value": "#FFFFFF",
|
|
@@ -5421,6 +6040,7 @@ const tokens = [{
|
|
|
5421
6040
|
"attributes": {
|
|
5422
6041
|
"group": "paint",
|
|
5423
6042
|
"state": "active",
|
|
6043
|
+
"introduced": "0.6.0",
|
|
5424
6044
|
"description": "Use for the background of raised cards, such as Jira cards on a Kanban board. Combine with elevation.shadow.raised"
|
|
5425
6045
|
},
|
|
5426
6046
|
"value": "N0"
|
|
@@ -5431,6 +6051,7 @@ const tokens = [{
|
|
|
5431
6051
|
"attributes": {
|
|
5432
6052
|
"group": "paint",
|
|
5433
6053
|
"state": "active",
|
|
6054
|
+
"introduced": "0.6.0",
|
|
5434
6055
|
"description": "Use for the background of elements that sit on top of they UI, such as modals, dropdown menus, flags, and inline dialogs. Combine with elevation.shadow.overlay\n\nAlso use for the background of raised cards in a dragged state."
|
|
5435
6056
|
},
|
|
5436
6057
|
"value": "#FFFFFF",
|
|
@@ -5440,6 +6061,7 @@ const tokens = [{
|
|
|
5440
6061
|
"attributes": {
|
|
5441
6062
|
"group": "paint",
|
|
5442
6063
|
"state": "active",
|
|
6064
|
+
"introduced": "0.6.0",
|
|
5443
6065
|
"description": "Use for the background of elements that sit on top of they UI, such as modals, dropdown menus, flags, and inline dialogs. Combine with elevation.shadow.overlay\n\nAlso use for the background of raised cards in a dragged state."
|
|
5444
6066
|
},
|
|
5445
6067
|
"value": "N0"
|
|
@@ -5450,6 +6072,7 @@ const tokens = [{
|
|
|
5450
6072
|
"attributes": {
|
|
5451
6073
|
"group": "raw",
|
|
5452
6074
|
"state": "active",
|
|
6075
|
+
"introduced": "0.1.1",
|
|
5453
6076
|
"description": "Transparent token used for backwards compatibility between new and old theming solutions"
|
|
5454
6077
|
},
|
|
5455
6078
|
"value": "transparent",
|
|
@@ -5459,6 +6082,7 @@ const tokens = [{
|
|
|
5459
6082
|
"attributes": {
|
|
5460
6083
|
"group": "raw",
|
|
5461
6084
|
"state": "active",
|
|
6085
|
+
"introduced": "0.1.1",
|
|
5462
6086
|
"description": "Transparent token used for backwards compatibility between new and old theming solutions"
|
|
5463
6087
|
},
|
|
5464
6088
|
"value": "transparent"
|
|
@@ -5469,6 +6093,7 @@ const tokens = [{
|
|
|
5469
6093
|
"attributes": {
|
|
5470
6094
|
"group": "raw",
|
|
5471
6095
|
"state": "active",
|
|
6096
|
+
"introduced": "0.4.0",
|
|
5472
6097
|
"description": "Used as a placeholder when a suitable token does not exist"
|
|
5473
6098
|
},
|
|
5474
6099
|
"value": "#FA11F2",
|
|
@@ -5478,6 +6103,7 @@ const tokens = [{
|
|
|
5478
6103
|
"attributes": {
|
|
5479
6104
|
"group": "raw",
|
|
5480
6105
|
"state": "active",
|
|
6106
|
+
"introduced": "0.4.0",
|
|
5481
6107
|
"description": "Used as a placeholder when a suitable token does not exist"
|
|
5482
6108
|
},
|
|
5483
6109
|
"value": "#FA11F2"
|