@atlaskit/tokens 0.10.4 → 0.10.7
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/.eslintrc.js +35 -0
- package/CHANGELOG.md +39 -0
- package/README.md +1 -1
- package/css/atlassian-dark.css +9 -1
- package/css/atlassian-light.css +9 -1
- package/dist/cjs/artifacts/rename-mapping.js +10 -10
- package/dist/cjs/artifacts/token-default-values.js +9 -1
- package/dist/cjs/artifacts/token-names.js +9 -1
- package/dist/cjs/artifacts/tokens-raw/atlassian-dark.js +211 -25
- package/dist/cjs/artifacts/tokens-raw/atlassian-light.js +211 -25
- package/dist/cjs/babel-plugin/plugin.js +57 -53
- package/dist/cjs/get-token.js +1 -1
- package/dist/cjs/tokens/atlassian-dark/color/accent.js +28 -0
- package/dist/cjs/tokens/atlassian-light/color/accent.js +28 -0
- package/dist/cjs/tokens/default/color/accent.js +70 -2
- package/dist/cjs/tokens/default/deprecated/deprecated.js +19 -10
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/artifacts/rename-mapping.js +10 -10
- package/dist/es2019/artifacts/token-default-values.js +9 -1
- package/dist/es2019/artifacts/token-names.js +9 -1
- package/dist/es2019/artifacts/tokens-raw/atlassian-dark.js +211 -25
- package/dist/es2019/artifacts/tokens-raw/atlassian-light.js +211 -25
- package/dist/es2019/babel-plugin/plugin.js +50 -45
- package/dist/es2019/get-token.js +1 -1
- package/dist/es2019/tokens/atlassian-dark/color/accent.js +28 -0
- package/dist/es2019/tokens/atlassian-light/color/accent.js +28 -0
- package/dist/es2019/tokens/default/color/accent.js +70 -2
- package/dist/es2019/tokens/default/deprecated/deprecated.js +19 -10
- package/dist/es2019/version.json +1 -1
- package/dist/esm/artifacts/rename-mapping.js +10 -10
- package/dist/esm/artifacts/token-default-values.js +9 -1
- package/dist/esm/artifacts/token-names.js +9 -1
- package/dist/esm/artifacts/tokens-raw/atlassian-dark.js +211 -25
- package/dist/esm/artifacts/tokens-raw/atlassian-light.js +211 -25
- package/dist/esm/babel-plugin/plugin.js +57 -53
- package/dist/esm/get-token.js +1 -1
- package/dist/esm/tokens/atlassian-dark/color/accent.js +28 -0
- package/dist/esm/tokens/atlassian-light/color/accent.js +28 -0
- package/dist/esm/tokens/default/color/accent.js +70 -2
- package/dist/esm/tokens/default/deprecated/deprecated.js +19 -10
- package/dist/esm/version.json +1 -1
- package/dist/types/artifacts/rename-mapping.d.ts +1 -1
- package/dist/types/artifacts/token-default-values.d.ts +9 -1
- package/dist/types/artifacts/token-names.d.ts +17 -1
- package/dist/types/artifacts/tokens-raw/atlassian-dark.d.ts +1 -28
- package/dist/types/artifacts/tokens-raw/atlassian-light.d.ts +1 -28
- package/dist/types/artifacts/types-internal.d.ts +2 -2
- package/dist/types/artifacts/types.d.ts +2 -2
- package/dist/types/babel-plugin/plugin.d.ts +5 -5
- package/dist/types/types.d.ts +12 -0
- package/package.json +4 -1
|
@@ -71,6 +71,14 @@ var color = {
|
|
|
71
71
|
bolder: {
|
|
72
72
|
value: 'M900'
|
|
73
73
|
}
|
|
74
|
+
},
|
|
75
|
+
gray: {
|
|
76
|
+
'[default]': {
|
|
77
|
+
value: 'N800'
|
|
78
|
+
},
|
|
79
|
+
bolder: {
|
|
80
|
+
value: 'N1000'
|
|
81
|
+
}
|
|
74
82
|
}
|
|
75
83
|
}
|
|
76
84
|
},
|
|
@@ -99,6 +107,9 @@ var color = {
|
|
|
99
107
|
},
|
|
100
108
|
magenta: {
|
|
101
109
|
value: 'M600'
|
|
110
|
+
},
|
|
111
|
+
gray: {
|
|
112
|
+
value: 'N600'
|
|
102
113
|
}
|
|
103
114
|
}
|
|
104
115
|
},
|
|
@@ -127,6 +138,9 @@ var color = {
|
|
|
127
138
|
},
|
|
128
139
|
magenta: {
|
|
129
140
|
value: 'M600'
|
|
141
|
+
},
|
|
142
|
+
gray: {
|
|
143
|
+
value: 'N600'
|
|
130
144
|
}
|
|
131
145
|
}
|
|
132
146
|
},
|
|
@@ -243,6 +257,20 @@ var color = {
|
|
|
243
257
|
bolder: {
|
|
244
258
|
value: 'M700'
|
|
245
259
|
}
|
|
260
|
+
},
|
|
261
|
+
gray: {
|
|
262
|
+
subtlest: {
|
|
263
|
+
value: 'N200'
|
|
264
|
+
},
|
|
265
|
+
subtler: {
|
|
266
|
+
value: 'N300'
|
|
267
|
+
},
|
|
268
|
+
subtle: {
|
|
269
|
+
value: 'N500'
|
|
270
|
+
},
|
|
271
|
+
bolder: {
|
|
272
|
+
value: 'N700'
|
|
273
|
+
}
|
|
246
274
|
}
|
|
247
275
|
}
|
|
248
276
|
}
|
|
@@ -151,6 +151,24 @@ var color = {
|
|
|
151
151
|
description: 'Use on bold magenta accent backgrounds.'
|
|
152
152
|
}
|
|
153
153
|
}
|
|
154
|
+
},
|
|
155
|
+
gray: {
|
|
156
|
+
'[default]': {
|
|
157
|
+
attributes: {
|
|
158
|
+
group: 'paint',
|
|
159
|
+
state: 'active',
|
|
160
|
+
introduced: '0.10.5',
|
|
161
|
+
description: 'Use for text on non-bold gray accent backgrounds, such as colored tags.'
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
bolder: {
|
|
165
|
+
attributes: {
|
|
166
|
+
group: 'paint',
|
|
167
|
+
state: 'active',
|
|
168
|
+
introduced: '0.10.5',
|
|
169
|
+
description: 'Use for text and icons on gray subtle accent backgrounds.'
|
|
170
|
+
}
|
|
171
|
+
}
|
|
154
172
|
}
|
|
155
173
|
}
|
|
156
174
|
},
|
|
@@ -219,6 +237,14 @@ var color = {
|
|
|
219
237
|
introduced: '0.6.0',
|
|
220
238
|
description: 'Use for magenta icons on non-bold backgrounds when there is no meaning tied to the color, such as file type icons.'
|
|
221
239
|
}
|
|
240
|
+
},
|
|
241
|
+
gray: {
|
|
242
|
+
attributes: {
|
|
243
|
+
group: 'paint',
|
|
244
|
+
state: 'active',
|
|
245
|
+
introduced: '0.10.5',
|
|
246
|
+
description: 'Use for icons on non-bold gray accent backgrounds, such as file type icons.'
|
|
247
|
+
}
|
|
222
248
|
}
|
|
223
249
|
}
|
|
224
250
|
},
|
|
@@ -287,6 +313,14 @@ var color = {
|
|
|
287
313
|
introduced: '0.6.0',
|
|
288
314
|
description: 'Use for magenta borders on non-bold backgrounds when there is no meaning tied to the color.'
|
|
289
315
|
}
|
|
316
|
+
},
|
|
317
|
+
gray: {
|
|
318
|
+
attributes: {
|
|
319
|
+
group: 'paint',
|
|
320
|
+
state: 'active',
|
|
321
|
+
introduced: '0.10.5',
|
|
322
|
+
description: 'Use for borders on non-bold gray accent backgrounds.'
|
|
323
|
+
}
|
|
290
324
|
}
|
|
291
325
|
}
|
|
292
326
|
},
|
|
@@ -306,7 +340,7 @@ var color = {
|
|
|
306
340
|
group: 'paint',
|
|
307
341
|
state: 'active',
|
|
308
342
|
introduced: '0.7.0',
|
|
309
|
-
description: 'Use for blue backgrounds when there is no meaning tied to the color, such as
|
|
343
|
+
description: 'Use for blue backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
310
344
|
}
|
|
311
345
|
},
|
|
312
346
|
subtle: {
|
|
@@ -314,7 +348,7 @@ var color = {
|
|
|
314
348
|
group: 'paint',
|
|
315
349
|
state: 'active',
|
|
316
350
|
introduced: '0.7.0',
|
|
317
|
-
description: 'Use for vibrant blue backgrounds when there is no meaning tied to the color, such as
|
|
351
|
+
description: 'Use for vibrant blue backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
318
352
|
}
|
|
319
353
|
},
|
|
320
354
|
bolder: {
|
|
@@ -563,6 +597,40 @@ var color = {
|
|
|
563
597
|
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.'
|
|
564
598
|
}
|
|
565
599
|
}
|
|
600
|
+
},
|
|
601
|
+
gray: {
|
|
602
|
+
subtlest: {
|
|
603
|
+
attributes: {
|
|
604
|
+
group: 'paint',
|
|
605
|
+
state: 'active',
|
|
606
|
+
introduced: '0.7.0',
|
|
607
|
+
description: 'Use for gray backgrounds when there is no meaning tied to the color. Reserved for when you only want a hint of color.'
|
|
608
|
+
}
|
|
609
|
+
},
|
|
610
|
+
subtler: {
|
|
611
|
+
attributes: {
|
|
612
|
+
group: 'paint',
|
|
613
|
+
state: 'active',
|
|
614
|
+
introduced: '0.7.0',
|
|
615
|
+
description: 'Use for gray backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
616
|
+
}
|
|
617
|
+
},
|
|
618
|
+
subtle: {
|
|
619
|
+
attributes: {
|
|
620
|
+
group: 'paint',
|
|
621
|
+
state: 'active',
|
|
622
|
+
introduced: '0.7.0',
|
|
623
|
+
description: 'Use for vibrant gray backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
624
|
+
}
|
|
625
|
+
},
|
|
626
|
+
bolder: {
|
|
627
|
+
attributes: {
|
|
628
|
+
group: 'paint',
|
|
629
|
+
state: 'active',
|
|
630
|
+
introduced: '0.7.0',
|
|
631
|
+
description: 'Use for gray backgrounds when there is no meaning tied to the color, and the background needs to pass min 3:1 contrast requirements.'
|
|
632
|
+
}
|
|
633
|
+
}
|
|
566
634
|
}
|
|
567
635
|
}
|
|
568
636
|
}
|
|
@@ -162,7 +162,7 @@ var color = {
|
|
|
162
162
|
deprecated: '0.7.0',
|
|
163
163
|
deleted: '0.8.0',
|
|
164
164
|
replacement: 'color.background.accent.blue.subtler',
|
|
165
|
-
description: 'Use for blue backgrounds when there is no meaning tied to the color, such as
|
|
165
|
+
description: 'Use for blue backgrounds when there is no meaning tied to the color, such as colored tags.'
|
|
166
166
|
}
|
|
167
167
|
},
|
|
168
168
|
bold: {
|
|
@@ -362,9 +362,10 @@ var color = {
|
|
|
362
362
|
'[default]': {
|
|
363
363
|
attributes: {
|
|
364
364
|
group: 'paint',
|
|
365
|
-
state: '
|
|
365
|
+
state: 'deleted',
|
|
366
366
|
introduced: '0.6.0',
|
|
367
367
|
deprecated: '0.6.2',
|
|
368
|
+
deleted: '0.10.5',
|
|
368
369
|
replacement: 'color.background.selected.[default].[default]',
|
|
369
370
|
description: 'Use for the background of elements used to reinforce our brand.'
|
|
370
371
|
}
|
|
@@ -372,9 +373,10 @@ var color = {
|
|
|
372
373
|
hovered: {
|
|
373
374
|
attributes: {
|
|
374
375
|
group: 'paint',
|
|
375
|
-
state: '
|
|
376
|
+
state: 'deleted',
|
|
376
377
|
introduced: '0.6.0',
|
|
377
378
|
deprecated: '0.6.2',
|
|
379
|
+
deleted: '0.10.5',
|
|
378
380
|
replacement: 'color.background.selected.[default].hovered',
|
|
379
381
|
description: 'Hovered state for color.background.brand'
|
|
380
382
|
}
|
|
@@ -382,9 +384,10 @@ var color = {
|
|
|
382
384
|
pressed: {
|
|
383
385
|
attributes: {
|
|
384
386
|
group: 'paint',
|
|
385
|
-
state: '
|
|
387
|
+
state: 'deleted',
|
|
386
388
|
introduced: '0.6.0',
|
|
387
389
|
deprecated: '0.6.2',
|
|
390
|
+
deleted: '0.10.5',
|
|
388
391
|
replacement: 'color.background.selected.[default].pressed',
|
|
389
392
|
description: 'Pressed state for color.background.brand'
|
|
390
393
|
}
|
|
@@ -627,9 +630,10 @@ var color = {
|
|
|
627
630
|
'[default]': {
|
|
628
631
|
attributes: {
|
|
629
632
|
group: 'paint',
|
|
630
|
-
state: '
|
|
633
|
+
state: 'deleted',
|
|
631
634
|
introduced: '0.1.0',
|
|
632
635
|
deprecated: '0.8.3',
|
|
636
|
+
deleted: '0.10.5',
|
|
633
637
|
replacement: 'color.background.inverse.subtle.[default]',
|
|
634
638
|
description: 'Use for backgrounds of elements on a bold background, such as in the buttons on spotlight cards.'
|
|
635
639
|
}
|
|
@@ -650,9 +654,10 @@ var color = {
|
|
|
650
654
|
resting: {
|
|
651
655
|
attributes: {
|
|
652
656
|
group: 'paint',
|
|
653
|
-
state: '
|
|
657
|
+
state: 'deleted',
|
|
654
658
|
introduced: '0.1.0',
|
|
655
659
|
deprecated: '0.6.0',
|
|
660
|
+
deleted: '0.10.5',
|
|
656
661
|
replacement: 'color.background.selected.[default].[default]',
|
|
657
662
|
description: 'Use for backgrounds of elements in a selected state'
|
|
658
663
|
}
|
|
@@ -660,9 +665,10 @@ var color = {
|
|
|
660
665
|
hover: {
|
|
661
666
|
attributes: {
|
|
662
667
|
group: 'paint',
|
|
663
|
-
state: '
|
|
668
|
+
state: 'deleted',
|
|
664
669
|
introduced: '0.1.0',
|
|
665
670
|
deprecated: '0.6.0',
|
|
671
|
+
deleted: '0.10.5',
|
|
666
672
|
replacement: 'color.background.selected.[default].hovered',
|
|
667
673
|
description: 'Hover state for color.background.selected'
|
|
668
674
|
}
|
|
@@ -696,9 +702,10 @@ var color = {
|
|
|
696
702
|
hover: {
|
|
697
703
|
attributes: {
|
|
698
704
|
group: 'paint',
|
|
699
|
-
state: '
|
|
705
|
+
state: 'deleted',
|
|
700
706
|
introduced: '0.0.15',
|
|
701
707
|
deprecated: '0.6.0',
|
|
708
|
+
deleted: '0.10.5',
|
|
702
709
|
replacement: 'color.background.selected.[default].hovered',
|
|
703
710
|
description: 'Hover state for background.subtleBrand'
|
|
704
711
|
}
|
|
@@ -706,9 +713,10 @@ var color = {
|
|
|
706
713
|
pressed: {
|
|
707
714
|
attributes: {
|
|
708
715
|
group: 'paint',
|
|
709
|
-
state: '
|
|
716
|
+
state: 'deleted',
|
|
710
717
|
introduced: '0.0.15',
|
|
711
718
|
deprecated: '0.6.0',
|
|
719
|
+
deleted: '0.10.5',
|
|
712
720
|
replacement: 'color.background.selected.[default].pressed',
|
|
713
721
|
description: 'Pressed state for background.subtleBrand'
|
|
714
722
|
}
|
|
@@ -716,9 +724,10 @@ var color = {
|
|
|
716
724
|
resting: {
|
|
717
725
|
attributes: {
|
|
718
726
|
group: 'paint',
|
|
719
|
-
state: '
|
|
727
|
+
state: 'deleted',
|
|
720
728
|
introduced: '0.0.15',
|
|
721
729
|
deprecated: '0.6.0',
|
|
730
|
+
deleted: '0.10.5',
|
|
722
731
|
replacement: 'color.background.selected.[default].[default]',
|
|
723
732
|
description: 'Use for subdued backgrounds of UI elements like information section messages and in progress lozenges.'
|
|
724
733
|
}
|
package/dist/cjs/version.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* These changes will then be picked up by our tooling which will attempt to
|
|
13
13
|
* migrate as many of these renames as possible.
|
|
14
14
|
*
|
|
15
|
-
* @codegen <<SignedSource::
|
|
15
|
+
* @codegen <<SignedSource::51fbaf5510a3fead6a2844d4df866a77>>
|
|
16
16
|
* @codegenCommand yarn build tokens
|
|
17
17
|
*/
|
|
18
18
|
const renameMapper = [{
|
|
@@ -117,27 +117,27 @@ const renameMapper = [{
|
|
|
117
117
|
"replacement": "color.background.accent.magenta.subtle"
|
|
118
118
|
}, {
|
|
119
119
|
"path": "color.background.inverse.[default]",
|
|
120
|
-
"state": "
|
|
120
|
+
"state": "deleted",
|
|
121
121
|
"replacement": "color.background.inverse.subtle.[default]"
|
|
122
122
|
}, {
|
|
123
123
|
"path": "color.background.brand.[default].[default]",
|
|
124
|
-
"state": "
|
|
124
|
+
"state": "deleted",
|
|
125
125
|
"replacement": "color.background.selected.[default].[default]"
|
|
126
126
|
}, {
|
|
127
127
|
"path": "color.background.brand.[default].hovered",
|
|
128
|
-
"state": "
|
|
128
|
+
"state": "deleted",
|
|
129
129
|
"replacement": "color.background.selected.[default].hovered"
|
|
130
130
|
}, {
|
|
131
131
|
"path": "color.background.brand.[default].pressed",
|
|
132
|
-
"state": "
|
|
132
|
+
"state": "deleted",
|
|
133
133
|
"replacement": "color.background.selected.[default].pressed"
|
|
134
134
|
}, {
|
|
135
135
|
"path": "color.background.selected.resting",
|
|
136
|
-
"state": "
|
|
136
|
+
"state": "deleted",
|
|
137
137
|
"replacement": "color.background.selected.[default].[default]"
|
|
138
138
|
}, {
|
|
139
139
|
"path": "color.background.selected.hover",
|
|
140
|
-
"state": "
|
|
140
|
+
"state": "deleted",
|
|
141
141
|
"replacement": "color.background.selected.[default].hovered"
|
|
142
142
|
}, {
|
|
143
143
|
"path": "color.background.blanket",
|
|
@@ -237,15 +237,15 @@ const renameMapper = [{
|
|
|
237
237
|
"replacement": "color.background.input.[default]"
|
|
238
238
|
}, {
|
|
239
239
|
"path": "color.background.subtleBrand.hover",
|
|
240
|
-
"state": "
|
|
240
|
+
"state": "deleted",
|
|
241
241
|
"replacement": "color.background.selected.[default].hovered"
|
|
242
242
|
}, {
|
|
243
243
|
"path": "color.background.subtleBrand.pressed",
|
|
244
|
-
"state": "
|
|
244
|
+
"state": "deleted",
|
|
245
245
|
"replacement": "color.background.selected.[default].pressed"
|
|
246
246
|
}, {
|
|
247
247
|
"path": "color.background.subtleBrand.resting",
|
|
248
|
-
"state": "
|
|
248
|
+
"state": "deleted",
|
|
249
249
|
"replacement": "color.background.selected.[default].[default]"
|
|
250
250
|
}, {
|
|
251
251
|
"path": "color.background.subtleDanger.hover",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Token names mapped to their value in the default Atlassian theme ('light')
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::a819b31f00d394be417445acd67bd024>>
|
|
7
7
|
* @codegenCommand yarn build tokens
|
|
8
8
|
*/
|
|
9
9
|
const defaultTokenValues = {
|
|
@@ -23,6 +23,8 @@ const defaultTokenValues = {
|
|
|
23
23
|
'color.text.accent.teal.bolder': '#1D474C',
|
|
24
24
|
'color.text.accent.magenta': '#943D73',
|
|
25
25
|
'color.text.accent.magenta.bolder': '#50253F',
|
|
26
|
+
'color.text.accent.gray': '#44546F',
|
|
27
|
+
'color.text.accent.gray.bolder': '#172B4D',
|
|
26
28
|
'color.text': '#172B4D',
|
|
27
29
|
'color.text.subtle': '#44546F',
|
|
28
30
|
'color.text.subtlest': '#626F86',
|
|
@@ -51,6 +53,7 @@ const defaultTokenValues = {
|
|
|
51
53
|
'color.icon.accent.purple': '#8270DB',
|
|
52
54
|
'color.icon.accent.teal': '#1D9AAA',
|
|
53
55
|
'color.icon.accent.magenta': '#CD519D',
|
|
56
|
+
'color.icon.accent.gray': '#758195',
|
|
54
57
|
'color.icon': '#44546F',
|
|
55
58
|
'color.icon.subtle': '#626F86',
|
|
56
59
|
'color.icon.inverse': '#FFFFFF',
|
|
@@ -71,6 +74,7 @@ const defaultTokenValues = {
|
|
|
71
74
|
'color.border.accent.purple': '#8270DB',
|
|
72
75
|
'color.border.accent.teal': '#1D9AAA',
|
|
73
76
|
'color.border.accent.magenta': '#CD519D',
|
|
77
|
+
'color.border.accent.gray': '#758195',
|
|
74
78
|
'color.border': '#091E4224',
|
|
75
79
|
'color.border.inverse': '#FFFFFF',
|
|
76
80
|
'color.border.focused': '#388BFF',
|
|
@@ -133,6 +137,10 @@ const defaultTokenValues = {
|
|
|
133
137
|
'color.background.accent.magenta.bolder': '#AE4787',
|
|
134
138
|
'color.background.accent.magenta': '#FDD0EC',
|
|
135
139
|
'color.background.accent.magenta.bold': '#E774BB',
|
|
140
|
+
'color.background.accent.gray.subtlest': '#F1F2F4',
|
|
141
|
+
'color.background.accent.gray.subtler': '#DCDFE4',
|
|
142
|
+
'color.background.accent.gray.subtle': '#8993A5',
|
|
143
|
+
'color.background.accent.gray.bolder': '#626F86',
|
|
136
144
|
'color.background.disabled': '#091E420F',
|
|
137
145
|
'color.background.inverse.subtle': '#00000029',
|
|
138
146
|
'color.background.inverse.subtle.hovered': '#0000003D',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::b251fc1793ba7f689b4c3707310c1556>>
|
|
4
4
|
* @codegenCommand yarn build tokens
|
|
5
5
|
*/
|
|
6
6
|
const tokens = {
|
|
@@ -20,6 +20,8 @@ const tokens = {
|
|
|
20
20
|
'color.text.accent.teal.bolder': '--ds-text-accent-teal-bolder',
|
|
21
21
|
'color.text.accent.magenta': '--ds-text-accent-magenta',
|
|
22
22
|
'color.text.accent.magenta.bolder': '--ds-text-accent-magenta-bolder',
|
|
23
|
+
'color.text.accent.gray': '--ds-text-accent-gray',
|
|
24
|
+
'color.text.accent.gray.bolder': '--ds-text-accent-gray-bolder',
|
|
23
25
|
'color.text': '--ds-text',
|
|
24
26
|
'color.text.subtle': '--ds-text-subtle',
|
|
25
27
|
'color.text.subtlest': '--ds-text-subtlest',
|
|
@@ -48,6 +50,7 @@ const tokens = {
|
|
|
48
50
|
'color.icon.accent.purple': '--ds-icon-accent-purple',
|
|
49
51
|
'color.icon.accent.teal': '--ds-icon-accent-teal',
|
|
50
52
|
'color.icon.accent.magenta': '--ds-icon-accent-magenta',
|
|
53
|
+
'color.icon.accent.gray': '--ds-icon-accent-gray',
|
|
51
54
|
'color.icon': '--ds-icon',
|
|
52
55
|
'color.icon.subtle': '--ds-icon-subtle',
|
|
53
56
|
'color.icon.inverse': '--ds-icon-inverse',
|
|
@@ -68,6 +71,7 @@ const tokens = {
|
|
|
68
71
|
'color.border.accent.purple': '--ds-border-accent-purple',
|
|
69
72
|
'color.border.accent.teal': '--ds-border-accent-teal',
|
|
70
73
|
'color.border.accent.magenta': '--ds-border-accent-magenta',
|
|
74
|
+
'color.border.accent.gray': '--ds-border-accent-gray',
|
|
71
75
|
'color.border': '--ds-border',
|
|
72
76
|
'color.border.inverse': '--ds-border-inverse',
|
|
73
77
|
'color.border.focused': '--ds-border-focused',
|
|
@@ -130,6 +134,10 @@ const tokens = {
|
|
|
130
134
|
'color.background.accent.magenta.bolder': '--ds-background-accent-magenta-bolder',
|
|
131
135
|
'color.background.accent.magenta': '--ds-background-accent-magenta',
|
|
132
136
|
'color.background.accent.magenta.bold': '--ds-background-accent-magenta-bold',
|
|
137
|
+
'color.background.accent.gray.subtlest': '--ds-background-accent-gray-subtlest',
|
|
138
|
+
'color.background.accent.gray.subtler': '--ds-background-accent-gray-subtler',
|
|
139
|
+
'color.background.accent.gray.subtle': '--ds-background-accent-gray-subtle',
|
|
140
|
+
'color.background.accent.gray.bolder': '--ds-background-accent-gray-bolder',
|
|
133
141
|
'color.background.disabled': '--ds-background-disabled',
|
|
134
142
|
'color.background.inverse.subtle': '--ds-background-inverse-subtle',
|
|
135
143
|
'color.background.inverse.subtle.hovered': '--ds-background-inverse-subtle-hovered',
|