@atlaskit/tokens 1.49.1 → 1.51.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 +1593 -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 +138 -140
  115. package/report.api.md +2071 -2090
package/report.api.md CHANGED
@@ -2,7 +2,8 @@
2
2
 
3
3
  ## API Report File for "@atlaskit/tokens"
4
4
 
5
- > Do not edit this file. This report is auto-generated using [API Extractor](https://api-extractor.com/).
5
+ > Do not edit this file. This report is auto-generated using
6
+ > [API Extractor](https://api-extractor.com/).
6
7
  > [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
7
8
 
8
9
  ### Table of contents
@@ -19,434 +20,434 @@ import { UnbindFn } from 'bind-event-listener';
19
20
 
20
21
  // @public
21
22
  interface ActiveThemeState extends ThemeState {
22
- // (undocumented)
23
- colorMode: DataColorModes;
23
+ // (undocumented)
24
+ colorMode: DataColorModes;
24
25
  }
25
26
 
26
27
  // @public
27
28
  export type ActiveTokens =
28
- | 'border.radius'
29
- | 'border.radius.050'
30
- | 'border.radius.100'
31
- | 'border.radius.200'
32
- | 'border.radius.300'
33
- | 'border.radius.400'
34
- | 'border.radius.circle'
35
- | 'border.width'
36
- | 'border.width.indicator'
37
- | 'border.width.outline'
38
- | 'color.background.accent.blue.bolder'
39
- | 'color.background.accent.blue.bolder.hovered'
40
- | 'color.background.accent.blue.bolder.pressed'
41
- | 'color.background.accent.blue.subtle'
42
- | 'color.background.accent.blue.subtle.hovered'
43
- | 'color.background.accent.blue.subtle.pressed'
44
- | 'color.background.accent.blue.subtler'
45
- | 'color.background.accent.blue.subtler.hovered'
46
- | 'color.background.accent.blue.subtler.pressed'
47
- | 'color.background.accent.blue.subtlest'
48
- | 'color.background.accent.blue.subtlest.hovered'
49
- | 'color.background.accent.blue.subtlest.pressed'
50
- | 'color.background.accent.gray.bolder'
51
- | 'color.background.accent.gray.bolder.hovered'
52
- | 'color.background.accent.gray.bolder.pressed'
53
- | 'color.background.accent.gray.subtle'
54
- | 'color.background.accent.gray.subtle.hovered'
55
- | 'color.background.accent.gray.subtle.pressed'
56
- | 'color.background.accent.gray.subtler'
57
- | 'color.background.accent.gray.subtler.hovered'
58
- | 'color.background.accent.gray.subtler.pressed'
59
- | 'color.background.accent.gray.subtlest'
60
- | 'color.background.accent.gray.subtlest.hovered'
61
- | 'color.background.accent.gray.subtlest.pressed'
62
- | 'color.background.accent.green.bolder'
63
- | 'color.background.accent.green.bolder.hovered'
64
- | 'color.background.accent.green.bolder.pressed'
65
- | 'color.background.accent.green.subtle'
66
- | 'color.background.accent.green.subtle.hovered'
67
- | 'color.background.accent.green.subtle.pressed'
68
- | 'color.background.accent.green.subtler'
69
- | 'color.background.accent.green.subtler.hovered'
70
- | 'color.background.accent.green.subtler.pressed'
71
- | 'color.background.accent.green.subtlest'
72
- | 'color.background.accent.green.subtlest.hovered'
73
- | 'color.background.accent.green.subtlest.pressed'
74
- | 'color.background.accent.lime.bolder'
75
- | 'color.background.accent.lime.bolder.hovered'
76
- | 'color.background.accent.lime.bolder.pressed'
77
- | 'color.background.accent.lime.subtle'
78
- | 'color.background.accent.lime.subtle.hovered'
79
- | 'color.background.accent.lime.subtle.pressed'
80
- | 'color.background.accent.lime.subtler'
81
- | 'color.background.accent.lime.subtler.hovered'
82
- | 'color.background.accent.lime.subtler.pressed'
83
- | 'color.background.accent.lime.subtlest'
84
- | 'color.background.accent.lime.subtlest.hovered'
85
- | 'color.background.accent.lime.subtlest.pressed'
86
- | 'color.background.accent.magenta.bolder'
87
- | 'color.background.accent.magenta.bolder.hovered'
88
- | 'color.background.accent.magenta.bolder.pressed'
89
- | 'color.background.accent.magenta.subtle'
90
- | 'color.background.accent.magenta.subtle.hovered'
91
- | 'color.background.accent.magenta.subtle.pressed'
92
- | 'color.background.accent.magenta.subtler'
93
- | 'color.background.accent.magenta.subtler.hovered'
94
- | 'color.background.accent.magenta.subtler.pressed'
95
- | 'color.background.accent.magenta.subtlest'
96
- | 'color.background.accent.magenta.subtlest.hovered'
97
- | 'color.background.accent.magenta.subtlest.pressed'
98
- | 'color.background.accent.orange.bolder'
99
- | 'color.background.accent.orange.bolder.hovered'
100
- | 'color.background.accent.orange.bolder.pressed'
101
- | 'color.background.accent.orange.subtle'
102
- | 'color.background.accent.orange.subtle.hovered'
103
- | 'color.background.accent.orange.subtle.pressed'
104
- | 'color.background.accent.orange.subtler'
105
- | 'color.background.accent.orange.subtler.hovered'
106
- | 'color.background.accent.orange.subtler.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.purple.bolder'
111
- | 'color.background.accent.purple.bolder.hovered'
112
- | 'color.background.accent.purple.bolder.pressed'
113
- | 'color.background.accent.purple.subtle'
114
- | 'color.background.accent.purple.subtle.hovered'
115
- | 'color.background.accent.purple.subtle.pressed'
116
- | 'color.background.accent.purple.subtler'
117
- | 'color.background.accent.purple.subtler.hovered'
118
- | 'color.background.accent.purple.subtler.pressed'
119
- | 'color.background.accent.purple.subtlest'
120
- | 'color.background.accent.purple.subtlest.hovered'
121
- | 'color.background.accent.purple.subtlest.pressed'
122
- | 'color.background.accent.red.bolder'
123
- | 'color.background.accent.red.bolder.hovered'
124
- | 'color.background.accent.red.bolder.pressed'
125
- | 'color.background.accent.red.subtle'
126
- | 'color.background.accent.red.subtle.hovered'
127
- | 'color.background.accent.red.subtle.pressed'
128
- | 'color.background.accent.red.subtler'
129
- | 'color.background.accent.red.subtler.hovered'
130
- | 'color.background.accent.red.subtler.pressed'
131
- | 'color.background.accent.red.subtlest'
132
- | 'color.background.accent.red.subtlest.hovered'
133
- | 'color.background.accent.red.subtlest.pressed'
134
- | 'color.background.accent.teal.bolder'
135
- | 'color.background.accent.teal.bolder.hovered'
136
- | 'color.background.accent.teal.bolder.pressed'
137
- | 'color.background.accent.teal.subtle'
138
- | 'color.background.accent.teal.subtle.hovered'
139
- | 'color.background.accent.teal.subtle.pressed'
140
- | 'color.background.accent.teal.subtler'
141
- | 'color.background.accent.teal.subtler.hovered'
142
- | 'color.background.accent.teal.subtler.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.yellow.bolder'
147
- | 'color.background.accent.yellow.bolder.hovered'
148
- | 'color.background.accent.yellow.bolder.pressed'
149
- | 'color.background.accent.yellow.subtle'
150
- | 'color.background.accent.yellow.subtle.hovered'
151
- | 'color.background.accent.yellow.subtle.pressed'
152
- | 'color.background.accent.yellow.subtler'
153
- | 'color.background.accent.yellow.subtler.hovered'
154
- | 'color.background.accent.yellow.subtler.pressed'
155
- | 'color.background.accent.yellow.subtlest'
156
- | 'color.background.accent.yellow.subtlest.hovered'
157
- | 'color.background.accent.yellow.subtlest.pressed'
158
- | 'color.background.brand.bold'
159
- | 'color.background.brand.bold.hovered'
160
- | 'color.background.brand.bold.pressed'
161
- | 'color.background.brand.boldest'
162
- | 'color.background.brand.boldest.hovered'
163
- | 'color.background.brand.boldest.pressed'
164
- | 'color.background.brand.subtlest'
165
- | 'color.background.brand.subtlest.hovered'
166
- | 'color.background.brand.subtlest.pressed'
167
- | 'color.background.danger'
168
- | 'color.background.danger.bold'
169
- | 'color.background.danger.bold.hovered'
170
- | 'color.background.danger.bold.pressed'
171
- | 'color.background.danger.hovered'
172
- | 'color.background.danger.pressed'
173
- | 'color.background.disabled'
174
- | 'color.background.discovery'
175
- | 'color.background.discovery.bold'
176
- | 'color.background.discovery.bold.hovered'
177
- | 'color.background.discovery.bold.pressed'
178
- | 'color.background.discovery.hovered'
179
- | 'color.background.discovery.pressed'
180
- | 'color.background.information'
181
- | 'color.background.information.bold'
182
- | 'color.background.information.bold.hovered'
183
- | 'color.background.information.bold.pressed'
184
- | 'color.background.information.hovered'
185
- | 'color.background.information.pressed'
186
- | 'color.background.input'
187
- | 'color.background.input.hovered'
188
- | 'color.background.input.pressed'
189
- | 'color.background.inverse.subtle'
190
- | 'color.background.inverse.subtle.hovered'
191
- | 'color.background.inverse.subtle.pressed'
192
- | 'color.background.neutral'
193
- | 'color.background.neutral.bold'
194
- | 'color.background.neutral.bold.hovered'
195
- | 'color.background.neutral.bold.pressed'
196
- | 'color.background.neutral.hovered'
197
- | 'color.background.neutral.pressed'
198
- | 'color.background.neutral.subtle'
199
- | 'color.background.neutral.subtle.hovered'
200
- | 'color.background.neutral.subtle.pressed'
201
- | 'color.background.selected'
202
- | 'color.background.selected.bold'
203
- | 'color.background.selected.bold.hovered'
204
- | 'color.background.selected.bold.pressed'
205
- | 'color.background.selected.hovered'
206
- | 'color.background.selected.pressed'
207
- | 'color.background.success'
208
- | 'color.background.success.bold'
209
- | 'color.background.success.bold.hovered'
210
- | 'color.background.success.bold.pressed'
211
- | 'color.background.success.hovered'
212
- | 'color.background.success.pressed'
213
- | 'color.background.warning'
214
- | 'color.background.warning.bold'
215
- | 'color.background.warning.bold.hovered'
216
- | 'color.background.warning.bold.pressed'
217
- | 'color.background.warning.hovered'
218
- | 'color.background.warning.pressed'
219
- | 'color.blanket'
220
- | 'color.blanket.danger'
221
- | 'color.blanket.selected'
222
- | 'color.border'
223
- | 'color.border.accent.blue'
224
- | 'color.border.accent.gray'
225
- | 'color.border.accent.green'
226
- | 'color.border.accent.lime'
227
- | 'color.border.accent.magenta'
228
- | 'color.border.accent.orange'
229
- | 'color.border.accent.purple'
230
- | 'color.border.accent.red'
231
- | 'color.border.accent.teal'
232
- | 'color.border.accent.yellow'
233
- | 'color.border.bold'
234
- | 'color.border.brand'
235
- | 'color.border.danger'
236
- | 'color.border.disabled'
237
- | 'color.border.discovery'
238
- | 'color.border.focused'
239
- | 'color.border.information'
240
- | 'color.border.input'
241
- | 'color.border.inverse'
242
- | 'color.border.selected'
243
- | 'color.border.success'
244
- | 'color.border.warning'
245
- | 'color.chart.blue.bold'
246
- | 'color.chart.blue.bold.hovered'
247
- | 'color.chart.blue.bolder'
248
- | 'color.chart.blue.bolder.hovered'
249
- | 'color.chart.blue.boldest'
250
- | 'color.chart.blue.boldest.hovered'
251
- | 'color.chart.brand'
252
- | 'color.chart.brand.hovered'
253
- | 'color.chart.categorical.1'
254
- | 'color.chart.categorical.1.hovered'
255
- | 'color.chart.categorical.2'
256
- | 'color.chart.categorical.2.hovered'
257
- | 'color.chart.categorical.3'
258
- | 'color.chart.categorical.3.hovered'
259
- | 'color.chart.categorical.4'
260
- | 'color.chart.categorical.4.hovered'
261
- | 'color.chart.categorical.5'
262
- | 'color.chart.categorical.5.hovered'
263
- | 'color.chart.categorical.6'
264
- | 'color.chart.categorical.6.hovered'
265
- | 'color.chart.categorical.7'
266
- | 'color.chart.categorical.7.hovered'
267
- | 'color.chart.categorical.8'
268
- | 'color.chart.categorical.8.hovered'
269
- | 'color.chart.danger'
270
- | 'color.chart.danger.bold'
271
- | 'color.chart.danger.bold.hovered'
272
- | 'color.chart.danger.hovered'
273
- | 'color.chart.discovery'
274
- | 'color.chart.discovery.bold'
275
- | 'color.chart.discovery.bold.hovered'
276
- | 'color.chart.discovery.hovered'
277
- | 'color.chart.gray.bold'
278
- | 'color.chart.gray.bold.hovered'
279
- | 'color.chart.gray.bolder'
280
- | 'color.chart.gray.bolder.hovered'
281
- | 'color.chart.gray.boldest'
282
- | 'color.chart.gray.boldest.hovered'
283
- | 'color.chart.green.bold'
284
- | 'color.chart.green.bold.hovered'
285
- | 'color.chart.green.bolder'
286
- | 'color.chart.green.bolder.hovered'
287
- | 'color.chart.green.boldest'
288
- | 'color.chart.green.boldest.hovered'
289
- | 'color.chart.information'
290
- | 'color.chart.information.bold'
291
- | 'color.chart.information.bold.hovered'
292
- | 'color.chart.information.hovered'
293
- | 'color.chart.lime.bold'
294
- | 'color.chart.lime.bold.hovered'
295
- | 'color.chart.lime.bolder'
296
- | 'color.chart.lime.bolder.hovered'
297
- | 'color.chart.lime.boldest'
298
- | 'color.chart.lime.boldest.hovered'
299
- | 'color.chart.magenta.bold'
300
- | 'color.chart.magenta.bold.hovered'
301
- | 'color.chart.magenta.bolder'
302
- | 'color.chart.magenta.bolder.hovered'
303
- | 'color.chart.magenta.boldest'
304
- | 'color.chart.magenta.boldest.hovered'
305
- | 'color.chart.neutral'
306
- | 'color.chart.neutral.hovered'
307
- | 'color.chart.orange.bold'
308
- | 'color.chart.orange.bold.hovered'
309
- | 'color.chart.orange.bolder'
310
- | 'color.chart.orange.bolder.hovered'
311
- | 'color.chart.orange.boldest'
312
- | 'color.chart.orange.boldest.hovered'
313
- | 'color.chart.purple.bold'
314
- | 'color.chart.purple.bold.hovered'
315
- | 'color.chart.purple.bolder'
316
- | 'color.chart.purple.bolder.hovered'
317
- | 'color.chart.purple.boldest'
318
- | 'color.chart.purple.boldest.hovered'
319
- | 'color.chart.red.bold'
320
- | 'color.chart.red.bold.hovered'
321
- | 'color.chart.red.bolder'
322
- | 'color.chart.red.bolder.hovered'
323
- | 'color.chart.red.boldest'
324
- | 'color.chart.red.boldest.hovered'
325
- | 'color.chart.success'
326
- | 'color.chart.success.bold'
327
- | 'color.chart.success.bold.hovered'
328
- | 'color.chart.success.hovered'
329
- | 'color.chart.teal.bold'
330
- | 'color.chart.teal.bold.hovered'
331
- | 'color.chart.teal.bolder'
332
- | 'color.chart.teal.bolder.hovered'
333
- | 'color.chart.teal.boldest'
334
- | 'color.chart.teal.boldest.hovered'
335
- | 'color.chart.warning'
336
- | 'color.chart.warning.bold'
337
- | 'color.chart.warning.bold.hovered'
338
- | 'color.chart.warning.hovered'
339
- | 'color.chart.yellow.bold'
340
- | 'color.chart.yellow.bold.hovered'
341
- | 'color.chart.yellow.bolder'
342
- | 'color.chart.yellow.bolder.hovered'
343
- | 'color.chart.yellow.boldest'
344
- | 'color.chart.yellow.boldest.hovered'
345
- | 'color.icon'
346
- | 'color.icon.accent.blue'
347
- | 'color.icon.accent.gray'
348
- | 'color.icon.accent.green'
349
- | 'color.icon.accent.lime'
350
- | 'color.icon.accent.magenta'
351
- | 'color.icon.accent.orange'
352
- | 'color.icon.accent.purple'
353
- | 'color.icon.accent.red'
354
- | 'color.icon.accent.teal'
355
- | 'color.icon.accent.yellow'
356
- | 'color.icon.brand'
357
- | 'color.icon.danger'
358
- | 'color.icon.disabled'
359
- | 'color.icon.discovery'
360
- | 'color.icon.information'
361
- | 'color.icon.inverse'
362
- | 'color.icon.selected'
363
- | 'color.icon.subtle'
364
- | 'color.icon.success'
365
- | 'color.icon.warning'
366
- | 'color.icon.warning.inverse'
367
- | 'color.interaction.hovered'
368
- | 'color.interaction.pressed'
369
- | 'color.link'
370
- | 'color.link.pressed'
371
- | 'color.link.visited'
372
- | 'color.skeleton'
373
- | 'color.skeleton.subtle'
374
- | 'color.text'
375
- | 'color.text.accent.blue'
376
- | 'color.text.accent.blue.bolder'
377
- | 'color.text.accent.gray'
378
- | 'color.text.accent.gray.bolder'
379
- | 'color.text.accent.green'
380
- | 'color.text.accent.green.bolder'
381
- | 'color.text.accent.lime'
382
- | 'color.text.accent.lime.bolder'
383
- | 'color.text.accent.magenta'
384
- | 'color.text.accent.magenta.bolder'
385
- | 'color.text.accent.orange'
386
- | 'color.text.accent.orange.bolder'
387
- | 'color.text.accent.purple'
388
- | 'color.text.accent.purple.bolder'
389
- | 'color.text.accent.red'
390
- | 'color.text.accent.red.bolder'
391
- | 'color.text.accent.teal'
392
- | 'color.text.accent.teal.bolder'
393
- | 'color.text.accent.yellow'
394
- | 'color.text.accent.yellow.bolder'
395
- | 'color.text.brand'
396
- | 'color.text.danger'
397
- | 'color.text.disabled'
398
- | 'color.text.discovery'
399
- | 'color.text.information'
400
- | 'color.text.inverse'
401
- | 'color.text.selected'
402
- | 'color.text.subtle'
403
- | 'color.text.subtlest'
404
- | 'color.text.success'
405
- | 'color.text.warning'
406
- | 'color.text.warning.inverse'
407
- | 'elevation.shadow.overflow'
408
- | 'elevation.shadow.overflow.perimeter'
409
- | 'elevation.shadow.overflow.spread'
410
- | 'elevation.shadow.overlay'
411
- | 'elevation.shadow.raised'
412
- | 'elevation.surface'
413
- | 'elevation.surface.hovered'
414
- | 'elevation.surface.overlay'
415
- | 'elevation.surface.overlay.hovered'
416
- | 'elevation.surface.overlay.pressed'
417
- | 'elevation.surface.pressed'
418
- | 'elevation.surface.raised'
419
- | 'elevation.surface.raised.hovered'
420
- | 'elevation.surface.raised.pressed'
421
- | 'elevation.surface.sunken'
422
- | 'opacity.disabled'
423
- | 'opacity.loading'
424
- | 'space.0'
425
- | 'space.025'
426
- | 'space.050'
427
- | 'space.075'
428
- | 'space.100'
429
- | 'space.1000'
430
- | 'space.150'
431
- | 'space.200'
432
- | 'space.250'
433
- | 'space.300'
434
- | 'space.400'
435
- | 'space.500'
436
- | 'space.600'
437
- | 'space.800'
438
- | 'space.negative.025'
439
- | 'space.negative.050'
440
- | 'space.negative.075'
441
- | 'space.negative.100'
442
- | 'space.negative.150'
443
- | 'space.negative.200'
444
- | 'space.negative.250'
445
- | 'space.negative.300'
446
- | 'space.negative.400'
447
- | 'utility.UNSAFE.textTransformUppercase'
448
- | 'utility.UNSAFE.transparent'
449
- | 'utility.elevation.surface.current';
29
+ | 'border.radius'
30
+ | 'border.radius.050'
31
+ | 'border.radius.100'
32
+ | 'border.radius.200'
33
+ | 'border.radius.300'
34
+ | 'border.radius.400'
35
+ | 'border.radius.circle'
36
+ | 'border.width'
37
+ | 'border.width.indicator'
38
+ | 'border.width.outline'
39
+ | 'color.background.accent.blue.bolder'
40
+ | 'color.background.accent.blue.bolder.hovered'
41
+ | 'color.background.accent.blue.bolder.pressed'
42
+ | 'color.background.accent.blue.subtle'
43
+ | 'color.background.accent.blue.subtle.hovered'
44
+ | 'color.background.accent.blue.subtle.pressed'
45
+ | 'color.background.accent.blue.subtler'
46
+ | 'color.background.accent.blue.subtler.hovered'
47
+ | 'color.background.accent.blue.subtler.pressed'
48
+ | 'color.background.accent.blue.subtlest'
49
+ | 'color.background.accent.blue.subtlest.hovered'
50
+ | 'color.background.accent.blue.subtlest.pressed'
51
+ | 'color.background.accent.gray.bolder'
52
+ | 'color.background.accent.gray.bolder.hovered'
53
+ | 'color.background.accent.gray.bolder.pressed'
54
+ | 'color.background.accent.gray.subtle'
55
+ | 'color.background.accent.gray.subtle.hovered'
56
+ | 'color.background.accent.gray.subtle.pressed'
57
+ | 'color.background.accent.gray.subtler'
58
+ | 'color.background.accent.gray.subtler.hovered'
59
+ | 'color.background.accent.gray.subtler.pressed'
60
+ | 'color.background.accent.gray.subtlest'
61
+ | 'color.background.accent.gray.subtlest.hovered'
62
+ | 'color.background.accent.gray.subtlest.pressed'
63
+ | 'color.background.accent.green.bolder'
64
+ | 'color.background.accent.green.bolder.hovered'
65
+ | 'color.background.accent.green.bolder.pressed'
66
+ | 'color.background.accent.green.subtle'
67
+ | 'color.background.accent.green.subtle.hovered'
68
+ | 'color.background.accent.green.subtle.pressed'
69
+ | 'color.background.accent.green.subtler'
70
+ | 'color.background.accent.green.subtler.hovered'
71
+ | 'color.background.accent.green.subtler.pressed'
72
+ | 'color.background.accent.green.subtlest'
73
+ | 'color.background.accent.green.subtlest.hovered'
74
+ | 'color.background.accent.green.subtlest.pressed'
75
+ | 'color.background.accent.lime.bolder'
76
+ | 'color.background.accent.lime.bolder.hovered'
77
+ | 'color.background.accent.lime.bolder.pressed'
78
+ | 'color.background.accent.lime.subtle'
79
+ | 'color.background.accent.lime.subtle.hovered'
80
+ | 'color.background.accent.lime.subtle.pressed'
81
+ | 'color.background.accent.lime.subtler'
82
+ | 'color.background.accent.lime.subtler.hovered'
83
+ | 'color.background.accent.lime.subtler.pressed'
84
+ | 'color.background.accent.lime.subtlest'
85
+ | 'color.background.accent.lime.subtlest.hovered'
86
+ | 'color.background.accent.lime.subtlest.pressed'
87
+ | 'color.background.accent.magenta.bolder'
88
+ | 'color.background.accent.magenta.bolder.hovered'
89
+ | 'color.background.accent.magenta.bolder.pressed'
90
+ | 'color.background.accent.magenta.subtle'
91
+ | 'color.background.accent.magenta.subtle.hovered'
92
+ | 'color.background.accent.magenta.subtle.pressed'
93
+ | 'color.background.accent.magenta.subtler'
94
+ | 'color.background.accent.magenta.subtler.hovered'
95
+ | 'color.background.accent.magenta.subtler.pressed'
96
+ | 'color.background.accent.magenta.subtlest'
97
+ | 'color.background.accent.magenta.subtlest.hovered'
98
+ | 'color.background.accent.magenta.subtlest.pressed'
99
+ | 'color.background.accent.orange.bolder'
100
+ | 'color.background.accent.orange.bolder.hovered'
101
+ | 'color.background.accent.orange.bolder.pressed'
102
+ | 'color.background.accent.orange.subtle'
103
+ | 'color.background.accent.orange.subtle.hovered'
104
+ | 'color.background.accent.orange.subtle.pressed'
105
+ | 'color.background.accent.orange.subtler'
106
+ | 'color.background.accent.orange.subtler.hovered'
107
+ | 'color.background.accent.orange.subtler.pressed'
108
+ | 'color.background.accent.orange.subtlest'
109
+ | 'color.background.accent.orange.subtlest.hovered'
110
+ | 'color.background.accent.orange.subtlest.pressed'
111
+ | 'color.background.accent.purple.bolder'
112
+ | 'color.background.accent.purple.bolder.hovered'
113
+ | 'color.background.accent.purple.bolder.pressed'
114
+ | 'color.background.accent.purple.subtle'
115
+ | 'color.background.accent.purple.subtle.hovered'
116
+ | 'color.background.accent.purple.subtle.pressed'
117
+ | 'color.background.accent.purple.subtler'
118
+ | 'color.background.accent.purple.subtler.hovered'
119
+ | 'color.background.accent.purple.subtler.pressed'
120
+ | 'color.background.accent.purple.subtlest'
121
+ | 'color.background.accent.purple.subtlest.hovered'
122
+ | 'color.background.accent.purple.subtlest.pressed'
123
+ | 'color.background.accent.red.bolder'
124
+ | 'color.background.accent.red.bolder.hovered'
125
+ | 'color.background.accent.red.bolder.pressed'
126
+ | 'color.background.accent.red.subtle'
127
+ | 'color.background.accent.red.subtle.hovered'
128
+ | 'color.background.accent.red.subtle.pressed'
129
+ | 'color.background.accent.red.subtler'
130
+ | 'color.background.accent.red.subtler.hovered'
131
+ | 'color.background.accent.red.subtler.pressed'
132
+ | 'color.background.accent.red.subtlest'
133
+ | 'color.background.accent.red.subtlest.hovered'
134
+ | 'color.background.accent.red.subtlest.pressed'
135
+ | 'color.background.accent.teal.bolder'
136
+ | 'color.background.accent.teal.bolder.hovered'
137
+ | 'color.background.accent.teal.bolder.pressed'
138
+ | 'color.background.accent.teal.subtle'
139
+ | 'color.background.accent.teal.subtle.hovered'
140
+ | 'color.background.accent.teal.subtle.pressed'
141
+ | 'color.background.accent.teal.subtler'
142
+ | 'color.background.accent.teal.subtler.hovered'
143
+ | 'color.background.accent.teal.subtler.pressed'
144
+ | 'color.background.accent.teal.subtlest'
145
+ | 'color.background.accent.teal.subtlest.hovered'
146
+ | 'color.background.accent.teal.subtlest.pressed'
147
+ | 'color.background.accent.yellow.bolder'
148
+ | 'color.background.accent.yellow.bolder.hovered'
149
+ | 'color.background.accent.yellow.bolder.pressed'
150
+ | 'color.background.accent.yellow.subtle'
151
+ | 'color.background.accent.yellow.subtle.hovered'
152
+ | 'color.background.accent.yellow.subtle.pressed'
153
+ | 'color.background.accent.yellow.subtler'
154
+ | 'color.background.accent.yellow.subtler.hovered'
155
+ | 'color.background.accent.yellow.subtler.pressed'
156
+ | 'color.background.accent.yellow.subtlest'
157
+ | 'color.background.accent.yellow.subtlest.hovered'
158
+ | 'color.background.accent.yellow.subtlest.pressed'
159
+ | 'color.background.brand.bold'
160
+ | 'color.background.brand.bold.hovered'
161
+ | 'color.background.brand.bold.pressed'
162
+ | 'color.background.brand.boldest'
163
+ | 'color.background.brand.boldest.hovered'
164
+ | 'color.background.brand.boldest.pressed'
165
+ | 'color.background.brand.subtlest'
166
+ | 'color.background.brand.subtlest.hovered'
167
+ | 'color.background.brand.subtlest.pressed'
168
+ | 'color.background.danger'
169
+ | 'color.background.danger.bold'
170
+ | 'color.background.danger.bold.hovered'
171
+ | 'color.background.danger.bold.pressed'
172
+ | 'color.background.danger.hovered'
173
+ | 'color.background.danger.pressed'
174
+ | 'color.background.disabled'
175
+ | 'color.background.discovery'
176
+ | 'color.background.discovery.bold'
177
+ | 'color.background.discovery.bold.hovered'
178
+ | 'color.background.discovery.bold.pressed'
179
+ | 'color.background.discovery.hovered'
180
+ | 'color.background.discovery.pressed'
181
+ | 'color.background.information'
182
+ | 'color.background.information.bold'
183
+ | 'color.background.information.bold.hovered'
184
+ | 'color.background.information.bold.pressed'
185
+ | 'color.background.information.hovered'
186
+ | 'color.background.information.pressed'
187
+ | 'color.background.input'
188
+ | 'color.background.input.hovered'
189
+ | 'color.background.input.pressed'
190
+ | 'color.background.inverse.subtle'
191
+ | 'color.background.inverse.subtle.hovered'
192
+ | 'color.background.inverse.subtle.pressed'
193
+ | 'color.background.neutral'
194
+ | 'color.background.neutral.bold'
195
+ | 'color.background.neutral.bold.hovered'
196
+ | 'color.background.neutral.bold.pressed'
197
+ | 'color.background.neutral.hovered'
198
+ | 'color.background.neutral.pressed'
199
+ | 'color.background.neutral.subtle'
200
+ | 'color.background.neutral.subtle.hovered'
201
+ | 'color.background.neutral.subtle.pressed'
202
+ | 'color.background.selected'
203
+ | 'color.background.selected.bold'
204
+ | 'color.background.selected.bold.hovered'
205
+ | 'color.background.selected.bold.pressed'
206
+ | 'color.background.selected.hovered'
207
+ | 'color.background.selected.pressed'
208
+ | 'color.background.success'
209
+ | 'color.background.success.bold'
210
+ | 'color.background.success.bold.hovered'
211
+ | 'color.background.success.bold.pressed'
212
+ | 'color.background.success.hovered'
213
+ | 'color.background.success.pressed'
214
+ | 'color.background.warning'
215
+ | 'color.background.warning.bold'
216
+ | 'color.background.warning.bold.hovered'
217
+ | 'color.background.warning.bold.pressed'
218
+ | 'color.background.warning.hovered'
219
+ | 'color.background.warning.pressed'
220
+ | 'color.blanket'
221
+ | 'color.blanket.danger'
222
+ | 'color.blanket.selected'
223
+ | 'color.border'
224
+ | 'color.border.accent.blue'
225
+ | 'color.border.accent.gray'
226
+ | 'color.border.accent.green'
227
+ | 'color.border.accent.lime'
228
+ | 'color.border.accent.magenta'
229
+ | 'color.border.accent.orange'
230
+ | 'color.border.accent.purple'
231
+ | 'color.border.accent.red'
232
+ | 'color.border.accent.teal'
233
+ | 'color.border.accent.yellow'
234
+ | 'color.border.bold'
235
+ | 'color.border.brand'
236
+ | 'color.border.danger'
237
+ | 'color.border.disabled'
238
+ | 'color.border.discovery'
239
+ | 'color.border.focused'
240
+ | 'color.border.information'
241
+ | 'color.border.input'
242
+ | 'color.border.inverse'
243
+ | 'color.border.selected'
244
+ | 'color.border.success'
245
+ | 'color.border.warning'
246
+ | 'color.chart.blue.bold'
247
+ | 'color.chart.blue.bold.hovered'
248
+ | 'color.chart.blue.bolder'
249
+ | 'color.chart.blue.bolder.hovered'
250
+ | 'color.chart.blue.boldest'
251
+ | 'color.chart.blue.boldest.hovered'
252
+ | 'color.chart.brand'
253
+ | 'color.chart.brand.hovered'
254
+ | 'color.chart.categorical.1'
255
+ | 'color.chart.categorical.1.hovered'
256
+ | 'color.chart.categorical.2'
257
+ | 'color.chart.categorical.2.hovered'
258
+ | 'color.chart.categorical.3'
259
+ | 'color.chart.categorical.3.hovered'
260
+ | 'color.chart.categorical.4'
261
+ | 'color.chart.categorical.4.hovered'
262
+ | 'color.chart.categorical.5'
263
+ | 'color.chart.categorical.5.hovered'
264
+ | 'color.chart.categorical.6'
265
+ | 'color.chart.categorical.6.hovered'
266
+ | 'color.chart.categorical.7'
267
+ | 'color.chart.categorical.7.hovered'
268
+ | 'color.chart.categorical.8'
269
+ | 'color.chart.categorical.8.hovered'
270
+ | 'color.chart.danger'
271
+ | 'color.chart.danger.bold'
272
+ | 'color.chart.danger.bold.hovered'
273
+ | 'color.chart.danger.hovered'
274
+ | 'color.chart.discovery'
275
+ | 'color.chart.discovery.bold'
276
+ | 'color.chart.discovery.bold.hovered'
277
+ | 'color.chart.discovery.hovered'
278
+ | 'color.chart.gray.bold'
279
+ | 'color.chart.gray.bold.hovered'
280
+ | 'color.chart.gray.bolder'
281
+ | 'color.chart.gray.bolder.hovered'
282
+ | 'color.chart.gray.boldest'
283
+ | 'color.chart.gray.boldest.hovered'
284
+ | 'color.chart.green.bold'
285
+ | 'color.chart.green.bold.hovered'
286
+ | 'color.chart.green.bolder'
287
+ | 'color.chart.green.bolder.hovered'
288
+ | 'color.chart.green.boldest'
289
+ | 'color.chart.green.boldest.hovered'
290
+ | 'color.chart.information'
291
+ | 'color.chart.information.bold'
292
+ | 'color.chart.information.bold.hovered'
293
+ | 'color.chart.information.hovered'
294
+ | 'color.chart.lime.bold'
295
+ | 'color.chart.lime.bold.hovered'
296
+ | 'color.chart.lime.bolder'
297
+ | 'color.chart.lime.bolder.hovered'
298
+ | 'color.chart.lime.boldest'
299
+ | 'color.chart.lime.boldest.hovered'
300
+ | 'color.chart.magenta.bold'
301
+ | 'color.chart.magenta.bold.hovered'
302
+ | 'color.chart.magenta.bolder'
303
+ | 'color.chart.magenta.bolder.hovered'
304
+ | 'color.chart.magenta.boldest'
305
+ | 'color.chart.magenta.boldest.hovered'
306
+ | 'color.chart.neutral'
307
+ | 'color.chart.neutral.hovered'
308
+ | 'color.chart.orange.bold'
309
+ | 'color.chart.orange.bold.hovered'
310
+ | 'color.chart.orange.bolder'
311
+ | 'color.chart.orange.bolder.hovered'
312
+ | 'color.chart.orange.boldest'
313
+ | 'color.chart.orange.boldest.hovered'
314
+ | 'color.chart.purple.bold'
315
+ | 'color.chart.purple.bold.hovered'
316
+ | 'color.chart.purple.bolder'
317
+ | 'color.chart.purple.bolder.hovered'
318
+ | 'color.chart.purple.boldest'
319
+ | 'color.chart.purple.boldest.hovered'
320
+ | 'color.chart.red.bold'
321
+ | 'color.chart.red.bold.hovered'
322
+ | 'color.chart.red.bolder'
323
+ | 'color.chart.red.bolder.hovered'
324
+ | 'color.chart.red.boldest'
325
+ | 'color.chart.red.boldest.hovered'
326
+ | 'color.chart.success'
327
+ | 'color.chart.success.bold'
328
+ | 'color.chart.success.bold.hovered'
329
+ | 'color.chart.success.hovered'
330
+ | 'color.chart.teal.bold'
331
+ | 'color.chart.teal.bold.hovered'
332
+ | 'color.chart.teal.bolder'
333
+ | 'color.chart.teal.bolder.hovered'
334
+ | 'color.chart.teal.boldest'
335
+ | 'color.chart.teal.boldest.hovered'
336
+ | 'color.chart.warning'
337
+ | 'color.chart.warning.bold'
338
+ | 'color.chart.warning.bold.hovered'
339
+ | 'color.chart.warning.hovered'
340
+ | 'color.chart.yellow.bold'
341
+ | 'color.chart.yellow.bold.hovered'
342
+ | 'color.chart.yellow.bolder'
343
+ | 'color.chart.yellow.bolder.hovered'
344
+ | 'color.chart.yellow.boldest'
345
+ | 'color.chart.yellow.boldest.hovered'
346
+ | 'color.icon'
347
+ | 'color.icon.accent.blue'
348
+ | 'color.icon.accent.gray'
349
+ | 'color.icon.accent.green'
350
+ | 'color.icon.accent.lime'
351
+ | 'color.icon.accent.magenta'
352
+ | 'color.icon.accent.orange'
353
+ | 'color.icon.accent.purple'
354
+ | 'color.icon.accent.red'
355
+ | 'color.icon.accent.teal'
356
+ | 'color.icon.accent.yellow'
357
+ | 'color.icon.brand'
358
+ | 'color.icon.danger'
359
+ | 'color.icon.disabled'
360
+ | 'color.icon.discovery'
361
+ | 'color.icon.information'
362
+ | 'color.icon.inverse'
363
+ | 'color.icon.selected'
364
+ | 'color.icon.subtle'
365
+ | 'color.icon.success'
366
+ | 'color.icon.warning'
367
+ | 'color.icon.warning.inverse'
368
+ | 'color.interaction.hovered'
369
+ | 'color.interaction.pressed'
370
+ | 'color.link'
371
+ | 'color.link.pressed'
372
+ | 'color.link.visited'
373
+ | 'color.skeleton'
374
+ | 'color.skeleton.subtle'
375
+ | 'color.text'
376
+ | 'color.text.accent.blue'
377
+ | 'color.text.accent.blue.bolder'
378
+ | 'color.text.accent.gray'
379
+ | 'color.text.accent.gray.bolder'
380
+ | 'color.text.accent.green'
381
+ | 'color.text.accent.green.bolder'
382
+ | 'color.text.accent.lime'
383
+ | 'color.text.accent.lime.bolder'
384
+ | 'color.text.accent.magenta'
385
+ | 'color.text.accent.magenta.bolder'
386
+ | 'color.text.accent.orange'
387
+ | 'color.text.accent.orange.bolder'
388
+ | 'color.text.accent.purple'
389
+ | 'color.text.accent.purple.bolder'
390
+ | 'color.text.accent.red'
391
+ | 'color.text.accent.red.bolder'
392
+ | 'color.text.accent.teal'
393
+ | 'color.text.accent.teal.bolder'
394
+ | 'color.text.accent.yellow'
395
+ | 'color.text.accent.yellow.bolder'
396
+ | 'color.text.brand'
397
+ | 'color.text.danger'
398
+ | 'color.text.disabled'
399
+ | 'color.text.discovery'
400
+ | 'color.text.information'
401
+ | 'color.text.inverse'
402
+ | 'color.text.selected'
403
+ | 'color.text.subtle'
404
+ | 'color.text.subtlest'
405
+ | 'color.text.success'
406
+ | 'color.text.warning'
407
+ | 'color.text.warning.inverse'
408
+ | 'elevation.shadow.overflow'
409
+ | 'elevation.shadow.overflow.perimeter'
410
+ | 'elevation.shadow.overflow.spread'
411
+ | 'elevation.shadow.overlay'
412
+ | 'elevation.shadow.raised'
413
+ | 'elevation.surface'
414
+ | 'elevation.surface.hovered'
415
+ | 'elevation.surface.overlay'
416
+ | 'elevation.surface.overlay.hovered'
417
+ | 'elevation.surface.overlay.pressed'
418
+ | 'elevation.surface.pressed'
419
+ | 'elevation.surface.raised'
420
+ | 'elevation.surface.raised.hovered'
421
+ | 'elevation.surface.raised.pressed'
422
+ | 'elevation.surface.sunken'
423
+ | 'opacity.disabled'
424
+ | 'opacity.loading'
425
+ | 'space.0'
426
+ | 'space.025'
427
+ | 'space.050'
428
+ | 'space.075'
429
+ | 'space.100'
430
+ | 'space.1000'
431
+ | 'space.150'
432
+ | 'space.200'
433
+ | 'space.250'
434
+ | 'space.300'
435
+ | 'space.400'
436
+ | 'space.500'
437
+ | 'space.600'
438
+ | 'space.800'
439
+ | 'space.negative.025'
440
+ | 'space.negative.050'
441
+ | 'space.negative.075'
442
+ | 'space.negative.100'
443
+ | 'space.negative.150'
444
+ | 'space.negative.200'
445
+ | 'space.negative.250'
446
+ | 'space.negative.300'
447
+ | 'space.negative.400'
448
+ | 'utility.UNSAFE.textTransformUppercase'
449
+ | 'utility.UNSAFE.transparent'
450
+ | 'utility.elevation.surface.current';
450
451
 
451
452
  // @public (undocumented)
452
453
  type ActiveTokenState = 'active';
@@ -459,472 +460,472 @@ export type CSSToken = CSSTokenMap[keyof CSSTokenMap];
459
460
 
460
461
  // @public (undocumented)
461
462
  type CSSTokenMap = {
462
- 'color.text': 'var(--ds-text)';
463
- 'color.text.accent.lime': 'var(--ds-text-accent-lime)';
464
- 'color.text.accent.lime.bolder': 'var(--ds-text-accent-lime-bolder)';
465
- 'color.text.accent.red': 'var(--ds-text-accent-red)';
466
- 'color.text.accent.red.bolder': 'var(--ds-text-accent-red-bolder)';
467
- 'color.text.accent.orange': 'var(--ds-text-accent-orange)';
468
- 'color.text.accent.orange.bolder': 'var(--ds-text-accent-orange-bolder)';
469
- 'color.text.accent.yellow': 'var(--ds-text-accent-yellow)';
470
- 'color.text.accent.yellow.bolder': 'var(--ds-text-accent-yellow-bolder)';
471
- 'color.text.accent.green': 'var(--ds-text-accent-green)';
472
- 'color.text.accent.green.bolder': 'var(--ds-text-accent-green-bolder)';
473
- 'color.text.accent.teal': 'var(--ds-text-accent-teal)';
474
- 'color.text.accent.teal.bolder': 'var(--ds-text-accent-teal-bolder)';
475
- 'color.text.accent.blue': 'var(--ds-text-accent-blue)';
476
- 'color.text.accent.blue.bolder': 'var(--ds-text-accent-blue-bolder)';
477
- 'color.text.accent.purple': 'var(--ds-text-accent-purple)';
478
- 'color.text.accent.purple.bolder': 'var(--ds-text-accent-purple-bolder)';
479
- 'color.text.accent.magenta': 'var(--ds-text-accent-magenta)';
480
- 'color.text.accent.magenta.bolder': 'var(--ds-text-accent-magenta-bolder)';
481
- 'color.text.accent.gray': 'var(--ds-text-accent-gray)';
482
- 'color.text.accent.gray.bolder': 'var(--ds-text-accent-gray-bolder)';
483
- 'color.text.disabled': 'var(--ds-text-disabled)';
484
- 'color.text.inverse': 'var(--ds-text-inverse)';
485
- 'color.text.selected': 'var(--ds-text-selected)';
486
- 'color.text.brand': 'var(--ds-text-brand)';
487
- 'color.text.danger': 'var(--ds-text-danger)';
488
- 'color.text.warning': 'var(--ds-text-warning)';
489
- 'color.text.warning.inverse': 'var(--ds-text-warning-inverse)';
490
- 'color.text.success': 'var(--ds-text-success)';
491
- 'color.text.discovery': 'var(--ds-text-discovery)';
492
- 'color.text.information': 'var(--ds-text-information)';
493
- 'color.text.subtlest': 'var(--ds-text-subtlest)';
494
- 'color.text.subtle': 'var(--ds-text-subtle)';
495
- 'color.link': 'var(--ds-link)';
496
- 'color.link.pressed': 'var(--ds-link-pressed)';
497
- 'color.link.visited': 'var(--ds-link-visited)';
498
- 'color.icon': 'var(--ds-icon)';
499
- 'color.icon.accent.lime': 'var(--ds-icon-accent-lime)';
500
- 'color.icon.accent.red': 'var(--ds-icon-accent-red)';
501
- 'color.icon.accent.orange': 'var(--ds-icon-accent-orange)';
502
- 'color.icon.accent.yellow': 'var(--ds-icon-accent-yellow)';
503
- 'color.icon.accent.green': 'var(--ds-icon-accent-green)';
504
- 'color.icon.accent.teal': 'var(--ds-icon-accent-teal)';
505
- 'color.icon.accent.blue': 'var(--ds-icon-accent-blue)';
506
- 'color.icon.accent.purple': 'var(--ds-icon-accent-purple)';
507
- 'color.icon.accent.magenta': 'var(--ds-icon-accent-magenta)';
508
- 'color.icon.accent.gray': 'var(--ds-icon-accent-gray)';
509
- 'color.icon.disabled': 'var(--ds-icon-disabled)';
510
- 'color.icon.inverse': 'var(--ds-icon-inverse)';
511
- 'color.icon.selected': 'var(--ds-icon-selected)';
512
- 'color.icon.brand': 'var(--ds-icon-brand)';
513
- 'color.icon.danger': 'var(--ds-icon-danger)';
514
- 'color.icon.warning': 'var(--ds-icon-warning)';
515
- 'color.icon.warning.inverse': 'var(--ds-icon-warning-inverse)';
516
- 'color.icon.success': 'var(--ds-icon-success)';
517
- 'color.icon.discovery': 'var(--ds-icon-discovery)';
518
- 'color.icon.information': 'var(--ds-icon-information)';
519
- 'color.icon.subtle': 'var(--ds-icon-subtle)';
520
- 'color.border': 'var(--ds-border)';
521
- 'color.border.accent.lime': 'var(--ds-border-accent-lime)';
522
- 'color.border.accent.red': 'var(--ds-border-accent-red)';
523
- 'color.border.accent.orange': 'var(--ds-border-accent-orange)';
524
- 'color.border.accent.yellow': 'var(--ds-border-accent-yellow)';
525
- 'color.border.accent.green': 'var(--ds-border-accent-green)';
526
- 'color.border.accent.teal': 'var(--ds-border-accent-teal)';
527
- 'color.border.accent.blue': 'var(--ds-border-accent-blue)';
528
- 'color.border.accent.purple': 'var(--ds-border-accent-purple)';
529
- 'color.border.accent.magenta': 'var(--ds-border-accent-magenta)';
530
- 'color.border.accent.gray': 'var(--ds-border-accent-gray)';
531
- 'color.border.disabled': 'var(--ds-border-disabled)';
532
- 'color.border.focused': 'var(--ds-border-focused)';
533
- 'color.border.input': 'var(--ds-border-input)';
534
- 'color.border.inverse': 'var(--ds-border-inverse)';
535
- 'color.border.selected': 'var(--ds-border-selected)';
536
- 'color.border.brand': 'var(--ds-border-brand)';
537
- 'color.border.danger': 'var(--ds-border-danger)';
538
- 'color.border.warning': 'var(--ds-border-warning)';
539
- 'color.border.success': 'var(--ds-border-success)';
540
- 'color.border.discovery': 'var(--ds-border-discovery)';
541
- 'color.border.information': 'var(--ds-border-information)';
542
- 'color.border.bold': 'var(--ds-border-bold)';
543
- 'color.background.accent.lime.subtlest': 'var(--ds-background-accent-lime-subtlest)';
544
- 'color.background.accent.lime.subtlest.hovered': 'var(--ds-background-accent-lime-subtlest-hovered)';
545
- 'color.background.accent.lime.subtlest.pressed': 'var(--ds-background-accent-lime-subtlest-pressed)';
546
- 'color.background.accent.lime.subtler': 'var(--ds-background-accent-lime-subtler)';
547
- 'color.background.accent.lime.subtler.hovered': 'var(--ds-background-accent-lime-subtler-hovered)';
548
- 'color.background.accent.lime.subtler.pressed': 'var(--ds-background-accent-lime-subtler-pressed)';
549
- 'color.background.accent.lime.subtle': 'var(--ds-background-accent-lime-subtle)';
550
- 'color.background.accent.lime.subtle.hovered': 'var(--ds-background-accent-lime-subtle-hovered)';
551
- 'color.background.accent.lime.subtle.pressed': 'var(--ds-background-accent-lime-subtle-pressed)';
552
- 'color.background.accent.lime.bolder': 'var(--ds-background-accent-lime-bolder)';
553
- 'color.background.accent.lime.bolder.hovered': 'var(--ds-background-accent-lime-bolder-hovered)';
554
- 'color.background.accent.lime.bolder.pressed': 'var(--ds-background-accent-lime-bolder-pressed)';
555
- 'color.background.accent.red.subtlest': 'var(--ds-background-accent-red-subtlest)';
556
- 'color.background.accent.red.subtlest.hovered': 'var(--ds-background-accent-red-subtlest-hovered)';
557
- 'color.background.accent.red.subtlest.pressed': 'var(--ds-background-accent-red-subtlest-pressed)';
558
- 'color.background.accent.red.subtler': 'var(--ds-background-accent-red-subtler)';
559
- 'color.background.accent.red.subtler.hovered': 'var(--ds-background-accent-red-subtler-hovered)';
560
- 'color.background.accent.red.subtler.pressed': 'var(--ds-background-accent-red-subtler-pressed)';
561
- 'color.background.accent.red.subtle': 'var(--ds-background-accent-red-subtle)';
562
- 'color.background.accent.red.subtle.hovered': 'var(--ds-background-accent-red-subtle-hovered)';
563
- 'color.background.accent.red.subtle.pressed': 'var(--ds-background-accent-red-subtle-pressed)';
564
- 'color.background.accent.red.bolder': 'var(--ds-background-accent-red-bolder)';
565
- 'color.background.accent.red.bolder.hovered': 'var(--ds-background-accent-red-bolder-hovered)';
566
- 'color.background.accent.red.bolder.pressed': 'var(--ds-background-accent-red-bolder-pressed)';
567
- 'color.background.accent.orange.subtlest': 'var(--ds-background-accent-orange-subtlest)';
568
- 'color.background.accent.orange.subtlest.hovered': 'var(--ds-background-accent-orange-subtlest-hovered)';
569
- 'color.background.accent.orange.subtlest.pressed': 'var(--ds-background-accent-orange-subtlest-pressed)';
570
- 'color.background.accent.orange.subtler': 'var(--ds-background-accent-orange-subtler)';
571
- 'color.background.accent.orange.subtler.hovered': 'var(--ds-background-accent-orange-subtler-hovered)';
572
- 'color.background.accent.orange.subtler.pressed': 'var(--ds-background-accent-orange-subtler-pressed)';
573
- 'color.background.accent.orange.subtle': 'var(--ds-background-accent-orange-subtle)';
574
- 'color.background.accent.orange.subtle.hovered': 'var(--ds-background-accent-orange-subtle-hovered)';
575
- 'color.background.accent.orange.subtle.pressed': 'var(--ds-background-accent-orange-subtle-pressed)';
576
- 'color.background.accent.orange.bolder': 'var(--ds-background-accent-orange-bolder)';
577
- 'color.background.accent.orange.bolder.hovered': 'var(--ds-background-accent-orange-bolder-hovered)';
578
- 'color.background.accent.orange.bolder.pressed': 'var(--ds-background-accent-orange-bolder-pressed)';
579
- 'color.background.accent.yellow.subtlest': 'var(--ds-background-accent-yellow-subtlest)';
580
- 'color.background.accent.yellow.subtlest.hovered': 'var(--ds-background-accent-yellow-subtlest-hovered)';
581
- 'color.background.accent.yellow.subtlest.pressed': 'var(--ds-background-accent-yellow-subtlest-pressed)';
582
- 'color.background.accent.yellow.subtler': 'var(--ds-background-accent-yellow-subtler)';
583
- 'color.background.accent.yellow.subtler.hovered': 'var(--ds-background-accent-yellow-subtler-hovered)';
584
- 'color.background.accent.yellow.subtler.pressed': 'var(--ds-background-accent-yellow-subtler-pressed)';
585
- 'color.background.accent.yellow.subtle': 'var(--ds-background-accent-yellow-subtle)';
586
- 'color.background.accent.yellow.subtle.hovered': 'var(--ds-background-accent-yellow-subtle-hovered)';
587
- 'color.background.accent.yellow.subtle.pressed': 'var(--ds-background-accent-yellow-subtle-pressed)';
588
- 'color.background.accent.yellow.bolder': 'var(--ds-background-accent-yellow-bolder)';
589
- 'color.background.accent.yellow.bolder.hovered': 'var(--ds-background-accent-yellow-bolder-hovered)';
590
- 'color.background.accent.yellow.bolder.pressed': 'var(--ds-background-accent-yellow-bolder-pressed)';
591
- 'color.background.accent.green.subtlest': 'var(--ds-background-accent-green-subtlest)';
592
- 'color.background.accent.green.subtlest.hovered': 'var(--ds-background-accent-green-subtlest-hovered)';
593
- 'color.background.accent.green.subtlest.pressed': 'var(--ds-background-accent-green-subtlest-pressed)';
594
- 'color.background.accent.green.subtler': 'var(--ds-background-accent-green-subtler)';
595
- 'color.background.accent.green.subtler.hovered': 'var(--ds-background-accent-green-subtler-hovered)';
596
- 'color.background.accent.green.subtler.pressed': 'var(--ds-background-accent-green-subtler-pressed)';
597
- 'color.background.accent.green.subtle': 'var(--ds-background-accent-green-subtle)';
598
- 'color.background.accent.green.subtle.hovered': 'var(--ds-background-accent-green-subtle-hovered)';
599
- 'color.background.accent.green.subtle.pressed': 'var(--ds-background-accent-green-subtle-pressed)';
600
- 'color.background.accent.green.bolder': 'var(--ds-background-accent-green-bolder)';
601
- 'color.background.accent.green.bolder.hovered': 'var(--ds-background-accent-green-bolder-hovered)';
602
- 'color.background.accent.green.bolder.pressed': 'var(--ds-background-accent-green-bolder-pressed)';
603
- 'color.background.accent.teal.subtlest': 'var(--ds-background-accent-teal-subtlest)';
604
- 'color.background.accent.teal.subtlest.hovered': 'var(--ds-background-accent-teal-subtlest-hovered)';
605
- 'color.background.accent.teal.subtlest.pressed': 'var(--ds-background-accent-teal-subtlest-pressed)';
606
- 'color.background.accent.teal.subtler': 'var(--ds-background-accent-teal-subtler)';
607
- 'color.background.accent.teal.subtler.hovered': 'var(--ds-background-accent-teal-subtler-hovered)';
608
- 'color.background.accent.teal.subtler.pressed': 'var(--ds-background-accent-teal-subtler-pressed)';
609
- 'color.background.accent.teal.subtle': 'var(--ds-background-accent-teal-subtle)';
610
- 'color.background.accent.teal.subtle.hovered': 'var(--ds-background-accent-teal-subtle-hovered)';
611
- 'color.background.accent.teal.subtle.pressed': 'var(--ds-background-accent-teal-subtle-pressed)';
612
- 'color.background.accent.teal.bolder': 'var(--ds-background-accent-teal-bolder)';
613
- 'color.background.accent.teal.bolder.hovered': 'var(--ds-background-accent-teal-bolder-hovered)';
614
- 'color.background.accent.teal.bolder.pressed': 'var(--ds-background-accent-teal-bolder-pressed)';
615
- 'color.background.accent.blue.subtlest': 'var(--ds-background-accent-blue-subtlest)';
616
- 'color.background.accent.blue.subtlest.hovered': 'var(--ds-background-accent-blue-subtlest-hovered)';
617
- 'color.background.accent.blue.subtlest.pressed': 'var(--ds-background-accent-blue-subtlest-pressed)';
618
- 'color.background.accent.blue.subtler': 'var(--ds-background-accent-blue-subtler)';
619
- 'color.background.accent.blue.subtler.hovered': 'var(--ds-background-accent-blue-subtler-hovered)';
620
- 'color.background.accent.blue.subtler.pressed': 'var(--ds-background-accent-blue-subtler-pressed)';
621
- 'color.background.accent.blue.subtle': 'var(--ds-background-accent-blue-subtle)';
622
- 'color.background.accent.blue.subtle.hovered': 'var(--ds-background-accent-blue-subtle-hovered)';
623
- 'color.background.accent.blue.subtle.pressed': 'var(--ds-background-accent-blue-subtle-pressed)';
624
- 'color.background.accent.blue.bolder': 'var(--ds-background-accent-blue-bolder)';
625
- 'color.background.accent.blue.bolder.hovered': 'var(--ds-background-accent-blue-bolder-hovered)';
626
- 'color.background.accent.blue.bolder.pressed': 'var(--ds-background-accent-blue-bolder-pressed)';
627
- 'color.background.accent.purple.subtlest': 'var(--ds-background-accent-purple-subtlest)';
628
- 'color.background.accent.purple.subtlest.hovered': 'var(--ds-background-accent-purple-subtlest-hovered)';
629
- 'color.background.accent.purple.subtlest.pressed': 'var(--ds-background-accent-purple-subtlest-pressed)';
630
- 'color.background.accent.purple.subtler': 'var(--ds-background-accent-purple-subtler)';
631
- 'color.background.accent.purple.subtler.hovered': 'var(--ds-background-accent-purple-subtler-hovered)';
632
- 'color.background.accent.purple.subtler.pressed': 'var(--ds-background-accent-purple-subtler-pressed)';
633
- 'color.background.accent.purple.subtle': 'var(--ds-background-accent-purple-subtle)';
634
- 'color.background.accent.purple.subtle.hovered': 'var(--ds-background-accent-purple-subtle-hovered)';
635
- 'color.background.accent.purple.subtle.pressed': 'var(--ds-background-accent-purple-subtle-pressed)';
636
- 'color.background.accent.purple.bolder': 'var(--ds-background-accent-purple-bolder)';
637
- 'color.background.accent.purple.bolder.hovered': 'var(--ds-background-accent-purple-bolder-hovered)';
638
- 'color.background.accent.purple.bolder.pressed': 'var(--ds-background-accent-purple-bolder-pressed)';
639
- 'color.background.accent.magenta.subtlest': 'var(--ds-background-accent-magenta-subtlest)';
640
- 'color.background.accent.magenta.subtlest.hovered': 'var(--ds-background-accent-magenta-subtlest-hovered)';
641
- 'color.background.accent.magenta.subtlest.pressed': 'var(--ds-background-accent-magenta-subtlest-pressed)';
642
- 'color.background.accent.magenta.subtler': 'var(--ds-background-accent-magenta-subtler)';
643
- 'color.background.accent.magenta.subtler.hovered': 'var(--ds-background-accent-magenta-subtler-hovered)';
644
- 'color.background.accent.magenta.subtler.pressed': 'var(--ds-background-accent-magenta-subtler-pressed)';
645
- 'color.background.accent.magenta.subtle': 'var(--ds-background-accent-magenta-subtle)';
646
- 'color.background.accent.magenta.subtle.hovered': 'var(--ds-background-accent-magenta-subtle-hovered)';
647
- 'color.background.accent.magenta.subtle.pressed': 'var(--ds-background-accent-magenta-subtle-pressed)';
648
- 'color.background.accent.magenta.bolder': 'var(--ds-background-accent-magenta-bolder)';
649
- 'color.background.accent.magenta.bolder.hovered': 'var(--ds-background-accent-magenta-bolder-hovered)';
650
- 'color.background.accent.magenta.bolder.pressed': 'var(--ds-background-accent-magenta-bolder-pressed)';
651
- 'color.background.accent.gray.subtlest': 'var(--ds-background-accent-gray-subtlest)';
652
- 'color.background.accent.gray.subtlest.hovered': 'var(--ds-background-accent-gray-subtlest-hovered)';
653
- 'color.background.accent.gray.subtlest.pressed': 'var(--ds-background-accent-gray-subtlest-pressed)';
654
- 'color.background.accent.gray.subtler': 'var(--ds-background-accent-gray-subtler)';
655
- 'color.background.accent.gray.subtler.hovered': 'var(--ds-background-accent-gray-subtler-hovered)';
656
- 'color.background.accent.gray.subtler.pressed': 'var(--ds-background-accent-gray-subtler-pressed)';
657
- 'color.background.accent.gray.subtle': 'var(--ds-background-accent-gray-subtle)';
658
- 'color.background.accent.gray.subtle.hovered': 'var(--ds-background-accent-gray-subtle-hovered)';
659
- 'color.background.accent.gray.subtle.pressed': 'var(--ds-background-accent-gray-subtle-pressed)';
660
- 'color.background.accent.gray.bolder': 'var(--ds-background-accent-gray-bolder)';
661
- 'color.background.accent.gray.bolder.hovered': 'var(--ds-background-accent-gray-bolder-hovered)';
662
- 'color.background.accent.gray.bolder.pressed': 'var(--ds-background-accent-gray-bolder-pressed)';
663
- 'color.background.disabled': 'var(--ds-background-disabled)';
664
- 'color.background.input': 'var(--ds-background-input)';
665
- 'color.background.input.hovered': 'var(--ds-background-input-hovered)';
666
- 'color.background.input.pressed': 'var(--ds-background-input-pressed)';
667
- 'color.background.inverse.subtle': 'var(--ds-background-inverse-subtle)';
668
- 'color.background.inverse.subtle.hovered': 'var(--ds-background-inverse-subtle-hovered)';
669
- 'color.background.inverse.subtle.pressed': 'var(--ds-background-inverse-subtle-pressed)';
670
- 'color.background.neutral': 'var(--ds-background-neutral)';
671
- 'color.background.neutral.hovered': 'var(--ds-background-neutral-hovered)';
672
- 'color.background.neutral.pressed': 'var(--ds-background-neutral-pressed)';
673
- 'color.background.neutral.subtle': 'var(--ds-background-neutral-subtle)';
674
- 'color.background.neutral.subtle.hovered': 'var(--ds-background-neutral-subtle-hovered)';
675
- 'color.background.neutral.subtle.pressed': 'var(--ds-background-neutral-subtle-pressed)';
676
- 'color.background.neutral.bold': 'var(--ds-background-neutral-bold)';
677
- 'color.background.neutral.bold.hovered': 'var(--ds-background-neutral-bold-hovered)';
678
- 'color.background.neutral.bold.pressed': 'var(--ds-background-neutral-bold-pressed)';
679
- 'color.background.selected': 'var(--ds-background-selected)';
680
- 'color.background.selected.hovered': 'var(--ds-background-selected-hovered)';
681
- 'color.background.selected.pressed': 'var(--ds-background-selected-pressed)';
682
- 'color.background.selected.bold': 'var(--ds-background-selected-bold)';
683
- 'color.background.selected.bold.hovered': 'var(--ds-background-selected-bold-hovered)';
684
- 'color.background.selected.bold.pressed': 'var(--ds-background-selected-bold-pressed)';
685
- 'color.background.brand.subtlest': 'var(--ds-background-brand-subtlest)';
686
- 'color.background.brand.subtlest.hovered': 'var(--ds-background-brand-subtlest-hovered)';
687
- 'color.background.brand.subtlest.pressed': 'var(--ds-background-brand-subtlest-pressed)';
688
- 'color.background.brand.bold': 'var(--ds-background-brand-bold)';
689
- 'color.background.brand.bold.hovered': 'var(--ds-background-brand-bold-hovered)';
690
- 'color.background.brand.bold.pressed': 'var(--ds-background-brand-bold-pressed)';
691
- 'color.background.brand.boldest': 'var(--ds-background-brand-boldest)';
692
- 'color.background.brand.boldest.hovered': 'var(--ds-background-brand-boldest-hovered)';
693
- 'color.background.brand.boldest.pressed': 'var(--ds-background-brand-boldest-pressed)';
694
- 'color.background.danger': 'var(--ds-background-danger)';
695
- 'color.background.danger.hovered': 'var(--ds-background-danger-hovered)';
696
- 'color.background.danger.pressed': 'var(--ds-background-danger-pressed)';
697
- 'color.background.danger.bold': 'var(--ds-background-danger-bold)';
698
- 'color.background.danger.bold.hovered': 'var(--ds-background-danger-bold-hovered)';
699
- 'color.background.danger.bold.pressed': 'var(--ds-background-danger-bold-pressed)';
700
- 'color.background.warning': 'var(--ds-background-warning)';
701
- 'color.background.warning.hovered': 'var(--ds-background-warning-hovered)';
702
- 'color.background.warning.pressed': 'var(--ds-background-warning-pressed)';
703
- 'color.background.warning.bold': 'var(--ds-background-warning-bold)';
704
- 'color.background.warning.bold.hovered': 'var(--ds-background-warning-bold-hovered)';
705
- 'color.background.warning.bold.pressed': 'var(--ds-background-warning-bold-pressed)';
706
- 'color.background.success': 'var(--ds-background-success)';
707
- 'color.background.success.hovered': 'var(--ds-background-success-hovered)';
708
- 'color.background.success.pressed': 'var(--ds-background-success-pressed)';
709
- 'color.background.success.bold': 'var(--ds-background-success-bold)';
710
- 'color.background.success.bold.hovered': 'var(--ds-background-success-bold-hovered)';
711
- 'color.background.success.bold.pressed': 'var(--ds-background-success-bold-pressed)';
712
- 'color.background.discovery': 'var(--ds-background-discovery)';
713
- 'color.background.discovery.hovered': 'var(--ds-background-discovery-hovered)';
714
- 'color.background.discovery.pressed': 'var(--ds-background-discovery-pressed)';
715
- 'color.background.discovery.bold': 'var(--ds-background-discovery-bold)';
716
- 'color.background.discovery.bold.hovered': 'var(--ds-background-discovery-bold-hovered)';
717
- 'color.background.discovery.bold.pressed': 'var(--ds-background-discovery-bold-pressed)';
718
- 'color.background.information': 'var(--ds-background-information)';
719
- 'color.background.information.hovered': 'var(--ds-background-information-hovered)';
720
- 'color.background.information.pressed': 'var(--ds-background-information-pressed)';
721
- 'color.background.information.bold': 'var(--ds-background-information-bold)';
722
- 'color.background.information.bold.hovered': 'var(--ds-background-information-bold-hovered)';
723
- 'color.background.information.bold.pressed': 'var(--ds-background-information-bold-pressed)';
724
- 'color.blanket': 'var(--ds-blanket)';
725
- 'color.blanket.selected': 'var(--ds-blanket-selected)';
726
- 'color.blanket.danger': 'var(--ds-blanket-danger)';
727
- 'color.interaction.hovered': 'var(--ds-interaction-hovered)';
728
- 'color.interaction.pressed': 'var(--ds-interaction-pressed)';
729
- 'color.skeleton': 'var(--ds-skeleton)';
730
- 'color.skeleton.subtle': 'var(--ds-skeleton-subtle)';
731
- 'color.chart.categorical.1': 'var(--ds-chart-categorical-1)';
732
- 'color.chart.categorical.1.hovered': 'var(--ds-chart-categorical-1-hovered)';
733
- 'color.chart.categorical.2': 'var(--ds-chart-categorical-2)';
734
- 'color.chart.categorical.2.hovered': 'var(--ds-chart-categorical-2-hovered)';
735
- 'color.chart.categorical.3': 'var(--ds-chart-categorical-3)';
736
- 'color.chart.categorical.3.hovered': 'var(--ds-chart-categorical-3-hovered)';
737
- 'color.chart.categorical.4': 'var(--ds-chart-categorical-4)';
738
- 'color.chart.categorical.4.hovered': 'var(--ds-chart-categorical-4-hovered)';
739
- 'color.chart.categorical.5': 'var(--ds-chart-categorical-5)';
740
- 'color.chart.categorical.5.hovered': 'var(--ds-chart-categorical-5-hovered)';
741
- 'color.chart.categorical.6': 'var(--ds-chart-categorical-6)';
742
- 'color.chart.categorical.6.hovered': 'var(--ds-chart-categorical-6-hovered)';
743
- 'color.chart.categorical.7': 'var(--ds-chart-categorical-7)';
744
- 'color.chart.categorical.7.hovered': 'var(--ds-chart-categorical-7-hovered)';
745
- 'color.chart.categorical.8': 'var(--ds-chart-categorical-8)';
746
- 'color.chart.categorical.8.hovered': 'var(--ds-chart-categorical-8-hovered)';
747
- 'color.chart.lime.bold': 'var(--ds-chart-lime-bold)';
748
- 'color.chart.lime.bold.hovered': 'var(--ds-chart-lime-bold-hovered)';
749
- 'color.chart.lime.bolder': 'var(--ds-chart-lime-bolder)';
750
- 'color.chart.lime.bolder.hovered': 'var(--ds-chart-lime-bolder-hovered)';
751
- 'color.chart.lime.boldest': 'var(--ds-chart-lime-boldest)';
752
- 'color.chart.lime.boldest.hovered': 'var(--ds-chart-lime-boldest-hovered)';
753
- 'color.chart.neutral': 'var(--ds-chart-neutral)';
754
- 'color.chart.neutral.hovered': 'var(--ds-chart-neutral-hovered)';
755
- 'color.chart.red.bold': 'var(--ds-chart-red-bold)';
756
- 'color.chart.red.bold.hovered': 'var(--ds-chart-red-bold-hovered)';
757
- 'color.chart.red.bolder': 'var(--ds-chart-red-bolder)';
758
- 'color.chart.red.bolder.hovered': 'var(--ds-chart-red-bolder-hovered)';
759
- 'color.chart.red.boldest': 'var(--ds-chart-red-boldest)';
760
- 'color.chart.red.boldest.hovered': 'var(--ds-chart-red-boldest-hovered)';
761
- 'color.chart.orange.bold': 'var(--ds-chart-orange-bold)';
762
- 'color.chart.orange.bold.hovered': 'var(--ds-chart-orange-bold-hovered)';
763
- 'color.chart.orange.bolder': 'var(--ds-chart-orange-bolder)';
764
- 'color.chart.orange.bolder.hovered': 'var(--ds-chart-orange-bolder-hovered)';
765
- 'color.chart.orange.boldest': 'var(--ds-chart-orange-boldest)';
766
- 'color.chart.orange.boldest.hovered': 'var(--ds-chart-orange-boldest-hovered)';
767
- 'color.chart.yellow.bold': 'var(--ds-chart-yellow-bold)';
768
- 'color.chart.yellow.bold.hovered': 'var(--ds-chart-yellow-bold-hovered)';
769
- 'color.chart.yellow.bolder': 'var(--ds-chart-yellow-bolder)';
770
- 'color.chart.yellow.bolder.hovered': 'var(--ds-chart-yellow-bolder-hovered)';
771
- 'color.chart.yellow.boldest': 'var(--ds-chart-yellow-boldest)';
772
- 'color.chart.yellow.boldest.hovered': 'var(--ds-chart-yellow-boldest-hovered)';
773
- 'color.chart.green.bold': 'var(--ds-chart-green-bold)';
774
- 'color.chart.green.bold.hovered': 'var(--ds-chart-green-bold-hovered)';
775
- 'color.chart.green.bolder': 'var(--ds-chart-green-bolder)';
776
- 'color.chart.green.bolder.hovered': 'var(--ds-chart-green-bolder-hovered)';
777
- 'color.chart.green.boldest': 'var(--ds-chart-green-boldest)';
778
- 'color.chart.green.boldest.hovered': 'var(--ds-chart-green-boldest-hovered)';
779
- 'color.chart.teal.bold': 'var(--ds-chart-teal-bold)';
780
- 'color.chart.teal.bold.hovered': 'var(--ds-chart-teal-bold-hovered)';
781
- 'color.chart.teal.bolder': 'var(--ds-chart-teal-bolder)';
782
- 'color.chart.teal.bolder.hovered': 'var(--ds-chart-teal-bolder-hovered)';
783
- 'color.chart.teal.boldest': 'var(--ds-chart-teal-boldest)';
784
- 'color.chart.teal.boldest.hovered': 'var(--ds-chart-teal-boldest-hovered)';
785
- 'color.chart.blue.bold': 'var(--ds-chart-blue-bold)';
786
- 'color.chart.blue.bold.hovered': 'var(--ds-chart-blue-bold-hovered)';
787
- 'color.chart.blue.bolder': 'var(--ds-chart-blue-bolder)';
788
- 'color.chart.blue.bolder.hovered': 'var(--ds-chart-blue-bolder-hovered)';
789
- 'color.chart.blue.boldest': 'var(--ds-chart-blue-boldest)';
790
- 'color.chart.blue.boldest.hovered': 'var(--ds-chart-blue-boldest-hovered)';
791
- 'color.chart.purple.bold': 'var(--ds-chart-purple-bold)';
792
- 'color.chart.purple.bold.hovered': 'var(--ds-chart-purple-bold-hovered)';
793
- 'color.chart.purple.bolder': 'var(--ds-chart-purple-bolder)';
794
- 'color.chart.purple.bolder.hovered': 'var(--ds-chart-purple-bolder-hovered)';
795
- 'color.chart.purple.boldest': 'var(--ds-chart-purple-boldest)';
796
- 'color.chart.purple.boldest.hovered': 'var(--ds-chart-purple-boldest-hovered)';
797
- 'color.chart.magenta.bold': 'var(--ds-chart-magenta-bold)';
798
- 'color.chart.magenta.bold.hovered': 'var(--ds-chart-magenta-bold-hovered)';
799
- 'color.chart.magenta.bolder': 'var(--ds-chart-magenta-bolder)';
800
- 'color.chart.magenta.bolder.hovered': 'var(--ds-chart-magenta-bolder-hovered)';
801
- 'color.chart.magenta.boldest': 'var(--ds-chart-magenta-boldest)';
802
- 'color.chart.magenta.boldest.hovered': 'var(--ds-chart-magenta-boldest-hovered)';
803
- 'color.chart.gray.bold': 'var(--ds-chart-gray-bold)';
804
- 'color.chart.gray.bold.hovered': 'var(--ds-chart-gray-bold-hovered)';
805
- 'color.chart.gray.bolder': 'var(--ds-chart-gray-bolder)';
806
- 'color.chart.gray.bolder.hovered': 'var(--ds-chart-gray-bolder-hovered)';
807
- 'color.chart.gray.boldest': 'var(--ds-chart-gray-boldest)';
808
- 'color.chart.gray.boldest.hovered': 'var(--ds-chart-gray-boldest-hovered)';
809
- 'color.chart.brand': 'var(--ds-chart-brand)';
810
- 'color.chart.brand.hovered': 'var(--ds-chart-brand-hovered)';
811
- 'color.chart.danger': 'var(--ds-chart-danger)';
812
- 'color.chart.danger.hovered': 'var(--ds-chart-danger-hovered)';
813
- 'color.chart.danger.bold': 'var(--ds-chart-danger-bold)';
814
- 'color.chart.danger.bold.hovered': 'var(--ds-chart-danger-bold-hovered)';
815
- 'color.chart.warning': 'var(--ds-chart-warning)';
816
- 'color.chart.warning.hovered': 'var(--ds-chart-warning-hovered)';
817
- 'color.chart.warning.bold': 'var(--ds-chart-warning-bold)';
818
- 'color.chart.warning.bold.hovered': 'var(--ds-chart-warning-bold-hovered)';
819
- 'color.chart.success': 'var(--ds-chart-success)';
820
- 'color.chart.success.hovered': 'var(--ds-chart-success-hovered)';
821
- 'color.chart.success.bold': 'var(--ds-chart-success-bold)';
822
- 'color.chart.success.bold.hovered': 'var(--ds-chart-success-bold-hovered)';
823
- 'color.chart.discovery': 'var(--ds-chart-discovery)';
824
- 'color.chart.discovery.hovered': 'var(--ds-chart-discovery-hovered)';
825
- 'color.chart.discovery.bold': 'var(--ds-chart-discovery-bold)';
826
- 'color.chart.discovery.bold.hovered': 'var(--ds-chart-discovery-bold-hovered)';
827
- 'color.chart.information': 'var(--ds-chart-information)';
828
- 'color.chart.information.hovered': 'var(--ds-chart-information-hovered)';
829
- 'color.chart.information.bold': 'var(--ds-chart-information-bold)';
830
- 'color.chart.information.bold.hovered': 'var(--ds-chart-information-bold-hovered)';
831
- 'elevation.surface': 'var(--ds-surface)';
832
- 'elevation.surface.hovered': 'var(--ds-surface-hovered)';
833
- 'elevation.surface.pressed': 'var(--ds-surface-pressed)';
834
- 'elevation.surface.overlay': 'var(--ds-surface-overlay)';
835
- 'elevation.surface.overlay.hovered': 'var(--ds-surface-overlay-hovered)';
836
- 'elevation.surface.overlay.pressed': 'var(--ds-surface-overlay-pressed)';
837
- 'elevation.surface.raised': 'var(--ds-surface-raised)';
838
- 'elevation.surface.raised.hovered': 'var(--ds-surface-raised-hovered)';
839
- 'elevation.surface.raised.pressed': 'var(--ds-surface-raised-pressed)';
840
- 'elevation.surface.sunken': 'var(--ds-surface-sunken)';
841
- 'elevation.shadow.overflow': 'var(--ds-shadow-overflow)';
842
- 'elevation.shadow.overflow.perimeter': 'var(--ds-shadow-overflow-perimeter)';
843
- 'elevation.shadow.overflow.spread': 'var(--ds-shadow-overflow-spread)';
844
- 'elevation.shadow.overlay': 'var(--ds-shadow-overlay)';
845
- 'elevation.shadow.raised': 'var(--ds-shadow-raised)';
846
- 'opacity.disabled': 'var(--ds-opacity-disabled)';
847
- 'opacity.loading': 'var(--ds-opacity-loading)';
848
- 'utility.UNSAFE.textTransformUppercase': 'var(--ds-UNSAFE-textTransformUppercase)';
849
- 'utility.UNSAFE.transparent': 'var(--ds-UNSAFE-transparent)';
850
- 'utility.elevation.surface.current': 'var(--ds-elevation-surface-current)';
851
- 'border.radius.050': 'var(--ds-border-radius-050)';
852
- 'border.radius': 'var(--ds-border-radius)';
853
- 'border.radius.100': 'var(--ds-border-radius-100)';
854
- 'border.radius.200': 'var(--ds-border-radius-200)';
855
- 'border.radius.300': 'var(--ds-border-radius-300)';
856
- 'border.radius.400': 'var(--ds-border-radius-400)';
857
- 'border.radius.circle': 'var(--ds-border-radius-circle)';
858
- 'border.width': 'var(--ds-border-width)';
859
- 'border.width.0': 'var(--ds-border-width-0)';
860
- 'border.width.indicator': 'var(--ds-border-width-indicator)';
861
- 'border.width.outline': 'var(--ds-border-width-outline)';
862
- 'space.0': 'var(--ds-space-0)';
863
- 'space.025': 'var(--ds-space-025)';
864
- 'space.050': 'var(--ds-space-050)';
865
- 'space.075': 'var(--ds-space-075)';
866
- 'space.100': 'var(--ds-space-100)';
867
- 'space.150': 'var(--ds-space-150)';
868
- 'space.200': 'var(--ds-space-200)';
869
- 'space.250': 'var(--ds-space-250)';
870
- 'space.300': 'var(--ds-space-300)';
871
- 'space.400': 'var(--ds-space-400)';
872
- 'space.500': 'var(--ds-space-500)';
873
- 'space.600': 'var(--ds-space-600)';
874
- 'space.800': 'var(--ds-space-800)';
875
- 'space.1000': 'var(--ds-space-1000)';
876
- 'space.negative.025': 'var(--ds-space-negative-025)';
877
- 'space.negative.050': 'var(--ds-space-negative-050)';
878
- 'space.negative.075': 'var(--ds-space-negative-075)';
879
- 'space.negative.100': 'var(--ds-space-negative-100)';
880
- 'space.negative.150': 'var(--ds-space-negative-150)';
881
- 'space.negative.200': 'var(--ds-space-negative-200)';
882
- 'space.negative.250': 'var(--ds-space-negative-250)';
883
- 'space.negative.300': 'var(--ds-space-negative-300)';
884
- 'space.negative.400': 'var(--ds-space-negative-400)';
885
- 'font.body': 'var(--ds-font-body)';
886
- 'font.body.large': 'var(--ds-font-body-large)';
887
- 'font.body.small': 'var(--ds-font-body-small)';
888
- 'font.code': 'var(--ds-font-code)';
889
- 'font.heading.large': 'var(--ds-font-heading-large)';
890
- 'font.heading.medium': 'var(--ds-font-heading-medium)';
891
- 'font.heading.small': 'var(--ds-font-heading-small)';
892
- 'font.heading.xlarge': 'var(--ds-font-heading-xlarge)';
893
- 'font.heading.xsmall': 'var(--ds-font-heading-xsmall)';
894
- 'font.heading.xxlarge': 'var(--ds-font-heading-xxlarge)';
895
- 'font.heading.xxsmall': 'var(--ds-font-heading-xxsmall)';
896
- 'font.letterSpacing.0': 'var(--ds-font-letterSpacing-0)';
897
- 'font.letterSpacing.100': 'var(--ds-font-letterSpacing-100)';
898
- 'font.letterSpacing.200': 'var(--ds-font-letterSpacing-200)';
899
- 'font.letterSpacing.300': 'var(--ds-font-letterSpacing-300)';
900
- 'font.letterSpacing.400': 'var(--ds-font-letterSpacing-400)';
901
- 'font.ui': 'var(--ds-font-ui)';
902
- 'font.ui.small': 'var(--ds-font-ui-small)';
903
- 'font.family.body': 'var(--ds-font-family-body)';
904
- 'font.family.code': 'var(--ds-font-family-code)';
905
- 'font.family.heading': 'var(--ds-font-family-heading)';
906
- 'font.family.monospace': 'var(--ds-font-family-monospace)';
907
- 'font.family.sans': 'var(--ds-font-family-sans)';
908
- 'font.family.brand': 'var(--ds-font-family-brand)';
909
- 'font.size.050': 'var(--ds-font-size-050)';
910
- 'font.size.075': 'var(--ds-font-size-075)';
911
- 'font.size.100': 'var(--ds-font-size-100)';
912
- 'font.size.200': 'var(--ds-font-size-200)';
913
- 'font.size.300': 'var(--ds-font-size-300)';
914
- 'font.size.400': 'var(--ds-font-size-400)';
915
- 'font.size.500': 'var(--ds-font-size-500)';
916
- 'font.size.600': 'var(--ds-font-size-600)';
917
- 'font.weight.bold': 'var(--ds-font-weight-bold)';
918
- 'font.weight.medium': 'var(--ds-font-weight-medium)';
919
- 'font.weight.regular': 'var(--ds-font-weight-regular)';
920
- 'font.weight.semibold': 'var(--ds-font-weight-semibold)';
921
- 'font.lineHeight.1': 'var(--ds-font-lineHeight-1)';
922
- 'font.lineHeight.100': 'var(--ds-font-lineHeight-100)';
923
- 'font.lineHeight.200': 'var(--ds-font-lineHeight-200)';
924
- 'font.lineHeight.300': 'var(--ds-font-lineHeight-300)';
925
- 'font.lineHeight.400': 'var(--ds-font-lineHeight-400)';
926
- 'font.lineHeight.500': 'var(--ds-font-lineHeight-500)';
927
- 'font.lineHeight.600': 'var(--ds-font-lineHeight-600)';
463
+ 'color.text': 'var(--ds-text)';
464
+ 'color.text.accent.lime': 'var(--ds-text-accent-lime)';
465
+ 'color.text.accent.lime.bolder': 'var(--ds-text-accent-lime-bolder)';
466
+ 'color.text.accent.red': 'var(--ds-text-accent-red)';
467
+ 'color.text.accent.red.bolder': 'var(--ds-text-accent-red-bolder)';
468
+ 'color.text.accent.orange': 'var(--ds-text-accent-orange)';
469
+ 'color.text.accent.orange.bolder': 'var(--ds-text-accent-orange-bolder)';
470
+ 'color.text.accent.yellow': 'var(--ds-text-accent-yellow)';
471
+ 'color.text.accent.yellow.bolder': 'var(--ds-text-accent-yellow-bolder)';
472
+ 'color.text.accent.green': 'var(--ds-text-accent-green)';
473
+ 'color.text.accent.green.bolder': 'var(--ds-text-accent-green-bolder)';
474
+ 'color.text.accent.teal': 'var(--ds-text-accent-teal)';
475
+ 'color.text.accent.teal.bolder': 'var(--ds-text-accent-teal-bolder)';
476
+ 'color.text.accent.blue': 'var(--ds-text-accent-blue)';
477
+ 'color.text.accent.blue.bolder': 'var(--ds-text-accent-blue-bolder)';
478
+ 'color.text.accent.purple': 'var(--ds-text-accent-purple)';
479
+ 'color.text.accent.purple.bolder': 'var(--ds-text-accent-purple-bolder)';
480
+ 'color.text.accent.magenta': 'var(--ds-text-accent-magenta)';
481
+ 'color.text.accent.magenta.bolder': 'var(--ds-text-accent-magenta-bolder)';
482
+ 'color.text.accent.gray': 'var(--ds-text-accent-gray)';
483
+ 'color.text.accent.gray.bolder': 'var(--ds-text-accent-gray-bolder)';
484
+ 'color.text.disabled': 'var(--ds-text-disabled)';
485
+ 'color.text.inverse': 'var(--ds-text-inverse)';
486
+ 'color.text.selected': 'var(--ds-text-selected)';
487
+ 'color.text.brand': 'var(--ds-text-brand)';
488
+ 'color.text.danger': 'var(--ds-text-danger)';
489
+ 'color.text.warning': 'var(--ds-text-warning)';
490
+ 'color.text.warning.inverse': 'var(--ds-text-warning-inverse)';
491
+ 'color.text.success': 'var(--ds-text-success)';
492
+ 'color.text.discovery': 'var(--ds-text-discovery)';
493
+ 'color.text.information': 'var(--ds-text-information)';
494
+ 'color.text.subtlest': 'var(--ds-text-subtlest)';
495
+ 'color.text.subtle': 'var(--ds-text-subtle)';
496
+ 'color.link': 'var(--ds-link)';
497
+ 'color.link.pressed': 'var(--ds-link-pressed)';
498
+ 'color.link.visited': 'var(--ds-link-visited)';
499
+ 'color.icon': 'var(--ds-icon)';
500
+ 'color.icon.accent.lime': 'var(--ds-icon-accent-lime)';
501
+ 'color.icon.accent.red': 'var(--ds-icon-accent-red)';
502
+ 'color.icon.accent.orange': 'var(--ds-icon-accent-orange)';
503
+ 'color.icon.accent.yellow': 'var(--ds-icon-accent-yellow)';
504
+ 'color.icon.accent.green': 'var(--ds-icon-accent-green)';
505
+ 'color.icon.accent.teal': 'var(--ds-icon-accent-teal)';
506
+ 'color.icon.accent.blue': 'var(--ds-icon-accent-blue)';
507
+ 'color.icon.accent.purple': 'var(--ds-icon-accent-purple)';
508
+ 'color.icon.accent.magenta': 'var(--ds-icon-accent-magenta)';
509
+ 'color.icon.accent.gray': 'var(--ds-icon-accent-gray)';
510
+ 'color.icon.disabled': 'var(--ds-icon-disabled)';
511
+ 'color.icon.inverse': 'var(--ds-icon-inverse)';
512
+ 'color.icon.selected': 'var(--ds-icon-selected)';
513
+ 'color.icon.brand': 'var(--ds-icon-brand)';
514
+ 'color.icon.danger': 'var(--ds-icon-danger)';
515
+ 'color.icon.warning': 'var(--ds-icon-warning)';
516
+ 'color.icon.warning.inverse': 'var(--ds-icon-warning-inverse)';
517
+ 'color.icon.success': 'var(--ds-icon-success)';
518
+ 'color.icon.discovery': 'var(--ds-icon-discovery)';
519
+ 'color.icon.information': 'var(--ds-icon-information)';
520
+ 'color.icon.subtle': 'var(--ds-icon-subtle)';
521
+ 'color.border': 'var(--ds-border)';
522
+ 'color.border.accent.lime': 'var(--ds-border-accent-lime)';
523
+ 'color.border.accent.red': 'var(--ds-border-accent-red)';
524
+ 'color.border.accent.orange': 'var(--ds-border-accent-orange)';
525
+ 'color.border.accent.yellow': 'var(--ds-border-accent-yellow)';
526
+ 'color.border.accent.green': 'var(--ds-border-accent-green)';
527
+ 'color.border.accent.teal': 'var(--ds-border-accent-teal)';
528
+ 'color.border.accent.blue': 'var(--ds-border-accent-blue)';
529
+ 'color.border.accent.purple': 'var(--ds-border-accent-purple)';
530
+ 'color.border.accent.magenta': 'var(--ds-border-accent-magenta)';
531
+ 'color.border.accent.gray': 'var(--ds-border-accent-gray)';
532
+ 'color.border.disabled': 'var(--ds-border-disabled)';
533
+ 'color.border.focused': 'var(--ds-border-focused)';
534
+ 'color.border.input': 'var(--ds-border-input)';
535
+ 'color.border.inverse': 'var(--ds-border-inverse)';
536
+ 'color.border.selected': 'var(--ds-border-selected)';
537
+ 'color.border.brand': 'var(--ds-border-brand)';
538
+ 'color.border.danger': 'var(--ds-border-danger)';
539
+ 'color.border.warning': 'var(--ds-border-warning)';
540
+ 'color.border.success': 'var(--ds-border-success)';
541
+ 'color.border.discovery': 'var(--ds-border-discovery)';
542
+ 'color.border.information': 'var(--ds-border-information)';
543
+ 'color.border.bold': 'var(--ds-border-bold)';
544
+ 'color.background.accent.lime.subtlest': 'var(--ds-background-accent-lime-subtlest)';
545
+ 'color.background.accent.lime.subtlest.hovered': 'var(--ds-background-accent-lime-subtlest-hovered)';
546
+ 'color.background.accent.lime.subtlest.pressed': 'var(--ds-background-accent-lime-subtlest-pressed)';
547
+ 'color.background.accent.lime.subtler': 'var(--ds-background-accent-lime-subtler)';
548
+ 'color.background.accent.lime.subtler.hovered': 'var(--ds-background-accent-lime-subtler-hovered)';
549
+ 'color.background.accent.lime.subtler.pressed': 'var(--ds-background-accent-lime-subtler-pressed)';
550
+ 'color.background.accent.lime.subtle': 'var(--ds-background-accent-lime-subtle)';
551
+ 'color.background.accent.lime.subtle.hovered': 'var(--ds-background-accent-lime-subtle-hovered)';
552
+ 'color.background.accent.lime.subtle.pressed': 'var(--ds-background-accent-lime-subtle-pressed)';
553
+ 'color.background.accent.lime.bolder': 'var(--ds-background-accent-lime-bolder)';
554
+ 'color.background.accent.lime.bolder.hovered': 'var(--ds-background-accent-lime-bolder-hovered)';
555
+ 'color.background.accent.lime.bolder.pressed': 'var(--ds-background-accent-lime-bolder-pressed)';
556
+ 'color.background.accent.red.subtlest': 'var(--ds-background-accent-red-subtlest)';
557
+ 'color.background.accent.red.subtlest.hovered': 'var(--ds-background-accent-red-subtlest-hovered)';
558
+ 'color.background.accent.red.subtlest.pressed': 'var(--ds-background-accent-red-subtlest-pressed)';
559
+ 'color.background.accent.red.subtler': 'var(--ds-background-accent-red-subtler)';
560
+ 'color.background.accent.red.subtler.hovered': 'var(--ds-background-accent-red-subtler-hovered)';
561
+ 'color.background.accent.red.subtler.pressed': 'var(--ds-background-accent-red-subtler-pressed)';
562
+ 'color.background.accent.red.subtle': 'var(--ds-background-accent-red-subtle)';
563
+ 'color.background.accent.red.subtle.hovered': 'var(--ds-background-accent-red-subtle-hovered)';
564
+ 'color.background.accent.red.subtle.pressed': 'var(--ds-background-accent-red-subtle-pressed)';
565
+ 'color.background.accent.red.bolder': 'var(--ds-background-accent-red-bolder)';
566
+ 'color.background.accent.red.bolder.hovered': 'var(--ds-background-accent-red-bolder-hovered)';
567
+ 'color.background.accent.red.bolder.pressed': 'var(--ds-background-accent-red-bolder-pressed)';
568
+ 'color.background.accent.orange.subtlest': 'var(--ds-background-accent-orange-subtlest)';
569
+ 'color.background.accent.orange.subtlest.hovered': 'var(--ds-background-accent-orange-subtlest-hovered)';
570
+ 'color.background.accent.orange.subtlest.pressed': 'var(--ds-background-accent-orange-subtlest-pressed)';
571
+ 'color.background.accent.orange.subtler': 'var(--ds-background-accent-orange-subtler)';
572
+ 'color.background.accent.orange.subtler.hovered': 'var(--ds-background-accent-orange-subtler-hovered)';
573
+ 'color.background.accent.orange.subtler.pressed': 'var(--ds-background-accent-orange-subtler-pressed)';
574
+ 'color.background.accent.orange.subtle': 'var(--ds-background-accent-orange-subtle)';
575
+ 'color.background.accent.orange.subtle.hovered': 'var(--ds-background-accent-orange-subtle-hovered)';
576
+ 'color.background.accent.orange.subtle.pressed': 'var(--ds-background-accent-orange-subtle-pressed)';
577
+ 'color.background.accent.orange.bolder': 'var(--ds-background-accent-orange-bolder)';
578
+ 'color.background.accent.orange.bolder.hovered': 'var(--ds-background-accent-orange-bolder-hovered)';
579
+ 'color.background.accent.orange.bolder.pressed': 'var(--ds-background-accent-orange-bolder-pressed)';
580
+ 'color.background.accent.yellow.subtlest': 'var(--ds-background-accent-yellow-subtlest)';
581
+ 'color.background.accent.yellow.subtlest.hovered': 'var(--ds-background-accent-yellow-subtlest-hovered)';
582
+ 'color.background.accent.yellow.subtlest.pressed': 'var(--ds-background-accent-yellow-subtlest-pressed)';
583
+ 'color.background.accent.yellow.subtler': 'var(--ds-background-accent-yellow-subtler)';
584
+ 'color.background.accent.yellow.subtler.hovered': 'var(--ds-background-accent-yellow-subtler-hovered)';
585
+ 'color.background.accent.yellow.subtler.pressed': 'var(--ds-background-accent-yellow-subtler-pressed)';
586
+ 'color.background.accent.yellow.subtle': 'var(--ds-background-accent-yellow-subtle)';
587
+ 'color.background.accent.yellow.subtle.hovered': 'var(--ds-background-accent-yellow-subtle-hovered)';
588
+ 'color.background.accent.yellow.subtle.pressed': 'var(--ds-background-accent-yellow-subtle-pressed)';
589
+ 'color.background.accent.yellow.bolder': 'var(--ds-background-accent-yellow-bolder)';
590
+ 'color.background.accent.yellow.bolder.hovered': 'var(--ds-background-accent-yellow-bolder-hovered)';
591
+ 'color.background.accent.yellow.bolder.pressed': 'var(--ds-background-accent-yellow-bolder-pressed)';
592
+ 'color.background.accent.green.subtlest': 'var(--ds-background-accent-green-subtlest)';
593
+ 'color.background.accent.green.subtlest.hovered': 'var(--ds-background-accent-green-subtlest-hovered)';
594
+ 'color.background.accent.green.subtlest.pressed': 'var(--ds-background-accent-green-subtlest-pressed)';
595
+ 'color.background.accent.green.subtler': 'var(--ds-background-accent-green-subtler)';
596
+ 'color.background.accent.green.subtler.hovered': 'var(--ds-background-accent-green-subtler-hovered)';
597
+ 'color.background.accent.green.subtler.pressed': 'var(--ds-background-accent-green-subtler-pressed)';
598
+ 'color.background.accent.green.subtle': 'var(--ds-background-accent-green-subtle)';
599
+ 'color.background.accent.green.subtle.hovered': 'var(--ds-background-accent-green-subtle-hovered)';
600
+ 'color.background.accent.green.subtle.pressed': 'var(--ds-background-accent-green-subtle-pressed)';
601
+ 'color.background.accent.green.bolder': 'var(--ds-background-accent-green-bolder)';
602
+ 'color.background.accent.green.bolder.hovered': 'var(--ds-background-accent-green-bolder-hovered)';
603
+ 'color.background.accent.green.bolder.pressed': 'var(--ds-background-accent-green-bolder-pressed)';
604
+ 'color.background.accent.teal.subtlest': 'var(--ds-background-accent-teal-subtlest)';
605
+ 'color.background.accent.teal.subtlest.hovered': 'var(--ds-background-accent-teal-subtlest-hovered)';
606
+ 'color.background.accent.teal.subtlest.pressed': 'var(--ds-background-accent-teal-subtlest-pressed)';
607
+ 'color.background.accent.teal.subtler': 'var(--ds-background-accent-teal-subtler)';
608
+ 'color.background.accent.teal.subtler.hovered': 'var(--ds-background-accent-teal-subtler-hovered)';
609
+ 'color.background.accent.teal.subtler.pressed': 'var(--ds-background-accent-teal-subtler-pressed)';
610
+ 'color.background.accent.teal.subtle': 'var(--ds-background-accent-teal-subtle)';
611
+ 'color.background.accent.teal.subtle.hovered': 'var(--ds-background-accent-teal-subtle-hovered)';
612
+ 'color.background.accent.teal.subtle.pressed': 'var(--ds-background-accent-teal-subtle-pressed)';
613
+ 'color.background.accent.teal.bolder': 'var(--ds-background-accent-teal-bolder)';
614
+ 'color.background.accent.teal.bolder.hovered': 'var(--ds-background-accent-teal-bolder-hovered)';
615
+ 'color.background.accent.teal.bolder.pressed': 'var(--ds-background-accent-teal-bolder-pressed)';
616
+ 'color.background.accent.blue.subtlest': 'var(--ds-background-accent-blue-subtlest)';
617
+ 'color.background.accent.blue.subtlest.hovered': 'var(--ds-background-accent-blue-subtlest-hovered)';
618
+ 'color.background.accent.blue.subtlest.pressed': 'var(--ds-background-accent-blue-subtlest-pressed)';
619
+ 'color.background.accent.blue.subtler': 'var(--ds-background-accent-blue-subtler)';
620
+ 'color.background.accent.blue.subtler.hovered': 'var(--ds-background-accent-blue-subtler-hovered)';
621
+ 'color.background.accent.blue.subtler.pressed': 'var(--ds-background-accent-blue-subtler-pressed)';
622
+ 'color.background.accent.blue.subtle': 'var(--ds-background-accent-blue-subtle)';
623
+ 'color.background.accent.blue.subtle.hovered': 'var(--ds-background-accent-blue-subtle-hovered)';
624
+ 'color.background.accent.blue.subtle.pressed': 'var(--ds-background-accent-blue-subtle-pressed)';
625
+ 'color.background.accent.blue.bolder': 'var(--ds-background-accent-blue-bolder)';
626
+ 'color.background.accent.blue.bolder.hovered': 'var(--ds-background-accent-blue-bolder-hovered)';
627
+ 'color.background.accent.blue.bolder.pressed': 'var(--ds-background-accent-blue-bolder-pressed)';
628
+ 'color.background.accent.purple.subtlest': 'var(--ds-background-accent-purple-subtlest)';
629
+ 'color.background.accent.purple.subtlest.hovered': 'var(--ds-background-accent-purple-subtlest-hovered)';
630
+ 'color.background.accent.purple.subtlest.pressed': 'var(--ds-background-accent-purple-subtlest-pressed)';
631
+ 'color.background.accent.purple.subtler': 'var(--ds-background-accent-purple-subtler)';
632
+ 'color.background.accent.purple.subtler.hovered': 'var(--ds-background-accent-purple-subtler-hovered)';
633
+ 'color.background.accent.purple.subtler.pressed': 'var(--ds-background-accent-purple-subtler-pressed)';
634
+ 'color.background.accent.purple.subtle': 'var(--ds-background-accent-purple-subtle)';
635
+ 'color.background.accent.purple.subtle.hovered': 'var(--ds-background-accent-purple-subtle-hovered)';
636
+ 'color.background.accent.purple.subtle.pressed': 'var(--ds-background-accent-purple-subtle-pressed)';
637
+ 'color.background.accent.purple.bolder': 'var(--ds-background-accent-purple-bolder)';
638
+ 'color.background.accent.purple.bolder.hovered': 'var(--ds-background-accent-purple-bolder-hovered)';
639
+ 'color.background.accent.purple.bolder.pressed': 'var(--ds-background-accent-purple-bolder-pressed)';
640
+ 'color.background.accent.magenta.subtlest': 'var(--ds-background-accent-magenta-subtlest)';
641
+ 'color.background.accent.magenta.subtlest.hovered': 'var(--ds-background-accent-magenta-subtlest-hovered)';
642
+ 'color.background.accent.magenta.subtlest.pressed': 'var(--ds-background-accent-magenta-subtlest-pressed)';
643
+ 'color.background.accent.magenta.subtler': 'var(--ds-background-accent-magenta-subtler)';
644
+ 'color.background.accent.magenta.subtler.hovered': 'var(--ds-background-accent-magenta-subtler-hovered)';
645
+ 'color.background.accent.magenta.subtler.pressed': 'var(--ds-background-accent-magenta-subtler-pressed)';
646
+ 'color.background.accent.magenta.subtle': 'var(--ds-background-accent-magenta-subtle)';
647
+ 'color.background.accent.magenta.subtle.hovered': 'var(--ds-background-accent-magenta-subtle-hovered)';
648
+ 'color.background.accent.magenta.subtle.pressed': 'var(--ds-background-accent-magenta-subtle-pressed)';
649
+ 'color.background.accent.magenta.bolder': 'var(--ds-background-accent-magenta-bolder)';
650
+ 'color.background.accent.magenta.bolder.hovered': 'var(--ds-background-accent-magenta-bolder-hovered)';
651
+ 'color.background.accent.magenta.bolder.pressed': 'var(--ds-background-accent-magenta-bolder-pressed)';
652
+ 'color.background.accent.gray.subtlest': 'var(--ds-background-accent-gray-subtlest)';
653
+ 'color.background.accent.gray.subtlest.hovered': 'var(--ds-background-accent-gray-subtlest-hovered)';
654
+ 'color.background.accent.gray.subtlest.pressed': 'var(--ds-background-accent-gray-subtlest-pressed)';
655
+ 'color.background.accent.gray.subtler': 'var(--ds-background-accent-gray-subtler)';
656
+ 'color.background.accent.gray.subtler.hovered': 'var(--ds-background-accent-gray-subtler-hovered)';
657
+ 'color.background.accent.gray.subtler.pressed': 'var(--ds-background-accent-gray-subtler-pressed)';
658
+ 'color.background.accent.gray.subtle': 'var(--ds-background-accent-gray-subtle)';
659
+ 'color.background.accent.gray.subtle.hovered': 'var(--ds-background-accent-gray-subtle-hovered)';
660
+ 'color.background.accent.gray.subtle.pressed': 'var(--ds-background-accent-gray-subtle-pressed)';
661
+ 'color.background.accent.gray.bolder': 'var(--ds-background-accent-gray-bolder)';
662
+ 'color.background.accent.gray.bolder.hovered': 'var(--ds-background-accent-gray-bolder-hovered)';
663
+ 'color.background.accent.gray.bolder.pressed': 'var(--ds-background-accent-gray-bolder-pressed)';
664
+ 'color.background.disabled': 'var(--ds-background-disabled)';
665
+ 'color.background.input': 'var(--ds-background-input)';
666
+ 'color.background.input.hovered': 'var(--ds-background-input-hovered)';
667
+ 'color.background.input.pressed': 'var(--ds-background-input-pressed)';
668
+ 'color.background.inverse.subtle': 'var(--ds-background-inverse-subtle)';
669
+ 'color.background.inverse.subtle.hovered': 'var(--ds-background-inverse-subtle-hovered)';
670
+ 'color.background.inverse.subtle.pressed': 'var(--ds-background-inverse-subtle-pressed)';
671
+ 'color.background.neutral': 'var(--ds-background-neutral)';
672
+ 'color.background.neutral.hovered': 'var(--ds-background-neutral-hovered)';
673
+ 'color.background.neutral.pressed': 'var(--ds-background-neutral-pressed)';
674
+ 'color.background.neutral.subtle': 'var(--ds-background-neutral-subtle)';
675
+ 'color.background.neutral.subtle.hovered': 'var(--ds-background-neutral-subtle-hovered)';
676
+ 'color.background.neutral.subtle.pressed': 'var(--ds-background-neutral-subtle-pressed)';
677
+ 'color.background.neutral.bold': 'var(--ds-background-neutral-bold)';
678
+ 'color.background.neutral.bold.hovered': 'var(--ds-background-neutral-bold-hovered)';
679
+ 'color.background.neutral.bold.pressed': 'var(--ds-background-neutral-bold-pressed)';
680
+ 'color.background.selected': 'var(--ds-background-selected)';
681
+ 'color.background.selected.hovered': 'var(--ds-background-selected-hovered)';
682
+ 'color.background.selected.pressed': 'var(--ds-background-selected-pressed)';
683
+ 'color.background.selected.bold': 'var(--ds-background-selected-bold)';
684
+ 'color.background.selected.bold.hovered': 'var(--ds-background-selected-bold-hovered)';
685
+ 'color.background.selected.bold.pressed': 'var(--ds-background-selected-bold-pressed)';
686
+ 'color.background.brand.subtlest': 'var(--ds-background-brand-subtlest)';
687
+ 'color.background.brand.subtlest.hovered': 'var(--ds-background-brand-subtlest-hovered)';
688
+ 'color.background.brand.subtlest.pressed': 'var(--ds-background-brand-subtlest-pressed)';
689
+ 'color.background.brand.bold': 'var(--ds-background-brand-bold)';
690
+ 'color.background.brand.bold.hovered': 'var(--ds-background-brand-bold-hovered)';
691
+ 'color.background.brand.bold.pressed': 'var(--ds-background-brand-bold-pressed)';
692
+ 'color.background.brand.boldest': 'var(--ds-background-brand-boldest)';
693
+ 'color.background.brand.boldest.hovered': 'var(--ds-background-brand-boldest-hovered)';
694
+ 'color.background.brand.boldest.pressed': 'var(--ds-background-brand-boldest-pressed)';
695
+ 'color.background.danger': 'var(--ds-background-danger)';
696
+ 'color.background.danger.hovered': 'var(--ds-background-danger-hovered)';
697
+ 'color.background.danger.pressed': 'var(--ds-background-danger-pressed)';
698
+ 'color.background.danger.bold': 'var(--ds-background-danger-bold)';
699
+ 'color.background.danger.bold.hovered': 'var(--ds-background-danger-bold-hovered)';
700
+ 'color.background.danger.bold.pressed': 'var(--ds-background-danger-bold-pressed)';
701
+ 'color.background.warning': 'var(--ds-background-warning)';
702
+ 'color.background.warning.hovered': 'var(--ds-background-warning-hovered)';
703
+ 'color.background.warning.pressed': 'var(--ds-background-warning-pressed)';
704
+ 'color.background.warning.bold': 'var(--ds-background-warning-bold)';
705
+ 'color.background.warning.bold.hovered': 'var(--ds-background-warning-bold-hovered)';
706
+ 'color.background.warning.bold.pressed': 'var(--ds-background-warning-bold-pressed)';
707
+ 'color.background.success': 'var(--ds-background-success)';
708
+ 'color.background.success.hovered': 'var(--ds-background-success-hovered)';
709
+ 'color.background.success.pressed': 'var(--ds-background-success-pressed)';
710
+ 'color.background.success.bold': 'var(--ds-background-success-bold)';
711
+ 'color.background.success.bold.hovered': 'var(--ds-background-success-bold-hovered)';
712
+ 'color.background.success.bold.pressed': 'var(--ds-background-success-bold-pressed)';
713
+ 'color.background.discovery': 'var(--ds-background-discovery)';
714
+ 'color.background.discovery.hovered': 'var(--ds-background-discovery-hovered)';
715
+ 'color.background.discovery.pressed': 'var(--ds-background-discovery-pressed)';
716
+ 'color.background.discovery.bold': 'var(--ds-background-discovery-bold)';
717
+ 'color.background.discovery.bold.hovered': 'var(--ds-background-discovery-bold-hovered)';
718
+ 'color.background.discovery.bold.pressed': 'var(--ds-background-discovery-bold-pressed)';
719
+ 'color.background.information': 'var(--ds-background-information)';
720
+ 'color.background.information.hovered': 'var(--ds-background-information-hovered)';
721
+ 'color.background.information.pressed': 'var(--ds-background-information-pressed)';
722
+ 'color.background.information.bold': 'var(--ds-background-information-bold)';
723
+ 'color.background.information.bold.hovered': 'var(--ds-background-information-bold-hovered)';
724
+ 'color.background.information.bold.pressed': 'var(--ds-background-information-bold-pressed)';
725
+ 'color.blanket': 'var(--ds-blanket)';
726
+ 'color.blanket.selected': 'var(--ds-blanket-selected)';
727
+ 'color.blanket.danger': 'var(--ds-blanket-danger)';
728
+ 'color.interaction.hovered': 'var(--ds-interaction-hovered)';
729
+ 'color.interaction.pressed': 'var(--ds-interaction-pressed)';
730
+ 'color.skeleton': 'var(--ds-skeleton)';
731
+ 'color.skeleton.subtle': 'var(--ds-skeleton-subtle)';
732
+ 'color.chart.categorical.1': 'var(--ds-chart-categorical-1)';
733
+ 'color.chart.categorical.1.hovered': 'var(--ds-chart-categorical-1-hovered)';
734
+ 'color.chart.categorical.2': 'var(--ds-chart-categorical-2)';
735
+ 'color.chart.categorical.2.hovered': 'var(--ds-chart-categorical-2-hovered)';
736
+ 'color.chart.categorical.3': 'var(--ds-chart-categorical-3)';
737
+ 'color.chart.categorical.3.hovered': 'var(--ds-chart-categorical-3-hovered)';
738
+ 'color.chart.categorical.4': 'var(--ds-chart-categorical-4)';
739
+ 'color.chart.categorical.4.hovered': 'var(--ds-chart-categorical-4-hovered)';
740
+ 'color.chart.categorical.5': 'var(--ds-chart-categorical-5)';
741
+ 'color.chart.categorical.5.hovered': 'var(--ds-chart-categorical-5-hovered)';
742
+ 'color.chart.categorical.6': 'var(--ds-chart-categorical-6)';
743
+ 'color.chart.categorical.6.hovered': 'var(--ds-chart-categorical-6-hovered)';
744
+ 'color.chart.categorical.7': 'var(--ds-chart-categorical-7)';
745
+ 'color.chart.categorical.7.hovered': 'var(--ds-chart-categorical-7-hovered)';
746
+ 'color.chart.categorical.8': 'var(--ds-chart-categorical-8)';
747
+ 'color.chart.categorical.8.hovered': 'var(--ds-chart-categorical-8-hovered)';
748
+ 'color.chart.lime.bold': 'var(--ds-chart-lime-bold)';
749
+ 'color.chart.lime.bold.hovered': 'var(--ds-chart-lime-bold-hovered)';
750
+ 'color.chart.lime.bolder': 'var(--ds-chart-lime-bolder)';
751
+ 'color.chart.lime.bolder.hovered': 'var(--ds-chart-lime-bolder-hovered)';
752
+ 'color.chart.lime.boldest': 'var(--ds-chart-lime-boldest)';
753
+ 'color.chart.lime.boldest.hovered': 'var(--ds-chart-lime-boldest-hovered)';
754
+ 'color.chart.neutral': 'var(--ds-chart-neutral)';
755
+ 'color.chart.neutral.hovered': 'var(--ds-chart-neutral-hovered)';
756
+ 'color.chart.red.bold': 'var(--ds-chart-red-bold)';
757
+ 'color.chart.red.bold.hovered': 'var(--ds-chart-red-bold-hovered)';
758
+ 'color.chart.red.bolder': 'var(--ds-chart-red-bolder)';
759
+ 'color.chart.red.bolder.hovered': 'var(--ds-chart-red-bolder-hovered)';
760
+ 'color.chart.red.boldest': 'var(--ds-chart-red-boldest)';
761
+ 'color.chart.red.boldest.hovered': 'var(--ds-chart-red-boldest-hovered)';
762
+ 'color.chart.orange.bold': 'var(--ds-chart-orange-bold)';
763
+ 'color.chart.orange.bold.hovered': 'var(--ds-chart-orange-bold-hovered)';
764
+ 'color.chart.orange.bolder': 'var(--ds-chart-orange-bolder)';
765
+ 'color.chart.orange.bolder.hovered': 'var(--ds-chart-orange-bolder-hovered)';
766
+ 'color.chart.orange.boldest': 'var(--ds-chart-orange-boldest)';
767
+ 'color.chart.orange.boldest.hovered': 'var(--ds-chart-orange-boldest-hovered)';
768
+ 'color.chart.yellow.bold': 'var(--ds-chart-yellow-bold)';
769
+ 'color.chart.yellow.bold.hovered': 'var(--ds-chart-yellow-bold-hovered)';
770
+ 'color.chart.yellow.bolder': 'var(--ds-chart-yellow-bolder)';
771
+ 'color.chart.yellow.bolder.hovered': 'var(--ds-chart-yellow-bolder-hovered)';
772
+ 'color.chart.yellow.boldest': 'var(--ds-chart-yellow-boldest)';
773
+ 'color.chart.yellow.boldest.hovered': 'var(--ds-chart-yellow-boldest-hovered)';
774
+ 'color.chart.green.bold': 'var(--ds-chart-green-bold)';
775
+ 'color.chart.green.bold.hovered': 'var(--ds-chart-green-bold-hovered)';
776
+ 'color.chart.green.bolder': 'var(--ds-chart-green-bolder)';
777
+ 'color.chart.green.bolder.hovered': 'var(--ds-chart-green-bolder-hovered)';
778
+ 'color.chart.green.boldest': 'var(--ds-chart-green-boldest)';
779
+ 'color.chart.green.boldest.hovered': 'var(--ds-chart-green-boldest-hovered)';
780
+ 'color.chart.teal.bold': 'var(--ds-chart-teal-bold)';
781
+ 'color.chart.teal.bold.hovered': 'var(--ds-chart-teal-bold-hovered)';
782
+ 'color.chart.teal.bolder': 'var(--ds-chart-teal-bolder)';
783
+ 'color.chart.teal.bolder.hovered': 'var(--ds-chart-teal-bolder-hovered)';
784
+ 'color.chart.teal.boldest': 'var(--ds-chart-teal-boldest)';
785
+ 'color.chart.teal.boldest.hovered': 'var(--ds-chart-teal-boldest-hovered)';
786
+ 'color.chart.blue.bold': 'var(--ds-chart-blue-bold)';
787
+ 'color.chart.blue.bold.hovered': 'var(--ds-chart-blue-bold-hovered)';
788
+ 'color.chart.blue.bolder': 'var(--ds-chart-blue-bolder)';
789
+ 'color.chart.blue.bolder.hovered': 'var(--ds-chart-blue-bolder-hovered)';
790
+ 'color.chart.blue.boldest': 'var(--ds-chart-blue-boldest)';
791
+ 'color.chart.blue.boldest.hovered': 'var(--ds-chart-blue-boldest-hovered)';
792
+ 'color.chart.purple.bold': 'var(--ds-chart-purple-bold)';
793
+ 'color.chart.purple.bold.hovered': 'var(--ds-chart-purple-bold-hovered)';
794
+ 'color.chart.purple.bolder': 'var(--ds-chart-purple-bolder)';
795
+ 'color.chart.purple.bolder.hovered': 'var(--ds-chart-purple-bolder-hovered)';
796
+ 'color.chart.purple.boldest': 'var(--ds-chart-purple-boldest)';
797
+ 'color.chart.purple.boldest.hovered': 'var(--ds-chart-purple-boldest-hovered)';
798
+ 'color.chart.magenta.bold': 'var(--ds-chart-magenta-bold)';
799
+ 'color.chart.magenta.bold.hovered': 'var(--ds-chart-magenta-bold-hovered)';
800
+ 'color.chart.magenta.bolder': 'var(--ds-chart-magenta-bolder)';
801
+ 'color.chart.magenta.bolder.hovered': 'var(--ds-chart-magenta-bolder-hovered)';
802
+ 'color.chart.magenta.boldest': 'var(--ds-chart-magenta-boldest)';
803
+ 'color.chart.magenta.boldest.hovered': 'var(--ds-chart-magenta-boldest-hovered)';
804
+ 'color.chart.gray.bold': 'var(--ds-chart-gray-bold)';
805
+ 'color.chart.gray.bold.hovered': 'var(--ds-chart-gray-bold-hovered)';
806
+ 'color.chart.gray.bolder': 'var(--ds-chart-gray-bolder)';
807
+ 'color.chart.gray.bolder.hovered': 'var(--ds-chart-gray-bolder-hovered)';
808
+ 'color.chart.gray.boldest': 'var(--ds-chart-gray-boldest)';
809
+ 'color.chart.gray.boldest.hovered': 'var(--ds-chart-gray-boldest-hovered)';
810
+ 'color.chart.brand': 'var(--ds-chart-brand)';
811
+ 'color.chart.brand.hovered': 'var(--ds-chart-brand-hovered)';
812
+ 'color.chart.danger': 'var(--ds-chart-danger)';
813
+ 'color.chart.danger.hovered': 'var(--ds-chart-danger-hovered)';
814
+ 'color.chart.danger.bold': 'var(--ds-chart-danger-bold)';
815
+ 'color.chart.danger.bold.hovered': 'var(--ds-chart-danger-bold-hovered)';
816
+ 'color.chart.warning': 'var(--ds-chart-warning)';
817
+ 'color.chart.warning.hovered': 'var(--ds-chart-warning-hovered)';
818
+ 'color.chart.warning.bold': 'var(--ds-chart-warning-bold)';
819
+ 'color.chart.warning.bold.hovered': 'var(--ds-chart-warning-bold-hovered)';
820
+ 'color.chart.success': 'var(--ds-chart-success)';
821
+ 'color.chart.success.hovered': 'var(--ds-chart-success-hovered)';
822
+ 'color.chart.success.bold': 'var(--ds-chart-success-bold)';
823
+ 'color.chart.success.bold.hovered': 'var(--ds-chart-success-bold-hovered)';
824
+ 'color.chart.discovery': 'var(--ds-chart-discovery)';
825
+ 'color.chart.discovery.hovered': 'var(--ds-chart-discovery-hovered)';
826
+ 'color.chart.discovery.bold': 'var(--ds-chart-discovery-bold)';
827
+ 'color.chart.discovery.bold.hovered': 'var(--ds-chart-discovery-bold-hovered)';
828
+ 'color.chart.information': 'var(--ds-chart-information)';
829
+ 'color.chart.information.hovered': 'var(--ds-chart-information-hovered)';
830
+ 'color.chart.information.bold': 'var(--ds-chart-information-bold)';
831
+ 'color.chart.information.bold.hovered': 'var(--ds-chart-information-bold-hovered)';
832
+ 'elevation.surface': 'var(--ds-surface)';
833
+ 'elevation.surface.hovered': 'var(--ds-surface-hovered)';
834
+ 'elevation.surface.pressed': 'var(--ds-surface-pressed)';
835
+ 'elevation.surface.overlay': 'var(--ds-surface-overlay)';
836
+ 'elevation.surface.overlay.hovered': 'var(--ds-surface-overlay-hovered)';
837
+ 'elevation.surface.overlay.pressed': 'var(--ds-surface-overlay-pressed)';
838
+ 'elevation.surface.raised': 'var(--ds-surface-raised)';
839
+ 'elevation.surface.raised.hovered': 'var(--ds-surface-raised-hovered)';
840
+ 'elevation.surface.raised.pressed': 'var(--ds-surface-raised-pressed)';
841
+ 'elevation.surface.sunken': 'var(--ds-surface-sunken)';
842
+ 'elevation.shadow.overflow': 'var(--ds-shadow-overflow)';
843
+ 'elevation.shadow.overflow.perimeter': 'var(--ds-shadow-overflow-perimeter)';
844
+ 'elevation.shadow.overflow.spread': 'var(--ds-shadow-overflow-spread)';
845
+ 'elevation.shadow.overlay': 'var(--ds-shadow-overlay)';
846
+ 'elevation.shadow.raised': 'var(--ds-shadow-raised)';
847
+ 'opacity.disabled': 'var(--ds-opacity-disabled)';
848
+ 'opacity.loading': 'var(--ds-opacity-loading)';
849
+ 'utility.UNSAFE.textTransformUppercase': 'var(--ds-UNSAFE-textTransformUppercase)';
850
+ 'utility.UNSAFE.transparent': 'var(--ds-UNSAFE-transparent)';
851
+ 'utility.elevation.surface.current': 'var(--ds-elevation-surface-current)';
852
+ 'border.radius.050': 'var(--ds-border-radius-050)';
853
+ 'border.radius': 'var(--ds-border-radius)';
854
+ 'border.radius.100': 'var(--ds-border-radius-100)';
855
+ 'border.radius.200': 'var(--ds-border-radius-200)';
856
+ 'border.radius.300': 'var(--ds-border-radius-300)';
857
+ 'border.radius.400': 'var(--ds-border-radius-400)';
858
+ 'border.radius.circle': 'var(--ds-border-radius-circle)';
859
+ 'border.width': 'var(--ds-border-width)';
860
+ 'border.width.0': 'var(--ds-border-width-0)';
861
+ 'border.width.indicator': 'var(--ds-border-width-indicator)';
862
+ 'border.width.outline': 'var(--ds-border-width-outline)';
863
+ 'space.0': 'var(--ds-space-0)';
864
+ 'space.025': 'var(--ds-space-025)';
865
+ 'space.050': 'var(--ds-space-050)';
866
+ 'space.075': 'var(--ds-space-075)';
867
+ 'space.100': 'var(--ds-space-100)';
868
+ 'space.150': 'var(--ds-space-150)';
869
+ 'space.200': 'var(--ds-space-200)';
870
+ 'space.250': 'var(--ds-space-250)';
871
+ 'space.300': 'var(--ds-space-300)';
872
+ 'space.400': 'var(--ds-space-400)';
873
+ 'space.500': 'var(--ds-space-500)';
874
+ 'space.600': 'var(--ds-space-600)';
875
+ 'space.800': 'var(--ds-space-800)';
876
+ 'space.1000': 'var(--ds-space-1000)';
877
+ 'space.negative.025': 'var(--ds-space-negative-025)';
878
+ 'space.negative.050': 'var(--ds-space-negative-050)';
879
+ 'space.negative.075': 'var(--ds-space-negative-075)';
880
+ 'space.negative.100': 'var(--ds-space-negative-100)';
881
+ 'space.negative.150': 'var(--ds-space-negative-150)';
882
+ 'space.negative.200': 'var(--ds-space-negative-200)';
883
+ 'space.negative.250': 'var(--ds-space-negative-250)';
884
+ 'space.negative.300': 'var(--ds-space-negative-300)';
885
+ 'space.negative.400': 'var(--ds-space-negative-400)';
886
+ 'font.body': 'var(--ds-font-body)';
887
+ 'font.body.large': 'var(--ds-font-body-large)';
888
+ 'font.body.small': 'var(--ds-font-body-small)';
889
+ 'font.code': 'var(--ds-font-code)';
890
+ 'font.heading.large': 'var(--ds-font-heading-large)';
891
+ 'font.heading.medium': 'var(--ds-font-heading-medium)';
892
+ 'font.heading.small': 'var(--ds-font-heading-small)';
893
+ 'font.heading.xlarge': 'var(--ds-font-heading-xlarge)';
894
+ 'font.heading.xsmall': 'var(--ds-font-heading-xsmall)';
895
+ 'font.heading.xxlarge': 'var(--ds-font-heading-xxlarge)';
896
+ 'font.heading.xxsmall': 'var(--ds-font-heading-xxsmall)';
897
+ 'font.letterSpacing.0': 'var(--ds-font-letterSpacing-0)';
898
+ 'font.letterSpacing.100': 'var(--ds-font-letterSpacing-100)';
899
+ 'font.letterSpacing.200': 'var(--ds-font-letterSpacing-200)';
900
+ 'font.letterSpacing.300': 'var(--ds-font-letterSpacing-300)';
901
+ 'font.letterSpacing.400': 'var(--ds-font-letterSpacing-400)';
902
+ 'font.ui': 'var(--ds-font-ui)';
903
+ 'font.ui.small': 'var(--ds-font-ui-small)';
904
+ 'font.family.body': 'var(--ds-font-family-body)';
905
+ 'font.family.code': 'var(--ds-font-family-code)';
906
+ 'font.family.heading': 'var(--ds-font-family-heading)';
907
+ 'font.family.monospace': 'var(--ds-font-family-monospace)';
908
+ 'font.family.sans': 'var(--ds-font-family-sans)';
909
+ 'font.family.brand': 'var(--ds-font-family-brand)';
910
+ 'font.size.050': 'var(--ds-font-size-050)';
911
+ 'font.size.075': 'var(--ds-font-size-075)';
912
+ 'font.size.100': 'var(--ds-font-size-100)';
913
+ 'font.size.200': 'var(--ds-font-size-200)';
914
+ 'font.size.300': 'var(--ds-font-size-300)';
915
+ 'font.size.400': 'var(--ds-font-size-400)';
916
+ 'font.size.500': 'var(--ds-font-size-500)';
917
+ 'font.size.600': 'var(--ds-font-size-600)';
918
+ 'font.weight.bold': 'var(--ds-font-weight-bold)';
919
+ 'font.weight.medium': 'var(--ds-font-weight-medium)';
920
+ 'font.weight.regular': 'var(--ds-font-weight-regular)';
921
+ 'font.weight.semibold': 'var(--ds-font-weight-semibold)';
922
+ 'font.lineHeight.1': 'var(--ds-font-lineHeight-1)';
923
+ 'font.lineHeight.100': 'var(--ds-font-lineHeight-100)';
924
+ 'font.lineHeight.200': 'var(--ds-font-lineHeight-200)';
925
+ 'font.lineHeight.300': 'var(--ds-font-lineHeight-300)';
926
+ 'font.lineHeight.400': 'var(--ds-font-lineHeight-400)';
927
+ 'font.lineHeight.500': 'var(--ds-font-lineHeight-500)';
928
+ 'font.lineHeight.600': 'var(--ds-font-lineHeight-600)';
928
929
  };
929
930
 
930
931
  // @public (undocumented)
@@ -941,62 +942,61 @@ type DeprecatedTokenState = 'deprecated';
941
942
 
942
943
  // @public (undocumented)
943
944
  type DeprecatedTypographyToken<BaseToken> = DesignToken<
944
- BaseToken,
945
- 'fontFamily' | 'fontSize' | 'fontWeight' | 'letterSpacing' | 'lineHeight'
945
+ BaseToken,
946
+ 'fontFamily' | 'fontSize' | 'fontWeight' | 'letterSpacing' | 'lineHeight'
946
947
  >;
947
948
 
948
949
  // @public
949
- interface DesignToken<TValue, Group extends Groups>
950
- extends Token<TValue, Group> {
951
- // (undocumented)
952
- attributes:
953
- | {
954
- state: ActiveTokenState;
955
- group: Group;
956
- description: string;
957
- introduced: string;
958
- suggest?: string[];
959
- }
960
- | {
961
- state: DeletedTokenState;
962
- group: Group;
963
- description: string;
964
- introduced: string;
965
- deprecated: string;
966
- deleted: string;
967
- replacement?: Replacement;
968
- }
969
- | {
970
- state: DeprecatedTokenState;
971
- group: Group;
972
- description: string;
973
- introduced: string;
974
- deprecated: string;
975
- replacement?: Replacement;
976
- }
977
- | {
978
- state: ExperimentalTokenState;
979
- group: Group;
980
- description: string;
981
- introduced: string;
982
- replacement?: ExperimentalReplacement;
983
- suggest?: string[];
984
- };
950
+ interface DesignToken<TValue, Group extends Groups> extends Token<TValue, Group> {
951
+ // (undocumented)
952
+ attributes:
953
+ | {
954
+ state: ActiveTokenState;
955
+ group: Group;
956
+ description: string;
957
+ introduced: string;
958
+ suggest?: string[];
959
+ }
960
+ | {
961
+ state: DeletedTokenState;
962
+ group: Group;
963
+ description: string;
964
+ introduced: string;
965
+ deprecated: string;
966
+ deleted: string;
967
+ replacement?: Replacement;
968
+ }
969
+ | {
970
+ state: DeprecatedTokenState;
971
+ group: Group;
972
+ description: string;
973
+ introduced: string;
974
+ deprecated: string;
975
+ replacement?: Replacement;
976
+ }
977
+ | {
978
+ state: ExperimentalTokenState;
979
+ group: Group;
980
+ description: string;
981
+ introduced: string;
982
+ replacement?: ExperimentalReplacement;
983
+ suggest?: string[];
984
+ };
985
985
  }
986
986
 
987
987
  // @public
988
988
  export const enableGlobalTheme: (
989
- {
990
- colorMode,
991
- contrastMode,
992
- dark,
993
- light,
994
- shape,
995
- spacing,
996
- typography,
997
- UNSAFE_themeOptions,
998
- }?: Partial<ThemeState>,
999
- themeLoader?: ((id: ThemeIdsWithOverrides) => void) | undefined,
989
+ {
990
+ colorMode,
991
+ contrastMode,
992
+ dark,
993
+ light,
994
+ shape,
995
+ spacing,
996
+ typography,
997
+ UNSAFE_themeOptions,
998
+ }?: Partial<ThemeState>,
999
+ themeLoader?: ((id: ThemeIdsWithOverrides) => void) | undefined,
1000
1000
  ) => UnbindFn;
1001
1001
 
1002
1002
  // @public (undocumented)
@@ -1010,28 +1010,28 @@ type ExtensionThemeId = ThemeIds;
1010
1010
 
1011
1011
  // @public (undocumented)
1012
1012
  type FlattenKeys<T, Prefix extends string = ''> = {
1013
- [Key in keyof T]: T[Key] extends object
1014
- ? T[Key] extends {
1015
- value: any;
1016
- }
1017
- ? `${Prefix}${Key & string}`
1018
- : `${Prefix}${Key & string}.${FlattenKeys<T[Key]>}`
1019
- : `${Prefix}.${Key & string}`;
1013
+ [Key in keyof T]: T[Key] extends object
1014
+ ? T[Key] extends {
1015
+ value: any;
1016
+ }
1017
+ ? `${Prefix}${Key & string}`
1018
+ : `${Prefix}${Key & string}.${FlattenKeys<T[Key]>}`
1019
+ : `${Prefix}.${Key & string}`;
1020
1020
  }[keyof T];
1021
1021
 
1022
1022
  // @public (undocumented)
1023
1023
  interface FontFamilyTokenSchema<BaseToken> {
1024
- // (undocumented)
1025
- font: {
1026
- family: {
1027
- sans: DeprecatedTypographyToken<BaseToken>;
1028
- monospace: DeprecatedTypographyToken<BaseToken>;
1029
- body: DeprecatedTypographyToken<BaseToken>;
1030
- heading: DeprecatedTypographyToken<BaseToken>;
1031
- brand: DeprecatedTypographyToken<BaseToken>;
1032
- code: DeprecatedTypographyToken<BaseToken>;
1033
- };
1034
- };
1024
+ // (undocumented)
1025
+ font: {
1026
+ family: {
1027
+ sans: DeprecatedTypographyToken<BaseToken>;
1028
+ monospace: DeprecatedTypographyToken<BaseToken>;
1029
+ body: DeprecatedTypographyToken<BaseToken>;
1030
+ heading: DeprecatedTypographyToken<BaseToken>;
1031
+ brand: DeprecatedTypographyToken<BaseToken>;
1032
+ code: DeprecatedTypographyToken<BaseToken>;
1033
+ };
1034
+ };
1035
1035
  }
1036
1036
 
1037
1037
  // @public (undocumented)
@@ -1039,476 +1039,471 @@ export const getGlobalTheme: () => Partial<ActiveThemeState>;
1039
1039
 
1040
1040
  // @public
1041
1041
  export const getSSRAutoScript: (
1042
- colorMode: ThemeState['colorMode'],
1043
- contrastMode?: ThemeState['contrastMode'],
1042
+ colorMode: ThemeState['colorMode'],
1043
+ contrastMode?: ThemeState['contrastMode'],
1044
1044
  ) => string | undefined;
1045
1045
 
1046
1046
  // @public
1047
1047
  export const getThemeHtmlAttrs: ({
1048
- colorMode,
1049
- dark,
1050
- light,
1051
- contrastMode,
1052
- shape,
1053
- spacing,
1054
- typography,
1055
- UNSAFE_themeOptions,
1048
+ colorMode,
1049
+ dark,
1050
+ light,
1051
+ contrastMode,
1052
+ shape,
1053
+ spacing,
1054
+ typography,
1055
+ UNSAFE_themeOptions,
1056
1056
  }?: Partial<ThemeState>) => Record<string, string>;
1057
1057
 
1058
1058
  // @public
1059
- export const getThemeStyles: (
1060
- preferences?: 'all' | Partial<ThemeState>,
1061
- ) => Promise<ThemeStyles[]>;
1059
+ export const getThemeStyles: (preferences?: 'all' | Partial<ThemeState>) => Promise<ThemeStyles[]>;
1062
1060
 
1063
1061
  // @public
1064
- export function getTokenValue<T extends keyof Tokens_2>(
1065
- tokenId: T,
1066
- fallback?: string,
1067
- ): string;
1062
+ export function getTokenValue<T extends keyof Tokens_2>(tokenId: T, fallback?: string): string;
1068
1063
 
1069
1064
  // @public (undocumented)
1070
1065
  export type Groups =
1071
- | 'fontFamily'
1072
- | 'fontSize'
1073
- | 'fontWeight'
1074
- | 'letterSpacing'
1075
- | 'lineHeight'
1076
- | 'opacity'
1077
- | 'paint'
1078
- | 'palette'
1079
- | 'raw'
1080
- | 'shadow'
1081
- | 'shape'
1082
- | 'spacing'
1083
- | 'typography';
1066
+ | 'fontFamily'
1067
+ | 'fontSize'
1068
+ | 'fontWeight'
1069
+ | 'letterSpacing'
1070
+ | 'lineHeight'
1071
+ | 'opacity'
1072
+ | 'paint'
1073
+ | 'palette'
1074
+ | 'raw'
1075
+ | 'shadow'
1076
+ | 'shape'
1077
+ | 'spacing'
1078
+ | 'typography';
1084
1079
 
1085
1080
  // @public (undocumented)
1086
1081
  type HEX = `#${string}`;
1087
1082
 
1088
1083
  // @public
1089
1084
  type InternalTokenIds =
1090
- | 'border.radius.050'
1091
- | 'border.radius.100'
1092
- | 'border.radius.200'
1093
- | 'border.radius.300'
1094
- | 'border.radius.400'
1095
- | 'border.radius.[default]'
1096
- | 'border.radius.circle'
1097
- | 'border.width.[default]'
1098
- | 'border.width.indicator'
1099
- | 'border.width.outline'
1100
- | 'color.background.accent.blue.bolder.[default]'
1101
- | 'color.background.accent.blue.bolder.hovered'
1102
- | 'color.background.accent.blue.bolder.pressed'
1103
- | 'color.background.accent.blue.subtle.[default]'
1104
- | 'color.background.accent.blue.subtle.hovered'
1105
- | 'color.background.accent.blue.subtle.pressed'
1106
- | 'color.background.accent.blue.subtler.[default]'
1107
- | 'color.background.accent.blue.subtler.hovered'
1108
- | 'color.background.accent.blue.subtler.pressed'
1109
- | 'color.background.accent.blue.subtlest.[default]'
1110
- | 'color.background.accent.blue.subtlest.hovered'
1111
- | 'color.background.accent.blue.subtlest.pressed'
1112
- | 'color.background.accent.gray.bolder.[default]'
1113
- | 'color.background.accent.gray.bolder.hovered'
1114
- | 'color.background.accent.gray.bolder.pressed'
1115
- | 'color.background.accent.gray.subtle.[default]'
1116
- | 'color.background.accent.gray.subtle.hovered'
1117
- | 'color.background.accent.gray.subtle.pressed'
1118
- | 'color.background.accent.gray.subtler.[default]'
1119
- | 'color.background.accent.gray.subtler.hovered'
1120
- | 'color.background.accent.gray.subtler.pressed'
1121
- | 'color.background.accent.gray.subtlest.[default]'
1122
- | 'color.background.accent.gray.subtlest.hovered'
1123
- | 'color.background.accent.gray.subtlest.pressed'
1124
- | 'color.background.accent.green.bolder.[default]'
1125
- | 'color.background.accent.green.bolder.hovered'
1126
- | 'color.background.accent.green.bolder.pressed'
1127
- | 'color.background.accent.green.subtle.[default]'
1128
- | 'color.background.accent.green.subtle.hovered'
1129
- | 'color.background.accent.green.subtle.pressed'
1130
- | 'color.background.accent.green.subtler.[default]'
1131
- | 'color.background.accent.green.subtler.hovered'
1132
- | 'color.background.accent.green.subtler.pressed'
1133
- | 'color.background.accent.green.subtlest.[default]'
1134
- | 'color.background.accent.green.subtlest.hovered'
1135
- | 'color.background.accent.green.subtlest.pressed'
1136
- | 'color.background.accent.lime.bolder.[default]'
1137
- | 'color.background.accent.lime.bolder.hovered'
1138
- | 'color.background.accent.lime.bolder.pressed'
1139
- | 'color.background.accent.lime.subtle.[default]'
1140
- | 'color.background.accent.lime.subtle.hovered'
1141
- | 'color.background.accent.lime.subtle.pressed'
1142
- | 'color.background.accent.lime.subtler.[default]'
1143
- | 'color.background.accent.lime.subtler.hovered'
1144
- | 'color.background.accent.lime.subtler.pressed'
1145
- | 'color.background.accent.lime.subtlest.[default]'
1146
- | 'color.background.accent.lime.subtlest.hovered'
1147
- | 'color.background.accent.lime.subtlest.pressed'
1148
- | 'color.background.accent.magenta.bolder.[default]'
1149
- | 'color.background.accent.magenta.bolder.hovered'
1150
- | 'color.background.accent.magenta.bolder.pressed'
1151
- | 'color.background.accent.magenta.subtle.[default]'
1152
- | 'color.background.accent.magenta.subtle.hovered'
1153
- | 'color.background.accent.magenta.subtle.pressed'
1154
- | 'color.background.accent.magenta.subtler.[default]'
1155
- | 'color.background.accent.magenta.subtler.hovered'
1156
- | 'color.background.accent.magenta.subtler.pressed'
1157
- | 'color.background.accent.magenta.subtlest.[default]'
1158
- | 'color.background.accent.magenta.subtlest.hovered'
1159
- | 'color.background.accent.magenta.subtlest.pressed'
1160
- | 'color.background.accent.orange.bolder.[default]'
1161
- | 'color.background.accent.orange.bolder.hovered'
1162
- | 'color.background.accent.orange.bolder.pressed'
1163
- | 'color.background.accent.orange.subtle.[default]'
1164
- | 'color.background.accent.orange.subtle.hovered'
1165
- | 'color.background.accent.orange.subtle.pressed'
1166
- | 'color.background.accent.orange.subtler.[default]'
1167
- | 'color.background.accent.orange.subtler.hovered'
1168
- | 'color.background.accent.orange.subtler.pressed'
1169
- | 'color.background.accent.orange.subtlest.[default]'
1170
- | 'color.background.accent.orange.subtlest.hovered'
1171
- | 'color.background.accent.orange.subtlest.pressed'
1172
- | 'color.background.accent.purple.bolder.[default]'
1173
- | 'color.background.accent.purple.bolder.hovered'
1174
- | 'color.background.accent.purple.bolder.pressed'
1175
- | 'color.background.accent.purple.subtle.[default]'
1176
- | 'color.background.accent.purple.subtle.hovered'
1177
- | 'color.background.accent.purple.subtle.pressed'
1178
- | 'color.background.accent.purple.subtler.[default]'
1179
- | 'color.background.accent.purple.subtler.hovered'
1180
- | 'color.background.accent.purple.subtler.pressed'
1181
- | 'color.background.accent.purple.subtlest.[default]'
1182
- | 'color.background.accent.purple.subtlest.hovered'
1183
- | 'color.background.accent.purple.subtlest.pressed'
1184
- | 'color.background.accent.red.bolder.[default]'
1185
- | 'color.background.accent.red.bolder.hovered'
1186
- | 'color.background.accent.red.bolder.pressed'
1187
- | 'color.background.accent.red.subtle.[default]'
1188
- | 'color.background.accent.red.subtle.hovered'
1189
- | 'color.background.accent.red.subtle.pressed'
1190
- | 'color.background.accent.red.subtler.[default]'
1191
- | 'color.background.accent.red.subtler.hovered'
1192
- | 'color.background.accent.red.subtler.pressed'
1193
- | 'color.background.accent.red.subtlest.[default]'
1194
- | 'color.background.accent.red.subtlest.hovered'
1195
- | 'color.background.accent.red.subtlest.pressed'
1196
- | 'color.background.accent.teal.bolder.[default]'
1197
- | 'color.background.accent.teal.bolder.hovered'
1198
- | 'color.background.accent.teal.bolder.pressed'
1199
- | 'color.background.accent.teal.subtle.[default]'
1200
- | 'color.background.accent.teal.subtle.hovered'
1201
- | 'color.background.accent.teal.subtle.pressed'
1202
- | 'color.background.accent.teal.subtler.[default]'
1203
- | 'color.background.accent.teal.subtler.hovered'
1204
- | 'color.background.accent.teal.subtler.pressed'
1205
- | 'color.background.accent.teal.subtlest.[default]'
1206
- | 'color.background.accent.teal.subtlest.hovered'
1207
- | 'color.background.accent.teal.subtlest.pressed'
1208
- | 'color.background.accent.yellow.bolder.[default]'
1209
- | 'color.background.accent.yellow.bolder.hovered'
1210
- | 'color.background.accent.yellow.bolder.pressed'
1211
- | 'color.background.accent.yellow.subtle.[default]'
1212
- | 'color.background.accent.yellow.subtle.hovered'
1213
- | 'color.background.accent.yellow.subtle.pressed'
1214
- | 'color.background.accent.yellow.subtler.[default]'
1215
- | 'color.background.accent.yellow.subtler.hovered'
1216
- | 'color.background.accent.yellow.subtler.pressed'
1217
- | 'color.background.accent.yellow.subtlest.[default]'
1218
- | 'color.background.accent.yellow.subtlest.hovered'
1219
- | 'color.background.accent.yellow.subtlest.pressed'
1220
- | 'color.background.brand.bold.[default]'
1221
- | 'color.background.brand.bold.hovered'
1222
- | 'color.background.brand.bold.pressed'
1223
- | 'color.background.brand.boldest.[default]'
1224
- | 'color.background.brand.boldest.hovered'
1225
- | 'color.background.brand.boldest.pressed'
1226
- | 'color.background.brand.subtlest.[default]'
1227
- | 'color.background.brand.subtlest.hovered'
1228
- | 'color.background.brand.subtlest.pressed'
1229
- | 'color.background.danger.[default].[default]'
1230
- | 'color.background.danger.[default].hovered'
1231
- | 'color.background.danger.[default].pressed'
1232
- | 'color.background.danger.bold.[default]'
1233
- | 'color.background.danger.bold.hovered'
1234
- | 'color.background.danger.bold.pressed'
1235
- | 'color.background.disabled'
1236
- | 'color.background.discovery.[default].[default]'
1237
- | 'color.background.discovery.[default].hovered'
1238
- | 'color.background.discovery.[default].pressed'
1239
- | 'color.background.discovery.bold.[default]'
1240
- | 'color.background.discovery.bold.hovered'
1241
- | 'color.background.discovery.bold.pressed'
1242
- | 'color.background.information.[default].[default]'
1243
- | 'color.background.information.[default].hovered'
1244
- | 'color.background.information.[default].pressed'
1245
- | 'color.background.information.bold.[default]'
1246
- | 'color.background.information.bold.hovered'
1247
- | 'color.background.information.bold.pressed'
1248
- | 'color.background.input.[default]'
1249
- | 'color.background.input.hovered'
1250
- | 'color.background.input.pressed'
1251
- | 'color.background.inverse.subtle.[default]'
1252
- | 'color.background.inverse.subtle.hovered'
1253
- | 'color.background.inverse.subtle.pressed'
1254
- | 'color.background.neutral.[default].[default]'
1255
- | 'color.background.neutral.[default].hovered'
1256
- | 'color.background.neutral.[default].pressed'
1257
- | 'color.background.neutral.bold.[default]'
1258
- | 'color.background.neutral.bold.hovered'
1259
- | 'color.background.neutral.bold.pressed'
1260
- | 'color.background.neutral.subtle.[default]'
1261
- | 'color.background.neutral.subtle.hovered'
1262
- | 'color.background.neutral.subtle.pressed'
1263
- | 'color.background.selected.[default].[default]'
1264
- | 'color.background.selected.[default].hovered'
1265
- | 'color.background.selected.[default].pressed'
1266
- | 'color.background.selected.bold.[default]'
1267
- | 'color.background.selected.bold.hovered'
1268
- | 'color.background.selected.bold.pressed'
1269
- | 'color.background.success.[default].[default]'
1270
- | 'color.background.success.[default].hovered'
1271
- | 'color.background.success.[default].pressed'
1272
- | 'color.background.success.bold.[default]'
1273
- | 'color.background.success.bold.hovered'
1274
- | 'color.background.success.bold.pressed'
1275
- | 'color.background.warning.[default].[default]'
1276
- | 'color.background.warning.[default].hovered'
1277
- | 'color.background.warning.[default].pressed'
1278
- | 'color.background.warning.bold.[default]'
1279
- | 'color.background.warning.bold.hovered'
1280
- | 'color.background.warning.bold.pressed'
1281
- | 'color.blanket.[default]'
1282
- | 'color.blanket.danger'
1283
- | 'color.blanket.selected'
1284
- | 'color.border.[default]'
1285
- | 'color.border.accent.blue'
1286
- | 'color.border.accent.gray'
1287
- | 'color.border.accent.green'
1288
- | 'color.border.accent.lime'
1289
- | 'color.border.accent.magenta'
1290
- | 'color.border.accent.orange'
1291
- | 'color.border.accent.purple'
1292
- | 'color.border.accent.red'
1293
- | 'color.border.accent.teal'
1294
- | 'color.border.accent.yellow'
1295
- | 'color.border.bold'
1296
- | 'color.border.brand'
1297
- | 'color.border.danger'
1298
- | 'color.border.disabled'
1299
- | 'color.border.discovery'
1300
- | 'color.border.focused'
1301
- | 'color.border.information'
1302
- | 'color.border.input'
1303
- | 'color.border.inverse'
1304
- | 'color.border.selected'
1305
- | 'color.border.success'
1306
- | 'color.border.warning'
1307
- | 'color.chart.blue.bold.[default]'
1308
- | 'color.chart.blue.bold.hovered'
1309
- | 'color.chart.blue.bolder.[default]'
1310
- | 'color.chart.blue.bolder.hovered'
1311
- | 'color.chart.blue.boldest.[default]'
1312
- | 'color.chart.blue.boldest.hovered'
1313
- | 'color.chart.brand.[default]'
1314
- | 'color.chart.brand.hovered'
1315
- | 'color.chart.categorical.1.[default]'
1316
- | 'color.chart.categorical.1.hovered'
1317
- | 'color.chart.categorical.2.[default]'
1318
- | 'color.chart.categorical.2.hovered'
1319
- | 'color.chart.categorical.3.[default]'
1320
- | 'color.chart.categorical.3.hovered'
1321
- | 'color.chart.categorical.4.[default]'
1322
- | 'color.chart.categorical.4.hovered'
1323
- | 'color.chart.categorical.5.[default]'
1324
- | 'color.chart.categorical.5.hovered'
1325
- | 'color.chart.categorical.6.[default]'
1326
- | 'color.chart.categorical.6.hovered'
1327
- | 'color.chart.categorical.7.[default]'
1328
- | 'color.chart.categorical.7.hovered'
1329
- | 'color.chart.categorical.8.[default]'
1330
- | 'color.chart.categorical.8.hovered'
1331
- | 'color.chart.danger.[default].[default]'
1332
- | 'color.chart.danger.[default].hovered'
1333
- | 'color.chart.danger.bold.[default]'
1334
- | 'color.chart.danger.bold.hovered'
1335
- | 'color.chart.discovery.[default].[default]'
1336
- | 'color.chart.discovery.[default].hovered'
1337
- | 'color.chart.discovery.bold.[default]'
1338
- | 'color.chart.discovery.bold.hovered'
1339
- | 'color.chart.gray.bold.[default]'
1340
- | 'color.chart.gray.bold.hovered'
1341
- | 'color.chart.gray.bolder.[default]'
1342
- | 'color.chart.gray.bolder.hovered'
1343
- | 'color.chart.gray.boldest.[default]'
1344
- | 'color.chart.gray.boldest.hovered'
1345
- | 'color.chart.green.bold.[default]'
1346
- | 'color.chart.green.bold.hovered'
1347
- | 'color.chart.green.bolder.[default]'
1348
- | 'color.chart.green.bolder.hovered'
1349
- | 'color.chart.green.boldest.[default]'
1350
- | 'color.chart.green.boldest.hovered'
1351
- | 'color.chart.information.[default].[default]'
1352
- | 'color.chart.information.[default].hovered'
1353
- | 'color.chart.information.bold.[default]'
1354
- | 'color.chart.information.bold.hovered'
1355
- | 'color.chart.lime.bold.[default]'
1356
- | 'color.chart.lime.bold.hovered'
1357
- | 'color.chart.lime.bolder.[default]'
1358
- | 'color.chart.lime.bolder.hovered'
1359
- | 'color.chart.lime.boldest.[default]'
1360
- | 'color.chart.lime.boldest.hovered'
1361
- | 'color.chart.magenta.bold.[default]'
1362
- | 'color.chart.magenta.bold.hovered'
1363
- | 'color.chart.magenta.bolder.[default]'
1364
- | 'color.chart.magenta.bolder.hovered'
1365
- | 'color.chart.magenta.boldest.[default]'
1366
- | 'color.chart.magenta.boldest.hovered'
1367
- | 'color.chart.neutral.[default]'
1368
- | 'color.chart.neutral.hovered'
1369
- | 'color.chart.orange.bold.[default]'
1370
- | 'color.chart.orange.bold.hovered'
1371
- | 'color.chart.orange.bolder.[default]'
1372
- | 'color.chart.orange.bolder.hovered'
1373
- | 'color.chart.orange.boldest.[default]'
1374
- | 'color.chart.orange.boldest.hovered'
1375
- | 'color.chart.purple.bold.[default]'
1376
- | 'color.chart.purple.bold.hovered'
1377
- | 'color.chart.purple.bolder.[default]'
1378
- | 'color.chart.purple.bolder.hovered'
1379
- | 'color.chart.purple.boldest.[default]'
1380
- | 'color.chart.purple.boldest.hovered'
1381
- | 'color.chart.red.bold.[default]'
1382
- | 'color.chart.red.bold.hovered'
1383
- | 'color.chart.red.bolder.[default]'
1384
- | 'color.chart.red.bolder.hovered'
1385
- | 'color.chart.red.boldest.[default]'
1386
- | 'color.chart.red.boldest.hovered'
1387
- | 'color.chart.success.[default].[default]'
1388
- | 'color.chart.success.[default].hovered'
1389
- | 'color.chart.success.bold.[default]'
1390
- | 'color.chart.success.bold.hovered'
1391
- | 'color.chart.teal.bold.[default]'
1392
- | 'color.chart.teal.bold.hovered'
1393
- | 'color.chart.teal.bolder.[default]'
1394
- | 'color.chart.teal.bolder.hovered'
1395
- | 'color.chart.teal.boldest.[default]'
1396
- | 'color.chart.teal.boldest.hovered'
1397
- | 'color.chart.warning.[default].[default]'
1398
- | 'color.chart.warning.[default].hovered'
1399
- | 'color.chart.warning.bold.[default]'
1400
- | 'color.chart.warning.bold.hovered'
1401
- | 'color.chart.yellow.bold.[default]'
1402
- | 'color.chart.yellow.bold.hovered'
1403
- | 'color.chart.yellow.bolder.[default]'
1404
- | 'color.chart.yellow.bolder.hovered'
1405
- | 'color.chart.yellow.boldest.[default]'
1406
- | 'color.chart.yellow.boldest.hovered'
1407
- | 'color.icon.[default]'
1408
- | 'color.icon.accent.blue'
1409
- | 'color.icon.accent.gray'
1410
- | 'color.icon.accent.green'
1411
- | 'color.icon.accent.lime'
1412
- | 'color.icon.accent.magenta'
1413
- | 'color.icon.accent.orange'
1414
- | 'color.icon.accent.purple'
1415
- | 'color.icon.accent.red'
1416
- | 'color.icon.accent.teal'
1417
- | 'color.icon.accent.yellow'
1418
- | 'color.icon.brand'
1419
- | 'color.icon.danger'
1420
- | 'color.icon.disabled'
1421
- | 'color.icon.discovery'
1422
- | 'color.icon.information'
1423
- | 'color.icon.inverse'
1424
- | 'color.icon.selected'
1425
- | 'color.icon.subtle'
1426
- | 'color.icon.success'
1427
- | 'color.icon.warning.[default]'
1428
- | 'color.icon.warning.inverse'
1429
- | 'color.interaction.hovered'
1430
- | 'color.interaction.pressed'
1431
- | 'color.link.[default]'
1432
- | 'color.link.pressed'
1433
- | 'color.link.visited'
1434
- | 'color.skeleton.[default]'
1435
- | 'color.skeleton.subtle'
1436
- | 'color.text.[default]'
1437
- | 'color.text.accent.blue.[default]'
1438
- | 'color.text.accent.blue.bolder'
1439
- | 'color.text.accent.gray.[default]'
1440
- | 'color.text.accent.gray.bolder'
1441
- | 'color.text.accent.green.[default]'
1442
- | 'color.text.accent.green.bolder'
1443
- | 'color.text.accent.lime.[default]'
1444
- | 'color.text.accent.lime.bolder'
1445
- | 'color.text.accent.magenta.[default]'
1446
- | 'color.text.accent.magenta.bolder'
1447
- | 'color.text.accent.orange.[default]'
1448
- | 'color.text.accent.orange.bolder'
1449
- | 'color.text.accent.purple.[default]'
1450
- | 'color.text.accent.purple.bolder'
1451
- | 'color.text.accent.red.[default]'
1452
- | 'color.text.accent.red.bolder'
1453
- | 'color.text.accent.teal.[default]'
1454
- | 'color.text.accent.teal.bolder'
1455
- | 'color.text.accent.yellow.[default]'
1456
- | 'color.text.accent.yellow.bolder'
1457
- | 'color.text.brand'
1458
- | 'color.text.danger'
1459
- | 'color.text.disabled'
1460
- | 'color.text.discovery'
1461
- | 'color.text.information'
1462
- | 'color.text.inverse'
1463
- | 'color.text.selected'
1464
- | 'color.text.subtle'
1465
- | 'color.text.subtlest'
1466
- | 'color.text.success'
1467
- | 'color.text.warning.[default]'
1468
- | 'color.text.warning.inverse'
1469
- | 'elevation.shadow.overflow.[default]'
1470
- | 'elevation.shadow.overflow.perimeter'
1471
- | 'elevation.shadow.overflow.spread'
1472
- | 'elevation.shadow.overlay'
1473
- | 'elevation.shadow.raised'
1474
- | 'elevation.surface.[default].[default]'
1475
- | 'elevation.surface.[default].hovered'
1476
- | 'elevation.surface.[default].pressed'
1477
- | 'elevation.surface.overlay.[default]'
1478
- | 'elevation.surface.overlay.hovered'
1479
- | 'elevation.surface.overlay.pressed'
1480
- | 'elevation.surface.raised.[default]'
1481
- | 'elevation.surface.raised.hovered'
1482
- | 'elevation.surface.raised.pressed'
1483
- | 'elevation.surface.sunken'
1484
- | 'opacity.disabled'
1485
- | 'opacity.loading'
1486
- | 'space.0'
1487
- | 'space.025'
1488
- | 'space.050'
1489
- | 'space.075'
1490
- | 'space.100'
1491
- | 'space.1000'
1492
- | 'space.150'
1493
- | 'space.200'
1494
- | 'space.250'
1495
- | 'space.300'
1496
- | 'space.400'
1497
- | 'space.500'
1498
- | 'space.600'
1499
- | 'space.800'
1500
- | 'space.negative.025'
1501
- | 'space.negative.050'
1502
- | 'space.negative.075'
1503
- | 'space.negative.100'
1504
- | 'space.negative.150'
1505
- | 'space.negative.200'
1506
- | 'space.negative.250'
1507
- | 'space.negative.300'
1508
- | 'space.negative.400'
1509
- | 'utility.UNSAFE.textTransformUppercase'
1510
- | 'utility.UNSAFE.transparent'
1511
- | 'utility.elevation.surface.current';
1085
+ | 'border.radius.050'
1086
+ | 'border.radius.100'
1087
+ | 'border.radius.200'
1088
+ | 'border.radius.300'
1089
+ | 'border.radius.400'
1090
+ | 'border.radius.[default]'
1091
+ | 'border.radius.circle'
1092
+ | 'border.width.[default]'
1093
+ | 'border.width.indicator'
1094
+ | 'border.width.outline'
1095
+ | 'color.background.accent.blue.bolder.[default]'
1096
+ | 'color.background.accent.blue.bolder.hovered'
1097
+ | 'color.background.accent.blue.bolder.pressed'
1098
+ | 'color.background.accent.blue.subtle.[default]'
1099
+ | 'color.background.accent.blue.subtle.hovered'
1100
+ | 'color.background.accent.blue.subtle.pressed'
1101
+ | 'color.background.accent.blue.subtler.[default]'
1102
+ | 'color.background.accent.blue.subtler.hovered'
1103
+ | 'color.background.accent.blue.subtler.pressed'
1104
+ | 'color.background.accent.blue.subtlest.[default]'
1105
+ | 'color.background.accent.blue.subtlest.hovered'
1106
+ | 'color.background.accent.blue.subtlest.pressed'
1107
+ | 'color.background.accent.gray.bolder.[default]'
1108
+ | 'color.background.accent.gray.bolder.hovered'
1109
+ | 'color.background.accent.gray.bolder.pressed'
1110
+ | 'color.background.accent.gray.subtle.[default]'
1111
+ | 'color.background.accent.gray.subtle.hovered'
1112
+ | 'color.background.accent.gray.subtle.pressed'
1113
+ | 'color.background.accent.gray.subtler.[default]'
1114
+ | 'color.background.accent.gray.subtler.hovered'
1115
+ | 'color.background.accent.gray.subtler.pressed'
1116
+ | 'color.background.accent.gray.subtlest.[default]'
1117
+ | 'color.background.accent.gray.subtlest.hovered'
1118
+ | 'color.background.accent.gray.subtlest.pressed'
1119
+ | 'color.background.accent.green.bolder.[default]'
1120
+ | 'color.background.accent.green.bolder.hovered'
1121
+ | 'color.background.accent.green.bolder.pressed'
1122
+ | 'color.background.accent.green.subtle.[default]'
1123
+ | 'color.background.accent.green.subtle.hovered'
1124
+ | 'color.background.accent.green.subtle.pressed'
1125
+ | 'color.background.accent.green.subtler.[default]'
1126
+ | 'color.background.accent.green.subtler.hovered'
1127
+ | 'color.background.accent.green.subtler.pressed'
1128
+ | 'color.background.accent.green.subtlest.[default]'
1129
+ | 'color.background.accent.green.subtlest.hovered'
1130
+ | 'color.background.accent.green.subtlest.pressed'
1131
+ | 'color.background.accent.lime.bolder.[default]'
1132
+ | 'color.background.accent.lime.bolder.hovered'
1133
+ | 'color.background.accent.lime.bolder.pressed'
1134
+ | 'color.background.accent.lime.subtle.[default]'
1135
+ | 'color.background.accent.lime.subtle.hovered'
1136
+ | 'color.background.accent.lime.subtle.pressed'
1137
+ | 'color.background.accent.lime.subtler.[default]'
1138
+ | 'color.background.accent.lime.subtler.hovered'
1139
+ | 'color.background.accent.lime.subtler.pressed'
1140
+ | 'color.background.accent.lime.subtlest.[default]'
1141
+ | 'color.background.accent.lime.subtlest.hovered'
1142
+ | 'color.background.accent.lime.subtlest.pressed'
1143
+ | 'color.background.accent.magenta.bolder.[default]'
1144
+ | 'color.background.accent.magenta.bolder.hovered'
1145
+ | 'color.background.accent.magenta.bolder.pressed'
1146
+ | 'color.background.accent.magenta.subtle.[default]'
1147
+ | 'color.background.accent.magenta.subtle.hovered'
1148
+ | 'color.background.accent.magenta.subtle.pressed'
1149
+ | 'color.background.accent.magenta.subtler.[default]'
1150
+ | 'color.background.accent.magenta.subtler.hovered'
1151
+ | 'color.background.accent.magenta.subtler.pressed'
1152
+ | 'color.background.accent.magenta.subtlest.[default]'
1153
+ | 'color.background.accent.magenta.subtlest.hovered'
1154
+ | 'color.background.accent.magenta.subtlest.pressed'
1155
+ | 'color.background.accent.orange.bolder.[default]'
1156
+ | 'color.background.accent.orange.bolder.hovered'
1157
+ | 'color.background.accent.orange.bolder.pressed'
1158
+ | 'color.background.accent.orange.subtle.[default]'
1159
+ | 'color.background.accent.orange.subtle.hovered'
1160
+ | 'color.background.accent.orange.subtle.pressed'
1161
+ | 'color.background.accent.orange.subtler.[default]'
1162
+ | 'color.background.accent.orange.subtler.hovered'
1163
+ | 'color.background.accent.orange.subtler.pressed'
1164
+ | 'color.background.accent.orange.subtlest.[default]'
1165
+ | 'color.background.accent.orange.subtlest.hovered'
1166
+ | 'color.background.accent.orange.subtlest.pressed'
1167
+ | 'color.background.accent.purple.bolder.[default]'
1168
+ | 'color.background.accent.purple.bolder.hovered'
1169
+ | 'color.background.accent.purple.bolder.pressed'
1170
+ | 'color.background.accent.purple.subtle.[default]'
1171
+ | 'color.background.accent.purple.subtle.hovered'
1172
+ | 'color.background.accent.purple.subtle.pressed'
1173
+ | 'color.background.accent.purple.subtler.[default]'
1174
+ | 'color.background.accent.purple.subtler.hovered'
1175
+ | 'color.background.accent.purple.subtler.pressed'
1176
+ | 'color.background.accent.purple.subtlest.[default]'
1177
+ | 'color.background.accent.purple.subtlest.hovered'
1178
+ | 'color.background.accent.purple.subtlest.pressed'
1179
+ | 'color.background.accent.red.bolder.[default]'
1180
+ | 'color.background.accent.red.bolder.hovered'
1181
+ | 'color.background.accent.red.bolder.pressed'
1182
+ | 'color.background.accent.red.subtle.[default]'
1183
+ | 'color.background.accent.red.subtle.hovered'
1184
+ | 'color.background.accent.red.subtle.pressed'
1185
+ | 'color.background.accent.red.subtler.[default]'
1186
+ | 'color.background.accent.red.subtler.hovered'
1187
+ | 'color.background.accent.red.subtler.pressed'
1188
+ | 'color.background.accent.red.subtlest.[default]'
1189
+ | 'color.background.accent.red.subtlest.hovered'
1190
+ | 'color.background.accent.red.subtlest.pressed'
1191
+ | 'color.background.accent.teal.bolder.[default]'
1192
+ | 'color.background.accent.teal.bolder.hovered'
1193
+ | 'color.background.accent.teal.bolder.pressed'
1194
+ | 'color.background.accent.teal.subtle.[default]'
1195
+ | 'color.background.accent.teal.subtle.hovered'
1196
+ | 'color.background.accent.teal.subtle.pressed'
1197
+ | 'color.background.accent.teal.subtler.[default]'
1198
+ | 'color.background.accent.teal.subtler.hovered'
1199
+ | 'color.background.accent.teal.subtler.pressed'
1200
+ | 'color.background.accent.teal.subtlest.[default]'
1201
+ | 'color.background.accent.teal.subtlest.hovered'
1202
+ | 'color.background.accent.teal.subtlest.pressed'
1203
+ | 'color.background.accent.yellow.bolder.[default]'
1204
+ | 'color.background.accent.yellow.bolder.hovered'
1205
+ | 'color.background.accent.yellow.bolder.pressed'
1206
+ | 'color.background.accent.yellow.subtle.[default]'
1207
+ | 'color.background.accent.yellow.subtle.hovered'
1208
+ | 'color.background.accent.yellow.subtle.pressed'
1209
+ | 'color.background.accent.yellow.subtler.[default]'
1210
+ | 'color.background.accent.yellow.subtler.hovered'
1211
+ | 'color.background.accent.yellow.subtler.pressed'
1212
+ | 'color.background.accent.yellow.subtlest.[default]'
1213
+ | 'color.background.accent.yellow.subtlest.hovered'
1214
+ | 'color.background.accent.yellow.subtlest.pressed'
1215
+ | 'color.background.brand.bold.[default]'
1216
+ | 'color.background.brand.bold.hovered'
1217
+ | 'color.background.brand.bold.pressed'
1218
+ | 'color.background.brand.boldest.[default]'
1219
+ | 'color.background.brand.boldest.hovered'
1220
+ | 'color.background.brand.boldest.pressed'
1221
+ | 'color.background.brand.subtlest.[default]'
1222
+ | 'color.background.brand.subtlest.hovered'
1223
+ | 'color.background.brand.subtlest.pressed'
1224
+ | 'color.background.danger.[default].[default]'
1225
+ | 'color.background.danger.[default].hovered'
1226
+ | 'color.background.danger.[default].pressed'
1227
+ | 'color.background.danger.bold.[default]'
1228
+ | 'color.background.danger.bold.hovered'
1229
+ | 'color.background.danger.bold.pressed'
1230
+ | 'color.background.disabled'
1231
+ | 'color.background.discovery.[default].[default]'
1232
+ | 'color.background.discovery.[default].hovered'
1233
+ | 'color.background.discovery.[default].pressed'
1234
+ | 'color.background.discovery.bold.[default]'
1235
+ | 'color.background.discovery.bold.hovered'
1236
+ | 'color.background.discovery.bold.pressed'
1237
+ | 'color.background.information.[default].[default]'
1238
+ | 'color.background.information.[default].hovered'
1239
+ | 'color.background.information.[default].pressed'
1240
+ | 'color.background.information.bold.[default]'
1241
+ | 'color.background.information.bold.hovered'
1242
+ | 'color.background.information.bold.pressed'
1243
+ | 'color.background.input.[default]'
1244
+ | 'color.background.input.hovered'
1245
+ | 'color.background.input.pressed'
1246
+ | 'color.background.inverse.subtle.[default]'
1247
+ | 'color.background.inverse.subtle.hovered'
1248
+ | 'color.background.inverse.subtle.pressed'
1249
+ | 'color.background.neutral.[default].[default]'
1250
+ | 'color.background.neutral.[default].hovered'
1251
+ | 'color.background.neutral.[default].pressed'
1252
+ | 'color.background.neutral.bold.[default]'
1253
+ | 'color.background.neutral.bold.hovered'
1254
+ | 'color.background.neutral.bold.pressed'
1255
+ | 'color.background.neutral.subtle.[default]'
1256
+ | 'color.background.neutral.subtle.hovered'
1257
+ | 'color.background.neutral.subtle.pressed'
1258
+ | 'color.background.selected.[default].[default]'
1259
+ | 'color.background.selected.[default].hovered'
1260
+ | 'color.background.selected.[default].pressed'
1261
+ | 'color.background.selected.bold.[default]'
1262
+ | 'color.background.selected.bold.hovered'
1263
+ | 'color.background.selected.bold.pressed'
1264
+ | 'color.background.success.[default].[default]'
1265
+ | 'color.background.success.[default].hovered'
1266
+ | 'color.background.success.[default].pressed'
1267
+ | 'color.background.success.bold.[default]'
1268
+ | 'color.background.success.bold.hovered'
1269
+ | 'color.background.success.bold.pressed'
1270
+ | 'color.background.warning.[default].[default]'
1271
+ | 'color.background.warning.[default].hovered'
1272
+ | 'color.background.warning.[default].pressed'
1273
+ | 'color.background.warning.bold.[default]'
1274
+ | 'color.background.warning.bold.hovered'
1275
+ | 'color.background.warning.bold.pressed'
1276
+ | 'color.blanket.[default]'
1277
+ | 'color.blanket.danger'
1278
+ | 'color.blanket.selected'
1279
+ | 'color.border.[default]'
1280
+ | 'color.border.accent.blue'
1281
+ | 'color.border.accent.gray'
1282
+ | 'color.border.accent.green'
1283
+ | 'color.border.accent.lime'
1284
+ | 'color.border.accent.magenta'
1285
+ | 'color.border.accent.orange'
1286
+ | 'color.border.accent.purple'
1287
+ | 'color.border.accent.red'
1288
+ | 'color.border.accent.teal'
1289
+ | 'color.border.accent.yellow'
1290
+ | 'color.border.bold'
1291
+ | 'color.border.brand'
1292
+ | 'color.border.danger'
1293
+ | 'color.border.disabled'
1294
+ | 'color.border.discovery'
1295
+ | 'color.border.focused'
1296
+ | 'color.border.information'
1297
+ | 'color.border.input'
1298
+ | 'color.border.inverse'
1299
+ | 'color.border.selected'
1300
+ | 'color.border.success'
1301
+ | 'color.border.warning'
1302
+ | 'color.chart.blue.bold.[default]'
1303
+ | 'color.chart.blue.bold.hovered'
1304
+ | 'color.chart.blue.bolder.[default]'
1305
+ | 'color.chart.blue.bolder.hovered'
1306
+ | 'color.chart.blue.boldest.[default]'
1307
+ | 'color.chart.blue.boldest.hovered'
1308
+ | 'color.chart.brand.[default]'
1309
+ | 'color.chart.brand.hovered'
1310
+ | 'color.chart.categorical.1.[default]'
1311
+ | 'color.chart.categorical.1.hovered'
1312
+ | 'color.chart.categorical.2.[default]'
1313
+ | 'color.chart.categorical.2.hovered'
1314
+ | 'color.chart.categorical.3.[default]'
1315
+ | 'color.chart.categorical.3.hovered'
1316
+ | 'color.chart.categorical.4.[default]'
1317
+ | 'color.chart.categorical.4.hovered'
1318
+ | 'color.chart.categorical.5.[default]'
1319
+ | 'color.chart.categorical.5.hovered'
1320
+ | 'color.chart.categorical.6.[default]'
1321
+ | 'color.chart.categorical.6.hovered'
1322
+ | 'color.chart.categorical.7.[default]'
1323
+ | 'color.chart.categorical.7.hovered'
1324
+ | 'color.chart.categorical.8.[default]'
1325
+ | 'color.chart.categorical.8.hovered'
1326
+ | 'color.chart.danger.[default].[default]'
1327
+ | 'color.chart.danger.[default].hovered'
1328
+ | 'color.chart.danger.bold.[default]'
1329
+ | 'color.chart.danger.bold.hovered'
1330
+ | 'color.chart.discovery.[default].[default]'
1331
+ | 'color.chart.discovery.[default].hovered'
1332
+ | 'color.chart.discovery.bold.[default]'
1333
+ | 'color.chart.discovery.bold.hovered'
1334
+ | 'color.chart.gray.bold.[default]'
1335
+ | 'color.chart.gray.bold.hovered'
1336
+ | 'color.chart.gray.bolder.[default]'
1337
+ | 'color.chart.gray.bolder.hovered'
1338
+ | 'color.chart.gray.boldest.[default]'
1339
+ | 'color.chart.gray.boldest.hovered'
1340
+ | 'color.chart.green.bold.[default]'
1341
+ | 'color.chart.green.bold.hovered'
1342
+ | 'color.chart.green.bolder.[default]'
1343
+ | 'color.chart.green.bolder.hovered'
1344
+ | 'color.chart.green.boldest.[default]'
1345
+ | 'color.chart.green.boldest.hovered'
1346
+ | 'color.chart.information.[default].[default]'
1347
+ | 'color.chart.information.[default].hovered'
1348
+ | 'color.chart.information.bold.[default]'
1349
+ | 'color.chart.information.bold.hovered'
1350
+ | 'color.chart.lime.bold.[default]'
1351
+ | 'color.chart.lime.bold.hovered'
1352
+ | 'color.chart.lime.bolder.[default]'
1353
+ | 'color.chart.lime.bolder.hovered'
1354
+ | 'color.chart.lime.boldest.[default]'
1355
+ | 'color.chart.lime.boldest.hovered'
1356
+ | 'color.chart.magenta.bold.[default]'
1357
+ | 'color.chart.magenta.bold.hovered'
1358
+ | 'color.chart.magenta.bolder.[default]'
1359
+ | 'color.chart.magenta.bolder.hovered'
1360
+ | 'color.chart.magenta.boldest.[default]'
1361
+ | 'color.chart.magenta.boldest.hovered'
1362
+ | 'color.chart.neutral.[default]'
1363
+ | 'color.chart.neutral.hovered'
1364
+ | 'color.chart.orange.bold.[default]'
1365
+ | 'color.chart.orange.bold.hovered'
1366
+ | 'color.chart.orange.bolder.[default]'
1367
+ | 'color.chart.orange.bolder.hovered'
1368
+ | 'color.chart.orange.boldest.[default]'
1369
+ | 'color.chart.orange.boldest.hovered'
1370
+ | 'color.chart.purple.bold.[default]'
1371
+ | 'color.chart.purple.bold.hovered'
1372
+ | 'color.chart.purple.bolder.[default]'
1373
+ | 'color.chart.purple.bolder.hovered'
1374
+ | 'color.chart.purple.boldest.[default]'
1375
+ | 'color.chart.purple.boldest.hovered'
1376
+ | 'color.chart.red.bold.[default]'
1377
+ | 'color.chart.red.bold.hovered'
1378
+ | 'color.chart.red.bolder.[default]'
1379
+ | 'color.chart.red.bolder.hovered'
1380
+ | 'color.chart.red.boldest.[default]'
1381
+ | 'color.chart.red.boldest.hovered'
1382
+ | 'color.chart.success.[default].[default]'
1383
+ | 'color.chart.success.[default].hovered'
1384
+ | 'color.chart.success.bold.[default]'
1385
+ | 'color.chart.success.bold.hovered'
1386
+ | 'color.chart.teal.bold.[default]'
1387
+ | 'color.chart.teal.bold.hovered'
1388
+ | 'color.chart.teal.bolder.[default]'
1389
+ | 'color.chart.teal.bolder.hovered'
1390
+ | 'color.chart.teal.boldest.[default]'
1391
+ | 'color.chart.teal.boldest.hovered'
1392
+ | 'color.chart.warning.[default].[default]'
1393
+ | 'color.chart.warning.[default].hovered'
1394
+ | 'color.chart.warning.bold.[default]'
1395
+ | 'color.chart.warning.bold.hovered'
1396
+ | 'color.chart.yellow.bold.[default]'
1397
+ | 'color.chart.yellow.bold.hovered'
1398
+ | 'color.chart.yellow.bolder.[default]'
1399
+ | 'color.chart.yellow.bolder.hovered'
1400
+ | 'color.chart.yellow.boldest.[default]'
1401
+ | 'color.chart.yellow.boldest.hovered'
1402
+ | 'color.icon.[default]'
1403
+ | 'color.icon.accent.blue'
1404
+ | 'color.icon.accent.gray'
1405
+ | 'color.icon.accent.green'
1406
+ | 'color.icon.accent.lime'
1407
+ | 'color.icon.accent.magenta'
1408
+ | 'color.icon.accent.orange'
1409
+ | 'color.icon.accent.purple'
1410
+ | 'color.icon.accent.red'
1411
+ | 'color.icon.accent.teal'
1412
+ | 'color.icon.accent.yellow'
1413
+ | 'color.icon.brand'
1414
+ | 'color.icon.danger'
1415
+ | 'color.icon.disabled'
1416
+ | 'color.icon.discovery'
1417
+ | 'color.icon.information'
1418
+ | 'color.icon.inverse'
1419
+ | 'color.icon.selected'
1420
+ | 'color.icon.subtle'
1421
+ | 'color.icon.success'
1422
+ | 'color.icon.warning.[default]'
1423
+ | 'color.icon.warning.inverse'
1424
+ | 'color.interaction.hovered'
1425
+ | 'color.interaction.pressed'
1426
+ | 'color.link.[default]'
1427
+ | 'color.link.pressed'
1428
+ | 'color.link.visited'
1429
+ | 'color.skeleton.[default]'
1430
+ | 'color.skeleton.subtle'
1431
+ | 'color.text.[default]'
1432
+ | 'color.text.accent.blue.[default]'
1433
+ | 'color.text.accent.blue.bolder'
1434
+ | 'color.text.accent.gray.[default]'
1435
+ | 'color.text.accent.gray.bolder'
1436
+ | 'color.text.accent.green.[default]'
1437
+ | 'color.text.accent.green.bolder'
1438
+ | 'color.text.accent.lime.[default]'
1439
+ | 'color.text.accent.lime.bolder'
1440
+ | 'color.text.accent.magenta.[default]'
1441
+ | 'color.text.accent.magenta.bolder'
1442
+ | 'color.text.accent.orange.[default]'
1443
+ | 'color.text.accent.orange.bolder'
1444
+ | 'color.text.accent.purple.[default]'
1445
+ | 'color.text.accent.purple.bolder'
1446
+ | 'color.text.accent.red.[default]'
1447
+ | 'color.text.accent.red.bolder'
1448
+ | 'color.text.accent.teal.[default]'
1449
+ | 'color.text.accent.teal.bolder'
1450
+ | 'color.text.accent.yellow.[default]'
1451
+ | 'color.text.accent.yellow.bolder'
1452
+ | 'color.text.brand'
1453
+ | 'color.text.danger'
1454
+ | 'color.text.disabled'
1455
+ | 'color.text.discovery'
1456
+ | 'color.text.information'
1457
+ | 'color.text.inverse'
1458
+ | 'color.text.selected'
1459
+ | 'color.text.subtle'
1460
+ | 'color.text.subtlest'
1461
+ | 'color.text.success'
1462
+ | 'color.text.warning.[default]'
1463
+ | 'color.text.warning.inverse'
1464
+ | 'elevation.shadow.overflow.[default]'
1465
+ | 'elevation.shadow.overflow.perimeter'
1466
+ | 'elevation.shadow.overflow.spread'
1467
+ | 'elevation.shadow.overlay'
1468
+ | 'elevation.shadow.raised'
1469
+ | 'elevation.surface.[default].[default]'
1470
+ | 'elevation.surface.[default].hovered'
1471
+ | 'elevation.surface.[default].pressed'
1472
+ | 'elevation.surface.overlay.[default]'
1473
+ | 'elevation.surface.overlay.hovered'
1474
+ | 'elevation.surface.overlay.pressed'
1475
+ | 'elevation.surface.raised.[default]'
1476
+ | 'elevation.surface.raised.hovered'
1477
+ | 'elevation.surface.raised.pressed'
1478
+ | 'elevation.surface.sunken'
1479
+ | 'opacity.disabled'
1480
+ | 'opacity.loading'
1481
+ | 'space.0'
1482
+ | 'space.025'
1483
+ | 'space.050'
1484
+ | 'space.075'
1485
+ | 'space.100'
1486
+ | 'space.1000'
1487
+ | 'space.150'
1488
+ | 'space.200'
1489
+ | 'space.250'
1490
+ | 'space.300'
1491
+ | 'space.400'
1492
+ | 'space.500'
1493
+ | 'space.600'
1494
+ | 'space.800'
1495
+ | 'space.negative.025'
1496
+ | 'space.negative.050'
1497
+ | 'space.negative.075'
1498
+ | 'space.negative.100'
1499
+ | 'space.negative.150'
1500
+ | 'space.negative.200'
1501
+ | 'space.negative.250'
1502
+ | 'space.negative.300'
1503
+ | 'space.negative.400'
1504
+ | 'utility.UNSAFE.textTransformUppercase'
1505
+ | 'utility.UNSAFE.transparent'
1506
+ | 'utility.elevation.surface.current';
1512
1507
 
1513
1508
  // @public (undocumented)
1514
1509
  export type OpacityToken = DesignToken<string, 'opacity'>;
@@ -1518,11 +1513,11 @@ export type PaintToken<BaseToken> = DesignToken<BaseToken, 'paint'>;
1518
1513
 
1519
1514
  // @public
1520
1515
  type Palettes =
1521
- | 'defaultPalette'
1522
- | 'legacyPalette'
1523
- | 'shapePalette'
1524
- | 'spacingScale'
1525
- | 'typographyPalette';
1516
+ | 'defaultPalette'
1517
+ | 'legacyPalette'
1518
+ | 'shapePalette'
1519
+ | 'spacingScale'
1520
+ | 'typographyPalette';
1526
1521
 
1527
1522
  // @public (undocumented)
1528
1523
  export type RawToken = DesignToken<string, 'raw'>;
@@ -1535,35 +1530,33 @@ type ResponsiveTypographyTokens = FlattenKeys<TypographyTokenSchema<any>>;
1535
1530
 
1536
1531
  // @public
1537
1532
  export const setGlobalTheme: (
1538
- {
1539
- colorMode,
1540
- contrastMode,
1541
- dark,
1542
- light,
1543
- shape,
1544
- spacing,
1545
- typography,
1546
- UNSAFE_themeOptions,
1547
- }?: Partial<ThemeState>,
1548
- themeLoader?:
1549
- | ((id: ThemeIdsWithOverrides) => Promise<void> | void)
1550
- | undefined,
1533
+ {
1534
+ colorMode,
1535
+ contrastMode,
1536
+ dark,
1537
+ light,
1538
+ shape,
1539
+ spacing,
1540
+ typography,
1541
+ UNSAFE_themeOptions,
1542
+ }?: Partial<ThemeState>,
1543
+ themeLoader?: ((id: ThemeIdsWithOverrides) => Promise<void> | void) | undefined,
1551
1544
  ) => Promise<UnbindFn>;
1552
1545
 
1553
1546
  // @public (undocumented)
1554
1547
  export type ShadowToken<BaseToken> = DesignToken<
1555
- Array<{
1556
- color: BaseToken;
1557
- opacity: number;
1558
- offset: {
1559
- x: number;
1560
- y: number;
1561
- };
1562
- radius: number;
1563
- spread?: number;
1564
- inset?: boolean;
1565
- }>,
1566
- 'shadow'
1548
+ Array<{
1549
+ color: BaseToken;
1550
+ opacity: number;
1551
+ offset: {
1552
+ x: number;
1553
+ y: number;
1554
+ };
1555
+ radius: number;
1556
+ spread?: number;
1557
+ inset?: boolean;
1558
+ }>,
1559
+ 'shadow'
1567
1560
  >;
1568
1561
 
1569
1562
  // @public (undocumented)
@@ -1580,27 +1573,27 @@ const themeColorModes: readonly ['light', 'dark', 'auto'];
1580
1573
 
1581
1574
  // @public
1582
1575
  interface ThemeConfig {
1583
- // (undocumented)
1584
- attributes: (
1585
- | {
1586
- type: 'color';
1587
- mode: DataColorModes;
1588
- }
1589
- | {
1590
- type: Extract<ThemeKinds, 'shape' | 'spacing' | 'typography'>;
1591
- }
1592
- ) & {
1593
- extends?: ExtensionThemeId;
1594
- };
1595
- // (undocumented)
1596
- displayName: string;
1597
- extends?: ThemeIds;
1598
- // (undocumented)
1599
- id: ThemeIds | ThemeOverrideIds;
1600
- increasesContrastFor?: ThemeIds;
1601
- override?: ThemeIds;
1602
- // (undocumented)
1603
- palette: Palettes;
1576
+ // (undocumented)
1577
+ attributes: (
1578
+ | {
1579
+ type: 'color';
1580
+ mode: DataColorModes;
1581
+ }
1582
+ | {
1583
+ type: Extract<ThemeKinds, 'shape' | 'spacing' | 'typography'>;
1584
+ }
1585
+ ) & {
1586
+ extends?: ExtensionThemeId;
1587
+ };
1588
+ // (undocumented)
1589
+ displayName: string;
1590
+ extends?: ThemeIds;
1591
+ // (undocumented)
1592
+ id: ThemeIds | ThemeOverrideIds;
1593
+ increasesContrastFor?: ThemeIds;
1594
+ override?: ThemeIds;
1595
+ // (undocumented)
1596
+ palette: Palettes;
1604
1597
  }
1605
1598
 
1606
1599
  // @public (undocumented)
@@ -1617,17 +1610,17 @@ export type ThemeIds = (typeof themeIds)[number];
1617
1610
 
1618
1611
  // @public
1619
1612
  const themeIds: readonly [
1620
- 'light-increased-contrast',
1621
- 'light',
1622
- 'dark',
1623
- 'dark-increased-contrast',
1624
- 'legacy-light',
1625
- 'legacy-dark',
1626
- 'spacing',
1627
- 'typography',
1628
- 'shape',
1629
- 'typography-adg3',
1630
- 'typography-minor3',
1613
+ 'light-increased-contrast',
1614
+ 'light',
1615
+ 'dark',
1616
+ 'dark-increased-contrast',
1617
+ 'legacy-light',
1618
+ 'legacy-dark',
1619
+ 'spacing',
1620
+ 'typography',
1621
+ 'shape',
1622
+ 'typography-adg3',
1623
+ 'typography-minor3',
1631
1624
  ];
1632
1625
 
1633
1626
  // @public (undocumented)
@@ -1635,19 +1628,19 @@ type ThemeIdsWithOverrides = (typeof themeIdsWithOverrides)[number];
1635
1628
 
1636
1629
  // @public (undocumented)
1637
1630
  const themeIdsWithOverrides: readonly [
1638
- 'light-increased-contrast',
1639
- 'light',
1640
- 'dark',
1641
- 'dark-increased-contrast',
1642
- 'legacy-light',
1643
- 'legacy-dark',
1644
- 'spacing',
1645
- 'typography',
1646
- 'shape',
1647
- 'typography-adg3',
1648
- 'typography-minor3',
1649
- 'light-new-input-border',
1650
- 'dark-new-input-border',
1631
+ 'light-increased-contrast',
1632
+ 'light',
1633
+ 'dark',
1634
+ 'dark-increased-contrast',
1635
+ 'legacy-light',
1636
+ 'legacy-dark',
1637
+ 'spacing',
1638
+ 'typography',
1639
+ 'shape',
1640
+ 'typography-adg3',
1641
+ 'typography-minor3',
1642
+ 'light-new-input-border',
1643
+ 'dark-new-input-border',
1651
1644
  ];
1652
1645
 
1653
1646
  // @public
@@ -1655,15 +1648,15 @@ type ThemeKinds = 'color' | 'shape' | 'spacing' | 'typography';
1655
1648
 
1656
1649
  // @public
1657
1650
  export class ThemeMutationObserver {
1658
- constructor(callback: (theme: Partial<ActiveThemeState>) => unknown);
1659
- // (undocumented)
1660
- disconnect(): void;
1661
- // (undocumented)
1662
- mediaObserver: any;
1663
- // (undocumented)
1664
- observe(): void;
1665
- // (undocumented)
1666
- observer: MutationObserver | null;
1651
+ constructor(callback: (theme: Partial<ActiveThemeState>) => unknown);
1652
+ // (undocumented)
1653
+ disconnect(): void;
1654
+ // (undocumented)
1655
+ mediaObserver: any;
1656
+ // (undocumented)
1657
+ observe(): void;
1658
+ // (undocumented)
1659
+ observer: MutationObserver | null;
1667
1660
  }
1668
1661
 
1669
1662
  // @public
@@ -1671,75 +1664,67 @@ export const themeObjectToString: (themeState: Partial<ThemeState>) => string;
1671
1664
 
1672
1665
  // @public
1673
1666
  export interface ThemeOptionsSchema {
1674
- // (undocumented)
1675
- brandColor: CSSColor;
1667
+ // (undocumented)
1668
+ brandColor: CSSColor;
1676
1669
  }
1677
1670
 
1678
1671
  // @public (undocumented)
1679
1672
  type ThemeOverrideIds = (typeof themeOverrideIds)[number];
1680
1673
 
1681
1674
  // @public
1682
- const themeOverrideIds: readonly [
1683
- 'light-new-input-border',
1684
- 'dark-new-input-border',
1685
- ];
1675
+ const themeOverrideIds: readonly ['light-new-input-border', 'dark-new-input-border'];
1686
1676
 
1687
1677
  // @public
1688
- type ThemeOverrides =
1689
- | 'atlassian-dark-new-input-border'
1690
- | 'atlassian-light-new-input-border';
1678
+ type ThemeOverrides = 'atlassian-dark-new-input-border' | 'atlassian-light-new-input-border';
1691
1679
 
1692
1680
  // @public
1693
1681
  export type Themes =
1694
- | 'atlassian-dark'
1695
- | 'atlassian-dark-increased-contrast'
1696
- | 'atlassian-legacy-dark'
1697
- | 'atlassian-legacy-light'
1698
- | 'atlassian-light'
1699
- | 'atlassian-light-increased-contrast'
1700
- | 'atlassian-shape'
1701
- | 'atlassian-spacing'
1702
- | 'atlassian-typography'
1703
- | 'atlassian-typography-adg3'
1704
- | 'atlassian-typography-minor3';
1682
+ | 'atlassian-dark'
1683
+ | 'atlassian-dark-increased-contrast'
1684
+ | 'atlassian-legacy-dark'
1685
+ | 'atlassian-legacy-light'
1686
+ | 'atlassian-light'
1687
+ | 'atlassian-light-increased-contrast'
1688
+ | 'atlassian-shape'
1689
+ | 'atlassian-spacing'
1690
+ | 'atlassian-typography'
1691
+ | 'atlassian-typography-adg3'
1692
+ | 'atlassian-typography-minor3';
1705
1693
 
1706
1694
  // @public
1707
1695
  export interface ThemeState {
1708
- // (undocumented)
1709
- colorMode: ThemeColorModes;
1710
- // (undocumented)
1711
- contrastMode: ThemeContrastModes;
1712
- // (undocumented)
1713
- dark: Extract<
1714
- ThemeIds,
1715
- | 'dark'
1716
- | 'dark-increased-contrast'
1717
- | 'legacy-dark'
1718
- | 'legacy-light'
1719
- | 'light'
1720
- | 'light-increased-contrast'
1721
- >;
1722
- // (undocumented)
1723
- light: Extract<
1724
- ThemeIds,
1725
- | 'dark'
1726
- | 'dark-increased-contrast'
1727
- | 'legacy-dark'
1728
- | 'legacy-light'
1729
- | 'light'
1730
- | 'light-increased-contrast'
1731
- >;
1732
- // (undocumented)
1733
- shape?: Extract<ThemeIds, 'shape'>;
1734
- // (undocumented)
1735
- spacing: Extract<ThemeIds, 'spacing'>;
1736
- // (undocumented)
1737
- typography?: Extract<
1738
- ThemeIds,
1739
- 'typography' | 'typography-adg3' | 'typography-minor3'
1740
- >;
1741
- // (undocumented)
1742
- UNSAFE_themeOptions?: ThemeOptionsSchema;
1696
+ // (undocumented)
1697
+ colorMode: ThemeColorModes;
1698
+ // (undocumented)
1699
+ contrastMode: ThemeContrastModes;
1700
+ // (undocumented)
1701
+ dark: Extract<
1702
+ ThemeIds,
1703
+ | 'dark'
1704
+ | 'dark-increased-contrast'
1705
+ | 'legacy-dark'
1706
+ | 'legacy-light'
1707
+ | 'light'
1708
+ | 'light-increased-contrast'
1709
+ >;
1710
+ // (undocumented)
1711
+ light: Extract<
1712
+ ThemeIds,
1713
+ | 'dark'
1714
+ | 'dark-increased-contrast'
1715
+ | 'legacy-dark'
1716
+ | 'legacy-light'
1717
+ | 'light'
1718
+ | 'light-increased-contrast'
1719
+ >;
1720
+ // (undocumented)
1721
+ shape?: Extract<ThemeIds, 'shape'>;
1722
+ // (undocumented)
1723
+ spacing: Extract<ThemeIds, 'spacing'>;
1724
+ // (undocumented)
1725
+ typography?: Extract<ThemeIds, 'typography' | 'typography-adg3' | 'typography-minor3'>;
1726
+ // (undocumented)
1727
+ UNSAFE_themeOptions?: ThemeOptionsSchema;
1743
1728
  }
1744
1729
 
1745
1730
  // @public
@@ -1747,504 +1732,501 @@ export const themeStringToObject: (themeState: string) => Partial<ThemeState>;
1747
1732
 
1748
1733
  // @public (undocumented)
1749
1734
  interface ThemeStyles {
1750
- // (undocumented)
1751
- attrs: Record<string, string>;
1752
- // (undocumented)
1753
- css: string;
1754
- // (undocumented)
1755
- id: ThemeIdsWithOverrides;
1735
+ // (undocumented)
1736
+ attrs: Record<string, string>;
1737
+ // (undocumented)
1738
+ css: string;
1739
+ // (undocumented)
1740
+ id: ThemeIdsWithOverrides;
1756
1741
  }
1757
1742
 
1758
1743
  // @public (undocumented)
1759
1744
  interface Token<TValue, Group extends Groups> {
1760
- // (undocumented)
1761
- attributes: {
1762
- group: Group;
1763
- description?: string;
1764
- state?: TokenState;
1765
- replacement?: ExperimentalReplacement | Replacement;
1766
- };
1767
- // (undocumented)
1768
- value: TValue;
1745
+ // (undocumented)
1746
+ attributes: {
1747
+ group: Group;
1748
+ description?: string;
1749
+ state?: TokenState;
1750
+ replacement?: ExperimentalReplacement | Replacement;
1751
+ };
1752
+ // (undocumented)
1753
+ value: TValue;
1769
1754
  }
1770
1755
 
1771
1756
  // @public
1772
- export function token<T extends keyof Tokens>(
1773
- path: T,
1774
- fallback?: string,
1775
- ): CSSTokenMap[T];
1757
+ export function token<T extends keyof Tokens>(path: T, fallback?: string): CSSTokenMap[T];
1776
1758
 
1777
1759
  // @public (undocumented)
1778
1760
  type Tokens = typeof tokens;
1779
1761
 
1780
1762
  // @public
1781
1763
  const tokens: {
1782
- readonly 'color.text': '--ds-text';
1783
- readonly 'color.text.accent.lime': '--ds-text-accent-lime';
1784
- readonly 'color.text.accent.lime.bolder': '--ds-text-accent-lime-bolder';
1785
- readonly 'color.text.accent.red': '--ds-text-accent-red';
1786
- readonly 'color.text.accent.red.bolder': '--ds-text-accent-red-bolder';
1787
- readonly 'color.text.accent.orange': '--ds-text-accent-orange';
1788
- readonly 'color.text.accent.orange.bolder': '--ds-text-accent-orange-bolder';
1789
- readonly 'color.text.accent.yellow': '--ds-text-accent-yellow';
1790
- readonly 'color.text.accent.yellow.bolder': '--ds-text-accent-yellow-bolder';
1791
- readonly 'color.text.accent.green': '--ds-text-accent-green';
1792
- readonly 'color.text.accent.green.bolder': '--ds-text-accent-green-bolder';
1793
- readonly 'color.text.accent.teal': '--ds-text-accent-teal';
1794
- readonly 'color.text.accent.teal.bolder': '--ds-text-accent-teal-bolder';
1795
- readonly 'color.text.accent.blue': '--ds-text-accent-blue';
1796
- readonly 'color.text.accent.blue.bolder': '--ds-text-accent-blue-bolder';
1797
- readonly 'color.text.accent.purple': '--ds-text-accent-purple';
1798
- readonly 'color.text.accent.purple.bolder': '--ds-text-accent-purple-bolder';
1799
- readonly 'color.text.accent.magenta': '--ds-text-accent-magenta';
1800
- readonly 'color.text.accent.magenta.bolder': '--ds-text-accent-magenta-bolder';
1801
- readonly 'color.text.accent.gray': '--ds-text-accent-gray';
1802
- readonly 'color.text.accent.gray.bolder': '--ds-text-accent-gray-bolder';
1803
- readonly 'color.text.disabled': '--ds-text-disabled';
1804
- readonly 'color.text.inverse': '--ds-text-inverse';
1805
- readonly 'color.text.selected': '--ds-text-selected';
1806
- readonly 'color.text.brand': '--ds-text-brand';
1807
- readonly 'color.text.danger': '--ds-text-danger';
1808
- readonly 'color.text.warning': '--ds-text-warning';
1809
- readonly 'color.text.warning.inverse': '--ds-text-warning-inverse';
1810
- readonly 'color.text.success': '--ds-text-success';
1811
- readonly 'color.text.discovery': '--ds-text-discovery';
1812
- readonly 'color.text.information': '--ds-text-information';
1813
- readonly 'color.text.subtlest': '--ds-text-subtlest';
1814
- readonly 'color.text.subtle': '--ds-text-subtle';
1815
- readonly 'color.link': '--ds-link';
1816
- readonly 'color.link.pressed': '--ds-link-pressed';
1817
- readonly 'color.link.visited': '--ds-link-visited';
1818
- readonly 'color.icon': '--ds-icon';
1819
- readonly 'color.icon.accent.lime': '--ds-icon-accent-lime';
1820
- readonly 'color.icon.accent.red': '--ds-icon-accent-red';
1821
- readonly 'color.icon.accent.orange': '--ds-icon-accent-orange';
1822
- readonly 'color.icon.accent.yellow': '--ds-icon-accent-yellow';
1823
- readonly 'color.icon.accent.green': '--ds-icon-accent-green';
1824
- readonly 'color.icon.accent.teal': '--ds-icon-accent-teal';
1825
- readonly 'color.icon.accent.blue': '--ds-icon-accent-blue';
1826
- readonly 'color.icon.accent.purple': '--ds-icon-accent-purple';
1827
- readonly 'color.icon.accent.magenta': '--ds-icon-accent-magenta';
1828
- readonly 'color.icon.accent.gray': '--ds-icon-accent-gray';
1829
- readonly 'color.icon.disabled': '--ds-icon-disabled';
1830
- readonly 'color.icon.inverse': '--ds-icon-inverse';
1831
- readonly 'color.icon.selected': '--ds-icon-selected';
1832
- readonly 'color.icon.brand': '--ds-icon-brand';
1833
- readonly 'color.icon.danger': '--ds-icon-danger';
1834
- readonly 'color.icon.warning': '--ds-icon-warning';
1835
- readonly 'color.icon.warning.inverse': '--ds-icon-warning-inverse';
1836
- readonly 'color.icon.success': '--ds-icon-success';
1837
- readonly 'color.icon.discovery': '--ds-icon-discovery';
1838
- readonly 'color.icon.information': '--ds-icon-information';
1839
- readonly 'color.icon.subtle': '--ds-icon-subtle';
1840
- readonly 'color.border': '--ds-border';
1841
- readonly 'color.border.accent.lime': '--ds-border-accent-lime';
1842
- readonly 'color.border.accent.red': '--ds-border-accent-red';
1843
- readonly 'color.border.accent.orange': '--ds-border-accent-orange';
1844
- readonly 'color.border.accent.yellow': '--ds-border-accent-yellow';
1845
- readonly 'color.border.accent.green': '--ds-border-accent-green';
1846
- readonly 'color.border.accent.teal': '--ds-border-accent-teal';
1847
- readonly 'color.border.accent.blue': '--ds-border-accent-blue';
1848
- readonly 'color.border.accent.purple': '--ds-border-accent-purple';
1849
- readonly 'color.border.accent.magenta': '--ds-border-accent-magenta';
1850
- readonly 'color.border.accent.gray': '--ds-border-accent-gray';
1851
- readonly 'color.border.disabled': '--ds-border-disabled';
1852
- readonly 'color.border.focused': '--ds-border-focused';
1853
- readonly 'color.border.input': '--ds-border-input';
1854
- readonly 'color.border.inverse': '--ds-border-inverse';
1855
- readonly 'color.border.selected': '--ds-border-selected';
1856
- readonly 'color.border.brand': '--ds-border-brand';
1857
- readonly 'color.border.danger': '--ds-border-danger';
1858
- readonly 'color.border.warning': '--ds-border-warning';
1859
- readonly 'color.border.success': '--ds-border-success';
1860
- readonly 'color.border.discovery': '--ds-border-discovery';
1861
- readonly 'color.border.information': '--ds-border-information';
1862
- readonly 'color.border.bold': '--ds-border-bold';
1863
- readonly 'color.background.accent.lime.subtlest': '--ds-background-accent-lime-subtlest';
1864
- readonly 'color.background.accent.lime.subtlest.hovered': '--ds-background-accent-lime-subtlest-hovered';
1865
- readonly 'color.background.accent.lime.subtlest.pressed': '--ds-background-accent-lime-subtlest-pressed';
1866
- readonly 'color.background.accent.lime.subtler': '--ds-background-accent-lime-subtler';
1867
- readonly 'color.background.accent.lime.subtler.hovered': '--ds-background-accent-lime-subtler-hovered';
1868
- readonly 'color.background.accent.lime.subtler.pressed': '--ds-background-accent-lime-subtler-pressed';
1869
- readonly 'color.background.accent.lime.subtle': '--ds-background-accent-lime-subtle';
1870
- readonly 'color.background.accent.lime.subtle.hovered': '--ds-background-accent-lime-subtle-hovered';
1871
- readonly 'color.background.accent.lime.subtle.pressed': '--ds-background-accent-lime-subtle-pressed';
1872
- readonly 'color.background.accent.lime.bolder': '--ds-background-accent-lime-bolder';
1873
- readonly 'color.background.accent.lime.bolder.hovered': '--ds-background-accent-lime-bolder-hovered';
1874
- readonly 'color.background.accent.lime.bolder.pressed': '--ds-background-accent-lime-bolder-pressed';
1875
- readonly 'color.background.accent.red.subtlest': '--ds-background-accent-red-subtlest';
1876
- readonly 'color.background.accent.red.subtlest.hovered': '--ds-background-accent-red-subtlest-hovered';
1877
- readonly 'color.background.accent.red.subtlest.pressed': '--ds-background-accent-red-subtlest-pressed';
1878
- readonly 'color.background.accent.red.subtler': '--ds-background-accent-red-subtler';
1879
- readonly 'color.background.accent.red.subtler.hovered': '--ds-background-accent-red-subtler-hovered';
1880
- readonly 'color.background.accent.red.subtler.pressed': '--ds-background-accent-red-subtler-pressed';
1881
- readonly 'color.background.accent.red.subtle': '--ds-background-accent-red-subtle';
1882
- readonly 'color.background.accent.red.subtle.hovered': '--ds-background-accent-red-subtle-hovered';
1883
- readonly 'color.background.accent.red.subtle.pressed': '--ds-background-accent-red-subtle-pressed';
1884
- readonly 'color.background.accent.red.bolder': '--ds-background-accent-red-bolder';
1885
- readonly 'color.background.accent.red.bolder.hovered': '--ds-background-accent-red-bolder-hovered';
1886
- readonly 'color.background.accent.red.bolder.pressed': '--ds-background-accent-red-bolder-pressed';
1887
- readonly 'color.background.accent.orange.subtlest': '--ds-background-accent-orange-subtlest';
1888
- readonly 'color.background.accent.orange.subtlest.hovered': '--ds-background-accent-orange-subtlest-hovered';
1889
- readonly 'color.background.accent.orange.subtlest.pressed': '--ds-background-accent-orange-subtlest-pressed';
1890
- readonly 'color.background.accent.orange.subtler': '--ds-background-accent-orange-subtler';
1891
- readonly 'color.background.accent.orange.subtler.hovered': '--ds-background-accent-orange-subtler-hovered';
1892
- readonly 'color.background.accent.orange.subtler.pressed': '--ds-background-accent-orange-subtler-pressed';
1893
- readonly 'color.background.accent.orange.subtle': '--ds-background-accent-orange-subtle';
1894
- readonly 'color.background.accent.orange.subtle.hovered': '--ds-background-accent-orange-subtle-hovered';
1895
- readonly 'color.background.accent.orange.subtle.pressed': '--ds-background-accent-orange-subtle-pressed';
1896
- readonly 'color.background.accent.orange.bolder': '--ds-background-accent-orange-bolder';
1897
- readonly 'color.background.accent.orange.bolder.hovered': '--ds-background-accent-orange-bolder-hovered';
1898
- readonly 'color.background.accent.orange.bolder.pressed': '--ds-background-accent-orange-bolder-pressed';
1899
- readonly 'color.background.accent.yellow.subtlest': '--ds-background-accent-yellow-subtlest';
1900
- readonly 'color.background.accent.yellow.subtlest.hovered': '--ds-background-accent-yellow-subtlest-hovered';
1901
- readonly 'color.background.accent.yellow.subtlest.pressed': '--ds-background-accent-yellow-subtlest-pressed';
1902
- readonly 'color.background.accent.yellow.subtler': '--ds-background-accent-yellow-subtler';
1903
- readonly 'color.background.accent.yellow.subtler.hovered': '--ds-background-accent-yellow-subtler-hovered';
1904
- readonly 'color.background.accent.yellow.subtler.pressed': '--ds-background-accent-yellow-subtler-pressed';
1905
- readonly 'color.background.accent.yellow.subtle': '--ds-background-accent-yellow-subtle';
1906
- readonly 'color.background.accent.yellow.subtle.hovered': '--ds-background-accent-yellow-subtle-hovered';
1907
- readonly 'color.background.accent.yellow.subtle.pressed': '--ds-background-accent-yellow-subtle-pressed';
1908
- readonly 'color.background.accent.yellow.bolder': '--ds-background-accent-yellow-bolder';
1909
- readonly 'color.background.accent.yellow.bolder.hovered': '--ds-background-accent-yellow-bolder-hovered';
1910
- readonly 'color.background.accent.yellow.bolder.pressed': '--ds-background-accent-yellow-bolder-pressed';
1911
- readonly 'color.background.accent.green.subtlest': '--ds-background-accent-green-subtlest';
1912
- readonly 'color.background.accent.green.subtlest.hovered': '--ds-background-accent-green-subtlest-hovered';
1913
- readonly 'color.background.accent.green.subtlest.pressed': '--ds-background-accent-green-subtlest-pressed';
1914
- readonly 'color.background.accent.green.subtler': '--ds-background-accent-green-subtler';
1915
- readonly 'color.background.accent.green.subtler.hovered': '--ds-background-accent-green-subtler-hovered';
1916
- readonly 'color.background.accent.green.subtler.pressed': '--ds-background-accent-green-subtler-pressed';
1917
- readonly 'color.background.accent.green.subtle': '--ds-background-accent-green-subtle';
1918
- readonly 'color.background.accent.green.subtle.hovered': '--ds-background-accent-green-subtle-hovered';
1919
- readonly 'color.background.accent.green.subtle.pressed': '--ds-background-accent-green-subtle-pressed';
1920
- readonly 'color.background.accent.green.bolder': '--ds-background-accent-green-bolder';
1921
- readonly 'color.background.accent.green.bolder.hovered': '--ds-background-accent-green-bolder-hovered';
1922
- readonly 'color.background.accent.green.bolder.pressed': '--ds-background-accent-green-bolder-pressed';
1923
- readonly 'color.background.accent.teal.subtlest': '--ds-background-accent-teal-subtlest';
1924
- readonly 'color.background.accent.teal.subtlest.hovered': '--ds-background-accent-teal-subtlest-hovered';
1925
- readonly 'color.background.accent.teal.subtlest.pressed': '--ds-background-accent-teal-subtlest-pressed';
1926
- readonly 'color.background.accent.teal.subtler': '--ds-background-accent-teal-subtler';
1927
- readonly 'color.background.accent.teal.subtler.hovered': '--ds-background-accent-teal-subtler-hovered';
1928
- readonly 'color.background.accent.teal.subtler.pressed': '--ds-background-accent-teal-subtler-pressed';
1929
- readonly 'color.background.accent.teal.subtle': '--ds-background-accent-teal-subtle';
1930
- readonly 'color.background.accent.teal.subtle.hovered': '--ds-background-accent-teal-subtle-hovered';
1931
- readonly 'color.background.accent.teal.subtle.pressed': '--ds-background-accent-teal-subtle-pressed';
1932
- readonly 'color.background.accent.teal.bolder': '--ds-background-accent-teal-bolder';
1933
- readonly 'color.background.accent.teal.bolder.hovered': '--ds-background-accent-teal-bolder-hovered';
1934
- readonly 'color.background.accent.teal.bolder.pressed': '--ds-background-accent-teal-bolder-pressed';
1935
- readonly 'color.background.accent.blue.subtlest': '--ds-background-accent-blue-subtlest';
1936
- readonly 'color.background.accent.blue.subtlest.hovered': '--ds-background-accent-blue-subtlest-hovered';
1937
- readonly 'color.background.accent.blue.subtlest.pressed': '--ds-background-accent-blue-subtlest-pressed';
1938
- readonly 'color.background.accent.blue.subtler': '--ds-background-accent-blue-subtler';
1939
- readonly 'color.background.accent.blue.subtler.hovered': '--ds-background-accent-blue-subtler-hovered';
1940
- readonly 'color.background.accent.blue.subtler.pressed': '--ds-background-accent-blue-subtler-pressed';
1941
- readonly 'color.background.accent.blue.subtle': '--ds-background-accent-blue-subtle';
1942
- readonly 'color.background.accent.blue.subtle.hovered': '--ds-background-accent-blue-subtle-hovered';
1943
- readonly 'color.background.accent.blue.subtle.pressed': '--ds-background-accent-blue-subtle-pressed';
1944
- readonly 'color.background.accent.blue.bolder': '--ds-background-accent-blue-bolder';
1945
- readonly 'color.background.accent.blue.bolder.hovered': '--ds-background-accent-blue-bolder-hovered';
1946
- readonly 'color.background.accent.blue.bolder.pressed': '--ds-background-accent-blue-bolder-pressed';
1947
- readonly 'color.background.accent.purple.subtlest': '--ds-background-accent-purple-subtlest';
1948
- readonly 'color.background.accent.purple.subtlest.hovered': '--ds-background-accent-purple-subtlest-hovered';
1949
- readonly 'color.background.accent.purple.subtlest.pressed': '--ds-background-accent-purple-subtlest-pressed';
1950
- readonly 'color.background.accent.purple.subtler': '--ds-background-accent-purple-subtler';
1951
- readonly 'color.background.accent.purple.subtler.hovered': '--ds-background-accent-purple-subtler-hovered';
1952
- readonly 'color.background.accent.purple.subtler.pressed': '--ds-background-accent-purple-subtler-pressed';
1953
- readonly 'color.background.accent.purple.subtle': '--ds-background-accent-purple-subtle';
1954
- readonly 'color.background.accent.purple.subtle.hovered': '--ds-background-accent-purple-subtle-hovered';
1955
- readonly 'color.background.accent.purple.subtle.pressed': '--ds-background-accent-purple-subtle-pressed';
1956
- readonly 'color.background.accent.purple.bolder': '--ds-background-accent-purple-bolder';
1957
- readonly 'color.background.accent.purple.bolder.hovered': '--ds-background-accent-purple-bolder-hovered';
1958
- readonly 'color.background.accent.purple.bolder.pressed': '--ds-background-accent-purple-bolder-pressed';
1959
- readonly 'color.background.accent.magenta.subtlest': '--ds-background-accent-magenta-subtlest';
1960
- readonly 'color.background.accent.magenta.subtlest.hovered': '--ds-background-accent-magenta-subtlest-hovered';
1961
- readonly 'color.background.accent.magenta.subtlest.pressed': '--ds-background-accent-magenta-subtlest-pressed';
1962
- readonly 'color.background.accent.magenta.subtler': '--ds-background-accent-magenta-subtler';
1963
- readonly 'color.background.accent.magenta.subtler.hovered': '--ds-background-accent-magenta-subtler-hovered';
1964
- readonly 'color.background.accent.magenta.subtler.pressed': '--ds-background-accent-magenta-subtler-pressed';
1965
- readonly 'color.background.accent.magenta.subtle': '--ds-background-accent-magenta-subtle';
1966
- readonly 'color.background.accent.magenta.subtle.hovered': '--ds-background-accent-magenta-subtle-hovered';
1967
- readonly 'color.background.accent.magenta.subtle.pressed': '--ds-background-accent-magenta-subtle-pressed';
1968
- readonly 'color.background.accent.magenta.bolder': '--ds-background-accent-magenta-bolder';
1969
- readonly 'color.background.accent.magenta.bolder.hovered': '--ds-background-accent-magenta-bolder-hovered';
1970
- readonly 'color.background.accent.magenta.bolder.pressed': '--ds-background-accent-magenta-bolder-pressed';
1971
- readonly 'color.background.accent.gray.subtlest': '--ds-background-accent-gray-subtlest';
1972
- readonly 'color.background.accent.gray.subtlest.hovered': '--ds-background-accent-gray-subtlest-hovered';
1973
- readonly 'color.background.accent.gray.subtlest.pressed': '--ds-background-accent-gray-subtlest-pressed';
1974
- readonly 'color.background.accent.gray.subtler': '--ds-background-accent-gray-subtler';
1975
- readonly 'color.background.accent.gray.subtler.hovered': '--ds-background-accent-gray-subtler-hovered';
1976
- readonly 'color.background.accent.gray.subtler.pressed': '--ds-background-accent-gray-subtler-pressed';
1977
- readonly 'color.background.accent.gray.subtle': '--ds-background-accent-gray-subtle';
1978
- readonly 'color.background.accent.gray.subtle.hovered': '--ds-background-accent-gray-subtle-hovered';
1979
- readonly 'color.background.accent.gray.subtle.pressed': '--ds-background-accent-gray-subtle-pressed';
1980
- readonly 'color.background.accent.gray.bolder': '--ds-background-accent-gray-bolder';
1981
- readonly 'color.background.accent.gray.bolder.hovered': '--ds-background-accent-gray-bolder-hovered';
1982
- readonly 'color.background.accent.gray.bolder.pressed': '--ds-background-accent-gray-bolder-pressed';
1983
- readonly 'color.background.disabled': '--ds-background-disabled';
1984
- readonly 'color.background.input': '--ds-background-input';
1985
- readonly 'color.background.input.hovered': '--ds-background-input-hovered';
1986
- readonly 'color.background.input.pressed': '--ds-background-input-pressed';
1987
- readonly 'color.background.inverse.subtle': '--ds-background-inverse-subtle';
1988
- readonly 'color.background.inverse.subtle.hovered': '--ds-background-inverse-subtle-hovered';
1989
- readonly 'color.background.inverse.subtle.pressed': '--ds-background-inverse-subtle-pressed';
1990
- readonly 'color.background.neutral': '--ds-background-neutral';
1991
- readonly 'color.background.neutral.hovered': '--ds-background-neutral-hovered';
1992
- readonly 'color.background.neutral.pressed': '--ds-background-neutral-pressed';
1993
- readonly 'color.background.neutral.subtle': '--ds-background-neutral-subtle';
1994
- readonly 'color.background.neutral.subtle.hovered': '--ds-background-neutral-subtle-hovered';
1995
- readonly 'color.background.neutral.subtle.pressed': '--ds-background-neutral-subtle-pressed';
1996
- readonly 'color.background.neutral.bold': '--ds-background-neutral-bold';
1997
- readonly 'color.background.neutral.bold.hovered': '--ds-background-neutral-bold-hovered';
1998
- readonly 'color.background.neutral.bold.pressed': '--ds-background-neutral-bold-pressed';
1999
- readonly 'color.background.selected': '--ds-background-selected';
2000
- readonly 'color.background.selected.hovered': '--ds-background-selected-hovered';
2001
- readonly 'color.background.selected.pressed': '--ds-background-selected-pressed';
2002
- readonly 'color.background.selected.bold': '--ds-background-selected-bold';
2003
- readonly 'color.background.selected.bold.hovered': '--ds-background-selected-bold-hovered';
2004
- readonly 'color.background.selected.bold.pressed': '--ds-background-selected-bold-pressed';
2005
- readonly 'color.background.brand.subtlest': '--ds-background-brand-subtlest';
2006
- readonly 'color.background.brand.subtlest.hovered': '--ds-background-brand-subtlest-hovered';
2007
- readonly 'color.background.brand.subtlest.pressed': '--ds-background-brand-subtlest-pressed';
2008
- readonly 'color.background.brand.bold': '--ds-background-brand-bold';
2009
- readonly 'color.background.brand.bold.hovered': '--ds-background-brand-bold-hovered';
2010
- readonly 'color.background.brand.bold.pressed': '--ds-background-brand-bold-pressed';
2011
- readonly 'color.background.brand.boldest': '--ds-background-brand-boldest';
2012
- readonly 'color.background.brand.boldest.hovered': '--ds-background-brand-boldest-hovered';
2013
- readonly 'color.background.brand.boldest.pressed': '--ds-background-brand-boldest-pressed';
2014
- readonly 'color.background.danger': '--ds-background-danger';
2015
- readonly 'color.background.danger.hovered': '--ds-background-danger-hovered';
2016
- readonly 'color.background.danger.pressed': '--ds-background-danger-pressed';
2017
- readonly 'color.background.danger.bold': '--ds-background-danger-bold';
2018
- readonly 'color.background.danger.bold.hovered': '--ds-background-danger-bold-hovered';
2019
- readonly 'color.background.danger.bold.pressed': '--ds-background-danger-bold-pressed';
2020
- readonly 'color.background.warning': '--ds-background-warning';
2021
- readonly 'color.background.warning.hovered': '--ds-background-warning-hovered';
2022
- readonly 'color.background.warning.pressed': '--ds-background-warning-pressed';
2023
- readonly 'color.background.warning.bold': '--ds-background-warning-bold';
2024
- readonly 'color.background.warning.bold.hovered': '--ds-background-warning-bold-hovered';
2025
- readonly 'color.background.warning.bold.pressed': '--ds-background-warning-bold-pressed';
2026
- readonly 'color.background.success': '--ds-background-success';
2027
- readonly 'color.background.success.hovered': '--ds-background-success-hovered';
2028
- readonly 'color.background.success.pressed': '--ds-background-success-pressed';
2029
- readonly 'color.background.success.bold': '--ds-background-success-bold';
2030
- readonly 'color.background.success.bold.hovered': '--ds-background-success-bold-hovered';
2031
- readonly 'color.background.success.bold.pressed': '--ds-background-success-bold-pressed';
2032
- readonly 'color.background.discovery': '--ds-background-discovery';
2033
- readonly 'color.background.discovery.hovered': '--ds-background-discovery-hovered';
2034
- readonly 'color.background.discovery.pressed': '--ds-background-discovery-pressed';
2035
- readonly 'color.background.discovery.bold': '--ds-background-discovery-bold';
2036
- readonly 'color.background.discovery.bold.hovered': '--ds-background-discovery-bold-hovered';
2037
- readonly 'color.background.discovery.bold.pressed': '--ds-background-discovery-bold-pressed';
2038
- readonly 'color.background.information': '--ds-background-information';
2039
- readonly 'color.background.information.hovered': '--ds-background-information-hovered';
2040
- readonly 'color.background.information.pressed': '--ds-background-information-pressed';
2041
- readonly 'color.background.information.bold': '--ds-background-information-bold';
2042
- readonly 'color.background.information.bold.hovered': '--ds-background-information-bold-hovered';
2043
- readonly 'color.background.information.bold.pressed': '--ds-background-information-bold-pressed';
2044
- readonly 'color.blanket': '--ds-blanket';
2045
- readonly 'color.blanket.selected': '--ds-blanket-selected';
2046
- readonly 'color.blanket.danger': '--ds-blanket-danger';
2047
- readonly 'color.interaction.hovered': '--ds-interaction-hovered';
2048
- readonly 'color.interaction.pressed': '--ds-interaction-pressed';
2049
- readonly 'color.skeleton': '--ds-skeleton';
2050
- readonly 'color.skeleton.subtle': '--ds-skeleton-subtle';
2051
- readonly 'color.chart.categorical.1': '--ds-chart-categorical-1';
2052
- readonly 'color.chart.categorical.1.hovered': '--ds-chart-categorical-1-hovered';
2053
- readonly 'color.chart.categorical.2': '--ds-chart-categorical-2';
2054
- readonly 'color.chart.categorical.2.hovered': '--ds-chart-categorical-2-hovered';
2055
- readonly 'color.chart.categorical.3': '--ds-chart-categorical-3';
2056
- readonly 'color.chart.categorical.3.hovered': '--ds-chart-categorical-3-hovered';
2057
- readonly 'color.chart.categorical.4': '--ds-chart-categorical-4';
2058
- readonly 'color.chart.categorical.4.hovered': '--ds-chart-categorical-4-hovered';
2059
- readonly 'color.chart.categorical.5': '--ds-chart-categorical-5';
2060
- readonly 'color.chart.categorical.5.hovered': '--ds-chart-categorical-5-hovered';
2061
- readonly 'color.chart.categorical.6': '--ds-chart-categorical-6';
2062
- readonly 'color.chart.categorical.6.hovered': '--ds-chart-categorical-6-hovered';
2063
- readonly 'color.chart.categorical.7': '--ds-chart-categorical-7';
2064
- readonly 'color.chart.categorical.7.hovered': '--ds-chart-categorical-7-hovered';
2065
- readonly 'color.chart.categorical.8': '--ds-chart-categorical-8';
2066
- readonly 'color.chart.categorical.8.hovered': '--ds-chart-categorical-8-hovered';
2067
- readonly 'color.chart.lime.bold': '--ds-chart-lime-bold';
2068
- readonly 'color.chart.lime.bold.hovered': '--ds-chart-lime-bold-hovered';
2069
- readonly 'color.chart.lime.bolder': '--ds-chart-lime-bolder';
2070
- readonly 'color.chart.lime.bolder.hovered': '--ds-chart-lime-bolder-hovered';
2071
- readonly 'color.chart.lime.boldest': '--ds-chart-lime-boldest';
2072
- readonly 'color.chart.lime.boldest.hovered': '--ds-chart-lime-boldest-hovered';
2073
- readonly 'color.chart.neutral': '--ds-chart-neutral';
2074
- readonly 'color.chart.neutral.hovered': '--ds-chart-neutral-hovered';
2075
- readonly 'color.chart.red.bold': '--ds-chart-red-bold';
2076
- readonly 'color.chart.red.bold.hovered': '--ds-chart-red-bold-hovered';
2077
- readonly 'color.chart.red.bolder': '--ds-chart-red-bolder';
2078
- readonly 'color.chart.red.bolder.hovered': '--ds-chart-red-bolder-hovered';
2079
- readonly 'color.chart.red.boldest': '--ds-chart-red-boldest';
2080
- readonly 'color.chart.red.boldest.hovered': '--ds-chart-red-boldest-hovered';
2081
- readonly 'color.chart.orange.bold': '--ds-chart-orange-bold';
2082
- readonly 'color.chart.orange.bold.hovered': '--ds-chart-orange-bold-hovered';
2083
- readonly 'color.chart.orange.bolder': '--ds-chart-orange-bolder';
2084
- readonly 'color.chart.orange.bolder.hovered': '--ds-chart-orange-bolder-hovered';
2085
- readonly 'color.chart.orange.boldest': '--ds-chart-orange-boldest';
2086
- readonly 'color.chart.orange.boldest.hovered': '--ds-chart-orange-boldest-hovered';
2087
- readonly 'color.chart.yellow.bold': '--ds-chart-yellow-bold';
2088
- readonly 'color.chart.yellow.bold.hovered': '--ds-chart-yellow-bold-hovered';
2089
- readonly 'color.chart.yellow.bolder': '--ds-chart-yellow-bolder';
2090
- readonly 'color.chart.yellow.bolder.hovered': '--ds-chart-yellow-bolder-hovered';
2091
- readonly 'color.chart.yellow.boldest': '--ds-chart-yellow-boldest';
2092
- readonly 'color.chart.yellow.boldest.hovered': '--ds-chart-yellow-boldest-hovered';
2093
- readonly 'color.chart.green.bold': '--ds-chart-green-bold';
2094
- readonly 'color.chart.green.bold.hovered': '--ds-chart-green-bold-hovered';
2095
- readonly 'color.chart.green.bolder': '--ds-chart-green-bolder';
2096
- readonly 'color.chart.green.bolder.hovered': '--ds-chart-green-bolder-hovered';
2097
- readonly 'color.chart.green.boldest': '--ds-chart-green-boldest';
2098
- readonly 'color.chart.green.boldest.hovered': '--ds-chart-green-boldest-hovered';
2099
- readonly 'color.chart.teal.bold': '--ds-chart-teal-bold';
2100
- readonly 'color.chart.teal.bold.hovered': '--ds-chart-teal-bold-hovered';
2101
- readonly 'color.chart.teal.bolder': '--ds-chart-teal-bolder';
2102
- readonly 'color.chart.teal.bolder.hovered': '--ds-chart-teal-bolder-hovered';
2103
- readonly 'color.chart.teal.boldest': '--ds-chart-teal-boldest';
2104
- readonly 'color.chart.teal.boldest.hovered': '--ds-chart-teal-boldest-hovered';
2105
- readonly 'color.chart.blue.bold': '--ds-chart-blue-bold';
2106
- readonly 'color.chart.blue.bold.hovered': '--ds-chart-blue-bold-hovered';
2107
- readonly 'color.chart.blue.bolder': '--ds-chart-blue-bolder';
2108
- readonly 'color.chart.blue.bolder.hovered': '--ds-chart-blue-bolder-hovered';
2109
- readonly 'color.chart.blue.boldest': '--ds-chart-blue-boldest';
2110
- readonly 'color.chart.blue.boldest.hovered': '--ds-chart-blue-boldest-hovered';
2111
- readonly 'color.chart.purple.bold': '--ds-chart-purple-bold';
2112
- readonly 'color.chart.purple.bold.hovered': '--ds-chart-purple-bold-hovered';
2113
- readonly 'color.chart.purple.bolder': '--ds-chart-purple-bolder';
2114
- readonly 'color.chart.purple.bolder.hovered': '--ds-chart-purple-bolder-hovered';
2115
- readonly 'color.chart.purple.boldest': '--ds-chart-purple-boldest';
2116
- readonly 'color.chart.purple.boldest.hovered': '--ds-chart-purple-boldest-hovered';
2117
- readonly 'color.chart.magenta.bold': '--ds-chart-magenta-bold';
2118
- readonly 'color.chart.magenta.bold.hovered': '--ds-chart-magenta-bold-hovered';
2119
- readonly 'color.chart.magenta.bolder': '--ds-chart-magenta-bolder';
2120
- readonly 'color.chart.magenta.bolder.hovered': '--ds-chart-magenta-bolder-hovered';
2121
- readonly 'color.chart.magenta.boldest': '--ds-chart-magenta-boldest';
2122
- readonly 'color.chart.magenta.boldest.hovered': '--ds-chart-magenta-boldest-hovered';
2123
- readonly 'color.chart.gray.bold': '--ds-chart-gray-bold';
2124
- readonly 'color.chart.gray.bold.hovered': '--ds-chart-gray-bold-hovered';
2125
- readonly 'color.chart.gray.bolder': '--ds-chart-gray-bolder';
2126
- readonly 'color.chart.gray.bolder.hovered': '--ds-chart-gray-bolder-hovered';
2127
- readonly 'color.chart.gray.boldest': '--ds-chart-gray-boldest';
2128
- readonly 'color.chart.gray.boldest.hovered': '--ds-chart-gray-boldest-hovered';
2129
- readonly 'color.chart.brand': '--ds-chart-brand';
2130
- readonly 'color.chart.brand.hovered': '--ds-chart-brand-hovered';
2131
- readonly 'color.chart.danger': '--ds-chart-danger';
2132
- readonly 'color.chart.danger.hovered': '--ds-chart-danger-hovered';
2133
- readonly 'color.chart.danger.bold': '--ds-chart-danger-bold';
2134
- readonly 'color.chart.danger.bold.hovered': '--ds-chart-danger-bold-hovered';
2135
- readonly 'color.chart.warning': '--ds-chart-warning';
2136
- readonly 'color.chart.warning.hovered': '--ds-chart-warning-hovered';
2137
- readonly 'color.chart.warning.bold': '--ds-chart-warning-bold';
2138
- readonly 'color.chart.warning.bold.hovered': '--ds-chart-warning-bold-hovered';
2139
- readonly 'color.chart.success': '--ds-chart-success';
2140
- readonly 'color.chart.success.hovered': '--ds-chart-success-hovered';
2141
- readonly 'color.chart.success.bold': '--ds-chart-success-bold';
2142
- readonly 'color.chart.success.bold.hovered': '--ds-chart-success-bold-hovered';
2143
- readonly 'color.chart.discovery': '--ds-chart-discovery';
2144
- readonly 'color.chart.discovery.hovered': '--ds-chart-discovery-hovered';
2145
- readonly 'color.chart.discovery.bold': '--ds-chart-discovery-bold';
2146
- readonly 'color.chart.discovery.bold.hovered': '--ds-chart-discovery-bold-hovered';
2147
- readonly 'color.chart.information': '--ds-chart-information';
2148
- readonly 'color.chart.information.hovered': '--ds-chart-information-hovered';
2149
- readonly 'color.chart.information.bold': '--ds-chart-information-bold';
2150
- readonly 'color.chart.information.bold.hovered': '--ds-chart-information-bold-hovered';
2151
- readonly 'elevation.surface': '--ds-surface';
2152
- readonly 'elevation.surface.hovered': '--ds-surface-hovered';
2153
- readonly 'elevation.surface.pressed': '--ds-surface-pressed';
2154
- readonly 'elevation.surface.overlay': '--ds-surface-overlay';
2155
- readonly 'elevation.surface.overlay.hovered': '--ds-surface-overlay-hovered';
2156
- readonly 'elevation.surface.overlay.pressed': '--ds-surface-overlay-pressed';
2157
- readonly 'elevation.surface.raised': '--ds-surface-raised';
2158
- readonly 'elevation.surface.raised.hovered': '--ds-surface-raised-hovered';
2159
- readonly 'elevation.surface.raised.pressed': '--ds-surface-raised-pressed';
2160
- readonly 'elevation.surface.sunken': '--ds-surface-sunken';
2161
- readonly 'elevation.shadow.overflow': '--ds-shadow-overflow';
2162
- readonly 'elevation.shadow.overflow.perimeter': '--ds-shadow-overflow-perimeter';
2163
- readonly 'elevation.shadow.overflow.spread': '--ds-shadow-overflow-spread';
2164
- readonly 'elevation.shadow.overlay': '--ds-shadow-overlay';
2165
- readonly 'elevation.shadow.raised': '--ds-shadow-raised';
2166
- readonly 'opacity.disabled': '--ds-opacity-disabled';
2167
- readonly 'opacity.loading': '--ds-opacity-loading';
2168
- readonly 'utility.UNSAFE.textTransformUppercase': '--ds-UNSAFE-textTransformUppercase';
2169
- readonly 'utility.UNSAFE.transparent': '--ds-UNSAFE-transparent';
2170
- readonly 'utility.elevation.surface.current': '--ds-elevation-surface-current';
2171
- readonly 'border.radius.050': '--ds-border-radius-050';
2172
- readonly 'border.radius': '--ds-border-radius';
2173
- readonly 'border.radius.100': '--ds-border-radius-100';
2174
- readonly 'border.radius.200': '--ds-border-radius-200';
2175
- readonly 'border.radius.300': '--ds-border-radius-300';
2176
- readonly 'border.radius.400': '--ds-border-radius-400';
2177
- readonly 'border.radius.circle': '--ds-border-radius-circle';
2178
- readonly 'border.width': '--ds-border-width';
2179
- readonly 'border.width.0': '--ds-border-width-0';
2180
- readonly 'border.width.indicator': '--ds-border-width-indicator';
2181
- readonly 'border.width.outline': '--ds-border-width-outline';
2182
- readonly 'space.0': '--ds-space-0';
2183
- readonly 'space.025': '--ds-space-025';
2184
- readonly 'space.050': '--ds-space-050';
2185
- readonly 'space.075': '--ds-space-075';
2186
- readonly 'space.100': '--ds-space-100';
2187
- readonly 'space.150': '--ds-space-150';
2188
- readonly 'space.200': '--ds-space-200';
2189
- readonly 'space.250': '--ds-space-250';
2190
- readonly 'space.300': '--ds-space-300';
2191
- readonly 'space.400': '--ds-space-400';
2192
- readonly 'space.500': '--ds-space-500';
2193
- readonly 'space.600': '--ds-space-600';
2194
- readonly 'space.800': '--ds-space-800';
2195
- readonly 'space.1000': '--ds-space-1000';
2196
- readonly 'space.negative.025': '--ds-space-negative-025';
2197
- readonly 'space.negative.050': '--ds-space-negative-050';
2198
- readonly 'space.negative.075': '--ds-space-negative-075';
2199
- readonly 'space.negative.100': '--ds-space-negative-100';
2200
- readonly 'space.negative.150': '--ds-space-negative-150';
2201
- readonly 'space.negative.200': '--ds-space-negative-200';
2202
- readonly 'space.negative.250': '--ds-space-negative-250';
2203
- readonly 'space.negative.300': '--ds-space-negative-300';
2204
- readonly 'space.negative.400': '--ds-space-negative-400';
2205
- readonly 'font.body': '--ds-font-body';
2206
- readonly 'font.body.large': '--ds-font-body-large';
2207
- readonly 'font.body.small': '--ds-font-body-small';
2208
- readonly 'font.code': '--ds-font-code';
2209
- readonly 'font.heading.large': '--ds-font-heading-large';
2210
- readonly 'font.heading.medium': '--ds-font-heading-medium';
2211
- readonly 'font.heading.small': '--ds-font-heading-small';
2212
- readonly 'font.heading.xlarge': '--ds-font-heading-xlarge';
2213
- readonly 'font.heading.xsmall': '--ds-font-heading-xsmall';
2214
- readonly 'font.heading.xxlarge': '--ds-font-heading-xxlarge';
2215
- readonly 'font.heading.xxsmall': '--ds-font-heading-xxsmall';
2216
- readonly 'font.letterSpacing.0': '--ds-font-letterSpacing-0';
2217
- readonly 'font.letterSpacing.100': '--ds-font-letterSpacing-100';
2218
- readonly 'font.letterSpacing.200': '--ds-font-letterSpacing-200';
2219
- readonly 'font.letterSpacing.300': '--ds-font-letterSpacing-300';
2220
- readonly 'font.letterSpacing.400': '--ds-font-letterSpacing-400';
2221
- readonly 'font.ui': '--ds-font-ui';
2222
- readonly 'font.ui.small': '--ds-font-ui-small';
2223
- readonly 'font.family.body': '--ds-font-family-body';
2224
- readonly 'font.family.code': '--ds-font-family-code';
2225
- readonly 'font.family.heading': '--ds-font-family-heading';
2226
- readonly 'font.family.monospace': '--ds-font-family-monospace';
2227
- readonly 'font.family.sans': '--ds-font-family-sans';
2228
- readonly 'font.family.brand': '--ds-font-family-brand';
2229
- readonly 'font.size.050': '--ds-font-size-050';
2230
- readonly 'font.size.075': '--ds-font-size-075';
2231
- readonly 'font.size.100': '--ds-font-size-100';
2232
- readonly 'font.size.200': '--ds-font-size-200';
2233
- readonly 'font.size.300': '--ds-font-size-300';
2234
- readonly 'font.size.400': '--ds-font-size-400';
2235
- readonly 'font.size.500': '--ds-font-size-500';
2236
- readonly 'font.size.600': '--ds-font-size-600';
2237
- readonly 'font.weight.bold': '--ds-font-weight-bold';
2238
- readonly 'font.weight.medium': '--ds-font-weight-medium';
2239
- readonly 'font.weight.regular': '--ds-font-weight-regular';
2240
- readonly 'font.weight.semibold': '--ds-font-weight-semibold';
2241
- readonly 'font.lineHeight.1': '--ds-font-lineHeight-1';
2242
- readonly 'font.lineHeight.100': '--ds-font-lineHeight-100';
2243
- readonly 'font.lineHeight.200': '--ds-font-lineHeight-200';
2244
- readonly 'font.lineHeight.300': '--ds-font-lineHeight-300';
2245
- readonly 'font.lineHeight.400': '--ds-font-lineHeight-400';
2246
- readonly 'font.lineHeight.500': '--ds-font-lineHeight-500';
2247
- readonly 'font.lineHeight.600': '--ds-font-lineHeight-600';
1764
+ readonly 'color.text': '--ds-text';
1765
+ readonly 'color.text.accent.lime': '--ds-text-accent-lime';
1766
+ readonly 'color.text.accent.lime.bolder': '--ds-text-accent-lime-bolder';
1767
+ readonly 'color.text.accent.red': '--ds-text-accent-red';
1768
+ readonly 'color.text.accent.red.bolder': '--ds-text-accent-red-bolder';
1769
+ readonly 'color.text.accent.orange': '--ds-text-accent-orange';
1770
+ readonly 'color.text.accent.orange.bolder': '--ds-text-accent-orange-bolder';
1771
+ readonly 'color.text.accent.yellow': '--ds-text-accent-yellow';
1772
+ readonly 'color.text.accent.yellow.bolder': '--ds-text-accent-yellow-bolder';
1773
+ readonly 'color.text.accent.green': '--ds-text-accent-green';
1774
+ readonly 'color.text.accent.green.bolder': '--ds-text-accent-green-bolder';
1775
+ readonly 'color.text.accent.teal': '--ds-text-accent-teal';
1776
+ readonly 'color.text.accent.teal.bolder': '--ds-text-accent-teal-bolder';
1777
+ readonly 'color.text.accent.blue': '--ds-text-accent-blue';
1778
+ readonly 'color.text.accent.blue.bolder': '--ds-text-accent-blue-bolder';
1779
+ readonly 'color.text.accent.purple': '--ds-text-accent-purple';
1780
+ readonly 'color.text.accent.purple.bolder': '--ds-text-accent-purple-bolder';
1781
+ readonly 'color.text.accent.magenta': '--ds-text-accent-magenta';
1782
+ readonly 'color.text.accent.magenta.bolder': '--ds-text-accent-magenta-bolder';
1783
+ readonly 'color.text.accent.gray': '--ds-text-accent-gray';
1784
+ readonly 'color.text.accent.gray.bolder': '--ds-text-accent-gray-bolder';
1785
+ readonly 'color.text.disabled': '--ds-text-disabled';
1786
+ readonly 'color.text.inverse': '--ds-text-inverse';
1787
+ readonly 'color.text.selected': '--ds-text-selected';
1788
+ readonly 'color.text.brand': '--ds-text-brand';
1789
+ readonly 'color.text.danger': '--ds-text-danger';
1790
+ readonly 'color.text.warning': '--ds-text-warning';
1791
+ readonly 'color.text.warning.inverse': '--ds-text-warning-inverse';
1792
+ readonly 'color.text.success': '--ds-text-success';
1793
+ readonly 'color.text.discovery': '--ds-text-discovery';
1794
+ readonly 'color.text.information': '--ds-text-information';
1795
+ readonly 'color.text.subtlest': '--ds-text-subtlest';
1796
+ readonly 'color.text.subtle': '--ds-text-subtle';
1797
+ readonly 'color.link': '--ds-link';
1798
+ readonly 'color.link.pressed': '--ds-link-pressed';
1799
+ readonly 'color.link.visited': '--ds-link-visited';
1800
+ readonly 'color.icon': '--ds-icon';
1801
+ readonly 'color.icon.accent.lime': '--ds-icon-accent-lime';
1802
+ readonly 'color.icon.accent.red': '--ds-icon-accent-red';
1803
+ readonly 'color.icon.accent.orange': '--ds-icon-accent-orange';
1804
+ readonly 'color.icon.accent.yellow': '--ds-icon-accent-yellow';
1805
+ readonly 'color.icon.accent.green': '--ds-icon-accent-green';
1806
+ readonly 'color.icon.accent.teal': '--ds-icon-accent-teal';
1807
+ readonly 'color.icon.accent.blue': '--ds-icon-accent-blue';
1808
+ readonly 'color.icon.accent.purple': '--ds-icon-accent-purple';
1809
+ readonly 'color.icon.accent.magenta': '--ds-icon-accent-magenta';
1810
+ readonly 'color.icon.accent.gray': '--ds-icon-accent-gray';
1811
+ readonly 'color.icon.disabled': '--ds-icon-disabled';
1812
+ readonly 'color.icon.inverse': '--ds-icon-inverse';
1813
+ readonly 'color.icon.selected': '--ds-icon-selected';
1814
+ readonly 'color.icon.brand': '--ds-icon-brand';
1815
+ readonly 'color.icon.danger': '--ds-icon-danger';
1816
+ readonly 'color.icon.warning': '--ds-icon-warning';
1817
+ readonly 'color.icon.warning.inverse': '--ds-icon-warning-inverse';
1818
+ readonly 'color.icon.success': '--ds-icon-success';
1819
+ readonly 'color.icon.discovery': '--ds-icon-discovery';
1820
+ readonly 'color.icon.information': '--ds-icon-information';
1821
+ readonly 'color.icon.subtle': '--ds-icon-subtle';
1822
+ readonly 'color.border': '--ds-border';
1823
+ readonly 'color.border.accent.lime': '--ds-border-accent-lime';
1824
+ readonly 'color.border.accent.red': '--ds-border-accent-red';
1825
+ readonly 'color.border.accent.orange': '--ds-border-accent-orange';
1826
+ readonly 'color.border.accent.yellow': '--ds-border-accent-yellow';
1827
+ readonly 'color.border.accent.green': '--ds-border-accent-green';
1828
+ readonly 'color.border.accent.teal': '--ds-border-accent-teal';
1829
+ readonly 'color.border.accent.blue': '--ds-border-accent-blue';
1830
+ readonly 'color.border.accent.purple': '--ds-border-accent-purple';
1831
+ readonly 'color.border.accent.magenta': '--ds-border-accent-magenta';
1832
+ readonly 'color.border.accent.gray': '--ds-border-accent-gray';
1833
+ readonly 'color.border.disabled': '--ds-border-disabled';
1834
+ readonly 'color.border.focused': '--ds-border-focused';
1835
+ readonly 'color.border.input': '--ds-border-input';
1836
+ readonly 'color.border.inverse': '--ds-border-inverse';
1837
+ readonly 'color.border.selected': '--ds-border-selected';
1838
+ readonly 'color.border.brand': '--ds-border-brand';
1839
+ readonly 'color.border.danger': '--ds-border-danger';
1840
+ readonly 'color.border.warning': '--ds-border-warning';
1841
+ readonly 'color.border.success': '--ds-border-success';
1842
+ readonly 'color.border.discovery': '--ds-border-discovery';
1843
+ readonly 'color.border.information': '--ds-border-information';
1844
+ readonly 'color.border.bold': '--ds-border-bold';
1845
+ readonly 'color.background.accent.lime.subtlest': '--ds-background-accent-lime-subtlest';
1846
+ readonly 'color.background.accent.lime.subtlest.hovered': '--ds-background-accent-lime-subtlest-hovered';
1847
+ readonly 'color.background.accent.lime.subtlest.pressed': '--ds-background-accent-lime-subtlest-pressed';
1848
+ readonly 'color.background.accent.lime.subtler': '--ds-background-accent-lime-subtler';
1849
+ readonly 'color.background.accent.lime.subtler.hovered': '--ds-background-accent-lime-subtler-hovered';
1850
+ readonly 'color.background.accent.lime.subtler.pressed': '--ds-background-accent-lime-subtler-pressed';
1851
+ readonly 'color.background.accent.lime.subtle': '--ds-background-accent-lime-subtle';
1852
+ readonly 'color.background.accent.lime.subtle.hovered': '--ds-background-accent-lime-subtle-hovered';
1853
+ readonly 'color.background.accent.lime.subtle.pressed': '--ds-background-accent-lime-subtle-pressed';
1854
+ readonly 'color.background.accent.lime.bolder': '--ds-background-accent-lime-bolder';
1855
+ readonly 'color.background.accent.lime.bolder.hovered': '--ds-background-accent-lime-bolder-hovered';
1856
+ readonly 'color.background.accent.lime.bolder.pressed': '--ds-background-accent-lime-bolder-pressed';
1857
+ readonly 'color.background.accent.red.subtlest': '--ds-background-accent-red-subtlest';
1858
+ readonly 'color.background.accent.red.subtlest.hovered': '--ds-background-accent-red-subtlest-hovered';
1859
+ readonly 'color.background.accent.red.subtlest.pressed': '--ds-background-accent-red-subtlest-pressed';
1860
+ readonly 'color.background.accent.red.subtler': '--ds-background-accent-red-subtler';
1861
+ readonly 'color.background.accent.red.subtler.hovered': '--ds-background-accent-red-subtler-hovered';
1862
+ readonly 'color.background.accent.red.subtler.pressed': '--ds-background-accent-red-subtler-pressed';
1863
+ readonly 'color.background.accent.red.subtle': '--ds-background-accent-red-subtle';
1864
+ readonly 'color.background.accent.red.subtle.hovered': '--ds-background-accent-red-subtle-hovered';
1865
+ readonly 'color.background.accent.red.subtle.pressed': '--ds-background-accent-red-subtle-pressed';
1866
+ readonly 'color.background.accent.red.bolder': '--ds-background-accent-red-bolder';
1867
+ readonly 'color.background.accent.red.bolder.hovered': '--ds-background-accent-red-bolder-hovered';
1868
+ readonly 'color.background.accent.red.bolder.pressed': '--ds-background-accent-red-bolder-pressed';
1869
+ readonly 'color.background.accent.orange.subtlest': '--ds-background-accent-orange-subtlest';
1870
+ readonly 'color.background.accent.orange.subtlest.hovered': '--ds-background-accent-orange-subtlest-hovered';
1871
+ readonly 'color.background.accent.orange.subtlest.pressed': '--ds-background-accent-orange-subtlest-pressed';
1872
+ readonly 'color.background.accent.orange.subtler': '--ds-background-accent-orange-subtler';
1873
+ readonly 'color.background.accent.orange.subtler.hovered': '--ds-background-accent-orange-subtler-hovered';
1874
+ readonly 'color.background.accent.orange.subtler.pressed': '--ds-background-accent-orange-subtler-pressed';
1875
+ readonly 'color.background.accent.orange.subtle': '--ds-background-accent-orange-subtle';
1876
+ readonly 'color.background.accent.orange.subtle.hovered': '--ds-background-accent-orange-subtle-hovered';
1877
+ readonly 'color.background.accent.orange.subtle.pressed': '--ds-background-accent-orange-subtle-pressed';
1878
+ readonly 'color.background.accent.orange.bolder': '--ds-background-accent-orange-bolder';
1879
+ readonly 'color.background.accent.orange.bolder.hovered': '--ds-background-accent-orange-bolder-hovered';
1880
+ readonly 'color.background.accent.orange.bolder.pressed': '--ds-background-accent-orange-bolder-pressed';
1881
+ readonly 'color.background.accent.yellow.subtlest': '--ds-background-accent-yellow-subtlest';
1882
+ readonly 'color.background.accent.yellow.subtlest.hovered': '--ds-background-accent-yellow-subtlest-hovered';
1883
+ readonly 'color.background.accent.yellow.subtlest.pressed': '--ds-background-accent-yellow-subtlest-pressed';
1884
+ readonly 'color.background.accent.yellow.subtler': '--ds-background-accent-yellow-subtler';
1885
+ readonly 'color.background.accent.yellow.subtler.hovered': '--ds-background-accent-yellow-subtler-hovered';
1886
+ readonly 'color.background.accent.yellow.subtler.pressed': '--ds-background-accent-yellow-subtler-pressed';
1887
+ readonly 'color.background.accent.yellow.subtle': '--ds-background-accent-yellow-subtle';
1888
+ readonly 'color.background.accent.yellow.subtle.hovered': '--ds-background-accent-yellow-subtle-hovered';
1889
+ readonly 'color.background.accent.yellow.subtle.pressed': '--ds-background-accent-yellow-subtle-pressed';
1890
+ readonly 'color.background.accent.yellow.bolder': '--ds-background-accent-yellow-bolder';
1891
+ readonly 'color.background.accent.yellow.bolder.hovered': '--ds-background-accent-yellow-bolder-hovered';
1892
+ readonly 'color.background.accent.yellow.bolder.pressed': '--ds-background-accent-yellow-bolder-pressed';
1893
+ readonly 'color.background.accent.green.subtlest': '--ds-background-accent-green-subtlest';
1894
+ readonly 'color.background.accent.green.subtlest.hovered': '--ds-background-accent-green-subtlest-hovered';
1895
+ readonly 'color.background.accent.green.subtlest.pressed': '--ds-background-accent-green-subtlest-pressed';
1896
+ readonly 'color.background.accent.green.subtler': '--ds-background-accent-green-subtler';
1897
+ readonly 'color.background.accent.green.subtler.hovered': '--ds-background-accent-green-subtler-hovered';
1898
+ readonly 'color.background.accent.green.subtler.pressed': '--ds-background-accent-green-subtler-pressed';
1899
+ readonly 'color.background.accent.green.subtle': '--ds-background-accent-green-subtle';
1900
+ readonly 'color.background.accent.green.subtle.hovered': '--ds-background-accent-green-subtle-hovered';
1901
+ readonly 'color.background.accent.green.subtle.pressed': '--ds-background-accent-green-subtle-pressed';
1902
+ readonly 'color.background.accent.green.bolder': '--ds-background-accent-green-bolder';
1903
+ readonly 'color.background.accent.green.bolder.hovered': '--ds-background-accent-green-bolder-hovered';
1904
+ readonly 'color.background.accent.green.bolder.pressed': '--ds-background-accent-green-bolder-pressed';
1905
+ readonly 'color.background.accent.teal.subtlest': '--ds-background-accent-teal-subtlest';
1906
+ readonly 'color.background.accent.teal.subtlest.hovered': '--ds-background-accent-teal-subtlest-hovered';
1907
+ readonly 'color.background.accent.teal.subtlest.pressed': '--ds-background-accent-teal-subtlest-pressed';
1908
+ readonly 'color.background.accent.teal.subtler': '--ds-background-accent-teal-subtler';
1909
+ readonly 'color.background.accent.teal.subtler.hovered': '--ds-background-accent-teal-subtler-hovered';
1910
+ readonly 'color.background.accent.teal.subtler.pressed': '--ds-background-accent-teal-subtler-pressed';
1911
+ readonly 'color.background.accent.teal.subtle': '--ds-background-accent-teal-subtle';
1912
+ readonly 'color.background.accent.teal.subtle.hovered': '--ds-background-accent-teal-subtle-hovered';
1913
+ readonly 'color.background.accent.teal.subtle.pressed': '--ds-background-accent-teal-subtle-pressed';
1914
+ readonly 'color.background.accent.teal.bolder': '--ds-background-accent-teal-bolder';
1915
+ readonly 'color.background.accent.teal.bolder.hovered': '--ds-background-accent-teal-bolder-hovered';
1916
+ readonly 'color.background.accent.teal.bolder.pressed': '--ds-background-accent-teal-bolder-pressed';
1917
+ readonly 'color.background.accent.blue.subtlest': '--ds-background-accent-blue-subtlest';
1918
+ readonly 'color.background.accent.blue.subtlest.hovered': '--ds-background-accent-blue-subtlest-hovered';
1919
+ readonly 'color.background.accent.blue.subtlest.pressed': '--ds-background-accent-blue-subtlest-pressed';
1920
+ readonly 'color.background.accent.blue.subtler': '--ds-background-accent-blue-subtler';
1921
+ readonly 'color.background.accent.blue.subtler.hovered': '--ds-background-accent-blue-subtler-hovered';
1922
+ readonly 'color.background.accent.blue.subtler.pressed': '--ds-background-accent-blue-subtler-pressed';
1923
+ readonly 'color.background.accent.blue.subtle': '--ds-background-accent-blue-subtle';
1924
+ readonly 'color.background.accent.blue.subtle.hovered': '--ds-background-accent-blue-subtle-hovered';
1925
+ readonly 'color.background.accent.blue.subtle.pressed': '--ds-background-accent-blue-subtle-pressed';
1926
+ readonly 'color.background.accent.blue.bolder': '--ds-background-accent-blue-bolder';
1927
+ readonly 'color.background.accent.blue.bolder.hovered': '--ds-background-accent-blue-bolder-hovered';
1928
+ readonly 'color.background.accent.blue.bolder.pressed': '--ds-background-accent-blue-bolder-pressed';
1929
+ readonly 'color.background.accent.purple.subtlest': '--ds-background-accent-purple-subtlest';
1930
+ readonly 'color.background.accent.purple.subtlest.hovered': '--ds-background-accent-purple-subtlest-hovered';
1931
+ readonly 'color.background.accent.purple.subtlest.pressed': '--ds-background-accent-purple-subtlest-pressed';
1932
+ readonly 'color.background.accent.purple.subtler': '--ds-background-accent-purple-subtler';
1933
+ readonly 'color.background.accent.purple.subtler.hovered': '--ds-background-accent-purple-subtler-hovered';
1934
+ readonly 'color.background.accent.purple.subtler.pressed': '--ds-background-accent-purple-subtler-pressed';
1935
+ readonly 'color.background.accent.purple.subtle': '--ds-background-accent-purple-subtle';
1936
+ readonly 'color.background.accent.purple.subtle.hovered': '--ds-background-accent-purple-subtle-hovered';
1937
+ readonly 'color.background.accent.purple.subtle.pressed': '--ds-background-accent-purple-subtle-pressed';
1938
+ readonly 'color.background.accent.purple.bolder': '--ds-background-accent-purple-bolder';
1939
+ readonly 'color.background.accent.purple.bolder.hovered': '--ds-background-accent-purple-bolder-hovered';
1940
+ readonly 'color.background.accent.purple.bolder.pressed': '--ds-background-accent-purple-bolder-pressed';
1941
+ readonly 'color.background.accent.magenta.subtlest': '--ds-background-accent-magenta-subtlest';
1942
+ readonly 'color.background.accent.magenta.subtlest.hovered': '--ds-background-accent-magenta-subtlest-hovered';
1943
+ readonly 'color.background.accent.magenta.subtlest.pressed': '--ds-background-accent-magenta-subtlest-pressed';
1944
+ readonly 'color.background.accent.magenta.subtler': '--ds-background-accent-magenta-subtler';
1945
+ readonly 'color.background.accent.magenta.subtler.hovered': '--ds-background-accent-magenta-subtler-hovered';
1946
+ readonly 'color.background.accent.magenta.subtler.pressed': '--ds-background-accent-magenta-subtler-pressed';
1947
+ readonly 'color.background.accent.magenta.subtle': '--ds-background-accent-magenta-subtle';
1948
+ readonly 'color.background.accent.magenta.subtle.hovered': '--ds-background-accent-magenta-subtle-hovered';
1949
+ readonly 'color.background.accent.magenta.subtle.pressed': '--ds-background-accent-magenta-subtle-pressed';
1950
+ readonly 'color.background.accent.magenta.bolder': '--ds-background-accent-magenta-bolder';
1951
+ readonly 'color.background.accent.magenta.bolder.hovered': '--ds-background-accent-magenta-bolder-hovered';
1952
+ readonly 'color.background.accent.magenta.bolder.pressed': '--ds-background-accent-magenta-bolder-pressed';
1953
+ readonly 'color.background.accent.gray.subtlest': '--ds-background-accent-gray-subtlest';
1954
+ readonly 'color.background.accent.gray.subtlest.hovered': '--ds-background-accent-gray-subtlest-hovered';
1955
+ readonly 'color.background.accent.gray.subtlest.pressed': '--ds-background-accent-gray-subtlest-pressed';
1956
+ readonly 'color.background.accent.gray.subtler': '--ds-background-accent-gray-subtler';
1957
+ readonly 'color.background.accent.gray.subtler.hovered': '--ds-background-accent-gray-subtler-hovered';
1958
+ readonly 'color.background.accent.gray.subtler.pressed': '--ds-background-accent-gray-subtler-pressed';
1959
+ readonly 'color.background.accent.gray.subtle': '--ds-background-accent-gray-subtle';
1960
+ readonly 'color.background.accent.gray.subtle.hovered': '--ds-background-accent-gray-subtle-hovered';
1961
+ readonly 'color.background.accent.gray.subtle.pressed': '--ds-background-accent-gray-subtle-pressed';
1962
+ readonly 'color.background.accent.gray.bolder': '--ds-background-accent-gray-bolder';
1963
+ readonly 'color.background.accent.gray.bolder.hovered': '--ds-background-accent-gray-bolder-hovered';
1964
+ readonly 'color.background.accent.gray.bolder.pressed': '--ds-background-accent-gray-bolder-pressed';
1965
+ readonly 'color.background.disabled': '--ds-background-disabled';
1966
+ readonly 'color.background.input': '--ds-background-input';
1967
+ readonly 'color.background.input.hovered': '--ds-background-input-hovered';
1968
+ readonly 'color.background.input.pressed': '--ds-background-input-pressed';
1969
+ readonly 'color.background.inverse.subtle': '--ds-background-inverse-subtle';
1970
+ readonly 'color.background.inverse.subtle.hovered': '--ds-background-inverse-subtle-hovered';
1971
+ readonly 'color.background.inverse.subtle.pressed': '--ds-background-inverse-subtle-pressed';
1972
+ readonly 'color.background.neutral': '--ds-background-neutral';
1973
+ readonly 'color.background.neutral.hovered': '--ds-background-neutral-hovered';
1974
+ readonly 'color.background.neutral.pressed': '--ds-background-neutral-pressed';
1975
+ readonly 'color.background.neutral.subtle': '--ds-background-neutral-subtle';
1976
+ readonly 'color.background.neutral.subtle.hovered': '--ds-background-neutral-subtle-hovered';
1977
+ readonly 'color.background.neutral.subtle.pressed': '--ds-background-neutral-subtle-pressed';
1978
+ readonly 'color.background.neutral.bold': '--ds-background-neutral-bold';
1979
+ readonly 'color.background.neutral.bold.hovered': '--ds-background-neutral-bold-hovered';
1980
+ readonly 'color.background.neutral.bold.pressed': '--ds-background-neutral-bold-pressed';
1981
+ readonly 'color.background.selected': '--ds-background-selected';
1982
+ readonly 'color.background.selected.hovered': '--ds-background-selected-hovered';
1983
+ readonly 'color.background.selected.pressed': '--ds-background-selected-pressed';
1984
+ readonly 'color.background.selected.bold': '--ds-background-selected-bold';
1985
+ readonly 'color.background.selected.bold.hovered': '--ds-background-selected-bold-hovered';
1986
+ readonly 'color.background.selected.bold.pressed': '--ds-background-selected-bold-pressed';
1987
+ readonly 'color.background.brand.subtlest': '--ds-background-brand-subtlest';
1988
+ readonly 'color.background.brand.subtlest.hovered': '--ds-background-brand-subtlest-hovered';
1989
+ readonly 'color.background.brand.subtlest.pressed': '--ds-background-brand-subtlest-pressed';
1990
+ readonly 'color.background.brand.bold': '--ds-background-brand-bold';
1991
+ readonly 'color.background.brand.bold.hovered': '--ds-background-brand-bold-hovered';
1992
+ readonly 'color.background.brand.bold.pressed': '--ds-background-brand-bold-pressed';
1993
+ readonly 'color.background.brand.boldest': '--ds-background-brand-boldest';
1994
+ readonly 'color.background.brand.boldest.hovered': '--ds-background-brand-boldest-hovered';
1995
+ readonly 'color.background.brand.boldest.pressed': '--ds-background-brand-boldest-pressed';
1996
+ readonly 'color.background.danger': '--ds-background-danger';
1997
+ readonly 'color.background.danger.hovered': '--ds-background-danger-hovered';
1998
+ readonly 'color.background.danger.pressed': '--ds-background-danger-pressed';
1999
+ readonly 'color.background.danger.bold': '--ds-background-danger-bold';
2000
+ readonly 'color.background.danger.bold.hovered': '--ds-background-danger-bold-hovered';
2001
+ readonly 'color.background.danger.bold.pressed': '--ds-background-danger-bold-pressed';
2002
+ readonly 'color.background.warning': '--ds-background-warning';
2003
+ readonly 'color.background.warning.hovered': '--ds-background-warning-hovered';
2004
+ readonly 'color.background.warning.pressed': '--ds-background-warning-pressed';
2005
+ readonly 'color.background.warning.bold': '--ds-background-warning-bold';
2006
+ readonly 'color.background.warning.bold.hovered': '--ds-background-warning-bold-hovered';
2007
+ readonly 'color.background.warning.bold.pressed': '--ds-background-warning-bold-pressed';
2008
+ readonly 'color.background.success': '--ds-background-success';
2009
+ readonly 'color.background.success.hovered': '--ds-background-success-hovered';
2010
+ readonly 'color.background.success.pressed': '--ds-background-success-pressed';
2011
+ readonly 'color.background.success.bold': '--ds-background-success-bold';
2012
+ readonly 'color.background.success.bold.hovered': '--ds-background-success-bold-hovered';
2013
+ readonly 'color.background.success.bold.pressed': '--ds-background-success-bold-pressed';
2014
+ readonly 'color.background.discovery': '--ds-background-discovery';
2015
+ readonly 'color.background.discovery.hovered': '--ds-background-discovery-hovered';
2016
+ readonly 'color.background.discovery.pressed': '--ds-background-discovery-pressed';
2017
+ readonly 'color.background.discovery.bold': '--ds-background-discovery-bold';
2018
+ readonly 'color.background.discovery.bold.hovered': '--ds-background-discovery-bold-hovered';
2019
+ readonly 'color.background.discovery.bold.pressed': '--ds-background-discovery-bold-pressed';
2020
+ readonly 'color.background.information': '--ds-background-information';
2021
+ readonly 'color.background.information.hovered': '--ds-background-information-hovered';
2022
+ readonly 'color.background.information.pressed': '--ds-background-information-pressed';
2023
+ readonly 'color.background.information.bold': '--ds-background-information-bold';
2024
+ readonly 'color.background.information.bold.hovered': '--ds-background-information-bold-hovered';
2025
+ readonly 'color.background.information.bold.pressed': '--ds-background-information-bold-pressed';
2026
+ readonly 'color.blanket': '--ds-blanket';
2027
+ readonly 'color.blanket.selected': '--ds-blanket-selected';
2028
+ readonly 'color.blanket.danger': '--ds-blanket-danger';
2029
+ readonly 'color.interaction.hovered': '--ds-interaction-hovered';
2030
+ readonly 'color.interaction.pressed': '--ds-interaction-pressed';
2031
+ readonly 'color.skeleton': '--ds-skeleton';
2032
+ readonly 'color.skeleton.subtle': '--ds-skeleton-subtle';
2033
+ readonly 'color.chart.categorical.1': '--ds-chart-categorical-1';
2034
+ readonly 'color.chart.categorical.1.hovered': '--ds-chart-categorical-1-hovered';
2035
+ readonly 'color.chart.categorical.2': '--ds-chart-categorical-2';
2036
+ readonly 'color.chart.categorical.2.hovered': '--ds-chart-categorical-2-hovered';
2037
+ readonly 'color.chart.categorical.3': '--ds-chart-categorical-3';
2038
+ readonly 'color.chart.categorical.3.hovered': '--ds-chart-categorical-3-hovered';
2039
+ readonly 'color.chart.categorical.4': '--ds-chart-categorical-4';
2040
+ readonly 'color.chart.categorical.4.hovered': '--ds-chart-categorical-4-hovered';
2041
+ readonly 'color.chart.categorical.5': '--ds-chart-categorical-5';
2042
+ readonly 'color.chart.categorical.5.hovered': '--ds-chart-categorical-5-hovered';
2043
+ readonly 'color.chart.categorical.6': '--ds-chart-categorical-6';
2044
+ readonly 'color.chart.categorical.6.hovered': '--ds-chart-categorical-6-hovered';
2045
+ readonly 'color.chart.categorical.7': '--ds-chart-categorical-7';
2046
+ readonly 'color.chart.categorical.7.hovered': '--ds-chart-categorical-7-hovered';
2047
+ readonly 'color.chart.categorical.8': '--ds-chart-categorical-8';
2048
+ readonly 'color.chart.categorical.8.hovered': '--ds-chart-categorical-8-hovered';
2049
+ readonly 'color.chart.lime.bold': '--ds-chart-lime-bold';
2050
+ readonly 'color.chart.lime.bold.hovered': '--ds-chart-lime-bold-hovered';
2051
+ readonly 'color.chart.lime.bolder': '--ds-chart-lime-bolder';
2052
+ readonly 'color.chart.lime.bolder.hovered': '--ds-chart-lime-bolder-hovered';
2053
+ readonly 'color.chart.lime.boldest': '--ds-chart-lime-boldest';
2054
+ readonly 'color.chart.lime.boldest.hovered': '--ds-chart-lime-boldest-hovered';
2055
+ readonly 'color.chart.neutral': '--ds-chart-neutral';
2056
+ readonly 'color.chart.neutral.hovered': '--ds-chart-neutral-hovered';
2057
+ readonly 'color.chart.red.bold': '--ds-chart-red-bold';
2058
+ readonly 'color.chart.red.bold.hovered': '--ds-chart-red-bold-hovered';
2059
+ readonly 'color.chart.red.bolder': '--ds-chart-red-bolder';
2060
+ readonly 'color.chart.red.bolder.hovered': '--ds-chart-red-bolder-hovered';
2061
+ readonly 'color.chart.red.boldest': '--ds-chart-red-boldest';
2062
+ readonly 'color.chart.red.boldest.hovered': '--ds-chart-red-boldest-hovered';
2063
+ readonly 'color.chart.orange.bold': '--ds-chart-orange-bold';
2064
+ readonly 'color.chart.orange.bold.hovered': '--ds-chart-orange-bold-hovered';
2065
+ readonly 'color.chart.orange.bolder': '--ds-chart-orange-bolder';
2066
+ readonly 'color.chart.orange.bolder.hovered': '--ds-chart-orange-bolder-hovered';
2067
+ readonly 'color.chart.orange.boldest': '--ds-chart-orange-boldest';
2068
+ readonly 'color.chart.orange.boldest.hovered': '--ds-chart-orange-boldest-hovered';
2069
+ readonly 'color.chart.yellow.bold': '--ds-chart-yellow-bold';
2070
+ readonly 'color.chart.yellow.bold.hovered': '--ds-chart-yellow-bold-hovered';
2071
+ readonly 'color.chart.yellow.bolder': '--ds-chart-yellow-bolder';
2072
+ readonly 'color.chart.yellow.bolder.hovered': '--ds-chart-yellow-bolder-hovered';
2073
+ readonly 'color.chart.yellow.boldest': '--ds-chart-yellow-boldest';
2074
+ readonly 'color.chart.yellow.boldest.hovered': '--ds-chart-yellow-boldest-hovered';
2075
+ readonly 'color.chart.green.bold': '--ds-chart-green-bold';
2076
+ readonly 'color.chart.green.bold.hovered': '--ds-chart-green-bold-hovered';
2077
+ readonly 'color.chart.green.bolder': '--ds-chart-green-bolder';
2078
+ readonly 'color.chart.green.bolder.hovered': '--ds-chart-green-bolder-hovered';
2079
+ readonly 'color.chart.green.boldest': '--ds-chart-green-boldest';
2080
+ readonly 'color.chart.green.boldest.hovered': '--ds-chart-green-boldest-hovered';
2081
+ readonly 'color.chart.teal.bold': '--ds-chart-teal-bold';
2082
+ readonly 'color.chart.teal.bold.hovered': '--ds-chart-teal-bold-hovered';
2083
+ readonly 'color.chart.teal.bolder': '--ds-chart-teal-bolder';
2084
+ readonly 'color.chart.teal.bolder.hovered': '--ds-chart-teal-bolder-hovered';
2085
+ readonly 'color.chart.teal.boldest': '--ds-chart-teal-boldest';
2086
+ readonly 'color.chart.teal.boldest.hovered': '--ds-chart-teal-boldest-hovered';
2087
+ readonly 'color.chart.blue.bold': '--ds-chart-blue-bold';
2088
+ readonly 'color.chart.blue.bold.hovered': '--ds-chart-blue-bold-hovered';
2089
+ readonly 'color.chart.blue.bolder': '--ds-chart-blue-bolder';
2090
+ readonly 'color.chart.blue.bolder.hovered': '--ds-chart-blue-bolder-hovered';
2091
+ readonly 'color.chart.blue.boldest': '--ds-chart-blue-boldest';
2092
+ readonly 'color.chart.blue.boldest.hovered': '--ds-chart-blue-boldest-hovered';
2093
+ readonly 'color.chart.purple.bold': '--ds-chart-purple-bold';
2094
+ readonly 'color.chart.purple.bold.hovered': '--ds-chart-purple-bold-hovered';
2095
+ readonly 'color.chart.purple.bolder': '--ds-chart-purple-bolder';
2096
+ readonly 'color.chart.purple.bolder.hovered': '--ds-chart-purple-bolder-hovered';
2097
+ readonly 'color.chart.purple.boldest': '--ds-chart-purple-boldest';
2098
+ readonly 'color.chart.purple.boldest.hovered': '--ds-chart-purple-boldest-hovered';
2099
+ readonly 'color.chart.magenta.bold': '--ds-chart-magenta-bold';
2100
+ readonly 'color.chart.magenta.bold.hovered': '--ds-chart-magenta-bold-hovered';
2101
+ readonly 'color.chart.magenta.bolder': '--ds-chart-magenta-bolder';
2102
+ readonly 'color.chart.magenta.bolder.hovered': '--ds-chart-magenta-bolder-hovered';
2103
+ readonly 'color.chart.magenta.boldest': '--ds-chart-magenta-boldest';
2104
+ readonly 'color.chart.magenta.boldest.hovered': '--ds-chart-magenta-boldest-hovered';
2105
+ readonly 'color.chart.gray.bold': '--ds-chart-gray-bold';
2106
+ readonly 'color.chart.gray.bold.hovered': '--ds-chart-gray-bold-hovered';
2107
+ readonly 'color.chart.gray.bolder': '--ds-chart-gray-bolder';
2108
+ readonly 'color.chart.gray.bolder.hovered': '--ds-chart-gray-bolder-hovered';
2109
+ readonly 'color.chart.gray.boldest': '--ds-chart-gray-boldest';
2110
+ readonly 'color.chart.gray.boldest.hovered': '--ds-chart-gray-boldest-hovered';
2111
+ readonly 'color.chart.brand': '--ds-chart-brand';
2112
+ readonly 'color.chart.brand.hovered': '--ds-chart-brand-hovered';
2113
+ readonly 'color.chart.danger': '--ds-chart-danger';
2114
+ readonly 'color.chart.danger.hovered': '--ds-chart-danger-hovered';
2115
+ readonly 'color.chart.danger.bold': '--ds-chart-danger-bold';
2116
+ readonly 'color.chart.danger.bold.hovered': '--ds-chart-danger-bold-hovered';
2117
+ readonly 'color.chart.warning': '--ds-chart-warning';
2118
+ readonly 'color.chart.warning.hovered': '--ds-chart-warning-hovered';
2119
+ readonly 'color.chart.warning.bold': '--ds-chart-warning-bold';
2120
+ readonly 'color.chart.warning.bold.hovered': '--ds-chart-warning-bold-hovered';
2121
+ readonly 'color.chart.success': '--ds-chart-success';
2122
+ readonly 'color.chart.success.hovered': '--ds-chart-success-hovered';
2123
+ readonly 'color.chart.success.bold': '--ds-chart-success-bold';
2124
+ readonly 'color.chart.success.bold.hovered': '--ds-chart-success-bold-hovered';
2125
+ readonly 'color.chart.discovery': '--ds-chart-discovery';
2126
+ readonly 'color.chart.discovery.hovered': '--ds-chart-discovery-hovered';
2127
+ readonly 'color.chart.discovery.bold': '--ds-chart-discovery-bold';
2128
+ readonly 'color.chart.discovery.bold.hovered': '--ds-chart-discovery-bold-hovered';
2129
+ readonly 'color.chart.information': '--ds-chart-information';
2130
+ readonly 'color.chart.information.hovered': '--ds-chart-information-hovered';
2131
+ readonly 'color.chart.information.bold': '--ds-chart-information-bold';
2132
+ readonly 'color.chart.information.bold.hovered': '--ds-chart-information-bold-hovered';
2133
+ readonly 'elevation.surface': '--ds-surface';
2134
+ readonly 'elevation.surface.hovered': '--ds-surface-hovered';
2135
+ readonly 'elevation.surface.pressed': '--ds-surface-pressed';
2136
+ readonly 'elevation.surface.overlay': '--ds-surface-overlay';
2137
+ readonly 'elevation.surface.overlay.hovered': '--ds-surface-overlay-hovered';
2138
+ readonly 'elevation.surface.overlay.pressed': '--ds-surface-overlay-pressed';
2139
+ readonly 'elevation.surface.raised': '--ds-surface-raised';
2140
+ readonly 'elevation.surface.raised.hovered': '--ds-surface-raised-hovered';
2141
+ readonly 'elevation.surface.raised.pressed': '--ds-surface-raised-pressed';
2142
+ readonly 'elevation.surface.sunken': '--ds-surface-sunken';
2143
+ readonly 'elevation.shadow.overflow': '--ds-shadow-overflow';
2144
+ readonly 'elevation.shadow.overflow.perimeter': '--ds-shadow-overflow-perimeter';
2145
+ readonly 'elevation.shadow.overflow.spread': '--ds-shadow-overflow-spread';
2146
+ readonly 'elevation.shadow.overlay': '--ds-shadow-overlay';
2147
+ readonly 'elevation.shadow.raised': '--ds-shadow-raised';
2148
+ readonly 'opacity.disabled': '--ds-opacity-disabled';
2149
+ readonly 'opacity.loading': '--ds-opacity-loading';
2150
+ readonly 'utility.UNSAFE.textTransformUppercase': '--ds-UNSAFE-textTransformUppercase';
2151
+ readonly 'utility.UNSAFE.transparent': '--ds-UNSAFE-transparent';
2152
+ readonly 'utility.elevation.surface.current': '--ds-elevation-surface-current';
2153
+ readonly 'border.radius.050': '--ds-border-radius-050';
2154
+ readonly 'border.radius': '--ds-border-radius';
2155
+ readonly 'border.radius.100': '--ds-border-radius-100';
2156
+ readonly 'border.radius.200': '--ds-border-radius-200';
2157
+ readonly 'border.radius.300': '--ds-border-radius-300';
2158
+ readonly 'border.radius.400': '--ds-border-radius-400';
2159
+ readonly 'border.radius.circle': '--ds-border-radius-circle';
2160
+ readonly 'border.width': '--ds-border-width';
2161
+ readonly 'border.width.0': '--ds-border-width-0';
2162
+ readonly 'border.width.indicator': '--ds-border-width-indicator';
2163
+ readonly 'border.width.outline': '--ds-border-width-outline';
2164
+ readonly 'space.0': '--ds-space-0';
2165
+ readonly 'space.025': '--ds-space-025';
2166
+ readonly 'space.050': '--ds-space-050';
2167
+ readonly 'space.075': '--ds-space-075';
2168
+ readonly 'space.100': '--ds-space-100';
2169
+ readonly 'space.150': '--ds-space-150';
2170
+ readonly 'space.200': '--ds-space-200';
2171
+ readonly 'space.250': '--ds-space-250';
2172
+ readonly 'space.300': '--ds-space-300';
2173
+ readonly 'space.400': '--ds-space-400';
2174
+ readonly 'space.500': '--ds-space-500';
2175
+ readonly 'space.600': '--ds-space-600';
2176
+ readonly 'space.800': '--ds-space-800';
2177
+ readonly 'space.1000': '--ds-space-1000';
2178
+ readonly 'space.negative.025': '--ds-space-negative-025';
2179
+ readonly 'space.negative.050': '--ds-space-negative-050';
2180
+ readonly 'space.negative.075': '--ds-space-negative-075';
2181
+ readonly 'space.negative.100': '--ds-space-negative-100';
2182
+ readonly 'space.negative.150': '--ds-space-negative-150';
2183
+ readonly 'space.negative.200': '--ds-space-negative-200';
2184
+ readonly 'space.negative.250': '--ds-space-negative-250';
2185
+ readonly 'space.negative.300': '--ds-space-negative-300';
2186
+ readonly 'space.negative.400': '--ds-space-negative-400';
2187
+ readonly 'font.body': '--ds-font-body';
2188
+ readonly 'font.body.large': '--ds-font-body-large';
2189
+ readonly 'font.body.small': '--ds-font-body-small';
2190
+ readonly 'font.code': '--ds-font-code';
2191
+ readonly 'font.heading.large': '--ds-font-heading-large';
2192
+ readonly 'font.heading.medium': '--ds-font-heading-medium';
2193
+ readonly 'font.heading.small': '--ds-font-heading-small';
2194
+ readonly 'font.heading.xlarge': '--ds-font-heading-xlarge';
2195
+ readonly 'font.heading.xsmall': '--ds-font-heading-xsmall';
2196
+ readonly 'font.heading.xxlarge': '--ds-font-heading-xxlarge';
2197
+ readonly 'font.heading.xxsmall': '--ds-font-heading-xxsmall';
2198
+ readonly 'font.letterSpacing.0': '--ds-font-letterSpacing-0';
2199
+ readonly 'font.letterSpacing.100': '--ds-font-letterSpacing-100';
2200
+ readonly 'font.letterSpacing.200': '--ds-font-letterSpacing-200';
2201
+ readonly 'font.letterSpacing.300': '--ds-font-letterSpacing-300';
2202
+ readonly 'font.letterSpacing.400': '--ds-font-letterSpacing-400';
2203
+ readonly 'font.ui': '--ds-font-ui';
2204
+ readonly 'font.ui.small': '--ds-font-ui-small';
2205
+ readonly 'font.family.body': '--ds-font-family-body';
2206
+ readonly 'font.family.code': '--ds-font-family-code';
2207
+ readonly 'font.family.heading': '--ds-font-family-heading';
2208
+ readonly 'font.family.monospace': '--ds-font-family-monospace';
2209
+ readonly 'font.family.sans': '--ds-font-family-sans';
2210
+ readonly 'font.family.brand': '--ds-font-family-brand';
2211
+ readonly 'font.size.050': '--ds-font-size-050';
2212
+ readonly 'font.size.075': '--ds-font-size-075';
2213
+ readonly 'font.size.100': '--ds-font-size-100';
2214
+ readonly 'font.size.200': '--ds-font-size-200';
2215
+ readonly 'font.size.300': '--ds-font-size-300';
2216
+ readonly 'font.size.400': '--ds-font-size-400';
2217
+ readonly 'font.size.500': '--ds-font-size-500';
2218
+ readonly 'font.size.600': '--ds-font-size-600';
2219
+ readonly 'font.weight.bold': '--ds-font-weight-bold';
2220
+ readonly 'font.weight.medium': '--ds-font-weight-medium';
2221
+ readonly 'font.weight.regular': '--ds-font-weight-regular';
2222
+ readonly 'font.weight.semibold': '--ds-font-weight-semibold';
2223
+ readonly 'font.lineHeight.1': '--ds-font-lineHeight-1';
2224
+ readonly 'font.lineHeight.100': '--ds-font-lineHeight-100';
2225
+ readonly 'font.lineHeight.200': '--ds-font-lineHeight-200';
2226
+ readonly 'font.lineHeight.300': '--ds-font-lineHeight-300';
2227
+ readonly 'font.lineHeight.400': '--ds-font-lineHeight-400';
2228
+ readonly 'font.lineHeight.500': '--ds-font-lineHeight-500';
2229
+ readonly 'font.lineHeight.600': '--ds-font-lineHeight-600';
2248
2230
  };
2249
2231
 
2250
2232
  // @public (undocumented)
@@ -2252,73 +2234,72 @@ type Tokens_2 = typeof tokens;
2252
2234
 
2253
2235
  // @public (undocumented)
2254
2236
  type TokenState =
2255
- | ActiveTokenState
2256
- | DeletedTokenState
2257
- | DeprecatedTokenState
2258
- | ExperimentalTokenState;
2237
+ | ActiveTokenState
2238
+ | DeletedTokenState
2239
+ | DeprecatedTokenState
2240
+ | ExperimentalTokenState;
2259
2241
 
2260
2242
  // @public (undocumented)
2261
- interface TypographyDesignToken<TValue>
2262
- extends DesignToken<TValue, 'typography'> {
2263
- // (undocumented)
2264
- attributes: DesignToken<TValue, 'typography'>['attributes'] & {
2265
- responsiveSmallerVariant?: ResponsiveTypographyTokens;
2266
- };
2243
+ interface TypographyDesignToken<TValue> extends DesignToken<TValue, 'typography'> {
2244
+ // (undocumented)
2245
+ attributes: DesignToken<TValue, 'typography'>['attributes'] & {
2246
+ responsiveSmallerVariant?: ResponsiveTypographyTokens;
2247
+ };
2267
2248
  }
2268
2249
 
2269
2250
  // @public
2270
2251
  export type TypographyToken<
2271
- TPalette extends {
2272
- fontWeight: string;
2273
- fontSize: string;
2274
- lineHeight: string;
2275
- fontFamily: string;
2276
- letterSpacing: string;
2277
- responsiveToken?: string;
2278
- },
2252
+ TPalette extends {
2253
+ fontWeight: string;
2254
+ fontSize: string;
2255
+ lineHeight: string;
2256
+ fontFamily: string;
2257
+ letterSpacing: string;
2258
+ responsiveToken?: string;
2259
+ },
2279
2260
  > = TypographyDesignToken<{
2280
- fontStyle: 'normal';
2281
- fontWeight: TPalette['fontWeight'];
2282
- fontFamily: FlattenKeys<FontFamilyTokenSchema<any>>;
2283
- fontSize: TPalette['fontSize'];
2284
- lineHeight: TPalette['lineHeight'];
2285
- letterSpacing: TPalette['letterSpacing'];
2261
+ fontStyle: 'normal';
2262
+ fontWeight: TPalette['fontWeight'];
2263
+ fontFamily: FlattenKeys<FontFamilyTokenSchema<any>>;
2264
+ fontSize: TPalette['fontSize'];
2265
+ lineHeight: TPalette['lineHeight'];
2266
+ letterSpacing: TPalette['letterSpacing'];
2286
2267
  }>;
2287
2268
 
2288
2269
  // @public
2289
2270
  interface TypographyTokenSchema<
2290
- TPalette extends {
2291
- fontWeight: string;
2292
- fontSize: string;
2293
- lineHeight: string;
2294
- fontFamily: string;
2295
- letterSpacing: string;
2296
- },
2271
+ TPalette extends {
2272
+ fontWeight: string;
2273
+ fontSize: string;
2274
+ lineHeight: string;
2275
+ fontFamily: string;
2276
+ letterSpacing: string;
2277
+ },
2297
2278
  > {
2298
- // (undocumented)
2299
- font: {
2300
- heading: {
2301
- xxlarge: TypographyToken<TPalette>;
2302
- xlarge: TypographyToken<TPalette>;
2303
- large: TypographyToken<TPalette>;
2304
- medium: TypographyToken<TPalette>;
2305
- small: TypographyToken<TPalette>;
2306
- xsmall: TypographyToken<TPalette>;
2307
- xxsmall: TypographyToken<TPalette>;
2308
- };
2309
- ui: {
2310
- '[default]': TypographyToken<TPalette>;
2311
- small: TypographyToken<TPalette>;
2312
- };
2313
- body: {
2314
- '[default]': TypographyToken<TPalette>;
2315
- small: TypographyToken<TPalette>;
2316
- large: TypographyToken<TPalette>;
2317
- };
2318
- code: {
2319
- '[default]': TypographyToken<TPalette>;
2320
- };
2321
- };
2279
+ // (undocumented)
2280
+ font: {
2281
+ heading: {
2282
+ xxlarge: TypographyToken<TPalette>;
2283
+ xlarge: TypographyToken<TPalette>;
2284
+ large: TypographyToken<TPalette>;
2285
+ medium: TypographyToken<TPalette>;
2286
+ small: TypographyToken<TPalette>;
2287
+ xsmall: TypographyToken<TPalette>;
2288
+ xxsmall: TypographyToken<TPalette>;
2289
+ };
2290
+ ui: {
2291
+ '[default]': TypographyToken<TPalette>;
2292
+ small: TypographyToken<TPalette>;
2293
+ };
2294
+ body: {
2295
+ '[default]': TypographyToken<TPalette>;
2296
+ small: TypographyToken<TPalette>;
2297
+ large: TypographyToken<TPalette>;
2298
+ };
2299
+ code: {
2300
+ '[default]': TypographyToken<TPalette>;
2301
+ };
2302
+ };
2322
2303
  }
2323
2304
 
2324
2305
  // @public
@@ -2335,7 +2316,7 @@ export const useThemeObserver: () => Partial<ActiveThemeState>;
2335
2316
 
2336
2317
  ```json
2337
2318
  {
2338
- "react": "^16.8.0"
2319
+ "react": "^16.8.0"
2339
2320
  }
2340
2321
  ```
2341
2322