@esri/calcite-design-tokens 1.0.0 → 1.1.0-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. package/.eslintrc.cjs +85 -0
  2. package/.turbo/turbo-build.log +64 -0
  3. package/.turbo/turbo-test.log +14 -0
  4. package/CHANGELOG.md +17 -4
  5. package/CONTRIBUTING.md +41 -0
  6. package/LICENSE.md +13 -0
  7. package/README.md +9 -11
  8. package/dist/css/brand-light.css +1 -1
  9. package/dist/css/calcite-dark.css +1 -1
  10. package/dist/css/calcite-headless.css +2 -1
  11. package/dist/css/calcite-light.css +1 -1
  12. package/dist/scss/brand-light.scss +1 -1
  13. package/dist/scss/calcite-dark.scss +1 -1
  14. package/dist/scss/calcite-headless.scss +3 -1
  15. package/dist/scss/calcite-light.scss +1 -1
  16. package/jest.config.json +16 -0
  17. package/package.json +11 -72
  18. package/src/$metadata.json +76 -0
  19. package/src/$themes.json +2360 -0
  20. package/src/brand/dark.json +1 -0
  21. package/src/brand/global.json +1 -0
  22. package/src/brand/light.json +20 -0
  23. package/src/calcite/dark.json +2488 -0
  24. package/src/calcite/light.json +2508 -0
  25. package/src/component/accordion-item.json +172 -0
  26. package/src/component/accordion.json +192 -0
  27. package/src/component/action-bar-grid.json +66 -0
  28. package/src/component/action-bar.json +66 -0
  29. package/src/component/action-pad-grid.json +80 -0
  30. package/src/component/action-pad.json +80 -0
  31. package/src/component/action.json +156 -0
  32. package/src/component/alert.json +258 -0
  33. package/src/component/avatar.json +140 -0
  34. package/src/component/block-section.json +124 -0
  35. package/src/component/block.json +198 -0
  36. package/src/component/button.json +650 -0
  37. package/src/component/card.json +116 -0
  38. package/src/component/checkbox.json +110 -0
  39. package/src/component/chip.json +382 -0
  40. package/src/component/color-picker.json +148 -0
  41. package/src/component/combobox.json +152 -0
  42. package/src/component/date-picker.json +354 -0
  43. package/src/component/dropdown-item.json +384 -0
  44. package/src/component/dropdown.json +58 -0
  45. package/src/component/fab.json +490 -0
  46. package/src/component/filter.json +174 -0
  47. package/src/component/input-date-picker.json +224 -0
  48. package/src/component/input-datetime-local.json +230 -0
  49. package/src/component/input-email.json +244 -0
  50. package/src/component/input-file.json +244 -0
  51. package/src/component/input-message.json +72 -0
  52. package/src/component/input-month.json +244 -0
  53. package/src/component/input-number.json +244 -0
  54. package/src/component/input-password.json +244 -0
  55. package/src/component/input-search.json +244 -0
  56. package/src/component/input-telephone.json +244 -0
  57. package/src/component/input-text.json +244 -0
  58. package/src/component/input-time.json +1 -0
  59. package/src/component/input-week.json +244 -0
  60. package/src/component/label.json +26 -0
  61. package/src/component/link.json +44 -0
  62. package/src/component/loader.json +130 -0
  63. package/src/component/modal.json +278 -0
  64. package/src/component/notice.json +280 -0
  65. package/src/component/pagination.json +152 -0
  66. package/src/component/panel-header.json +88 -0
  67. package/src/component/popover.json +170 -0
  68. package/src/component/radio.json +124 -0
  69. package/src/component/rating.json +243 -0
  70. package/src/component/scrim.json +18 -0
  71. package/src/component/segmented-control.json +154 -0
  72. package/src/component/slider-histogram-range.json +284 -0
  73. package/src/component/slider-histogram.json +280 -0
  74. package/src/component/slider-range.json +226 -0
  75. package/src/component/slider.json +226 -0
  76. package/src/component/split-button.json +830 -0
  77. package/src/component/stepper-item.json +372 -0
  78. package/src/component/stepper.json +152 -0
  79. package/src/component/switch.json +178 -0
  80. package/src/component/tab-title.json +228 -0
  81. package/src/component/tabs.json +242 -0
  82. package/src/component/textarea.json +200 -0
  83. package/src/component/time-picker.json +138 -0
  84. package/src/component/tip-manager.json +118 -0
  85. package/src/component/tip.json +114 -0
  86. package/src/component/tooltip.json +66 -0
  87. package/src/component/tree-item.json +176 -0
  88. package/src/core.json +1709 -0
  89. package/src/semantic.json +1709 -0
  90. package/support/run.ts +16 -0
  91. package/support/token-transformer/format/scss.ts +81 -0
  92. package/support/token-transformer/getThemes.ts +41 -0
  93. package/support/token-transformer/parse/expandComposites.test.ts +144 -0
  94. package/support/token-transformer/parse/expandComposites.ts +72 -0
  95. package/support/token-transformer/sd-run.ts +147 -0
  96. package/support/token-transformer/transform/nameCamelCase.test.ts +36 -0
  97. package/support/token-transformer/transform/nameCamelCase.ts +15 -0
  98. package/support/token-transformer/transform/nameKebabCase.test.ts +36 -0
  99. package/support/token-transformer/transform/nameKebabCase.ts +26 -0
  100. package/support/token-transformer/utils/compositeTokens.test.ts +133 -0
  101. package/support/token-transformer/utils/compositeTokens.ts +103 -0
  102. package/support/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts +20 -0
  103. package/support/token-transformer/utils/matchList.ts +11 -0
  104. package/support/token-transformer/utils/parseName.ts +18 -0
  105. package/support/token-transformer/utils/parseTokenPath.ts +19 -0
  106. package/support/token-transformer/utils/regex.ts +9 -0
  107. package/support/token-transformer/utils/sortAllTokens.ts +12 -0
  108. package/support/token-transformer/utils/transformOptions.ts +31 -0
  109. package/tsconfig-base.json +17 -0
  110. package/tsconfig-eslint.json +4 -0
  111. package/tsconfig.json +4 -0
@@ -0,0 +1,1709 @@
1
+ {
2
+ "semantic": {
3
+ "font": {
4
+ "default": {
5
+ "light": {
6
+ "-3h": {
7
+ "value": {
8
+ "fontFamily": "$core.font.font-family.primary",
9
+ "fontWeight": "$core.font.font-weight.light",
10
+ "lineHeight": "$core.font.line-height.fixed.0",
11
+ "fontSize": "$core.font.font-size.0",
12
+ "letterSpacing": "$core.font.letter-spacing.normal",
13
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
14
+ "textDecoration": "$core.font.text-decoration.none",
15
+ "textCase": "$core.font.text-case.none"
16
+ },
17
+ "type": "typography"
18
+ },
19
+ "-2h": {
20
+ "value": {
21
+ "fontFamily": "$core.font.font-family.primary",
22
+ "fontWeight": "$core.font.font-weight.light",
23
+ "lineHeight": "$core.font.line-height.fixed.1",
24
+ "fontSize": "$core.font.font-size.1",
25
+ "letterSpacing": "$core.font.letter-spacing.normal",
26
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
27
+ "textDecoration": "$core.font.text-decoration.none",
28
+ "textCase": "$core.font.text-case.none"
29
+ },
30
+ "type": "typography"
31
+ },
32
+ "-1h": {
33
+ "value": {
34
+ "fontFamily": "$core.font.font-family.primary",
35
+ "fontWeight": "$core.font.font-weight.light",
36
+ "lineHeight": "$core.font.line-height.fixed.1",
37
+ "fontSize": "$core.font.font-size.2",
38
+ "letterSpacing": "$core.font.letter-spacing.normal",
39
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
40
+ "textDecoration": "$core.font.text-decoration.none",
41
+ "textCase": "$core.font.text-case.none"
42
+ },
43
+ "type": "typography"
44
+ },
45
+ "0h": {
46
+ "value": {
47
+ "fontFamily": "$core.font.font-family.primary",
48
+ "fontWeight": "$core.font.font-weight.light",
49
+ "lineHeight": "$core.font.line-height.fixed.2",
50
+ "fontSize": "$core.font.font-size.3",
51
+ "letterSpacing": "$core.font.letter-spacing.normal",
52
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
53
+ "textDecoration": "$core.font.text-decoration.none",
54
+ "textCase": "$core.font.text-case.none"
55
+ },
56
+ "type": "typography"
57
+ },
58
+ "1h": {
59
+ "value": {
60
+ "fontFamily": "$core.font.font-family.primary",
61
+ "fontWeight": "$core.font.font-weight.light",
62
+ "lineHeight": "$core.font.line-height.fixed.3",
63
+ "fontSize": "$core.font.font-size.4",
64
+ "letterSpacing": "$core.font.letter-spacing.normal",
65
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
66
+ "textDecoration": "$core.font.text-decoration.none",
67
+ "textCase": "$core.font.text-case.none"
68
+ },
69
+ "type": "typography"
70
+ },
71
+ "2h": {
72
+ "value": {
73
+ "fontFamily": "$core.font.font-family.primary",
74
+ "fontWeight": "$core.font.font-weight.light",
75
+ "lineHeight": "$core.font.line-height.fixed.3",
76
+ "fontSize": "$core.font.font-size.5",
77
+ "letterSpacing": "$core.font.letter-spacing.normal",
78
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
79
+ "textDecoration": "$core.font.text-decoration.none",
80
+ "textCase": "$core.font.text-case.none"
81
+ },
82
+ "type": "typography"
83
+ },
84
+ "3h": {
85
+ "value": {
86
+ "fontFamily": "$core.font.font-family.primary",
87
+ "fontWeight": "$core.font.font-weight.light",
88
+ "lineHeight": "$core.font.line-height.fixed.5",
89
+ "fontSize": "$core.font.font-size.6",
90
+ "letterSpacing": "$core.font.letter-spacing.normal",
91
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
92
+ "textDecoration": "$core.font.text-decoration.none",
93
+ "textCase": "$core.font.text-case.none"
94
+ },
95
+ "type": "typography"
96
+ },
97
+ "4h": {
98
+ "value": {
99
+ "fontFamily": "$core.font.font-family.primary",
100
+ "fontWeight": "$core.font.font-weight.light",
101
+ "lineHeight": "$core.font.line-height.fixed.7",
102
+ "fontSize": "$core.font.font-size.7",
103
+ "letterSpacing": "$core.font.letter-spacing.normal",
104
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
105
+ "textDecoration": "$core.font.text-decoration.none",
106
+ "textCase": "$core.font.text-case.none"
107
+ },
108
+ "type": "typography"
109
+ },
110
+ "5h": {
111
+ "value": {
112
+ "fontFamily": "$core.font.font-family.primary",
113
+ "fontWeight": "$core.font.font-weight.light",
114
+ "lineHeight": "$core.font.line-height.fixed.8",
115
+ "fontSize": "$core.font.font-size.8",
116
+ "letterSpacing": "$core.font.letter-spacing.normal",
117
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
118
+ "textDecoration": "$core.font.text-decoration.none",
119
+ "textCase": "$core.font.text-case.none"
120
+ },
121
+ "type": "typography"
122
+ },
123
+ "6h": {
124
+ "value": {
125
+ "fontFamily": "$core.font.font-family.primary",
126
+ "fontWeight": "$core.font.font-weight.light",
127
+ "lineHeight": "$core.font.line-height.fixed.10",
128
+ "fontSize": "$core.font.font-size.9",
129
+ "letterSpacing": "$core.font.letter-spacing.normal",
130
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
131
+ "textDecoration": "$core.font.text-decoration.none",
132
+ "textCase": "$core.font.text-case.none"
133
+ },
134
+ "type": "typography"
135
+ },
136
+ "7h": {
137
+ "value": {
138
+ "fontFamily": "$core.font.font-family.primary",
139
+ "fontWeight": "$core.font.font-weight.light",
140
+ "lineHeight": "$core.font.line-height.fixed.10",
141
+ "fontSize": "$core.font.font-size.10",
142
+ "letterSpacing": "$core.font.letter-spacing.normal",
143
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
144
+ "textDecoration": "$core.font.text-decoration.none",
145
+ "textCase": "$core.font.text-case.none"
146
+ },
147
+ "type": "typography"
148
+ },
149
+ "8h": {
150
+ "value": {
151
+ "fontFamily": "$core.font.font-family.primary",
152
+ "fontWeight": "$core.font.font-weight.light",
153
+ "lineHeight": "$core.font.line-height.fixed.12",
154
+ "fontSize": "$core.font.font-size.11",
155
+ "letterSpacing": "$core.font.letter-spacing.normal",
156
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
157
+ "textDecoration": "$core.font.text-decoration.none",
158
+ "textCase": "$core.font.text-case.none"
159
+ },
160
+ "type": "typography"
161
+ }
162
+ },
163
+ "regular": {
164
+ "-3h": {
165
+ "value": {
166
+ "fontFamily": "$core.font.font-family.primary",
167
+ "fontWeight": "$core.font.font-weight.regular",
168
+ "lineHeight": "$core.font.line-height.fixed.0",
169
+ "fontSize": "$core.font.font-size.0",
170
+ "letterSpacing": "$core.font.letter-spacing.normal",
171
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
172
+ "textDecoration": "$core.font.text-decoration.none",
173
+ "textCase": "$core.font.text-case.none"
174
+ },
175
+ "type": "typography"
176
+ },
177
+ "-2h": {
178
+ "value": {
179
+ "fontFamily": "$core.font.font-family.primary",
180
+ "fontWeight": "$core.font.font-weight.regular",
181
+ "lineHeight": "$core.font.line-height.fixed.1",
182
+ "fontSize": "$core.font.font-size.1",
183
+ "letterSpacing": "$core.font.letter-spacing.normal",
184
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
185
+ "textDecoration": "$core.font.text-decoration.none",
186
+ "textCase": "$core.font.text-case.none"
187
+ },
188
+ "type": "typography"
189
+ },
190
+ "-1h": {
191
+ "value": {
192
+ "fontFamily": "$core.font.font-family.primary",
193
+ "fontWeight": "$core.font.font-weight.regular",
194
+ "lineHeight": "$core.font.line-height.fixed.1",
195
+ "fontSize": "$core.font.font-size.2",
196
+ "letterSpacing": "$core.font.letter-spacing.normal",
197
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
198
+ "textDecoration": "$core.font.text-decoration.none",
199
+ "textCase": "$core.font.text-case.none"
200
+ },
201
+ "type": "typography"
202
+ },
203
+ "0h": {
204
+ "value": {
205
+ "fontFamily": "$core.font.font-family.primary",
206
+ "fontWeight": "$core.font.font-weight.regular",
207
+ "lineHeight": "$core.font.line-height.fixed.2",
208
+ "fontSize": "$core.font.font-size.3",
209
+ "letterSpacing": "$core.font.letter-spacing.normal",
210
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
211
+ "textDecoration": "$core.font.text-decoration.none",
212
+ "textCase": "$core.font.text-case.none"
213
+ },
214
+ "type": "typography"
215
+ },
216
+ "1h": {
217
+ "value": {
218
+ "fontFamily": "$core.font.font-family.primary",
219
+ "fontWeight": "$core.font.font-weight.regular",
220
+ "lineHeight": "$core.font.line-height.fixed.3",
221
+ "fontSize": "$core.font.font-size.4",
222
+ "letterSpacing": "$core.font.letter-spacing.normal",
223
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
224
+ "textDecoration": "$core.font.text-decoration.none",
225
+ "textCase": "$core.font.text-case.none"
226
+ },
227
+ "type": "typography"
228
+ },
229
+ "2h": {
230
+ "value": {
231
+ "fontFamily": "$core.font.font-family.primary",
232
+ "fontWeight": "$core.font.font-weight.regular",
233
+ "lineHeight": "$core.font.line-height.fixed.3",
234
+ "fontSize": "$core.font.font-size.5",
235
+ "letterSpacing": "$core.font.letter-spacing.normal",
236
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
237
+ "textDecoration": "$core.font.text-decoration.none",
238
+ "textCase": "$core.font.text-case.none"
239
+ },
240
+ "type": "typography"
241
+ },
242
+ "3h": {
243
+ "value": {
244
+ "fontFamily": "$core.font.font-family.primary",
245
+ "fontWeight": "$core.font.font-weight.regular",
246
+ "lineHeight": "$core.font.line-height.fixed.5",
247
+ "fontSize": "$core.font.font-size.6",
248
+ "letterSpacing": "$core.font.letter-spacing.normal",
249
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
250
+ "textDecoration": "$core.font.text-decoration.none",
251
+ "textCase": "$core.font.text-case.none"
252
+ },
253
+ "type": "typography"
254
+ },
255
+ "4h": {
256
+ "value": {
257
+ "fontFamily": "$core.font.font-family.primary",
258
+ "fontWeight": "$core.font.font-weight.regular",
259
+ "lineHeight": "$core.font.line-height.fixed.7",
260
+ "fontSize": "$core.font.font-size.7",
261
+ "letterSpacing": "$core.font.letter-spacing.normal",
262
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
263
+ "textDecoration": "$core.font.text-decoration.none",
264
+ "textCase": "$core.font.text-case.none"
265
+ },
266
+ "type": "typography"
267
+ },
268
+ "5h": {
269
+ "value": {
270
+ "fontFamily": "$core.font.font-family.primary",
271
+ "fontWeight": "$core.font.font-weight.regular",
272
+ "lineHeight": "$core.font.line-height.fixed.8",
273
+ "fontSize": "$core.font.font-size.8",
274
+ "letterSpacing": "$core.font.letter-spacing.normal",
275
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
276
+ "textDecoration": "$core.font.text-decoration.none",
277
+ "textCase": "$core.font.text-case.none"
278
+ },
279
+ "type": "typography"
280
+ },
281
+ "6h": {
282
+ "value": {
283
+ "fontFamily": "$core.font.font-family.primary",
284
+ "fontWeight": "$core.font.font-weight.regular",
285
+ "lineHeight": "$core.font.line-height.fixed.10",
286
+ "fontSize": "$core.font.font-size.9",
287
+ "letterSpacing": "$core.font.letter-spacing.normal",
288
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
289
+ "textDecoration": "$core.font.text-decoration.none",
290
+ "textCase": "$core.font.text-case.none"
291
+ },
292
+ "type": "typography"
293
+ },
294
+ "7h": {
295
+ "value": {
296
+ "fontFamily": "$core.font.font-family.primary",
297
+ "fontWeight": "$core.font.font-weight.regular",
298
+ "lineHeight": "$core.font.line-height.fixed.10",
299
+ "fontSize": "$core.font.font-size.10",
300
+ "letterSpacing": "$core.font.letter-spacing.normal",
301
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
302
+ "textDecoration": "$core.font.text-decoration.none",
303
+ "textCase": "$core.font.text-case.none"
304
+ },
305
+ "type": "typography"
306
+ },
307
+ "8h": {
308
+ "value": {
309
+ "fontFamily": "$core.font.font-family.primary",
310
+ "fontWeight": "$core.font.font-weight.regular",
311
+ "lineHeight": "$core.font.line-height.fixed.12",
312
+ "fontSize": "$core.font.font-size.11",
313
+ "letterSpacing": "$core.font.letter-spacing.normal",
314
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
315
+ "textDecoration": "$core.font.text-decoration.none",
316
+ "textCase": "$core.font.text-case.none"
317
+ },
318
+ "type": "typography"
319
+ }
320
+ },
321
+ "medium": {
322
+ "-3h": {
323
+ "value": {
324
+ "fontFamily": "$core.font.font-family.primary",
325
+ "fontWeight": "$core.font.font-weight.medium",
326
+ "lineHeight": "$core.font.line-height.fixed.0",
327
+ "fontSize": "$core.font.font-size.0",
328
+ "letterSpacing": "$core.font.letter-spacing.normal",
329
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
330
+ "textDecoration": "$core.font.text-decoration.none",
331
+ "textCase": "$core.font.text-case.none"
332
+ },
333
+ "type": "typography"
334
+ },
335
+ "-2h": {
336
+ "value": {
337
+ "fontFamily": "$core.font.font-family.primary",
338
+ "fontWeight": "$core.font.font-weight.medium",
339
+ "lineHeight": "$core.font.line-height.fixed.1",
340
+ "fontSize": "$core.font.font-size.1",
341
+ "letterSpacing": "$core.font.letter-spacing.normal",
342
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
343
+ "textDecoration": "$core.font.text-decoration.none",
344
+ "textCase": "$core.font.text-case.none"
345
+ },
346
+ "type": "typography"
347
+ },
348
+ "-1h": {
349
+ "value": {
350
+ "fontFamily": "$core.font.font-family.primary",
351
+ "fontWeight": "$core.font.font-weight.medium",
352
+ "lineHeight": "$core.font.line-height.fixed.1",
353
+ "fontSize": "$core.font.font-size.2",
354
+ "letterSpacing": "$core.font.letter-spacing.normal",
355
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
356
+ "textDecoration": "$core.font.text-decoration.none",
357
+ "textCase": "$core.font.text-case.none"
358
+ },
359
+ "type": "typography"
360
+ },
361
+ "0h": {
362
+ "value": {
363
+ "fontFamily": "$core.font.font-family.primary",
364
+ "fontWeight": "$core.font.font-weight.medium",
365
+ "lineHeight": "$core.font.line-height.fixed.2",
366
+ "fontSize": "$core.font.font-size.3",
367
+ "letterSpacing": "$core.font.letter-spacing.normal",
368
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
369
+ "textDecoration": "$core.font.text-decoration.none",
370
+ "textCase": "$core.font.text-case.none"
371
+ },
372
+ "type": "typography"
373
+ },
374
+ "1h": {
375
+ "value": {
376
+ "fontFamily": "$core.font.font-family.primary",
377
+ "fontWeight": "$core.font.font-weight.medium",
378
+ "lineHeight": "$core.font.line-height.fixed.3",
379
+ "fontSize": "$core.font.font-size.4",
380
+ "letterSpacing": "$core.font.letter-spacing.normal",
381
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
382
+ "textDecoration": "$core.font.text-decoration.none",
383
+ "textCase": "$core.font.text-case.none"
384
+ },
385
+ "type": "typography"
386
+ },
387
+ "2h": {
388
+ "value": {
389
+ "fontFamily": "$core.font.font-family.primary",
390
+ "fontWeight": "$core.font.font-weight.medium",
391
+ "lineHeight": "$core.font.line-height.fixed.3",
392
+ "fontSize": "$core.font.font-size.5",
393
+ "letterSpacing": "$core.font.letter-spacing.normal",
394
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
395
+ "textDecoration": "$core.font.text-decoration.none",
396
+ "textCase": "$core.font.text-case.none"
397
+ },
398
+ "type": "typography"
399
+ },
400
+ "3h": {
401
+ "value": {
402
+ "fontFamily": "$core.font.font-family.primary",
403
+ "fontWeight": "$core.font.font-weight.medium",
404
+ "lineHeight": "$core.font.line-height.fixed.5",
405
+ "fontSize": "$core.font.font-size.6",
406
+ "letterSpacing": "$core.font.letter-spacing.normal",
407
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
408
+ "textDecoration": "$core.font.text-decoration.none",
409
+ "textCase": "$core.font.text-case.none"
410
+ },
411
+ "type": "typography"
412
+ },
413
+ "4h": {
414
+ "value": {
415
+ "fontFamily": "$core.font.font-family.primary",
416
+ "fontWeight": "$core.font.font-weight.medium",
417
+ "lineHeight": "$core.font.line-height.fixed.7",
418
+ "fontSize": "$core.font.font-size.7",
419
+ "letterSpacing": "$core.font.letter-spacing.normal",
420
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
421
+ "textDecoration": "$core.font.text-decoration.none",
422
+ "textCase": "$core.font.text-case.none"
423
+ },
424
+ "type": "typography"
425
+ },
426
+ "5h": {
427
+ "value": {
428
+ "fontFamily": "$core.font.font-family.primary",
429
+ "fontWeight": "$core.font.font-weight.medium",
430
+ "lineHeight": "$core.font.line-height.fixed.8",
431
+ "fontSize": "$core.font.font-size.8",
432
+ "letterSpacing": "$core.font.letter-spacing.normal",
433
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
434
+ "textDecoration": "$core.font.text-decoration.none",
435
+ "textCase": "$core.font.text-case.none"
436
+ },
437
+ "type": "typography"
438
+ },
439
+ "6h": {
440
+ "value": {
441
+ "fontFamily": "$core.font.font-family.primary",
442
+ "fontWeight": "$core.font.font-weight.medium",
443
+ "lineHeight": "$core.font.line-height.fixed.10",
444
+ "fontSize": "$core.font.font-size.9",
445
+ "letterSpacing": "$core.font.letter-spacing.normal",
446
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
447
+ "textDecoration": "$core.font.text-decoration.none",
448
+ "textCase": "$core.font.text-case.none"
449
+ },
450
+ "type": "typography"
451
+ },
452
+ "7h": {
453
+ "value": {
454
+ "fontFamily": "$core.font.font-family.primary",
455
+ "fontWeight": "$core.font.font-weight.medium",
456
+ "lineHeight": "$core.font.line-height.fixed.10",
457
+ "fontSize": "$core.font.font-size.10",
458
+ "letterSpacing": "$core.font.letter-spacing.normal",
459
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
460
+ "textDecoration": "$core.font.text-decoration.none",
461
+ "textCase": "$core.font.text-case.none"
462
+ },
463
+ "type": "typography"
464
+ },
465
+ "8h": {
466
+ "value": {
467
+ "fontFamily": "$core.font.font-family.primary",
468
+ "fontWeight": "$core.font.font-weight.medium",
469
+ "lineHeight": "$core.font.line-height.fixed.12",
470
+ "fontSize": "$core.font.font-size.11",
471
+ "letterSpacing": "$core.font.letter-spacing.normal",
472
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
473
+ "textDecoration": "$core.font.text-decoration.none",
474
+ "textCase": "$core.font.text-case.none"
475
+ },
476
+ "type": "typography"
477
+ }
478
+ },
479
+ "bold": {
480
+ "-3h": {
481
+ "value": {
482
+ "fontFamily": "$core.font.font-family.primary",
483
+ "fontWeight": "$core.font.font-weight.demi",
484
+ "lineHeight": "$core.font.line-height.fixed.0",
485
+ "fontSize": "$core.font.font-size.0",
486
+ "letterSpacing": "$core.font.letter-spacing.normal",
487
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
488
+ "textDecoration": "$core.font.text-decoration.none",
489
+ "textCase": "$core.font.text-case.none"
490
+ },
491
+ "type": "typography"
492
+ },
493
+ "-2h": {
494
+ "value": {
495
+ "fontFamily": "$core.font.font-family.primary",
496
+ "fontWeight": "$core.font.font-weight.demi",
497
+ "lineHeight": "$core.font.line-height.fixed.1",
498
+ "fontSize": "$core.font.font-size.1",
499
+ "letterSpacing": "$core.font.letter-spacing.normal",
500
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
501
+ "textDecoration": "$core.font.text-decoration.none",
502
+ "textCase": "$core.font.text-case.none"
503
+ },
504
+ "type": "typography"
505
+ },
506
+ "-1h": {
507
+ "value": {
508
+ "fontFamily": "$core.font.font-family.primary",
509
+ "fontWeight": "$core.font.font-weight.demi",
510
+ "lineHeight": "$core.font.line-height.fixed.1",
511
+ "fontSize": "$core.font.font-size.2",
512
+ "letterSpacing": "$core.font.letter-spacing.normal",
513
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
514
+ "textDecoration": "$core.font.text-decoration.none",
515
+ "textCase": "$core.font.text-case.none"
516
+ },
517
+ "type": "typography"
518
+ },
519
+ "0h": {
520
+ "value": {
521
+ "fontFamily": "$core.font.font-family.primary",
522
+ "fontWeight": "$core.font.font-weight.demi",
523
+ "lineHeight": "$core.font.line-height.fixed.2",
524
+ "fontSize": "$core.font.font-size.3",
525
+ "letterSpacing": "$core.font.letter-spacing.normal",
526
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
527
+ "textDecoration": "$core.font.text-decoration.none",
528
+ "textCase": "$core.font.text-case.none"
529
+ },
530
+ "type": "typography"
531
+ },
532
+ "1h": {
533
+ "value": {
534
+ "fontFamily": "$core.font.font-family.primary",
535
+ "fontWeight": "$core.font.font-weight.demi",
536
+ "lineHeight": "$core.font.line-height.fixed.3",
537
+ "fontSize": "$core.font.font-size.4",
538
+ "letterSpacing": "$core.font.letter-spacing.normal",
539
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
540
+ "textDecoration": "$core.font.text-decoration.none",
541
+ "textCase": "$core.font.text-case.none"
542
+ },
543
+ "type": "typography"
544
+ },
545
+ "2h": {
546
+ "value": {
547
+ "fontFamily": "$core.font.font-family.primary",
548
+ "fontWeight": "$core.font.font-weight.demi",
549
+ "lineHeight": "$core.font.line-height.fixed.3",
550
+ "fontSize": "$core.font.font-size.5",
551
+ "letterSpacing": "$core.font.letter-spacing.normal",
552
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
553
+ "textDecoration": "$core.font.text-decoration.none",
554
+ "textCase": "$core.font.text-case.none"
555
+ },
556
+ "type": "typography"
557
+ },
558
+ "3h": {
559
+ "value": {
560
+ "fontFamily": "$core.font.font-family.primary",
561
+ "fontWeight": "$core.font.font-weight.demi",
562
+ "lineHeight": "$core.font.line-height.fixed.5",
563
+ "fontSize": "$core.font.font-size.6",
564
+ "letterSpacing": "$core.font.letter-spacing.normal",
565
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
566
+ "textDecoration": "$core.font.text-decoration.none",
567
+ "textCase": "$core.font.text-case.none"
568
+ },
569
+ "type": "typography"
570
+ },
571
+ "4h": {
572
+ "value": {
573
+ "fontFamily": "$core.font.font-family.primary",
574
+ "fontWeight": "$core.font.font-weight.demi",
575
+ "lineHeight": "$core.font.line-height.fixed.7",
576
+ "fontSize": "$core.font.font-size.7",
577
+ "letterSpacing": "$core.font.letter-spacing.normal",
578
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
579
+ "textDecoration": "$core.font.text-decoration.none",
580
+ "textCase": "$core.font.text-case.none"
581
+ },
582
+ "type": "typography"
583
+ },
584
+ "5h": {
585
+ "value": {
586
+ "fontFamily": "$core.font.font-family.primary",
587
+ "fontWeight": "$core.font.font-weight.demi",
588
+ "lineHeight": "$core.font.line-height.fixed.8",
589
+ "fontSize": "$core.font.font-size.8",
590
+ "letterSpacing": "$core.font.letter-spacing.normal",
591
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
592
+ "textDecoration": "$core.font.text-decoration.none",
593
+ "textCase": "$core.font.text-case.none"
594
+ },
595
+ "type": "typography"
596
+ },
597
+ "6h": {
598
+ "value": {
599
+ "fontFamily": "$core.font.font-family.primary",
600
+ "fontWeight": "$core.font.font-weight.demi",
601
+ "lineHeight": "$core.font.line-height.fixed.10",
602
+ "fontSize": "$core.font.font-size.9",
603
+ "letterSpacing": "$core.font.letter-spacing.normal",
604
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
605
+ "textDecoration": "$core.font.text-decoration.none",
606
+ "textCase": "$core.font.text-case.none"
607
+ },
608
+ "type": "typography"
609
+ },
610
+ "7h": {
611
+ "value": {
612
+ "fontFamily": "$core.font.font-family.primary",
613
+ "fontWeight": "$core.font.font-weight.demi",
614
+ "lineHeight": "$core.font.line-height.fixed.10",
615
+ "fontSize": "$core.font.font-size.10",
616
+ "letterSpacing": "$core.font.letter-spacing.normal",
617
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
618
+ "textDecoration": "$core.font.text-decoration.none",
619
+ "textCase": "$core.font.text-case.none"
620
+ },
621
+ "type": "typography"
622
+ },
623
+ "8h": {
624
+ "value": {
625
+ "fontFamily": "$core.font.font-family.primary",
626
+ "fontWeight": "$core.font.font-weight.demi",
627
+ "lineHeight": "$core.font.line-height.fixed.12",
628
+ "fontSize": "$core.font.font-size.11",
629
+ "letterSpacing": "$core.font.letter-spacing.normal",
630
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
631
+ "textDecoration": "$core.font.text-decoration.none",
632
+ "textCase": "$core.font.text-case.none"
633
+ },
634
+ "type": "typography"
635
+ }
636
+ }
637
+ },
638
+ "wrap": {
639
+ "light": {
640
+ "0": {
641
+ "value": {
642
+ "fontFamily": "$core.font.font-family.primary",
643
+ "fontWeight": "$core.font.font-weight.light",
644
+ "lineHeight": "$core.font.line-height.relative.snug",
645
+ "fontSize": "$core.font.font-size.3",
646
+ "letterSpacing": "$core.font.letter-spacing.normal",
647
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
648
+ "textDecoration": "$core.font.text-decoration.none",
649
+ "textCase": "$core.font.text-case.none"
650
+ },
651
+ "type": "typography"
652
+ },
653
+ "1": {
654
+ "value": {
655
+ "fontFamily": "$core.font.font-family.primary",
656
+ "fontWeight": "$core.font.font-weight.light",
657
+ "lineHeight": "$core.font.line-height.relative.snug",
658
+ "fontSize": "$core.font.font-size.4",
659
+ "letterSpacing": "$core.font.letter-spacing.normal",
660
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
661
+ "textDecoration": "$core.font.text-decoration.none",
662
+ "textCase": "$core.font.text-case.none"
663
+ },
664
+ "type": "typography"
665
+ },
666
+ "2": {
667
+ "value": {
668
+ "fontFamily": "$core.font.font-family.primary",
669
+ "fontWeight": "$core.font.font-weight.light",
670
+ "lineHeight": "$core.font.line-height.relative.snug",
671
+ "fontSize": "$core.font.font-size.5",
672
+ "letterSpacing": "$core.font.letter-spacing.normal",
673
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
674
+ "textDecoration": "$core.font.text-decoration.none",
675
+ "textCase": "$core.font.text-case.none"
676
+ },
677
+ "type": "typography"
678
+ },
679
+ "3": {
680
+ "value": {
681
+ "fontFamily": "$core.font.font-family.primary",
682
+ "fontWeight": "$core.font.font-weight.light",
683
+ "lineHeight": "$core.font.line-height.relative.tight",
684
+ "fontSize": "$core.font.font-size.6",
685
+ "letterSpacing": "$core.font.letter-spacing.normal",
686
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
687
+ "textDecoration": "$core.font.text-decoration.none",
688
+ "textCase": "$core.font.text-case.none"
689
+ },
690
+ "type": "typography"
691
+ },
692
+ "4": {
693
+ "value": {
694
+ "fontFamily": "$core.font.font-family.primary",
695
+ "fontWeight": "$core.font.font-weight.light",
696
+ "lineHeight": "$core.font.line-height.relative.tight",
697
+ "fontSize": "$core.font.font-size.7",
698
+ "letterSpacing": "$core.font.letter-spacing.normal",
699
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
700
+ "textDecoration": "$core.font.text-decoration.none",
701
+ "textCase": "$core.font.text-case.none"
702
+ },
703
+ "type": "typography"
704
+ },
705
+ "5": {
706
+ "value": {
707
+ "fontFamily": "$core.font.font-family.primary",
708
+ "fontWeight": "$core.font.font-weight.light",
709
+ "lineHeight": "$core.font.line-height.relative.tight",
710
+ "fontSize": "$core.font.font-size.8",
711
+ "letterSpacing": "$core.font.letter-spacing.normal",
712
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
713
+ "textDecoration": "$core.font.text-decoration.none",
714
+ "textCase": "$core.font.text-case.none"
715
+ },
716
+ "type": "typography"
717
+ },
718
+ "6": {
719
+ "value": {
720
+ "fontFamily": "$core.font.font-family.primary",
721
+ "fontWeight": "$core.font.font-weight.light",
722
+ "lineHeight": "$core.font.line-height.relative.tight",
723
+ "fontSize": "$core.font.font-size.9",
724
+ "letterSpacing": "$core.font.letter-spacing.normal",
725
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
726
+ "textDecoration": "$core.font.text-decoration.none",
727
+ "textCase": "$core.font.text-case.none"
728
+ },
729
+ "type": "typography"
730
+ },
731
+ "7": {
732
+ "value": {
733
+ "fontFamily": "$core.font.font-family.primary",
734
+ "fontWeight": "$core.font.font-weight.light",
735
+ "lineHeight": "$core.font.line-height.relative.tight",
736
+ "fontSize": "$core.font.font-size.10",
737
+ "letterSpacing": "$core.font.letter-spacing.normal",
738
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
739
+ "textDecoration": "$core.font.text-decoration.none",
740
+ "textCase": "$core.font.text-case.none"
741
+ },
742
+ "type": "typography"
743
+ },
744
+ "8": {
745
+ "value": {
746
+ "fontFamily": "$core.font.font-family.primary",
747
+ "fontWeight": "$core.font.font-weight.light",
748
+ "lineHeight": "$core.font.line-height.relative.tight",
749
+ "fontSize": "$core.font.font-size.11",
750
+ "letterSpacing": "$core.font.letter-spacing.normal",
751
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
752
+ "textDecoration": "$core.font.text-decoration.none",
753
+ "textCase": "$core.font.text-case.none"
754
+ },
755
+ "type": "typography"
756
+ },
757
+ "-3": {
758
+ "value": {
759
+ "fontFamily": "$core.font.font-family.primary",
760
+ "fontWeight": "$core.font.font-weight.light",
761
+ "lineHeight": "$core.font.line-height.relative.snug",
762
+ "fontSize": "$core.font.font-size.0",
763
+ "letterSpacing": "$core.font.letter-spacing.normal",
764
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
765
+ "textDecoration": "$core.font.text-decoration.none",
766
+ "textCase": "$core.font.text-case.none"
767
+ },
768
+ "type": "typography"
769
+ },
770
+ "-2": {
771
+ "value": {
772
+ "fontFamily": "$core.font.font-family.primary",
773
+ "fontWeight": "$core.font.font-weight.light",
774
+ "lineHeight": "$core.font.line-height.relative.snug",
775
+ "fontSize": "$core.font.font-size.1",
776
+ "letterSpacing": "$core.font.letter-spacing.normal",
777
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
778
+ "textDecoration": "$core.font.text-decoration.none",
779
+ "textCase": "$core.font.text-case.none"
780
+ },
781
+ "type": "typography"
782
+ },
783
+ "-1": {
784
+ "value": {
785
+ "fontFamily": "$core.font.font-family.primary",
786
+ "fontWeight": "$core.font.font-weight.light",
787
+ "lineHeight": "$core.font.line-height.relative.snug",
788
+ "fontSize": "$core.font.font-size.2",
789
+ "letterSpacing": "$core.font.letter-spacing.normal",
790
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
791
+ "textDecoration": "$core.font.text-decoration.none",
792
+ "textCase": "$core.font.text-case.none"
793
+ },
794
+ "type": "typography"
795
+ }
796
+ },
797
+ "regular": {
798
+ "0": {
799
+ "value": {
800
+ "fontFamily": "$core.font.font-family.primary",
801
+ "fontWeight": "$core.font.font-weight.regular",
802
+ "lineHeight": "$core.font.line-height.relative.snug",
803
+ "fontSize": "$core.font.font-size.3",
804
+ "letterSpacing": "$core.font.letter-spacing.normal",
805
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
806
+ "textDecoration": "$core.font.text-decoration.none",
807
+ "textCase": "$core.font.text-case.none"
808
+ },
809
+ "type": "typography"
810
+ },
811
+ "1": {
812
+ "value": {
813
+ "fontFamily": "$core.font.font-family.primary",
814
+ "fontWeight": "$core.font.font-weight.regular",
815
+ "lineHeight": "$core.font.line-height.relative.snug",
816
+ "fontSize": "$core.font.font-size.4",
817
+ "letterSpacing": "$core.font.letter-spacing.normal",
818
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
819
+ "textDecoration": "$core.font.text-decoration.none",
820
+ "textCase": "$core.font.text-case.none"
821
+ },
822
+ "type": "typography"
823
+ },
824
+ "2": {
825
+ "value": {
826
+ "fontFamily": "$core.font.font-family.primary",
827
+ "fontWeight": "$core.font.font-weight.regular",
828
+ "lineHeight": "$core.font.line-height.relative.snug",
829
+ "fontSize": "$core.font.font-size.5",
830
+ "letterSpacing": "$core.font.letter-spacing.normal",
831
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
832
+ "textDecoration": "$core.font.text-decoration.none",
833
+ "textCase": "$core.font.text-case.none"
834
+ },
835
+ "type": "typography"
836
+ },
837
+ "3": {
838
+ "value": {
839
+ "fontFamily": "$core.font.font-family.primary",
840
+ "fontWeight": "$core.font.font-weight.regular",
841
+ "lineHeight": "$core.font.line-height.relative.tight",
842
+ "fontSize": "$core.font.font-size.6",
843
+ "letterSpacing": "$core.font.letter-spacing.normal",
844
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
845
+ "textDecoration": "$core.font.text-decoration.none",
846
+ "textCase": "$core.font.text-case.none"
847
+ },
848
+ "type": "typography"
849
+ },
850
+ "4": {
851
+ "value": {
852
+ "fontFamily": "$core.font.font-family.primary",
853
+ "fontWeight": "$core.font.font-weight.regular",
854
+ "lineHeight": "$core.font.line-height.relative.tight",
855
+ "fontSize": "$core.font.font-size.7",
856
+ "letterSpacing": "$core.font.letter-spacing.normal",
857
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
858
+ "textDecoration": "$core.font.text-decoration.none",
859
+ "textCase": "$core.font.text-case.none"
860
+ },
861
+ "type": "typography"
862
+ },
863
+ "5": {
864
+ "value": {
865
+ "fontFamily": "$core.font.font-family.primary",
866
+ "fontWeight": "$core.font.font-weight.regular",
867
+ "lineHeight": "$core.font.line-height.relative.tight",
868
+ "fontSize": "$core.font.font-size.8",
869
+ "letterSpacing": "$core.font.letter-spacing.normal",
870
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
871
+ "textDecoration": "$core.font.text-decoration.none",
872
+ "textCase": "$core.font.text-case.none"
873
+ },
874
+ "type": "typography"
875
+ },
876
+ "6": {
877
+ "value": {
878
+ "fontFamily": "$core.font.font-family.primary",
879
+ "fontWeight": "$core.font.font-weight.regular",
880
+ "lineHeight": "$core.font.line-height.relative.tight",
881
+ "fontSize": "$core.font.font-size.9",
882
+ "letterSpacing": "$core.font.letter-spacing.normal",
883
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
884
+ "textDecoration": "$core.font.text-decoration.none",
885
+ "textCase": "$core.font.text-case.none"
886
+ },
887
+ "type": "typography"
888
+ },
889
+ "7": {
890
+ "value": {
891
+ "fontFamily": "$core.font.font-family.primary",
892
+ "fontWeight": "$core.font.font-weight.regular",
893
+ "lineHeight": "$core.font.line-height.relative.tight",
894
+ "fontSize": "$core.font.font-size.10",
895
+ "letterSpacing": "$core.font.letter-spacing.normal",
896
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
897
+ "textDecoration": "$core.font.text-decoration.none",
898
+ "textCase": "$core.font.text-case.none"
899
+ },
900
+ "type": "typography"
901
+ },
902
+ "8": {
903
+ "value": {
904
+ "fontFamily": "$core.font.font-family.primary",
905
+ "fontWeight": "$core.font.font-weight.regular",
906
+ "lineHeight": "$core.font.line-height.relative.tight",
907
+ "fontSize": "$core.font.font-size.11",
908
+ "letterSpacing": "$core.font.letter-spacing.normal",
909
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
910
+ "textDecoration": "$core.font.text-decoration.none",
911
+ "textCase": "$core.font.text-case.none"
912
+ },
913
+ "type": "typography"
914
+ },
915
+ "-3": {
916
+ "value": {
917
+ "fontFamily": "$core.font.font-family.primary",
918
+ "fontWeight": "$core.font.font-weight.regular",
919
+ "lineHeight": "$core.font.line-height.relative.snug",
920
+ "fontSize": "$core.font.font-size.0",
921
+ "letterSpacing": "$core.font.letter-spacing.normal",
922
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
923
+ "textDecoration": "$core.font.text-decoration.none",
924
+ "textCase": "$core.font.text-case.none"
925
+ },
926
+ "type": "typography"
927
+ },
928
+ "-2": {
929
+ "value": {
930
+ "fontFamily": "$core.font.font-family.primary",
931
+ "fontWeight": "$core.font.font-weight.regular",
932
+ "lineHeight": "$core.font.line-height.relative.snug",
933
+ "fontSize": "$core.font.font-size.1",
934
+ "letterSpacing": "$core.font.letter-spacing.normal",
935
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
936
+ "textDecoration": "$core.font.text-decoration.none",
937
+ "textCase": "$core.font.text-case.none"
938
+ },
939
+ "type": "typography"
940
+ },
941
+ "-1": {
942
+ "value": {
943
+ "fontFamily": "$core.font.font-family.primary",
944
+ "fontWeight": "$core.font.font-weight.regular",
945
+ "lineHeight": "$core.font.line-height.relative.snug",
946
+ "fontSize": "$core.font.font-size.2",
947
+ "letterSpacing": "$core.font.letter-spacing.normal",
948
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
949
+ "textDecoration": "$core.font.text-decoration.none",
950
+ "textCase": "$core.font.text-case.none"
951
+ },
952
+ "type": "typography"
953
+ }
954
+ },
955
+ "medium": {
956
+ "0": {
957
+ "value": {
958
+ "fontFamily": "$core.font.font-family.primary",
959
+ "fontWeight": "$core.font.font-weight.medium",
960
+ "lineHeight": "$core.font.line-height.relative.snug",
961
+ "fontSize": "$core.font.font-size.3",
962
+ "letterSpacing": "$core.font.letter-spacing.normal",
963
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
964
+ "textDecoration": "$core.font.text-decoration.none",
965
+ "textCase": "$core.font.text-case.none"
966
+ },
967
+ "type": "typography"
968
+ },
969
+ "1": {
970
+ "value": {
971
+ "fontFamily": "$core.font.font-family.primary",
972
+ "fontWeight": "$core.font.font-weight.medium",
973
+ "lineHeight": "$core.font.line-height.relative.snug",
974
+ "fontSize": "$core.font.font-size.4",
975
+ "letterSpacing": "$core.font.letter-spacing.normal",
976
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
977
+ "textDecoration": "$core.font.text-decoration.none",
978
+ "textCase": "$core.font.text-case.none"
979
+ },
980
+ "type": "typography"
981
+ },
982
+ "2": {
983
+ "value": {
984
+ "fontFamily": "$core.font.font-family.primary",
985
+ "fontWeight": "$core.font.font-weight.medium",
986
+ "lineHeight": "$core.font.line-height.relative.snug",
987
+ "fontSize": "$core.font.font-size.5",
988
+ "letterSpacing": "$core.font.letter-spacing.normal",
989
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
990
+ "textDecoration": "$core.font.text-decoration.none",
991
+ "textCase": "$core.font.text-case.none"
992
+ },
993
+ "type": "typography"
994
+ },
995
+ "3": {
996
+ "value": {
997
+ "fontFamily": "$core.font.font-family.primary",
998
+ "fontWeight": "$core.font.font-weight.medium",
999
+ "lineHeight": "$core.font.line-height.relative.tight",
1000
+ "fontSize": "$core.font.font-size.6",
1001
+ "letterSpacing": "$core.font.letter-spacing.normal",
1002
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1003
+ "textDecoration": "$core.font.text-decoration.none",
1004
+ "textCase": "$core.font.text-case.none"
1005
+ },
1006
+ "type": "typography"
1007
+ },
1008
+ "4": {
1009
+ "value": {
1010
+ "fontFamily": "$core.font.font-family.primary",
1011
+ "fontWeight": "$core.font.font-weight.medium",
1012
+ "lineHeight": "$core.font.line-height.relative.tight",
1013
+ "fontSize": "$core.font.font-size.7",
1014
+ "letterSpacing": "$core.font.letter-spacing.normal",
1015
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1016
+ "textDecoration": "$core.font.text-decoration.none",
1017
+ "textCase": "$core.font.text-case.none"
1018
+ },
1019
+ "type": "typography"
1020
+ },
1021
+ "5": {
1022
+ "value": {
1023
+ "fontFamily": "$core.font.font-family.primary",
1024
+ "fontWeight": "$core.font.font-weight.medium",
1025
+ "lineHeight": "$core.font.line-height.relative.tight",
1026
+ "fontSize": "$core.font.font-size.8",
1027
+ "letterSpacing": "$core.font.letter-spacing.normal",
1028
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1029
+ "textDecoration": "$core.font.text-decoration.none",
1030
+ "textCase": "$core.font.text-case.none"
1031
+ },
1032
+ "type": "typography"
1033
+ },
1034
+ "6": {
1035
+ "value": {
1036
+ "fontFamily": "$core.font.font-family.primary",
1037
+ "fontWeight": "$core.font.font-weight.medium",
1038
+ "lineHeight": "$core.font.line-height.relative.tight",
1039
+ "fontSize": "$core.font.font-size.9",
1040
+ "letterSpacing": "$core.font.letter-spacing.normal",
1041
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1042
+ "textDecoration": "$core.font.text-decoration.none",
1043
+ "textCase": "$core.font.text-case.none"
1044
+ },
1045
+ "type": "typography"
1046
+ },
1047
+ "7": {
1048
+ "value": {
1049
+ "fontFamily": "$core.font.font-family.primary",
1050
+ "fontWeight": "$core.font.font-weight.medium",
1051
+ "lineHeight": "$core.font.line-height.relative.tight",
1052
+ "fontSize": "$core.font.font-size.10",
1053
+ "letterSpacing": "$core.font.letter-spacing.normal",
1054
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1055
+ "textDecoration": "$core.font.text-decoration.none",
1056
+ "textCase": "$core.font.text-case.none"
1057
+ },
1058
+ "type": "typography"
1059
+ },
1060
+ "8": {
1061
+ "value": {
1062
+ "fontFamily": "$core.font.font-family.primary",
1063
+ "fontWeight": "$core.font.font-weight.medium",
1064
+ "lineHeight": "$core.font.line-height.relative.tight",
1065
+ "fontSize": "$core.font.font-size.11",
1066
+ "letterSpacing": "$core.font.letter-spacing.normal",
1067
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1068
+ "textDecoration": "$core.font.text-decoration.none",
1069
+ "textCase": "$core.font.text-case.none"
1070
+ },
1071
+ "type": "typography"
1072
+ },
1073
+ "-3": {
1074
+ "value": {
1075
+ "fontFamily": "$core.font.font-family.primary",
1076
+ "fontWeight": "$core.font.font-weight.medium",
1077
+ "lineHeight": "$core.font.line-height.relative.snug",
1078
+ "fontSize": "$core.font.font-size.0",
1079
+ "letterSpacing": "$core.font.letter-spacing.normal",
1080
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1081
+ "textDecoration": "$core.font.text-decoration.none",
1082
+ "textCase": "$core.font.text-case.none"
1083
+ },
1084
+ "type": "typography"
1085
+ },
1086
+ "-2": {
1087
+ "value": {
1088
+ "fontFamily": "$core.font.font-family.primary",
1089
+ "fontWeight": "$core.font.font-weight.medium",
1090
+ "lineHeight": "$core.font.line-height.relative.snug",
1091
+ "fontSize": "$core.font.font-size.1",
1092
+ "letterSpacing": "$core.font.letter-spacing.normal",
1093
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1094
+ "textDecoration": "$core.font.text-decoration.none",
1095
+ "textCase": "$core.font.text-case.none"
1096
+ },
1097
+ "type": "typography"
1098
+ },
1099
+ "-1": {
1100
+ "value": {
1101
+ "fontFamily": "$core.font.font-family.primary",
1102
+ "fontWeight": "$core.font.font-weight.medium",
1103
+ "lineHeight": "$core.font.line-height.relative.snug",
1104
+ "fontSize": "$core.font.font-size.2",
1105
+ "letterSpacing": "$core.font.letter-spacing.normal",
1106
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1107
+ "textDecoration": "$core.font.text-decoration.none",
1108
+ "textCase": "$core.font.text-case.none"
1109
+ },
1110
+ "type": "typography"
1111
+ }
1112
+ },
1113
+ "bold": {
1114
+ "0": {
1115
+ "value": {
1116
+ "fontFamily": "$core.font.font-family.primary",
1117
+ "fontWeight": "$core.font.font-weight.demi",
1118
+ "lineHeight": "$core.font.line-height.relative.snug",
1119
+ "fontSize": "$core.font.font-size.3",
1120
+ "letterSpacing": "$core.font.letter-spacing.normal",
1121
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1122
+ "textDecoration": "$core.font.text-decoration.none",
1123
+ "textCase": "$core.font.text-case.none"
1124
+ },
1125
+ "type": "typography"
1126
+ },
1127
+ "1": {
1128
+ "value": {
1129
+ "fontFamily": "$core.font.font-family.primary",
1130
+ "fontWeight": "$core.font.font-weight.demi",
1131
+ "lineHeight": "$core.font.line-height.relative.snug",
1132
+ "fontSize": "$core.font.font-size.4",
1133
+ "letterSpacing": "$core.font.letter-spacing.normal",
1134
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1135
+ "textDecoration": "$core.font.text-decoration.none",
1136
+ "textCase": "$core.font.text-case.none"
1137
+ },
1138
+ "type": "typography"
1139
+ },
1140
+ "2": {
1141
+ "value": {
1142
+ "fontFamily": "$core.font.font-family.primary",
1143
+ "fontWeight": "$core.font.font-weight.demi",
1144
+ "lineHeight": "$core.font.line-height.relative.snug",
1145
+ "fontSize": "$core.font.font-size.5",
1146
+ "letterSpacing": "$core.font.letter-spacing.normal",
1147
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1148
+ "textDecoration": "$core.font.text-decoration.none",
1149
+ "textCase": "$core.font.text-case.none"
1150
+ },
1151
+ "type": "typography"
1152
+ },
1153
+ "3": {
1154
+ "value": {
1155
+ "fontFamily": "$core.font.font-family.primary",
1156
+ "fontWeight": "$core.font.font-weight.demi",
1157
+ "lineHeight": "$core.font.line-height.relative.tight",
1158
+ "fontSize": "$core.font.font-size.6",
1159
+ "letterSpacing": "$core.font.letter-spacing.normal",
1160
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1161
+ "textDecoration": "$core.font.text-decoration.none",
1162
+ "textCase": "$core.font.text-case.none"
1163
+ },
1164
+ "type": "typography"
1165
+ },
1166
+ "4": {
1167
+ "value": {
1168
+ "fontFamily": "$core.font.font-family.primary",
1169
+ "fontWeight": "$core.font.font-weight.demi",
1170
+ "lineHeight": "$core.font.line-height.relative.tight",
1171
+ "fontSize": "$core.font.font-size.7",
1172
+ "letterSpacing": "$core.font.letter-spacing.normal",
1173
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1174
+ "textDecoration": "$core.font.text-decoration.none",
1175
+ "textCase": "$core.font.text-case.none"
1176
+ },
1177
+ "type": "typography"
1178
+ },
1179
+ "5": {
1180
+ "value": {
1181
+ "fontFamily": "$core.font.font-family.primary",
1182
+ "fontWeight": "$core.font.font-weight.demi",
1183
+ "lineHeight": "$core.font.line-height.relative.tight",
1184
+ "fontSize": "$core.font.font-size.8",
1185
+ "letterSpacing": "$core.font.letter-spacing.normal",
1186
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1187
+ "textDecoration": "$core.font.text-decoration.none",
1188
+ "textCase": "$core.font.text-case.none"
1189
+ },
1190
+ "type": "typography"
1191
+ },
1192
+ "6": {
1193
+ "value": {
1194
+ "fontFamily": "$core.font.font-family.primary",
1195
+ "fontWeight": "$core.font.font-weight.demi",
1196
+ "lineHeight": "$core.font.line-height.relative.tight",
1197
+ "fontSize": "$core.font.font-size.9",
1198
+ "letterSpacing": "$core.font.letter-spacing.normal",
1199
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1200
+ "textDecoration": "$core.font.text-decoration.none",
1201
+ "textCase": "$core.font.text-case.none"
1202
+ },
1203
+ "type": "typography"
1204
+ },
1205
+ "7": {
1206
+ "value": {
1207
+ "fontFamily": "$core.font.font-family.primary",
1208
+ "fontWeight": "$core.font.font-weight.demi",
1209
+ "lineHeight": "$core.font.line-height.relative.tight",
1210
+ "fontSize": "$core.font.font-size.10",
1211
+ "letterSpacing": "$core.font.letter-spacing.normal",
1212
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1213
+ "textDecoration": "$core.font.text-decoration.none",
1214
+ "textCase": "$core.font.text-case.none"
1215
+ },
1216
+ "type": "typography"
1217
+ },
1218
+ "8": {
1219
+ "value": {
1220
+ "fontFamily": "$core.font.font-family.primary",
1221
+ "fontWeight": "$core.font.font-weight.demi",
1222
+ "lineHeight": "$core.font.line-height.relative.tight",
1223
+ "fontSize": "$core.font.font-size.11",
1224
+ "letterSpacing": "$core.font.letter-spacing.normal",
1225
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1226
+ "textDecoration": "$core.font.text-decoration.none",
1227
+ "textCase": "$core.font.text-case.none"
1228
+ },
1229
+ "type": "typography"
1230
+ },
1231
+ "-3": {
1232
+ "value": {
1233
+ "fontFamily": "$core.font.font-family.primary",
1234
+ "fontWeight": "$core.font.font-weight.demi",
1235
+ "lineHeight": "$core.font.line-height.relative.snug",
1236
+ "fontSize": "$core.font.font-size.0",
1237
+ "letterSpacing": "$core.font.letter-spacing.normal",
1238
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1239
+ "textDecoration": "$core.font.text-decoration.none",
1240
+ "textCase": "$core.font.text-case.none"
1241
+ },
1242
+ "type": "typography"
1243
+ },
1244
+ "-2": {
1245
+ "value": {
1246
+ "fontFamily": "$core.font.font-family.primary",
1247
+ "fontWeight": "$core.font.font-weight.demi",
1248
+ "lineHeight": "$core.font.line-height.relative.snug",
1249
+ "fontSize": "$core.font.font-size.1",
1250
+ "letterSpacing": "$core.font.letter-spacing.normal",
1251
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1252
+ "textDecoration": "$core.font.text-decoration.none",
1253
+ "textCase": "$core.font.text-case.none"
1254
+ },
1255
+ "type": "typography"
1256
+ },
1257
+ "-1": {
1258
+ "value": {
1259
+ "fontFamily": "$core.font.font-family.primary",
1260
+ "fontWeight": "$core.font.font-weight.demi",
1261
+ "lineHeight": "$core.font.line-height.relative.snug",
1262
+ "fontSize": "$core.font.font-size.2",
1263
+ "letterSpacing": "$core.font.letter-spacing.normal",
1264
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1265
+ "textDecoration": "$core.font.text-decoration.none",
1266
+ "textCase": "$core.font.text-case.none"
1267
+ },
1268
+ "type": "typography"
1269
+ }
1270
+ }
1271
+ },
1272
+ "hierarchy": {
1273
+ "display-1": {
1274
+ "value": "$semantic.font.wrap.regular.8",
1275
+ "type": "typography"
1276
+ },
1277
+ "display-2": {
1278
+ "value": "$semantic.font.wrap.regular.7",
1279
+ "type": "typography"
1280
+ },
1281
+ "heading-1": {
1282
+ "value": "$semantic.font.wrap.regular.6",
1283
+ "type": "typography"
1284
+ },
1285
+ "heading-2": {
1286
+ "value": "$semantic.font.wrap.regular.5",
1287
+ "type": "typography"
1288
+ },
1289
+ "heading-3": {
1290
+ "value": "$semantic.font.wrap.regular.4",
1291
+ "type": "typography"
1292
+ },
1293
+ "heading-4": {
1294
+ "value": "$semantic.font.wrap.regular.3",
1295
+ "type": "typography"
1296
+ },
1297
+ "heading-5": {
1298
+ "value": "$semantic.font.wrap.regular.2",
1299
+ "type": "typography"
1300
+ },
1301
+ "heading-6": {
1302
+ "value": "$semantic.font.wrap.regular.1",
1303
+ "type": "typography"
1304
+ },
1305
+ "body-1": {
1306
+ "value": "$semantic.font.wrap.regular.0",
1307
+ "type": "typography"
1308
+ },
1309
+ "body-2": {
1310
+ "value": "$semantic.font.wrap.regular.-1",
1311
+ "type": "typography"
1312
+ },
1313
+ "overline": {
1314
+ "value": {
1315
+ "fontFamilies": "$core.font.font-family.primary",
1316
+ "fontWeights": "$core.font.font-weight.bold",
1317
+ "fontSizes": "$core.font.font-size.2",
1318
+ "lineHeights": "$core.font.line-height.fixed.1",
1319
+ "letterSpacing": "$core.font.letter-spacing.normal",
1320
+ "paragraphSpacing": "$core.font.paragraph-spacing.normal",
1321
+ "textCase": "$core.font.text-case.uppercase",
1322
+ "textDecoration": "$core.font.text-decoration.none",
1323
+ "fontFamily": "$core.font.font-family.primary",
1324
+ "fontWeight": "$core.font.font-weight.bold",
1325
+ "lineHeight": "$core.font.line-height.fixed.1",
1326
+ "fontSize": "$core.font.font-size.2"
1327
+ },
1328
+ "type": "typography"
1329
+ },
1330
+ "caption": {
1331
+ "value": "$semantic.font.wrap.regular.-2",
1332
+ "type": "typography"
1333
+ }
1334
+ }
1335
+ },
1336
+ "border": {
1337
+ "border-radius": {
1338
+ "sharp": {
1339
+ "value": "$core.border.border-radius.none",
1340
+ "type": "borderRadius"
1341
+ },
1342
+ "round": {
1343
+ "value": "$core.border.border-radius.1",
1344
+ "type": "borderRadius"
1345
+ },
1346
+ "circular": {
1347
+ "value": "$core.border.border-radius.half",
1348
+ "type": "borderRadius"
1349
+ },
1350
+ "pill": {
1351
+ "value": "$core.border.border-radius.full",
1352
+ "type": "borderRadius"
1353
+ }
1354
+ }
1355
+ },
1356
+ "ui": {
1357
+ "border": {
1358
+ "border-radius": {
1359
+ "value": "$semantic.border.border-radius.sharp",
1360
+ "type": "borderRadius"
1361
+ }
1362
+ },
1363
+ "color": {
1364
+ "brand": {
1365
+ "default": {
1366
+ "light": {
1367
+ "value": "$core.color.palette.high-saturation.blue.h-bb-060",
1368
+ "type": "color"
1369
+ },
1370
+ "dark": {
1371
+ "value": "$core.color.palette.vibrant.blue.v-bb-160",
1372
+ "type": "color"
1373
+ }
1374
+ },
1375
+ "hover": {
1376
+ "light": {
1377
+ "value": "$core.color.palette.high-saturation.blue.h-bb-070",
1378
+ "type": "color"
1379
+ },
1380
+ "dark": {
1381
+ "value": "$core.color.palette.high-saturation.blue.h-bb-060",
1382
+ "type": "color"
1383
+ }
1384
+ },
1385
+ "press": {
1386
+ "light": {
1387
+ "value": "$core.color.palette.high-saturation.blue.h-bb-080",
1388
+ "type": "color"
1389
+ },
1390
+ "dark": {
1391
+ "value": "$core.color.palette.high-saturation.blue.h-bb-070",
1392
+ "type": "color"
1393
+ }
1394
+ }
1395
+ },
1396
+ "background": {
1397
+ "light": {
1398
+ "value": "$core.color.neutral.blk-005",
1399
+ "type": "color"
1400
+ },
1401
+ "dark": {
1402
+ "value": "$core.color.neutral.blk-190",
1403
+ "type": "color"
1404
+ }
1405
+ },
1406
+ "foreground": {
1407
+ "1": {
1408
+ "light": {
1409
+ "value": "$core.color.neutral.blk-000",
1410
+ "type": "color"
1411
+ },
1412
+ "dark": {
1413
+ "value": "$core.color.neutral.blk-200",
1414
+ "type": "color"
1415
+ }
1416
+ },
1417
+ "2": {
1418
+ "light": {
1419
+ "value": "$core.color.neutral.blk-010",
1420
+ "type": "color"
1421
+ },
1422
+ "dark": {
1423
+ "value": "$core.color.neutral.blk-210",
1424
+ "type": "color"
1425
+ }
1426
+ },
1427
+ "3": {
1428
+ "light": {
1429
+ "value": "$core.color.neutral.blk-020",
1430
+ "type": "color"
1431
+ },
1432
+ "dark": {
1433
+ "value": "$core.color.neutral.blk-220",
1434
+ "type": "color"
1435
+ }
1436
+ },
1437
+ "current": {
1438
+ "light": {
1439
+ "value": "$core.color.palette.high-saturation.blue.h-bb-010",
1440
+ "type": "color"
1441
+ },
1442
+ "dark": {
1443
+ "value": "#214155",
1444
+ "type": "color"
1445
+ }
1446
+ }
1447
+ },
1448
+ "text": {
1449
+ "1": {
1450
+ "light": {
1451
+ "value": "$core.color.neutral.blk-220",
1452
+ "type": "color"
1453
+ },
1454
+ "dark": {
1455
+ "value": "$core.color.neutral.blk-000",
1456
+ "type": "color"
1457
+ }
1458
+ },
1459
+ "2": {
1460
+ "light": {
1461
+ "value": "$core.color.neutral.blk-170",
1462
+ "type": "color"
1463
+ },
1464
+ "dark": {
1465
+ "value": "$core.color.neutral.blk-060",
1466
+ "type": "color"
1467
+ }
1468
+ },
1469
+ "3": {
1470
+ "light": {
1471
+ "value": "$core.color.neutral.blk-140",
1472
+ "type": "color"
1473
+ },
1474
+ "dark": {
1475
+ "value": "$core.color.neutral.blk-090",
1476
+ "type": "color"
1477
+ }
1478
+ },
1479
+ "inverse": {
1480
+ "light": {
1481
+ "value": "$core.color.neutral.blk-000",
1482
+ "type": "color"
1483
+ },
1484
+ "dark": {
1485
+ "value": "$core.color.neutral.blk-220",
1486
+ "type": "color"
1487
+ }
1488
+ },
1489
+ "link": {
1490
+ "light": {
1491
+ "value": "$core.color.palette.high-saturation.blue.h-bb-070",
1492
+ "type": "color"
1493
+ },
1494
+ "dark": {
1495
+ "value": "$core.color.palette.dark.blue.d-bb-420",
1496
+ "type": "color"
1497
+ }
1498
+ }
1499
+ },
1500
+ "border": {
1501
+ "1": {
1502
+ "light": {
1503
+ "value": "$core.color.neutral.blk-050",
1504
+ "type": "color"
1505
+ },
1506
+ "dark": {
1507
+ "value": "$core.color.neutral.blk-160",
1508
+ "type": "color"
1509
+ }
1510
+ },
1511
+ "2": {
1512
+ "light": {
1513
+ "value": "$core.color.neutral.blk-040",
1514
+ "type": "color"
1515
+ },
1516
+ "dark": {
1517
+ "value": "$core.color.neutral.blk-170",
1518
+ "type": "color"
1519
+ }
1520
+ },
1521
+ "3": {
1522
+ "light": {
1523
+ "value": "$core.color.neutral.blk-030",
1524
+ "type": "color"
1525
+ },
1526
+ "dark": {
1527
+ "value": "$core.color.neutral.blk-180",
1528
+ "type": "color"
1529
+ }
1530
+ },
1531
+ "input": {
1532
+ "light": {
1533
+ "value": "$core.color.neutral.blk-100",
1534
+ "type": "color"
1535
+ },
1536
+ "dark": {
1537
+ "value": "$core.color.neutral.blk-130",
1538
+ "type": "color"
1539
+ }
1540
+ }
1541
+ },
1542
+ "info": {
1543
+ "default": {
1544
+ "light": {
1545
+ "value": "$core.color.palette.high-saturation.blue.h-bb-070",
1546
+ "type": "color"
1547
+ },
1548
+ "dark": {
1549
+ "value": "$core.color.palette.dark.blue.d-bb-420",
1550
+ "type": "color"
1551
+ }
1552
+ },
1553
+ "hover": {
1554
+ "light": {
1555
+ "value": "$core.color.palette.high-saturation.blue.h-bb-080",
1556
+ "type": "color"
1557
+ },
1558
+ "dark": {
1559
+ "value": "$core.color.palette.vibrant.blue.v-bb-140",
1560
+ "type": "color"
1561
+ }
1562
+ },
1563
+ "press": {
1564
+ "light": {
1565
+ "value": "$core.color.palette.high-saturation.blue.h-bb-090",
1566
+ "type": "color"
1567
+ },
1568
+ "dark": {
1569
+ "value": "$core.color.palette.vibrant.blue.v-bb-160",
1570
+ "type": "color"
1571
+ }
1572
+ }
1573
+ },
1574
+ "success": {
1575
+ "default": {
1576
+ "light": {
1577
+ "value": "$core.color.palette.high-saturation.green.h-gg-060",
1578
+ "type": "color"
1579
+ },
1580
+ "dark": {
1581
+ "value": "$core.color.palette.dark.green.d-gg-420",
1582
+ "type": "color"
1583
+ }
1584
+ },
1585
+ "hover": {
1586
+ "light": {
1587
+ "value": "$core.color.palette.high-saturation.green.h-gg-070",
1588
+ "type": "color"
1589
+ },
1590
+ "dark": {
1591
+ "value": "$core.color.palette.vibrant.green.v-gg-140",
1592
+ "type": "color"
1593
+ }
1594
+ },
1595
+ "press": {
1596
+ "light": {
1597
+ "value": "$core.color.palette.high-saturation.green.h-gg-080",
1598
+ "type": "color"
1599
+ },
1600
+ "dark": {
1601
+ "value": "$core.color.palette.vibrant.green.v-gg-160",
1602
+ "type": "color"
1603
+ }
1604
+ }
1605
+ },
1606
+ "warning": {
1607
+ "default": {
1608
+ "light": {
1609
+ "value": "$core.color.palette.high-saturation.yellow.h-yy-060",
1610
+ "type": "color"
1611
+ },
1612
+ "dark": {
1613
+ "value": "$core.color.palette.dark.yellow.d-yy-420",
1614
+ "type": "color"
1615
+ }
1616
+ },
1617
+ "hover": {
1618
+ "light": {
1619
+ "value": "$core.color.palette.high-saturation.yellow.h-yy-070",
1620
+ "type": "color"
1621
+ },
1622
+ "dark": {
1623
+ "value": "$core.color.palette.vibrant.yellow.v-yy-140",
1624
+ "type": "color"
1625
+ }
1626
+ },
1627
+ "press": {
1628
+ "light": {
1629
+ "value": "$core.color.palette.high-saturation.yellow.h-yy-080",
1630
+ "type": "color"
1631
+ },
1632
+ "dark": {
1633
+ "value": "$core.color.palette.vibrant.yellow.v-yy-160",
1634
+ "type": "color"
1635
+ }
1636
+ }
1637
+ },
1638
+ "danger": {
1639
+ "default": {
1640
+ "light": {
1641
+ "value": "$core.color.palette.high-saturation.red.h-rr-060",
1642
+ "type": "color"
1643
+ },
1644
+ "dark": {
1645
+ "value": "$core.color.palette.dark.red.d-rr-420",
1646
+ "type": "color"
1647
+ }
1648
+ },
1649
+ "hover": {
1650
+ "light": {
1651
+ "value": "$core.color.palette.high-saturation.red.h-rr-070",
1652
+ "type": "color"
1653
+ },
1654
+ "dark": {
1655
+ "value": "$core.color.palette.vibrant.red.v-rr-140",
1656
+ "type": "color"
1657
+ }
1658
+ },
1659
+ "press": {
1660
+ "light": {
1661
+ "value": "$core.color.palette.high-saturation.red.h-rr-080",
1662
+ "type": "color"
1663
+ },
1664
+ "dark": {
1665
+ "value": "$core.color.palette.vibrant.red.v-rr-160",
1666
+ "type": "color"
1667
+ }
1668
+ }
1669
+ },
1670
+ "inverse": {
1671
+ "light": {
1672
+ "value": "$core.color.neutral.blk-190",
1673
+ "type": "color"
1674
+ },
1675
+ "dark": {
1676
+ "value": "$core.color.neutral.blk-005",
1677
+ "type": "color"
1678
+ }
1679
+ }
1680
+ }
1681
+ },
1682
+ "spacing": {
1683
+ "base": {
1684
+ "value": "$core.spacing.0",
1685
+ "type": "spacing"
1686
+ },
1687
+ "xs": {
1688
+ "value": "$semantic.spacing.base * 2",
1689
+ "type": "spacing"
1690
+ },
1691
+ "sm": {
1692
+ "value": "$semantic.spacing.base * 4",
1693
+ "type": "spacing"
1694
+ },
1695
+ "md": {
1696
+ "value": "$semantic.spacing.base *6",
1697
+ "type": "spacing"
1698
+ },
1699
+ "lg": {
1700
+ "value": "$semantic.spacing.base * 8",
1701
+ "type": "spacing"
1702
+ },
1703
+ "xl": {
1704
+ "value": "$semantic.spacing.base *10",
1705
+ "type": "spacing"
1706
+ }
1707
+ }
1708
+ }
1709
+ }