@atlaskit/tokens 1.49.1 → 1.50.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (115) hide show
  1. package/CHANGELOG.md +1584 -1594
  2. package/README.md +14 -8
  3. package/codemods/css-to-design-tokens/lib/colors.tsx +47 -49
  4. package/codemods/css-to-design-tokens/lib/declaration.tsx +26 -26
  5. package/codemods/css-to-design-tokens/lib/legacy-colors.tsx +326 -326
  6. package/codemods/css-to-design-tokens/lib/meta.tsx +116 -122
  7. package/codemods/css-to-design-tokens/lib/tokens.tsx +28 -35
  8. package/codemods/css-to-design-tokens/lib/value.tsx +70 -72
  9. package/codemods/css-to-design-tokens/transform.tsx +68 -72
  10. package/codemods/hypermod.config.tsx +5 -5
  11. package/codemods/remove-fallbacks-color/transform.tsx +16 -18
  12. package/codemods/theme-to-design-tokens/transform.tsx +505 -588
  13. package/codemods/theme-to-design-tokens/utils/ast-meta.tsx +139 -147
  14. package/codemods/theme-to-design-tokens/utils/ast.tsx +23 -34
  15. package/codemods/theme-to-design-tokens/utils/color.tsx +25 -26
  16. package/codemods/theme-to-design-tokens/utils/css-utils.tsx +27 -30
  17. package/codemods/theme-to-design-tokens/utils/fuzzy-search.tsx +272 -290
  18. package/codemods/theme-to-design-tokens/utils/legacy-colors.tsx +224 -224
  19. package/codemods/theme-to-design-tokens/utils/named-colors.tsx +148 -148
  20. package/codemods/theme-to-design-tokens/utils/string-utils.tsx +10 -16
  21. package/codemods/utils/tokens.tsx +371 -371
  22. package/dist/cjs/artifacts/atlassian-dark-token-value-for-contrast-check.js +1 -1
  23. package/dist/cjs/artifacts/atlassian-light-token-value-for-contrast-check.js +1 -1
  24. package/dist/cjs/artifacts/generated-pairs.js +1 -1
  25. package/dist/cjs/artifacts/theme-import-map.js +1 -1
  26. package/dist/cjs/artifacts/themes/atlassian-typography-minor3.js +2 -2
  27. package/dist/cjs/artifacts/token-default-values.js +1 -1
  28. package/dist/cjs/artifacts/token-names.js +1 -1
  29. package/dist/cjs/artifacts/tokens-raw/atlassian-typography-minor3.js +3 -3
  30. package/dist/es2019/artifacts/atlassian-dark-token-value-for-contrast-check.js +1 -1
  31. package/dist/es2019/artifacts/atlassian-light-token-value-for-contrast-check.js +1 -1
  32. package/dist/es2019/artifacts/generated-pairs.js +1 -1
  33. package/dist/es2019/artifacts/theme-import-map.js +1 -1
  34. package/dist/es2019/artifacts/themes/atlassian-typography-minor3.js +2 -2
  35. package/dist/es2019/artifacts/token-default-values.js +1 -1
  36. package/dist/es2019/artifacts/token-names.js +1 -1
  37. package/dist/es2019/artifacts/tokens-raw/atlassian-typography-minor3.js +3 -3
  38. package/dist/esm/artifacts/atlassian-dark-token-value-for-contrast-check.js +1 -1
  39. package/dist/esm/artifacts/atlassian-light-token-value-for-contrast-check.js +1 -1
  40. package/dist/esm/artifacts/generated-pairs.js +1 -1
  41. package/dist/esm/artifacts/theme-import-map.js +1 -1
  42. package/dist/esm/artifacts/themes/atlassian-typography-minor3.js +2 -2
  43. package/dist/esm/artifacts/token-default-values.js +1 -1
  44. package/dist/esm/artifacts/token-names.js +1 -1
  45. package/dist/esm/artifacts/tokens-raw/atlassian-typography-minor3.js +3 -3
  46. package/dist/types/artifacts/atlassian-dark-token-value-for-contrast-check.d.ts +1 -1
  47. package/dist/types/artifacts/atlassian-light-token-value-for-contrast-check.d.ts +1 -1
  48. package/dist/types/artifacts/generated-pairs.d.ts +1 -1
  49. package/dist/types/artifacts/theme-import-map.d.ts +2 -2
  50. package/dist/types/artifacts/themes/atlassian-typography-minor3.d.ts +2 -2
  51. package/dist/types/artifacts/token-default-values.d.ts +1 -1
  52. package/dist/types/artifacts/token-names.d.ts +1 -1
  53. package/dist/types/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +1 -1
  54. package/dist/types/artifacts/types-internal.d.ts +1 -1
  55. package/dist/types/artifacts/types.d.ts +1 -1
  56. package/dist/types/babel-plugin/plugin.d.ts +1 -1
  57. package/dist/types/custom-theme.d.ts +2 -2
  58. package/dist/types/enable-global-theme.d.ts +2 -2
  59. package/dist/types/entry-points/css-type-schema.codegen.d.ts +1 -1
  60. package/dist/types/entry-points/token-ids.d.ts +1 -1
  61. package/dist/types/get-global-theme.d.ts +1 -1
  62. package/dist/types/get-ssr-auto-script.d.ts +1 -1
  63. package/dist/types/get-theme-html-attrs.d.ts +1 -1
  64. package/dist/types/get-theme-styles.d.ts +1 -1
  65. package/dist/types/get-token.d.ts +1 -1
  66. package/dist/types/index.d.ts +1 -1
  67. package/dist/types/load-custom-theme-styles.d.ts +1 -1
  68. package/dist/types/set-global-theme.d.ts +2 -2
  69. package/dist/types/theme-state-transformer.d.ts +1 -1
  70. package/dist/types/utils/color-detection.d.ts +1 -1
  71. package/dist/types/utils/color-mode-listeners.d.ts +1 -1
  72. package/dist/types/utils/configure-page.d.ts +1 -1
  73. package/dist/types/utils/contrast-mode-listeners.d.ts +1 -1
  74. package/dist/types/utils/custom-theme-loading-utils.d.ts +1 -1
  75. package/dist/types/utils/custom-theme-token-contrast-check.d.ts +1 -1
  76. package/dist/types/utils/generate-custom-color-ramp.d.ts +2 -2
  77. package/dist/types/utils/get-increased-contrast-theme.d.ts +1 -1
  78. package/dist/types/utils/get-theme-preferences.d.ts +1 -1
  79. package/dist/types/utils/theme-loading.d.ts +1 -1
  80. package/dist/types-ts4.5/artifacts/atlassian-dark-token-value-for-contrast-check.d.ts +1 -1
  81. package/dist/types-ts4.5/artifacts/atlassian-light-token-value-for-contrast-check.d.ts +1 -1
  82. package/dist/types-ts4.5/artifacts/generated-pairs.d.ts +1 -1
  83. package/dist/types-ts4.5/artifacts/theme-import-map.d.ts +2 -2
  84. package/dist/types-ts4.5/artifacts/themes/atlassian-typography-minor3.d.ts +2 -2
  85. package/dist/types-ts4.5/artifacts/token-default-values.d.ts +1 -1
  86. package/dist/types-ts4.5/artifacts/token-names.d.ts +1 -1
  87. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +1 -1
  88. package/dist/types-ts4.5/artifacts/types-internal.d.ts +1 -1
  89. package/dist/types-ts4.5/artifacts/types.d.ts +1 -1
  90. package/dist/types-ts4.5/babel-plugin/plugin.d.ts +1 -1
  91. package/dist/types-ts4.5/custom-theme.d.ts +2 -2
  92. package/dist/types-ts4.5/enable-global-theme.d.ts +2 -2
  93. package/dist/types-ts4.5/entry-points/css-type-schema.codegen.d.ts +1 -1
  94. package/dist/types-ts4.5/entry-points/token-ids.d.ts +1 -1
  95. package/dist/types-ts4.5/get-global-theme.d.ts +1 -1
  96. package/dist/types-ts4.5/get-ssr-auto-script.d.ts +1 -1
  97. package/dist/types-ts4.5/get-theme-html-attrs.d.ts +1 -1
  98. package/dist/types-ts4.5/get-theme-styles.d.ts +1 -1
  99. package/dist/types-ts4.5/get-token.d.ts +1 -1
  100. package/dist/types-ts4.5/index.d.ts +1 -1
  101. package/dist/types-ts4.5/load-custom-theme-styles.d.ts +1 -1
  102. package/dist/types-ts4.5/set-global-theme.d.ts +2 -2
  103. package/dist/types-ts4.5/theme-state-transformer.d.ts +1 -1
  104. package/dist/types-ts4.5/utils/color-detection.d.ts +1 -1
  105. package/dist/types-ts4.5/utils/color-mode-listeners.d.ts +1 -1
  106. package/dist/types-ts4.5/utils/configure-page.d.ts +1 -1
  107. package/dist/types-ts4.5/utils/contrast-mode-listeners.d.ts +1 -1
  108. package/dist/types-ts4.5/utils/custom-theme-loading-utils.d.ts +1 -1
  109. package/dist/types-ts4.5/utils/custom-theme-token-contrast-check.d.ts +1 -1
  110. package/dist/types-ts4.5/utils/generate-custom-color-ramp.d.ts +2 -2
  111. package/dist/types-ts4.5/utils/get-increased-contrast-theme.d.ts +1 -1
  112. package/dist/types-ts4.5/utils/get-theme-preferences.d.ts +1 -1
  113. package/dist/types-ts4.5/utils/theme-loading.d.ts +1 -1
  114. package/package.json +3 -5
  115. package/report.api.md +2071 -2090
@@ -1,376 +1,376 @@
1
1
  export const activeTokens = [
2
- 'color.text',
3
- 'color.text.accent.lime',
4
- 'color.text.accent.lime.bolder',
5
- 'color.text.accent.red',
6
- 'color.text.accent.red.bolder',
7
- 'color.text.accent.orange',
8
- 'color.text.accent.orange.bolder',
9
- 'color.text.accent.yellow',
10
- 'color.text.accent.yellow.bolder',
11
- 'color.text.accent.green',
12
- 'color.text.accent.green.bolder',
13
- 'color.text.accent.teal',
14
- 'color.text.accent.teal.bolder',
15
- 'color.text.accent.blue',
16
- 'color.text.accent.blue.bolder',
17
- 'color.text.accent.purple',
18
- 'color.text.accent.purple.bolder',
19
- 'color.text.accent.magenta',
20
- 'color.text.accent.magenta.bolder',
21
- 'color.text.accent.gray',
22
- 'color.text.accent.gray.bolder',
23
- 'color.text.disabled',
24
- 'color.text.inverse',
25
- 'color.text.selected',
26
- 'color.text.brand',
27
- 'color.text.danger',
28
- 'color.text.warning',
29
- 'color.text.warning.inverse',
30
- 'color.text.success',
31
- 'color.text.discovery',
32
- 'color.text.information',
33
- 'color.text.subtlest',
34
- 'color.text.subtle',
35
- 'color.link',
36
- 'color.link.pressed',
37
- 'color.link.visited',
38
- 'color.icon',
39
- 'color.icon.accent.lime',
40
- 'color.icon.accent.red',
41
- 'color.icon.accent.orange',
42
- 'color.icon.accent.yellow',
43
- 'color.icon.accent.green',
44
- 'color.icon.accent.teal',
45
- 'color.icon.accent.blue',
46
- 'color.icon.accent.purple',
47
- 'color.icon.accent.magenta',
48
- 'color.icon.accent.gray',
49
- 'color.icon.disabled',
50
- 'color.icon.inverse',
51
- 'color.icon.selected',
52
- 'color.icon.brand',
53
- 'color.icon.danger',
54
- 'color.icon.warning',
55
- 'color.icon.warning.inverse',
56
- 'color.icon.success',
57
- 'color.icon.discovery',
58
- 'color.icon.information',
59
- 'color.icon.subtle',
60
- 'color.border',
61
- 'color.border.accent.lime',
62
- 'color.border.accent.red',
63
- 'color.border.accent.orange',
64
- 'color.border.accent.yellow',
65
- 'color.border.accent.green',
66
- 'color.border.accent.teal',
67
- 'color.border.accent.blue',
68
- 'color.border.accent.purple',
69
- 'color.border.accent.magenta',
70
- 'color.border.accent.gray',
71
- 'color.border.disabled',
72
- 'color.border.focused',
73
- 'color.border.input',
74
- 'color.border.inverse',
75
- 'color.border.selected',
76
- 'color.border.brand',
77
- 'color.border.danger',
78
- 'color.border.warning',
79
- 'color.border.success',
80
- 'color.border.discovery',
81
- 'color.border.information',
82
- 'color.border.bold',
83
- 'color.background.accent.lime.subtlest',
84
- 'color.background.accent.lime.subtlest.hovered',
85
- 'color.background.accent.lime.subtlest.pressed',
86
- 'color.background.accent.lime.subtler',
87
- 'color.background.accent.lime.subtler.hovered',
88
- 'color.background.accent.lime.subtler.pressed',
89
- 'color.background.accent.lime.subtle',
90
- 'color.background.accent.lime.subtle.hovered',
91
- 'color.background.accent.lime.subtle.pressed',
92
- 'color.background.accent.lime.bolder',
93
- 'color.background.accent.lime.bolder.hovered',
94
- 'color.background.accent.lime.bolder.pressed',
95
- 'color.background.accent.red.subtlest',
96
- 'color.background.accent.red.subtlest.hovered',
97
- 'color.background.accent.red.subtlest.pressed',
98
- 'color.background.accent.red.subtler',
99
- 'color.background.accent.red.subtler.hovered',
100
- 'color.background.accent.red.subtler.pressed',
101
- 'color.background.accent.red.subtle',
102
- 'color.background.accent.red.subtle.hovered',
103
- 'color.background.accent.red.subtle.pressed',
104
- 'color.background.accent.red.bolder',
105
- 'color.background.accent.red.bolder.hovered',
106
- 'color.background.accent.red.bolder.pressed',
107
- 'color.background.accent.orange.subtlest',
108
- 'color.background.accent.orange.subtlest.hovered',
109
- 'color.background.accent.orange.subtlest.pressed',
110
- 'color.background.accent.orange.subtler',
111
- 'color.background.accent.orange.subtler.hovered',
112
- 'color.background.accent.orange.subtler.pressed',
113
- 'color.background.accent.orange.subtle',
114
- 'color.background.accent.orange.subtle.hovered',
115
- 'color.background.accent.orange.subtle.pressed',
116
- 'color.background.accent.orange.bolder',
117
- 'color.background.accent.orange.bolder.hovered',
118
- 'color.background.accent.orange.bolder.pressed',
119
- 'color.background.accent.yellow.subtlest',
120
- 'color.background.accent.yellow.subtlest.hovered',
121
- 'color.background.accent.yellow.subtlest.pressed',
122
- 'color.background.accent.yellow.subtler',
123
- 'color.background.accent.yellow.subtler.hovered',
124
- 'color.background.accent.yellow.subtler.pressed',
125
- 'color.background.accent.yellow.subtle',
126
- 'color.background.accent.yellow.subtle.hovered',
127
- 'color.background.accent.yellow.subtle.pressed',
128
- 'color.background.accent.yellow.bolder',
129
- 'color.background.accent.yellow.bolder.hovered',
130
- 'color.background.accent.yellow.bolder.pressed',
131
- 'color.background.accent.green.subtlest',
132
- 'color.background.accent.green.subtlest.hovered',
133
- 'color.background.accent.green.subtlest.pressed',
134
- 'color.background.accent.green.subtler',
135
- 'color.background.accent.green.subtler.hovered',
136
- 'color.background.accent.green.subtler.pressed',
137
- 'color.background.accent.green.subtle',
138
- 'color.background.accent.green.subtle.hovered',
139
- 'color.background.accent.green.subtle.pressed',
140
- 'color.background.accent.green.bolder',
141
- 'color.background.accent.green.bolder.hovered',
142
- 'color.background.accent.green.bolder.pressed',
143
- 'color.background.accent.teal.subtlest',
144
- 'color.background.accent.teal.subtlest.hovered',
145
- 'color.background.accent.teal.subtlest.pressed',
146
- 'color.background.accent.teal.subtler',
147
- 'color.background.accent.teal.subtler.hovered',
148
- 'color.background.accent.teal.subtler.pressed',
149
- 'color.background.accent.teal.subtle',
150
- 'color.background.accent.teal.subtle.hovered',
151
- 'color.background.accent.teal.subtle.pressed',
152
- 'color.background.accent.teal.bolder',
153
- 'color.background.accent.teal.bolder.hovered',
154
- 'color.background.accent.teal.bolder.pressed',
155
- 'color.background.accent.blue.subtlest',
156
- 'color.background.accent.blue.subtlest.hovered',
157
- 'color.background.accent.blue.subtlest.pressed',
158
- 'color.background.accent.blue.subtler',
159
- 'color.background.accent.blue.subtler.hovered',
160
- 'color.background.accent.blue.subtler.pressed',
161
- 'color.background.accent.blue.subtle',
162
- 'color.background.accent.blue.subtle.hovered',
163
- 'color.background.accent.blue.subtle.pressed',
164
- 'color.background.accent.blue.bolder',
165
- 'color.background.accent.blue.bolder.hovered',
166
- 'color.background.accent.blue.bolder.pressed',
167
- 'color.background.accent.purple.subtlest',
168
- 'color.background.accent.purple.subtlest.hovered',
169
- 'color.background.accent.purple.subtlest.pressed',
170
- 'color.background.accent.purple.subtler',
171
- 'color.background.accent.purple.subtler.hovered',
172
- 'color.background.accent.purple.subtler.pressed',
173
- 'color.background.accent.purple.subtle',
174
- 'color.background.accent.purple.subtle.hovered',
175
- 'color.background.accent.purple.subtle.pressed',
176
- 'color.background.accent.purple.bolder',
177
- 'color.background.accent.purple.bolder.hovered',
178
- 'color.background.accent.purple.bolder.pressed',
179
- 'color.background.accent.magenta.subtlest',
180
- 'color.background.accent.magenta.subtlest.hovered',
181
- 'color.background.accent.magenta.subtlest.pressed',
182
- 'color.background.accent.magenta.subtler',
183
- 'color.background.accent.magenta.subtler.hovered',
184
- 'color.background.accent.magenta.subtler.pressed',
185
- 'color.background.accent.magenta.subtle',
186
- 'color.background.accent.magenta.subtle.hovered',
187
- 'color.background.accent.magenta.subtle.pressed',
188
- 'color.background.accent.magenta.bolder',
189
- 'color.background.accent.magenta.bolder.hovered',
190
- 'color.background.accent.magenta.bolder.pressed',
191
- 'color.background.accent.gray.subtlest',
192
- 'color.background.accent.gray.subtlest.hovered',
193
- 'color.background.accent.gray.subtlest.pressed',
194
- 'color.background.accent.gray.subtler',
195
- 'color.background.accent.gray.subtler.hovered',
196
- 'color.background.accent.gray.subtler.pressed',
197
- 'color.background.accent.gray.subtle',
198
- 'color.background.accent.gray.subtle.hovered',
199
- 'color.background.accent.gray.subtle.pressed',
200
- 'color.background.accent.gray.bolder',
201
- 'color.background.accent.gray.bolder.hovered',
202
- 'color.background.accent.gray.bolder.pressed',
203
- 'color.background.disabled',
204
- 'color.background.input',
205
- 'color.background.input.hovered',
206
- 'color.background.input.pressed',
207
- 'color.background.inverse.subtle',
208
- 'color.background.inverse.subtle.hovered',
209
- 'color.background.inverse.subtle.pressed',
210
- 'color.background.neutral',
211
- 'color.background.neutral.hovered',
212
- 'color.background.neutral.pressed',
213
- 'color.background.neutral.subtle',
214
- 'color.background.neutral.subtle.hovered',
215
- 'color.background.neutral.subtle.pressed',
216
- 'color.background.neutral.bold',
217
- 'color.background.neutral.bold.hovered',
218
- 'color.background.neutral.bold.pressed',
219
- 'color.background.selected',
220
- 'color.background.selected.hovered',
221
- 'color.background.selected.pressed',
222
- 'color.background.selected.bold',
223
- 'color.background.selected.bold.hovered',
224
- 'color.background.selected.bold.pressed',
225
- 'color.background.brand.subtlest',
226
- 'color.background.brand.subtlest.hovered',
227
- 'color.background.brand.subtlest.pressed',
228
- 'color.background.brand.bold',
229
- 'color.background.brand.bold.hovered',
230
- 'color.background.brand.bold.pressed',
231
- 'color.background.brand.boldest',
232
- 'color.background.brand.boldest.hovered',
233
- 'color.background.brand.boldest.pressed',
234
- 'color.background.danger',
235
- 'color.background.danger.hovered',
236
- 'color.background.danger.pressed',
237
- 'color.background.danger.bold',
238
- 'color.background.danger.bold.hovered',
239
- 'color.background.danger.bold.pressed',
240
- 'color.background.warning',
241
- 'color.background.warning.hovered',
242
- 'color.background.warning.pressed',
243
- 'color.background.warning.bold',
244
- 'color.background.warning.bold.hovered',
245
- 'color.background.warning.bold.pressed',
246
- 'color.background.success',
247
- 'color.background.success.hovered',
248
- 'color.background.success.pressed',
249
- 'color.background.success.bold',
250
- 'color.background.success.bold.hovered',
251
- 'color.background.success.bold.pressed',
252
- 'color.background.discovery',
253
- 'color.background.discovery.hovered',
254
- 'color.background.discovery.pressed',
255
- 'color.background.discovery.bold',
256
- 'color.background.discovery.bold.hovered',
257
- 'color.background.discovery.bold.pressed',
258
- 'color.background.information',
259
- 'color.background.information.hovered',
260
- 'color.background.information.pressed',
261
- 'color.background.information.bold',
262
- 'color.background.information.bold.hovered',
263
- 'color.background.information.bold.pressed',
264
- 'color.blanket',
265
- 'color.blanket.selected',
266
- 'color.blanket.danger',
267
- 'color.skeleton',
268
- 'color.skeleton.subtle',
269
- 'elevation.surface',
270
- 'elevation.surface.hovered',
271
- 'elevation.surface.pressed',
272
- 'elevation.surface.overlay',
273
- 'elevation.surface.overlay.hovered',
274
- 'elevation.surface.overlay.pressed',
275
- 'elevation.surface.raised',
276
- 'elevation.surface.raised.hovered',
277
- 'elevation.surface.raised.pressed',
278
- 'elevation.surface.sunken',
279
- 'elevation.shadow.overlay',
280
- 'elevation.shadow.raised',
281
- 'opacity.disabled',
282
- 'opacity.loading',
283
- 'utility.elevation.surface.current',
2
+ 'color.text',
3
+ 'color.text.accent.lime',
4
+ 'color.text.accent.lime.bolder',
5
+ 'color.text.accent.red',
6
+ 'color.text.accent.red.bolder',
7
+ 'color.text.accent.orange',
8
+ 'color.text.accent.orange.bolder',
9
+ 'color.text.accent.yellow',
10
+ 'color.text.accent.yellow.bolder',
11
+ 'color.text.accent.green',
12
+ 'color.text.accent.green.bolder',
13
+ 'color.text.accent.teal',
14
+ 'color.text.accent.teal.bolder',
15
+ 'color.text.accent.blue',
16
+ 'color.text.accent.blue.bolder',
17
+ 'color.text.accent.purple',
18
+ 'color.text.accent.purple.bolder',
19
+ 'color.text.accent.magenta',
20
+ 'color.text.accent.magenta.bolder',
21
+ 'color.text.accent.gray',
22
+ 'color.text.accent.gray.bolder',
23
+ 'color.text.disabled',
24
+ 'color.text.inverse',
25
+ 'color.text.selected',
26
+ 'color.text.brand',
27
+ 'color.text.danger',
28
+ 'color.text.warning',
29
+ 'color.text.warning.inverse',
30
+ 'color.text.success',
31
+ 'color.text.discovery',
32
+ 'color.text.information',
33
+ 'color.text.subtlest',
34
+ 'color.text.subtle',
35
+ 'color.link',
36
+ 'color.link.pressed',
37
+ 'color.link.visited',
38
+ 'color.icon',
39
+ 'color.icon.accent.lime',
40
+ 'color.icon.accent.red',
41
+ 'color.icon.accent.orange',
42
+ 'color.icon.accent.yellow',
43
+ 'color.icon.accent.green',
44
+ 'color.icon.accent.teal',
45
+ 'color.icon.accent.blue',
46
+ 'color.icon.accent.purple',
47
+ 'color.icon.accent.magenta',
48
+ 'color.icon.accent.gray',
49
+ 'color.icon.disabled',
50
+ 'color.icon.inverse',
51
+ 'color.icon.selected',
52
+ 'color.icon.brand',
53
+ 'color.icon.danger',
54
+ 'color.icon.warning',
55
+ 'color.icon.warning.inverse',
56
+ 'color.icon.success',
57
+ 'color.icon.discovery',
58
+ 'color.icon.information',
59
+ 'color.icon.subtle',
60
+ 'color.border',
61
+ 'color.border.accent.lime',
62
+ 'color.border.accent.red',
63
+ 'color.border.accent.orange',
64
+ 'color.border.accent.yellow',
65
+ 'color.border.accent.green',
66
+ 'color.border.accent.teal',
67
+ 'color.border.accent.blue',
68
+ 'color.border.accent.purple',
69
+ 'color.border.accent.magenta',
70
+ 'color.border.accent.gray',
71
+ 'color.border.disabled',
72
+ 'color.border.focused',
73
+ 'color.border.input',
74
+ 'color.border.inverse',
75
+ 'color.border.selected',
76
+ 'color.border.brand',
77
+ 'color.border.danger',
78
+ 'color.border.warning',
79
+ 'color.border.success',
80
+ 'color.border.discovery',
81
+ 'color.border.information',
82
+ 'color.border.bold',
83
+ 'color.background.accent.lime.subtlest',
84
+ 'color.background.accent.lime.subtlest.hovered',
85
+ 'color.background.accent.lime.subtlest.pressed',
86
+ 'color.background.accent.lime.subtler',
87
+ 'color.background.accent.lime.subtler.hovered',
88
+ 'color.background.accent.lime.subtler.pressed',
89
+ 'color.background.accent.lime.subtle',
90
+ 'color.background.accent.lime.subtle.hovered',
91
+ 'color.background.accent.lime.subtle.pressed',
92
+ 'color.background.accent.lime.bolder',
93
+ 'color.background.accent.lime.bolder.hovered',
94
+ 'color.background.accent.lime.bolder.pressed',
95
+ 'color.background.accent.red.subtlest',
96
+ 'color.background.accent.red.subtlest.hovered',
97
+ 'color.background.accent.red.subtlest.pressed',
98
+ 'color.background.accent.red.subtler',
99
+ 'color.background.accent.red.subtler.hovered',
100
+ 'color.background.accent.red.subtler.pressed',
101
+ 'color.background.accent.red.subtle',
102
+ 'color.background.accent.red.subtle.hovered',
103
+ 'color.background.accent.red.subtle.pressed',
104
+ 'color.background.accent.red.bolder',
105
+ 'color.background.accent.red.bolder.hovered',
106
+ 'color.background.accent.red.bolder.pressed',
107
+ 'color.background.accent.orange.subtlest',
108
+ 'color.background.accent.orange.subtlest.hovered',
109
+ 'color.background.accent.orange.subtlest.pressed',
110
+ 'color.background.accent.orange.subtler',
111
+ 'color.background.accent.orange.subtler.hovered',
112
+ 'color.background.accent.orange.subtler.pressed',
113
+ 'color.background.accent.orange.subtle',
114
+ 'color.background.accent.orange.subtle.hovered',
115
+ 'color.background.accent.orange.subtle.pressed',
116
+ 'color.background.accent.orange.bolder',
117
+ 'color.background.accent.orange.bolder.hovered',
118
+ 'color.background.accent.orange.bolder.pressed',
119
+ 'color.background.accent.yellow.subtlest',
120
+ 'color.background.accent.yellow.subtlest.hovered',
121
+ 'color.background.accent.yellow.subtlest.pressed',
122
+ 'color.background.accent.yellow.subtler',
123
+ 'color.background.accent.yellow.subtler.hovered',
124
+ 'color.background.accent.yellow.subtler.pressed',
125
+ 'color.background.accent.yellow.subtle',
126
+ 'color.background.accent.yellow.subtle.hovered',
127
+ 'color.background.accent.yellow.subtle.pressed',
128
+ 'color.background.accent.yellow.bolder',
129
+ 'color.background.accent.yellow.bolder.hovered',
130
+ 'color.background.accent.yellow.bolder.pressed',
131
+ 'color.background.accent.green.subtlest',
132
+ 'color.background.accent.green.subtlest.hovered',
133
+ 'color.background.accent.green.subtlest.pressed',
134
+ 'color.background.accent.green.subtler',
135
+ 'color.background.accent.green.subtler.hovered',
136
+ 'color.background.accent.green.subtler.pressed',
137
+ 'color.background.accent.green.subtle',
138
+ 'color.background.accent.green.subtle.hovered',
139
+ 'color.background.accent.green.subtle.pressed',
140
+ 'color.background.accent.green.bolder',
141
+ 'color.background.accent.green.bolder.hovered',
142
+ 'color.background.accent.green.bolder.pressed',
143
+ 'color.background.accent.teal.subtlest',
144
+ 'color.background.accent.teal.subtlest.hovered',
145
+ 'color.background.accent.teal.subtlest.pressed',
146
+ 'color.background.accent.teal.subtler',
147
+ 'color.background.accent.teal.subtler.hovered',
148
+ 'color.background.accent.teal.subtler.pressed',
149
+ 'color.background.accent.teal.subtle',
150
+ 'color.background.accent.teal.subtle.hovered',
151
+ 'color.background.accent.teal.subtle.pressed',
152
+ 'color.background.accent.teal.bolder',
153
+ 'color.background.accent.teal.bolder.hovered',
154
+ 'color.background.accent.teal.bolder.pressed',
155
+ 'color.background.accent.blue.subtlest',
156
+ 'color.background.accent.blue.subtlest.hovered',
157
+ 'color.background.accent.blue.subtlest.pressed',
158
+ 'color.background.accent.blue.subtler',
159
+ 'color.background.accent.blue.subtler.hovered',
160
+ 'color.background.accent.blue.subtler.pressed',
161
+ 'color.background.accent.blue.subtle',
162
+ 'color.background.accent.blue.subtle.hovered',
163
+ 'color.background.accent.blue.subtle.pressed',
164
+ 'color.background.accent.blue.bolder',
165
+ 'color.background.accent.blue.bolder.hovered',
166
+ 'color.background.accent.blue.bolder.pressed',
167
+ 'color.background.accent.purple.subtlest',
168
+ 'color.background.accent.purple.subtlest.hovered',
169
+ 'color.background.accent.purple.subtlest.pressed',
170
+ 'color.background.accent.purple.subtler',
171
+ 'color.background.accent.purple.subtler.hovered',
172
+ 'color.background.accent.purple.subtler.pressed',
173
+ 'color.background.accent.purple.subtle',
174
+ 'color.background.accent.purple.subtle.hovered',
175
+ 'color.background.accent.purple.subtle.pressed',
176
+ 'color.background.accent.purple.bolder',
177
+ 'color.background.accent.purple.bolder.hovered',
178
+ 'color.background.accent.purple.bolder.pressed',
179
+ 'color.background.accent.magenta.subtlest',
180
+ 'color.background.accent.magenta.subtlest.hovered',
181
+ 'color.background.accent.magenta.subtlest.pressed',
182
+ 'color.background.accent.magenta.subtler',
183
+ 'color.background.accent.magenta.subtler.hovered',
184
+ 'color.background.accent.magenta.subtler.pressed',
185
+ 'color.background.accent.magenta.subtle',
186
+ 'color.background.accent.magenta.subtle.hovered',
187
+ 'color.background.accent.magenta.subtle.pressed',
188
+ 'color.background.accent.magenta.bolder',
189
+ 'color.background.accent.magenta.bolder.hovered',
190
+ 'color.background.accent.magenta.bolder.pressed',
191
+ 'color.background.accent.gray.subtlest',
192
+ 'color.background.accent.gray.subtlest.hovered',
193
+ 'color.background.accent.gray.subtlest.pressed',
194
+ 'color.background.accent.gray.subtler',
195
+ 'color.background.accent.gray.subtler.hovered',
196
+ 'color.background.accent.gray.subtler.pressed',
197
+ 'color.background.accent.gray.subtle',
198
+ 'color.background.accent.gray.subtle.hovered',
199
+ 'color.background.accent.gray.subtle.pressed',
200
+ 'color.background.accent.gray.bolder',
201
+ 'color.background.accent.gray.bolder.hovered',
202
+ 'color.background.accent.gray.bolder.pressed',
203
+ 'color.background.disabled',
204
+ 'color.background.input',
205
+ 'color.background.input.hovered',
206
+ 'color.background.input.pressed',
207
+ 'color.background.inverse.subtle',
208
+ 'color.background.inverse.subtle.hovered',
209
+ 'color.background.inverse.subtle.pressed',
210
+ 'color.background.neutral',
211
+ 'color.background.neutral.hovered',
212
+ 'color.background.neutral.pressed',
213
+ 'color.background.neutral.subtle',
214
+ 'color.background.neutral.subtle.hovered',
215
+ 'color.background.neutral.subtle.pressed',
216
+ 'color.background.neutral.bold',
217
+ 'color.background.neutral.bold.hovered',
218
+ 'color.background.neutral.bold.pressed',
219
+ 'color.background.selected',
220
+ 'color.background.selected.hovered',
221
+ 'color.background.selected.pressed',
222
+ 'color.background.selected.bold',
223
+ 'color.background.selected.bold.hovered',
224
+ 'color.background.selected.bold.pressed',
225
+ 'color.background.brand.subtlest',
226
+ 'color.background.brand.subtlest.hovered',
227
+ 'color.background.brand.subtlest.pressed',
228
+ 'color.background.brand.bold',
229
+ 'color.background.brand.bold.hovered',
230
+ 'color.background.brand.bold.pressed',
231
+ 'color.background.brand.boldest',
232
+ 'color.background.brand.boldest.hovered',
233
+ 'color.background.brand.boldest.pressed',
234
+ 'color.background.danger',
235
+ 'color.background.danger.hovered',
236
+ 'color.background.danger.pressed',
237
+ 'color.background.danger.bold',
238
+ 'color.background.danger.bold.hovered',
239
+ 'color.background.danger.bold.pressed',
240
+ 'color.background.warning',
241
+ 'color.background.warning.hovered',
242
+ 'color.background.warning.pressed',
243
+ 'color.background.warning.bold',
244
+ 'color.background.warning.bold.hovered',
245
+ 'color.background.warning.bold.pressed',
246
+ 'color.background.success',
247
+ 'color.background.success.hovered',
248
+ 'color.background.success.pressed',
249
+ 'color.background.success.bold',
250
+ 'color.background.success.bold.hovered',
251
+ 'color.background.success.bold.pressed',
252
+ 'color.background.discovery',
253
+ 'color.background.discovery.hovered',
254
+ 'color.background.discovery.pressed',
255
+ 'color.background.discovery.bold',
256
+ 'color.background.discovery.bold.hovered',
257
+ 'color.background.discovery.bold.pressed',
258
+ 'color.background.information',
259
+ 'color.background.information.hovered',
260
+ 'color.background.information.pressed',
261
+ 'color.background.information.bold',
262
+ 'color.background.information.bold.hovered',
263
+ 'color.background.information.bold.pressed',
264
+ 'color.blanket',
265
+ 'color.blanket.selected',
266
+ 'color.blanket.danger',
267
+ 'color.skeleton',
268
+ 'color.skeleton.subtle',
269
+ 'elevation.surface',
270
+ 'elevation.surface.hovered',
271
+ 'elevation.surface.pressed',
272
+ 'elevation.surface.overlay',
273
+ 'elevation.surface.overlay.hovered',
274
+ 'elevation.surface.overlay.pressed',
275
+ 'elevation.surface.raised',
276
+ 'elevation.surface.raised.hovered',
277
+ 'elevation.surface.raised.pressed',
278
+ 'elevation.surface.sunken',
279
+ 'elevation.shadow.overlay',
280
+ 'elevation.shadow.raised',
281
+ 'opacity.disabled',
282
+ 'opacity.loading',
283
+ 'utility.elevation.surface.current',
284
284
  ];
285
285
 
286
286
  export const uniqueWordsFromTokens = [
287
- 'color',
288
- 'text',
289
- 'accent',
290
- 'lime',
291
- 'bolder',
292
- 'red',
293
- 'orange',
294
- 'yellow',
295
- 'green',
296
- 'teal',
297
- 'blue',
298
- 'purple',
299
- 'magenta',
300
- 'gray',
301
- 'disabled',
302
- 'inverse',
303
- 'selected',
304
- 'brand',
305
- 'danger',
306
- 'warning',
307
- 'success',
308
- 'discovery',
309
- 'information',
310
- 'subtlest',
311
- 'subtle',
312
- 'link',
313
- 'pressed',
314
- 'visited',
315
- 'icon',
316
- 'border',
317
- 'focused',
318
- 'input',
319
- 'bold',
320
- 'background',
321
- 'hovered',
322
- 'subtler',
323
- 'neutral',
324
- 'boldest',
325
- 'blanket',
326
- 'interaction',
327
- 'skeleton',
328
- 'chart',
329
- 'categorical',
330
- 'elevation',
331
- 'surface',
332
- 'overlay',
333
- 'raised',
334
- 'sunken',
335
- 'shadow',
336
- 'overflow',
337
- 'perimeter',
338
- 'spread',
339
- 'opacity',
340
- 'loading',
341
- 'utility',
342
- 'transform',
343
- 'uppercase',
344
- 'transparent',
345
- 'current',
346
- 'radius',
347
- 'circle',
348
- 'width',
349
- 'indicator',
350
- 'outline',
351
- 'space',
352
- 'negative',
353
- 'font',
354
- 'heading',
355
- 'xxlarge',
356
- 'xlarge',
357
- 'large',
358
- 'medium',
359
- 'small',
360
- 'xsmall',
361
- 'xxsmall',
362
- 'body',
363
- 'ui',
364
- 'code',
365
- 'letter',
366
- 'spacing',
367
- 'family',
368
- 'monospace',
369
- 'sans',
370
- 'size',
371
- 'weight',
372
- 'regular',
373
- 'semibold',
374
- 'line',
375
- 'height',
287
+ 'color',
288
+ 'text',
289
+ 'accent',
290
+ 'lime',
291
+ 'bolder',
292
+ 'red',
293
+ 'orange',
294
+ 'yellow',
295
+ 'green',
296
+ 'teal',
297
+ 'blue',
298
+ 'purple',
299
+ 'magenta',
300
+ 'gray',
301
+ 'disabled',
302
+ 'inverse',
303
+ 'selected',
304
+ 'brand',
305
+ 'danger',
306
+ 'warning',
307
+ 'success',
308
+ 'discovery',
309
+ 'information',
310
+ 'subtlest',
311
+ 'subtle',
312
+ 'link',
313
+ 'pressed',
314
+ 'visited',
315
+ 'icon',
316
+ 'border',
317
+ 'focused',
318
+ 'input',
319
+ 'bold',
320
+ 'background',
321
+ 'hovered',
322
+ 'subtler',
323
+ 'neutral',
324
+ 'boldest',
325
+ 'blanket',
326
+ 'interaction',
327
+ 'skeleton',
328
+ 'chart',
329
+ 'categorical',
330
+ 'elevation',
331
+ 'surface',
332
+ 'overlay',
333
+ 'raised',
334
+ 'sunken',
335
+ 'shadow',
336
+ 'overflow',
337
+ 'perimeter',
338
+ 'spread',
339
+ 'opacity',
340
+ 'loading',
341
+ 'utility',
342
+ 'transform',
343
+ 'uppercase',
344
+ 'transparent',
345
+ 'current',
346
+ 'radius',
347
+ 'circle',
348
+ 'width',
349
+ 'indicator',
350
+ 'outline',
351
+ 'space',
352
+ 'negative',
353
+ 'font',
354
+ 'heading',
355
+ 'xxlarge',
356
+ 'xlarge',
357
+ 'large',
358
+ 'medium',
359
+ 'small',
360
+ 'xsmall',
361
+ 'xxsmall',
362
+ 'body',
363
+ 'ui',
364
+ 'code',
365
+ 'letter',
366
+ 'spacing',
367
+ 'family',
368
+ 'monospace',
369
+ 'sans',
370
+ 'size',
371
+ 'weight',
372
+ 'regular',
373
+ 'semibold',
374
+ 'line',
375
+ 'height',
376
376
  ];