@atlaskit/tokens 0.6.2 → 0.7.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 +38 -0
- package/css/atlassian-dark.css +46 -4
- package/css/atlassian-light.css +42 -0
- package/dist/cjs/artifacts/rename-mapping.js +78 -14
- package/dist/cjs/artifacts/token-default-values.js +42 -0
- package/dist/cjs/artifacts/token-names.js +42 -0
- package/dist/cjs/artifacts/tokens-raw/atlassian-dark.js +1009 -179
- package/dist/cjs/artifacts/tokens-raw/atlassian-light.js +1007 -177
- package/dist/cjs/figma/synchronize-figma-tokens.js +34 -9
- package/dist/cjs/get-token.js +1 -1
- package/dist/cjs/tokens/atlassian-dark/color/accent.js +120 -32
- package/dist/cjs/tokens/atlassian-dark/color/background.js +11 -1
- package/dist/cjs/tokens/atlassian-dark/deprecated/deprecated.js +69 -3
- package/dist/cjs/tokens/atlassian-dark/elevation/surface.js +1 -1
- package/dist/cjs/tokens/atlassian-light/color/accent.js +112 -24
- package/dist/cjs/tokens/atlassian-light/color/background.js +11 -1
- package/dist/cjs/tokens/atlassian-light/deprecated/deprecated.js +66 -0
- package/dist/cjs/tokens/default/color/accent.js +234 -50
- package/dist/cjs/tokens/default/color/background.js +20 -4
- package/dist/cjs/tokens/default/deprecated/deprecated.js +160 -14
- package/dist/cjs/tokens/palette.js +6 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/artifacts/rename-mapping.js +78 -14
- package/dist/es2019/artifacts/token-default-values.js +42 -0
- package/dist/es2019/artifacts/token-names.js +42 -0
- package/dist/es2019/artifacts/tokens-raw/atlassian-dark.js +1009 -179
- package/dist/es2019/artifacts/tokens-raw/atlassian-light.js +1007 -177
- package/dist/es2019/figma/synchronize-figma-tokens.js +32 -9
- package/dist/es2019/get-token.js +1 -1
- package/dist/es2019/tokens/atlassian-dark/color/accent.js +120 -32
- package/dist/es2019/tokens/atlassian-dark/color/background.js +11 -1
- package/dist/es2019/tokens/atlassian-dark/deprecated/deprecated.js +69 -3
- package/dist/es2019/tokens/atlassian-dark/elevation/surface.js +1 -1
- package/dist/es2019/tokens/atlassian-light/color/accent.js +112 -24
- package/dist/es2019/tokens/atlassian-light/color/background.js +11 -1
- package/dist/es2019/tokens/atlassian-light/deprecated/deprecated.js +66 -0
- package/dist/es2019/tokens/default/color/accent.js +234 -50
- package/dist/es2019/tokens/default/color/background.js +20 -4
- package/dist/es2019/tokens/default/deprecated/deprecated.js +160 -14
- package/dist/es2019/tokens/palette.js +6 -0
- package/dist/es2019/version.json +1 -1
- package/dist/esm/artifacts/rename-mapping.js +78 -14
- package/dist/esm/artifacts/token-default-values.js +42 -0
- package/dist/esm/artifacts/token-names.js +42 -0
- package/dist/esm/artifacts/tokens-raw/atlassian-dark.js +1009 -179
- package/dist/esm/artifacts/tokens-raw/atlassian-light.js +1007 -177
- package/dist/esm/figma/synchronize-figma-tokens.js +34 -9
- package/dist/esm/get-token.js +1 -1
- package/dist/esm/tokens/atlassian-dark/color/accent.js +120 -32
- package/dist/esm/tokens/atlassian-dark/color/background.js +11 -1
- package/dist/esm/tokens/atlassian-dark/deprecated/deprecated.js +69 -3
- package/dist/esm/tokens/atlassian-dark/elevation/surface.js +1 -1
- package/dist/esm/tokens/atlassian-light/color/accent.js +112 -24
- package/dist/esm/tokens/atlassian-light/color/background.js +11 -1
- package/dist/esm/tokens/atlassian-light/deprecated/deprecated.js +66 -0
- package/dist/esm/tokens/default/color/accent.js +234 -50
- package/dist/esm/tokens/default/color/background.js +20 -4
- package/dist/esm/tokens/default/deprecated/deprecated.js +160 -14
- package/dist/esm/tokens/palette.js +6 -0
- package/dist/esm/version.json +1 -1
- package/dist/types/artifacts/token-default-values.d.ts +42 -0
- package/dist/types/artifacts/token-names.d.ts +84 -0
- package/dist/types/artifacts/types-internal.d.ts +1 -1
- package/dist/types/artifacts/types.d.ts +1 -1
- package/dist/types/figma/synchronize-figma-tokens.d.ts +9 -1
- package/dist/types/tokens/default/utility/utility.d.ts +10 -10
- package/dist/types/types.d.ts +104 -25
- package/package.json +2 -4
|
@@ -48,6 +48,72 @@ var color = {
|
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
background: {
|
|
51
|
+
accent: {
|
|
52
|
+
blue: {
|
|
53
|
+
'[default]': {
|
|
54
|
+
value: 'B200'
|
|
55
|
+
},
|
|
56
|
+
bold: {
|
|
57
|
+
value: 'B400'
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
red: {
|
|
61
|
+
'[default]': {
|
|
62
|
+
value: 'R200'
|
|
63
|
+
},
|
|
64
|
+
bold: {
|
|
65
|
+
value: 'R400'
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
orange: {
|
|
69
|
+
'[default]': {
|
|
70
|
+
value: 'O200'
|
|
71
|
+
},
|
|
72
|
+
bold: {
|
|
73
|
+
value: 'O400'
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
yellow: {
|
|
77
|
+
'[default]': {
|
|
78
|
+
value: 'Y200'
|
|
79
|
+
},
|
|
80
|
+
bold: {
|
|
81
|
+
value: 'Y400'
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
green: {
|
|
85
|
+
'[default]': {
|
|
86
|
+
value: 'G200'
|
|
87
|
+
},
|
|
88
|
+
bold: {
|
|
89
|
+
value: 'G400'
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
purple: {
|
|
93
|
+
'[default]': {
|
|
94
|
+
value: 'P200'
|
|
95
|
+
},
|
|
96
|
+
bold: {
|
|
97
|
+
value: 'P400'
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
teal: {
|
|
101
|
+
'[default]': {
|
|
102
|
+
value: 'T200'
|
|
103
|
+
},
|
|
104
|
+
bold: {
|
|
105
|
+
value: 'T400'
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
magenta: {
|
|
109
|
+
'[default]': {
|
|
110
|
+
value: 'M200'
|
|
111
|
+
},
|
|
112
|
+
bold: {
|
|
113
|
+
value: 'M400'
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
},
|
|
51
117
|
blanket: {
|
|
52
118
|
value: 'N500A'
|
|
53
119
|
},
|
|
@@ -9,59 +9,131 @@ var color = {
|
|
|
9
9
|
text: {
|
|
10
10
|
accent: {
|
|
11
11
|
blue: {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
'[default]': {
|
|
13
|
+
attributes: {
|
|
14
|
+
group: 'paint',
|
|
15
|
+
state: 'active',
|
|
16
|
+
description: 'Use for blue text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
bolder: {
|
|
20
|
+
attributes: {
|
|
21
|
+
group: 'paint',
|
|
22
|
+
state: 'active',
|
|
23
|
+
description: 'Use on bold blue accent backgrounds.'
|
|
24
|
+
}
|
|
16
25
|
}
|
|
17
26
|
},
|
|
18
27
|
red: {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
28
|
+
'[default]': {
|
|
29
|
+
attributes: {
|
|
30
|
+
group: 'paint',
|
|
31
|
+
state: 'active',
|
|
32
|
+
description: 'Use for red text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
bolder: {
|
|
36
|
+
attributes: {
|
|
37
|
+
group: 'paint',
|
|
38
|
+
state: 'active',
|
|
39
|
+
description: 'Use on bold red accent backgrounds.'
|
|
40
|
+
}
|
|
23
41
|
}
|
|
24
42
|
},
|
|
25
43
|
orange: {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
44
|
+
'[default]': {
|
|
45
|
+
attributes: {
|
|
46
|
+
group: 'paint',
|
|
47
|
+
state: 'active',
|
|
48
|
+
description: 'Use for orange text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
bolder: {
|
|
52
|
+
attributes: {
|
|
53
|
+
group: 'paint',
|
|
54
|
+
state: 'active',
|
|
55
|
+
description: 'Use on bold orange accent backgrounds.'
|
|
56
|
+
}
|
|
30
57
|
}
|
|
31
58
|
},
|
|
32
59
|
yellow: {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
60
|
+
'[default]': {
|
|
61
|
+
attributes: {
|
|
62
|
+
group: 'paint',
|
|
63
|
+
state: 'active',
|
|
64
|
+
description: 'Use for yellow text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
bolder: {
|
|
68
|
+
attributes: {
|
|
69
|
+
group: 'paint',
|
|
70
|
+
state: 'active',
|
|
71
|
+
description: 'Use on bold yellow accent backgrounds.'
|
|
72
|
+
}
|
|
37
73
|
}
|
|
38
74
|
},
|
|
39
75
|
green: {
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
76
|
+
'[default]': {
|
|
77
|
+
attributes: {
|
|
78
|
+
group: 'paint',
|
|
79
|
+
state: 'active',
|
|
80
|
+
description: 'Use for green text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
bolder: {
|
|
84
|
+
attributes: {
|
|
85
|
+
group: 'paint',
|
|
86
|
+
state: 'active',
|
|
87
|
+
description: 'Use on bold green accent backgrounds.'
|
|
88
|
+
}
|
|
44
89
|
}
|
|
45
90
|
},
|
|
46
91
|
purple: {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
92
|
+
'[default]': {
|
|
93
|
+
attributes: {
|
|
94
|
+
group: 'paint',
|
|
95
|
+
state: 'active',
|
|
96
|
+
description: 'Use for purple text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
bolder: {
|
|
100
|
+
attributes: {
|
|
101
|
+
group: 'paint',
|
|
102
|
+
state: 'active',
|
|
103
|
+
description: 'Use on bold purple accent backgrounds.'
|
|
104
|
+
}
|
|
51
105
|
}
|
|
52
106
|
},
|
|
53
107
|
teal: {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
108
|
+
'[default]': {
|
|
109
|
+
attributes: {
|
|
110
|
+
group: 'paint',
|
|
111
|
+
state: 'active',
|
|
112
|
+
description: 'Use for teal text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
bolder: {
|
|
116
|
+
attributes: {
|
|
117
|
+
group: 'paint',
|
|
118
|
+
state: 'active',
|
|
119
|
+
description: 'Use on bold teal accent backgrounds.'
|
|
120
|
+
}
|
|
58
121
|
}
|
|
59
122
|
},
|
|
60
123
|
magenta: {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
124
|
+
'[default]': {
|
|
125
|
+
attributes: {
|
|
126
|
+
group: 'paint',
|
|
127
|
+
state: 'active',
|
|
128
|
+
description: 'Use for megenta text on non-bold backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
bolder: {
|
|
132
|
+
attributes: {
|
|
133
|
+
group: 'paint',
|
|
134
|
+
state: 'active',
|
|
135
|
+
description: 'Use on bold magenta accent backgrounds.'
|
|
136
|
+
}
|
|
65
137
|
}
|
|
66
138
|
}
|
|
67
139
|
}
|
|
@@ -132,14 +204,14 @@ var color = {
|
|
|
132
204
|
attributes: {
|
|
133
205
|
group: 'paint',
|
|
134
206
|
state: 'active',
|
|
135
|
-
description: 'Use for blue borders on non-bold backgrounds when there is no meaning tied to the color
|
|
207
|
+
description: 'Use for blue borders on non-bold backgrounds when there is no meaning tied to the color.'
|
|
136
208
|
}
|
|
137
209
|
},
|
|
138
210
|
red: {
|
|
139
211
|
attributes: {
|
|
140
212
|
group: 'paint',
|
|
141
213
|
state: 'active',
|
|
142
|
-
description: 'Use for red borders on non-bold backgrounds when there is no meaning tied to the color
|
|
214
|
+
description: 'Use for red borders on non-bold backgrounds when there is no meaning tied to the color.'
|
|
143
215
|
}
|
|
144
216
|
},
|
|
145
217
|
orange: {
|
|
@@ -189,131 +261,243 @@ var color = {
|
|
|
189
261
|
background: {
|
|
190
262
|
accent: {
|
|
191
263
|
blue: {
|
|
192
|
-
|
|
264
|
+
subtlest: {
|
|
265
|
+
attributes: {
|
|
266
|
+
group: 'paint',
|
|
267
|
+
state: 'active',
|
|
268
|
+
description: 'Use for blue backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
269
|
+
}
|
|
270
|
+
},
|
|
271
|
+
subtler: {
|
|
193
272
|
attributes: {
|
|
194
273
|
group: 'paint',
|
|
195
274
|
state: 'active',
|
|
196
275
|
description: 'Use for blue backgrounds when there is no meaning tied to the color, such as coloured tags.'
|
|
197
276
|
}
|
|
198
277
|
},
|
|
199
|
-
|
|
278
|
+
subtle: {
|
|
200
279
|
attributes: {
|
|
201
280
|
group: 'paint',
|
|
202
281
|
state: 'active',
|
|
203
282
|
description: 'Use for vibrant blue backgrounds when there is no meaning tied to the color, such as coloured tags.'
|
|
204
283
|
}
|
|
284
|
+
},
|
|
285
|
+
bolder: {
|
|
286
|
+
attributes: {
|
|
287
|
+
group: 'paint',
|
|
288
|
+
state: 'active',
|
|
289
|
+
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.'
|
|
290
|
+
}
|
|
205
291
|
}
|
|
206
292
|
},
|
|
207
293
|
red: {
|
|
208
|
-
|
|
294
|
+
subtlest: {
|
|
295
|
+
attributes: {
|
|
296
|
+
group: 'paint',
|
|
297
|
+
state: 'active',
|
|
298
|
+
description: 'Use for red backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
subtler: {
|
|
209
302
|
attributes: {
|
|
210
303
|
group: 'paint',
|
|
211
304
|
state: 'active',
|
|
212
305
|
description: 'Use for red backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
213
306
|
}
|
|
214
307
|
},
|
|
215
|
-
|
|
308
|
+
subtle: {
|
|
216
309
|
attributes: {
|
|
217
310
|
group: 'paint',
|
|
218
311
|
state: 'active',
|
|
219
312
|
description: 'Use for vibrant red backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
220
313
|
}
|
|
314
|
+
},
|
|
315
|
+
bolder: {
|
|
316
|
+
attributes: {
|
|
317
|
+
group: 'paint',
|
|
318
|
+
state: 'active',
|
|
319
|
+
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.'
|
|
320
|
+
}
|
|
221
321
|
}
|
|
222
322
|
},
|
|
223
323
|
orange: {
|
|
224
|
-
|
|
324
|
+
subtlest: {
|
|
325
|
+
attributes: {
|
|
326
|
+
group: 'paint',
|
|
327
|
+
state: 'active',
|
|
328
|
+
description: 'Use for orange backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
subtler: {
|
|
225
332
|
attributes: {
|
|
226
333
|
group: 'paint',
|
|
227
334
|
state: 'active',
|
|
228
335
|
description: 'Use for orange backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
229
336
|
}
|
|
230
337
|
},
|
|
231
|
-
|
|
338
|
+
subtle: {
|
|
232
339
|
attributes: {
|
|
233
340
|
group: 'paint',
|
|
234
341
|
state: 'active',
|
|
235
342
|
description: 'Use for vibrant orange backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
236
343
|
}
|
|
344
|
+
},
|
|
345
|
+
bolder: {
|
|
346
|
+
attributes: {
|
|
347
|
+
group: 'paint',
|
|
348
|
+
state: 'active',
|
|
349
|
+
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.'
|
|
350
|
+
}
|
|
237
351
|
}
|
|
238
352
|
},
|
|
239
353
|
yellow: {
|
|
240
|
-
|
|
354
|
+
subtlest: {
|
|
355
|
+
attributes: {
|
|
356
|
+
group: 'paint',
|
|
357
|
+
state: 'active',
|
|
358
|
+
description: 'Use for yellow backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
359
|
+
}
|
|
360
|
+
},
|
|
361
|
+
subtler: {
|
|
241
362
|
attributes: {
|
|
242
363
|
group: 'paint',
|
|
243
364
|
state: 'active',
|
|
244
365
|
description: 'Use for yellow backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
245
366
|
}
|
|
246
367
|
},
|
|
247
|
-
|
|
368
|
+
subtle: {
|
|
248
369
|
attributes: {
|
|
249
370
|
group: 'paint',
|
|
250
371
|
state: 'active',
|
|
251
372
|
description: 'Use for vibrant yellow backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
252
373
|
}
|
|
374
|
+
},
|
|
375
|
+
bolder: {
|
|
376
|
+
attributes: {
|
|
377
|
+
group: 'paint',
|
|
378
|
+
state: 'active',
|
|
379
|
+
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.'
|
|
380
|
+
}
|
|
253
381
|
}
|
|
254
382
|
},
|
|
255
383
|
green: {
|
|
256
|
-
|
|
384
|
+
subtlest: {
|
|
385
|
+
attributes: {
|
|
386
|
+
group: 'paint',
|
|
387
|
+
state: 'active',
|
|
388
|
+
description: 'Use for green backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
389
|
+
}
|
|
390
|
+
},
|
|
391
|
+
subtler: {
|
|
257
392
|
attributes: {
|
|
258
393
|
group: 'paint',
|
|
259
394
|
state: 'active',
|
|
260
395
|
description: 'Use for green backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
261
396
|
}
|
|
262
397
|
},
|
|
263
|
-
|
|
398
|
+
subtle: {
|
|
264
399
|
attributes: {
|
|
265
400
|
group: 'paint',
|
|
266
401
|
state: 'active',
|
|
267
402
|
description: 'Use for vibrant green backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
268
403
|
}
|
|
404
|
+
},
|
|
405
|
+
bolder: {
|
|
406
|
+
attributes: {
|
|
407
|
+
group: 'paint',
|
|
408
|
+
state: 'active',
|
|
409
|
+
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.'
|
|
410
|
+
}
|
|
269
411
|
}
|
|
270
412
|
},
|
|
271
413
|
teal: {
|
|
272
|
-
|
|
414
|
+
subtlest: {
|
|
415
|
+
attributes: {
|
|
416
|
+
group: 'paint',
|
|
417
|
+
state: 'active',
|
|
418
|
+
description: 'Use for teal backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
subtler: {
|
|
273
422
|
attributes: {
|
|
274
423
|
group: 'paint',
|
|
275
424
|
state: 'active',
|
|
276
425
|
description: 'Use for teal backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
277
426
|
}
|
|
278
427
|
},
|
|
279
|
-
|
|
428
|
+
subtle: {
|
|
280
429
|
attributes: {
|
|
281
430
|
group: 'paint',
|
|
282
431
|
state: 'active',
|
|
283
432
|
description: 'Use for vibrant teal backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
284
433
|
}
|
|
434
|
+
},
|
|
435
|
+
bolder: {
|
|
436
|
+
attributes: {
|
|
437
|
+
group: 'paint',
|
|
438
|
+
state: 'active',
|
|
439
|
+
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.'
|
|
440
|
+
}
|
|
285
441
|
}
|
|
286
442
|
},
|
|
287
443
|
purple: {
|
|
288
|
-
|
|
444
|
+
subtlest: {
|
|
445
|
+
attributes: {
|
|
446
|
+
group: 'paint',
|
|
447
|
+
state: 'active',
|
|
448
|
+
description: 'Use for purple backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
subtler: {
|
|
289
452
|
attributes: {
|
|
290
453
|
group: 'paint',
|
|
291
454
|
state: 'active',
|
|
292
455
|
description: 'Use for purple backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
293
456
|
}
|
|
294
457
|
},
|
|
295
|
-
|
|
458
|
+
subtle: {
|
|
296
459
|
attributes: {
|
|
297
460
|
group: 'paint',
|
|
298
461
|
state: 'active',
|
|
299
462
|
description: 'Use for vibrant purple backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
300
463
|
}
|
|
464
|
+
},
|
|
465
|
+
bolder: {
|
|
466
|
+
attributes: {
|
|
467
|
+
group: 'paint',
|
|
468
|
+
state: 'active',
|
|
469
|
+
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.'
|
|
470
|
+
}
|
|
301
471
|
}
|
|
302
472
|
},
|
|
303
473
|
magenta: {
|
|
304
|
-
|
|
474
|
+
subtlest: {
|
|
475
|
+
attributes: {
|
|
476
|
+
group: 'paint',
|
|
477
|
+
state: 'active',
|
|
478
|
+
description: 'Use for magenta backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
479
|
+
}
|
|
480
|
+
},
|
|
481
|
+
subtler: {
|
|
305
482
|
attributes: {
|
|
306
483
|
group: 'paint',
|
|
307
484
|
state: 'active',
|
|
308
485
|
description: 'Use for magenta backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
309
486
|
}
|
|
310
487
|
},
|
|
311
|
-
|
|
488
|
+
subtle: {
|
|
312
489
|
attributes: {
|
|
313
490
|
group: 'paint',
|
|
314
491
|
state: 'active',
|
|
315
492
|
description: 'Use for vibrant magenta backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
316
493
|
}
|
|
494
|
+
},
|
|
495
|
+
bolder: {
|
|
496
|
+
attributes: {
|
|
497
|
+
group: 'paint',
|
|
498
|
+
state: 'active',
|
|
499
|
+
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.'
|
|
500
|
+
}
|
|
317
501
|
}
|
|
318
502
|
}
|
|
319
503
|
}
|
|
@@ -7,10 +7,26 @@ exports.default = void 0;
|
|
|
7
7
|
var color = {
|
|
8
8
|
color: {
|
|
9
9
|
blanket: {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
'[default]': {
|
|
11
|
+
attributes: {
|
|
12
|
+
group: 'paint',
|
|
13
|
+
state: 'active',
|
|
14
|
+
description: 'Use for the screen overlay that appears with modal dialogs'
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
selected: {
|
|
18
|
+
attributes: {
|
|
19
|
+
group: 'paint',
|
|
20
|
+
state: 'active',
|
|
21
|
+
description: "Use as an overlay to communicate selected states when a simple background color change isn't possible, such as in Editor block elements"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
danger: {
|
|
25
|
+
attributes: {
|
|
26
|
+
group: 'paint',
|
|
27
|
+
state: 'active',
|
|
28
|
+
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"
|
|
29
|
+
}
|
|
14
30
|
}
|
|
15
31
|
},
|
|
16
32
|
background: {
|