@esri/calcite-design-tokens 1.0.0 → 1.1.0-next.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 (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 +13 -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,2508 @@
1
+ {
2
+ "color": {
3
+ "brand": {
4
+ "default": {
5
+ "value": "$semantic.ui.color.brand.default.light",
6
+ "type": "color"
7
+ },
8
+ "hover": {
9
+ "value": "$semantic.ui.color.brand.hover.light",
10
+ "type": "color"
11
+ },
12
+ "press": {
13
+ "value": "$semantic.ui.color.brand.press.light",
14
+ "type": "color"
15
+ }
16
+ },
17
+ "background": {
18
+ "value": "$semantic.ui.color.background.light",
19
+ "type": "color"
20
+ },
21
+ "foreground": {
22
+ "1": {
23
+ "value": "$semantic.ui.color.foreground.1.light",
24
+ "type": "color"
25
+ },
26
+ "2": {
27
+ "value": "$semantic.ui.color.foreground.2.light",
28
+ "type": "color"
29
+ },
30
+ "3": {
31
+ "value": "{semantic.ui.color.foreground.3.light}",
32
+ "type": "color"
33
+ }
34
+ },
35
+ "text": {
36
+ "1": {
37
+ "value": "$semantic.ui.color.text.1.light",
38
+ "type": "color"
39
+ },
40
+ "2": {
41
+ "value": "$semantic.ui.color.text.2.light",
42
+ "type": "color"
43
+ },
44
+ "3": {
45
+ "value": "$semantic.ui.color.text.3.light",
46
+ "type": "color"
47
+ },
48
+ "inverse": {
49
+ "value": "$semantic.ui.color.text.inverse.light",
50
+ "type": "color"
51
+ },
52
+ "link": {
53
+ "value": "$semantic.ui.color.text.link.light",
54
+ "type": "color"
55
+ }
56
+ },
57
+ "border": {
58
+ "1": {
59
+ "value": "$semantic.ui.color.border.1.light",
60
+ "type": "color"
61
+ },
62
+ "2": {
63
+ "value": "$semantic.ui.color.border.2.light",
64
+ "type": "color"
65
+ },
66
+ "3": {
67
+ "value": "$semantic.ui.color.border.3.light",
68
+ "type": "color"
69
+ },
70
+ "input": {
71
+ "value": "$semantic.ui.color.border.input.light",
72
+ "type": "color"
73
+ }
74
+ },
75
+ "info": {
76
+ "default": {
77
+ "value": "$semantic.ui.color.info.default.light",
78
+ "type": "color"
79
+ },
80
+ "hover": {
81
+ "value": "$semantic.ui.color.info.hover.light",
82
+ "type": "color"
83
+ },
84
+ "press": {
85
+ "value": "$semantic.ui.color.info.press.light",
86
+ "type": "color"
87
+ }
88
+ },
89
+ "success": {
90
+ "default": {
91
+ "value": "$semantic.ui.color.success.default.light",
92
+ "type": "color"
93
+ },
94
+ "hover": {
95
+ "value": "$semantic.ui.color.success.hover.light",
96
+ "type": "color"
97
+ },
98
+ "press": {
99
+ "value": "$semantic.ui.color.success.press.light",
100
+ "type": "color"
101
+ }
102
+ },
103
+ "warning": {
104
+ "default": {
105
+ "value": "$semantic.ui.color.warning.default.light",
106
+ "type": "color"
107
+ },
108
+ "hover": {
109
+ "value": "$semantic.ui.color.warning.hover.light",
110
+ "type": "color"
111
+ },
112
+ "press": {
113
+ "value": "$semantic.ui.color.warning.press.light",
114
+ "type": "color"
115
+ }
116
+ },
117
+ "danger": {
118
+ "default": {
119
+ "value": "$semantic.ui.color.danger.default.light",
120
+ "type": "color"
121
+ },
122
+ "hover": {
123
+ "value": "$semantic.ui.color.danger.hover.light",
124
+ "type": "color"
125
+ },
126
+ "press": {
127
+ "value": "$semantic.ui.color.danger.press.light",
128
+ "type": "color"
129
+ }
130
+ },
131
+ "inverse": {
132
+ "default": {
133
+ "value": "$semantic.ui.color.inverse.light",
134
+ "type": "color"
135
+ }
136
+ },
137
+ "component": {
138
+ "avatar": {
139
+ "font": {
140
+ "value": "$avatar.font.light",
141
+ "type": "color"
142
+ },
143
+ "icon": {
144
+ "value": "$avatar.icon.light",
145
+ "type": "color"
146
+ },
147
+ "background": {
148
+ "default": {
149
+ "value": "$avatar.background.default.light",
150
+ "type": "color"
151
+ },
152
+ "red": {
153
+ "value": "$avatar.background.red.light",
154
+ "type": "color"
155
+ },
156
+ "teal": {
157
+ "value": "$avatar.background.teal.light",
158
+ "type": "color"
159
+ },
160
+ "blue": {
161
+ "value": "$avatar.background.blue.light",
162
+ "type": "color"
163
+ },
164
+ "green": {
165
+ "value": "$avatar.background.green.light",
166
+ "type": "color"
167
+ },
168
+ "yellow": {
169
+ "value": "$avatar.background.yellow.light",
170
+ "type": "color"
171
+ }
172
+ }
173
+ },
174
+ "checkbox": {
175
+ "font": {
176
+ "value": "$checkbox.font.light",
177
+ "type": "color"
178
+ },
179
+ "background": {
180
+ "default": {
181
+ "value": "$checkbox.background.default.light",
182
+ "type": "color"
183
+ },
184
+ "selected": {
185
+ "value": "$checkbox.background.selected.light",
186
+ "type": "color"
187
+ }
188
+ },
189
+ "icon": {
190
+ "value": "$checkbox.icon.light",
191
+ "type": "color"
192
+ },
193
+ "border": {
194
+ "value": "$checkbox.border.light",
195
+ "type": "color"
196
+ }
197
+ },
198
+ "radio": {
199
+ "font": {
200
+ "value": "$radio.font.light",
201
+ "type": "color"
202
+ },
203
+ "background": {
204
+ "value": "$radio.background.light",
205
+ "type": "color"
206
+ },
207
+ "border": {
208
+ "unchecked": {
209
+ "value": "$radio.border.unchecked.light",
210
+ "type": "color"
211
+ },
212
+ "checked": {
213
+ "value": "$radio.border.checked.light",
214
+ "type": "color"
215
+ }
216
+ }
217
+ },
218
+ "chip": {
219
+ "font": {
220
+ "clear": {
221
+ "value": "$chip.font.clear.light",
222
+ "type": "color"
223
+ },
224
+ "solid": {
225
+ "grey": {
226
+ "value": "$chip.font.solid.grey.light",
227
+ "type": "color"
228
+ },
229
+ "blue": {
230
+ "value": "$chip.font.solid.blue.light",
231
+ "type": "color"
232
+ },
233
+ "red": {
234
+ "value": "$chip.font.solid.red.light",
235
+ "type": "color"
236
+ },
237
+ "yellow": {
238
+ "value": "$chip.font.solid.yellow.light",
239
+ "type": "color"
240
+ },
241
+ "green": {
242
+ "value": "$chip.font.solid.green.light",
243
+ "type": "color"
244
+ }
245
+ }
246
+ },
247
+ "icon": {
248
+ "clear": {
249
+ "value": "$chip.icon.clear.light",
250
+ "type": "color"
251
+ },
252
+ "solid": {
253
+ "grey": {
254
+ "value": "$chip.icon.solid.grey.light",
255
+ "type": "color"
256
+ },
257
+ "blue": {
258
+ "value": "$chip.icon.solid.blue.light",
259
+ "type": "color"
260
+ },
261
+ "red": {
262
+ "value": "$chip.icon.solid.red.light",
263
+ "type": "color"
264
+ },
265
+ "yellow": {
266
+ "value": "$chip.icon.solid.yellow.light",
267
+ "type": "color"
268
+ },
269
+ "green": {
270
+ "value": "$chip.icon.solid.green.light",
271
+ "type": "color"
272
+ }
273
+ }
274
+ },
275
+ "closable-icon": {
276
+ "value": "$chip.closable-icon.light",
277
+ "type": "color"
278
+ },
279
+ "background": {
280
+ "solid": {
281
+ "grey": {
282
+ "value": "$chip.background.solid.grey.light",
283
+ "type": "color"
284
+ },
285
+ "blue": {
286
+ "value": "$chip.background.solid.blue.light",
287
+ "type": "color"
288
+ },
289
+ "red": {
290
+ "value": "$chip.background.solid.red.light",
291
+ "type": "color"
292
+ },
293
+ "yellow": {
294
+ "value": "$chip.background.solid.yellow.light",
295
+ "type": "color"
296
+ },
297
+ "green": {
298
+ "value": "$chip.background.solid.green.light",
299
+ "type": "color"
300
+ }
301
+ }
302
+ },
303
+ "border": {
304
+ "clear": {
305
+ "grey": {
306
+ "value": "$chip.border.clear.grey.light",
307
+ "type": "color"
308
+ },
309
+ "blue": {
310
+ "value": "$chip.border.clear.blue.light",
311
+ "type": "color"
312
+ },
313
+ "red": {
314
+ "value": "$chip.border.clear.red.light",
315
+ "type": "color"
316
+ },
317
+ "yellow": {
318
+ "value": "$chip.border.clear.yellow.light",
319
+ "type": "color"
320
+ },
321
+ "green": {
322
+ "value": "$chip.border.clear.green.light",
323
+ "type": "color"
324
+ }
325
+ }
326
+ }
327
+ },
328
+ "label": {
329
+ "font": {
330
+ "value": "$label.font.light",
331
+ "type": "color"
332
+ }
333
+ },
334
+ "loader": {
335
+ "font": {
336
+ "value": "$loader.font.light",
337
+ "type": "color"
338
+ },
339
+ "default": {
340
+ "foreground": {
341
+ "value": "$loader.default.foreground.light",
342
+ "type": "color"
343
+ }
344
+ },
345
+ "inline": {
346
+ "foreground": {
347
+ "indeterminate": {
348
+ "value": "$loader.inline.foreground.indeterminate.light",
349
+ "type": "color"
350
+ },
351
+ "determinate": {
352
+ "value": "$loader.inline.foreground.determinate.light",
353
+ "type": "color"
354
+ }
355
+ }
356
+ }
357
+ },
358
+ "rating": {
359
+ "star": {
360
+ "background": {
361
+ "default": {
362
+ "value": "$rating.star.background.default.light",
363
+ "type": "color"
364
+ },
365
+ "active": {
366
+ "value": "$rating.star.background.active.light",
367
+ "type": "color"
368
+ },
369
+ "average": {
370
+ "value": "$rating.star.background.average.light",
371
+ "type": "color"
372
+ }
373
+ }
374
+ },
375
+ "chip": {
376
+ "count": {
377
+ "font": {
378
+ "value": "$rating.chip.count.font.light",
379
+ "type": "color"
380
+ }
381
+ },
382
+ "foreground": {
383
+ "value": "$rating.chip.foreground.light",
384
+ "type": "color"
385
+ }
386
+ }
387
+ },
388
+ "tooltip": {
389
+ "foreground": {
390
+ "value": "$tooltip.foreground.light",
391
+ "type": "color"
392
+ },
393
+ "border": {
394
+ "value": "$tooltip.border.light",
395
+ "type": "color"
396
+ },
397
+ "font": {
398
+ "value": "$tooltip.font.light",
399
+ "type": "color"
400
+ }
401
+ },
402
+ "accordion-item": {
403
+ "font": {
404
+ "heading": {
405
+ "value": "$accordion-item.font.heading.light",
406
+ "type": "color"
407
+ },
408
+ "description": {
409
+ "value": "$accordion-item.font.description.light",
410
+ "type": "color"
411
+ }
412
+ },
413
+ "icon": {
414
+ "default": {
415
+ "value": "$accordion-item.icon.light",
416
+ "type": "color"
417
+ },
418
+ "expanded": {
419
+ "value": "$accordion-item.icon.expanded.light",
420
+ "type": "color"
421
+ }
422
+ },
423
+ "background": {
424
+ "value": "$accordion-item.background.default.light",
425
+ "type": "color"
426
+ },
427
+ "border": {
428
+ "value": "$accordion-item.border.light",
429
+ "type": "color"
430
+ }
431
+ },
432
+ "input-message": {
433
+ "font": {
434
+ "value": "$input-message.font.light",
435
+ "type": "color"
436
+ },
437
+ "icon": {
438
+ "idle": {
439
+ "value": "$input-message.icon.idle.light",
440
+ "type": "color"
441
+ },
442
+ "invalid": {
443
+ "value": "$input-message.icon.invalid.light",
444
+ "type": "color"
445
+ },
446
+ "valid": {
447
+ "value": "$input-message.icon.valid.light",
448
+ "type": "color"
449
+ }
450
+ }
451
+ },
452
+ "alert": {
453
+ "font": {
454
+ "title": {
455
+ "value": "$alert.font.title.light",
456
+ "type": "color"
457
+ },
458
+ "message": {
459
+ "value": "$alert.font.message.light",
460
+ "type": "color"
461
+ }
462
+ },
463
+ "background": {
464
+ "value": "$alert.background.light",
465
+ "type": "color"
466
+ },
467
+ "border": {
468
+ "value": "$alert.border.light",
469
+ "type": "color"
470
+ },
471
+ "icon": {
472
+ "blue": {
473
+ "value": "$alert.icon.blue.light",
474
+ "type": "color"
475
+ },
476
+ "green": {
477
+ "value": "$alert.icon.green.light",
478
+ "type": "color"
479
+ },
480
+ "yellow": {
481
+ "value": "$alert.icon.yellow.light",
482
+ "type": "color"
483
+ },
484
+ "red": {
485
+ "value": "$alert.icon.red.light",
486
+ "type": "color"
487
+ }
488
+ },
489
+ "highlight": {
490
+ "blue": {
491
+ "value": "$alert.highlight.blue.light",
492
+ "type": "color"
493
+ },
494
+ "green": {
495
+ "value": "$alert.highlight.green.light",
496
+ "type": "color"
497
+ },
498
+ "yellow": {
499
+ "value": "$alert.highlight.yellow.light",
500
+ "type": "color"
501
+ },
502
+ "red": {
503
+ "value": "$alert.highlight.red.light",
504
+ "type": "color"
505
+ }
506
+ }
507
+ },
508
+ "tip": {
509
+ "font": {
510
+ "heading": {
511
+ "value": "$tip.font.heading.light",
512
+ "type": "color"
513
+ },
514
+ "description": {
515
+ "value": "$tip.font.description.light",
516
+ "type": "color"
517
+ }
518
+ },
519
+ "icon": {
520
+ "value": "$tip.icon.light",
521
+ "type": "color"
522
+ },
523
+ "background": {
524
+ "default": {
525
+ "light": {
526
+ "value": "$tip.background.default.light",
527
+ "type": "color"
528
+ }
529
+ }
530
+ },
531
+ "border": {
532
+ "default": {
533
+ "value": "$tip.border.default.light",
534
+ "type": "color"
535
+ }
536
+ }
537
+ },
538
+ "color-picker": {
539
+ "font": {
540
+ "label": {
541
+ "value": "$color-picker.font.label.light",
542
+ "type": "color"
543
+ }
544
+ },
545
+ "icon": {
546
+ "value": "$color-picker.icon.light",
547
+ "type": "color"
548
+ },
549
+ "border": {
550
+ "value": "$color-picker.border.light",
551
+ "type": "color"
552
+ },
553
+ "background": {
554
+ "default": {
555
+ "value": "$color-picker.background.default.light",
556
+ "type": "color"
557
+ }
558
+ }
559
+ },
560
+ "date-picker": {
561
+ "font": {
562
+ "date": {
563
+ "value": "$date-picker.font.date.light",
564
+ "type": "color"
565
+ },
566
+ "range": {
567
+ "date": {
568
+ "value": "$date-picker.font.range.date.light",
569
+ "type": "color"
570
+ }
571
+ },
572
+ "day": {
573
+ "value": "{date-picker.font.day.light}",
574
+ "type": "color"
575
+ },
576
+ "month": {
577
+ "value": "$date-picker.font.month.light",
578
+ "type": "color"
579
+ },
580
+ "selected": {
581
+ "date": {
582
+ "value": "$date-picker.font.selected.date.light",
583
+ "type": "color"
584
+ }
585
+ },
586
+ "active": {
587
+ "date": {
588
+ "value": "$date-picker.font.active.date.light",
589
+ "type": "color"
590
+ }
591
+ }
592
+ },
593
+ "icon": {
594
+ "value": "$date-picker.icon.light",
595
+ "type": "color"
596
+ },
597
+ "border": {
598
+ "value": "$date-picker.border.light",
599
+ "type": "color"
600
+ },
601
+ "date": {
602
+ "active": {
603
+ "border": {
604
+ "value": "$date-picker.date.active.border.light",
605
+ "type": "color"
606
+ }
607
+ }
608
+ },
609
+ "background": {
610
+ "default": {
611
+ "value": "$date-picker.background.default.light",
612
+ "type": "color"
613
+ },
614
+ "date": {
615
+ "range": {
616
+ "value": "$date-picker.background.date.range.light",
617
+ "type": "color"
618
+ },
619
+ "active": {
620
+ "light": {
621
+ "value": "$date-picker.background.date.active.light",
622
+ "type": "color"
623
+ }
624
+ }
625
+ }
626
+ }
627
+ },
628
+ "input-date-picker": {
629
+ "font": {
630
+ "placeholder-value": {
631
+ "value": "$input-date-picker.font.placeholder-value.light",
632
+ "type": "color"
633
+ },
634
+ "label": {
635
+ "value": "$input-date-picker.font.label.light",
636
+ "type": "color"
637
+ }
638
+ },
639
+ "icon": {
640
+ "value": "$input-date-picker.icon.light",
641
+ "type": "color"
642
+ },
643
+ "border": {
644
+ "value": "$input-date-picker.border.light",
645
+ "type": "color"
646
+ },
647
+ "background": {
648
+ "default": {
649
+ "value": "$input-date-picker.background.default.light",
650
+ "type": "color"
651
+ },
652
+ "arrow": {
653
+ "value": "$input-date-picker.background.arrow.light",
654
+ "type": "color"
655
+ },
656
+ "read-only": {
657
+ "value": "$input-date-picker.background.read-only.light",
658
+ "type": "color"
659
+ }
660
+ }
661
+ },
662
+ "input-datetime-local": {
663
+ "font": {
664
+ "placeholder-value": {
665
+ "value": "$input-datetime-local.font.placeholder-value.light",
666
+ "type": "color"
667
+ },
668
+ "label": {
669
+ "value": "$input-datetime-local.font.label.light",
670
+ "type": "color"
671
+ },
672
+ "prefix-suffix": {
673
+ "value": "$input-datetime-local.font.prefix-suffix.light",
674
+ "type": "color"
675
+ }
676
+ },
677
+ "icon": {
678
+ "value": "$input-datetime-local.icon.light",
679
+ "type": "color"
680
+ },
681
+ "background": {
682
+ "default": {
683
+ "value": "$input-datetime-local.background.default.light",
684
+ "type": "color"
685
+ },
686
+ "prefix-sufix": {
687
+ "value": "$input-datetime-local.background.prefix-suffix.light",
688
+ "type": "color"
689
+ },
690
+ "read-only": {
691
+ "value": "$input-datetime-local.background.read-only.light",
692
+ "type": "color"
693
+ }
694
+ },
695
+ "border": {
696
+ "default": {
697
+ "value": "$input-datetime-local.border.default.light",
698
+ "type": "color"
699
+ },
700
+ "invalid": {
701
+ "value": "$input-datetime-local.border.invalid.light",
702
+ "type": "color"
703
+ }
704
+ }
705
+ },
706
+ "input-email": {
707
+ "font": {
708
+ "placeholder-value": {
709
+ "value": "$input-email.font.placeholder-value.light",
710
+ "type": "color"
711
+ },
712
+ "label": {
713
+ "value": "$input-email.font.label.light",
714
+ "type": "color"
715
+ },
716
+ "prefix-suffix": {
717
+ "value": "$input-email.font.prefix-suffix.light",
718
+ "type": "color"
719
+ }
720
+ },
721
+ "icon": {
722
+ "value": "$input-email.icon.light",
723
+ "type": "color"
724
+ },
725
+ "background": {
726
+ "default": {
727
+ "value": "$input-email.background.default.light",
728
+ "type": "color"
729
+ },
730
+ "prefix-sufix": {
731
+ "value": "$input-email.background.prefix-suffix.light",
732
+ "type": "color"
733
+ },
734
+ "read-only": {
735
+ "value": "$input-email.background.read-only.light",
736
+ "type": "color"
737
+ }
738
+ },
739
+ "border": {
740
+ "default": {
741
+ "value": "$input-email.border.default.light",
742
+ "type": "color"
743
+ },
744
+ "invalid": {
745
+ "value": "$input-email.border.invalid.light",
746
+ "type": "color"
747
+ }
748
+ }
749
+ },
750
+ "input-file": {
751
+ "font": {
752
+ "placeholder-value": {
753
+ "value": "$input-file.font.placeholder-value.light",
754
+ "type": "color"
755
+ },
756
+ "label": {
757
+ "value": "$input-file.font.label.light",
758
+ "type": "color"
759
+ },
760
+ "prefix-suffix": {
761
+ "value": "$input-file.font.prefix-suffix.light",
762
+ "type": "color"
763
+ }
764
+ },
765
+ "icon": {
766
+ "value": "$input-file.icon.light",
767
+ "type": "color"
768
+ },
769
+ "background": {
770
+ "default": {
771
+ "value": "$input-file.background.default.light",
772
+ "type": "color"
773
+ },
774
+ "prefix-sufix": {
775
+ "value": "$input-file.background.prefix-suffix.light",
776
+ "type": "color"
777
+ },
778
+ "read-only": {
779
+ "value": "$input-file.background.read-only.light",
780
+ "type": "color"
781
+ }
782
+ },
783
+ "border": {
784
+ "default": {
785
+ "value": "$input-file.border.default.light",
786
+ "type": "color"
787
+ },
788
+ "invalid": {
789
+ "value": "$input-file.border.invalid.light",
790
+ "type": "color"
791
+ }
792
+ }
793
+ },
794
+ "input-month": {
795
+ "font": {
796
+ "placeholder-value": {
797
+ "value": "$input-month.font.placeholder-value.light",
798
+ "type": "color"
799
+ },
800
+ "label": {
801
+ "value": "$input-month.font.label.light",
802
+ "type": "color"
803
+ },
804
+ "prefix-suffix": {
805
+ "value": "$input-month.font.prefix-suffix.light",
806
+ "type": "color"
807
+ }
808
+ },
809
+ "icon": {
810
+ "value": "$input-month.icon.light",
811
+ "type": "color"
812
+ },
813
+ "background": {
814
+ "default": {
815
+ "value": "$input-month.background.default.light",
816
+ "type": "color"
817
+ },
818
+ "prefix-sufix": {
819
+ "value": "$input-month.background.prefix-suffix.light",
820
+ "type": "color"
821
+ },
822
+ "read-only": {
823
+ "value": "$input-month.background.read-only.light",
824
+ "type": "color"
825
+ }
826
+ },
827
+ "border": {
828
+ "default": {
829
+ "value": "$input-month.border.default.light",
830
+ "type": "color"
831
+ },
832
+ "invalid": {
833
+ "value": "$input-month.border.invalid.light",
834
+ "type": "color"
835
+ }
836
+ }
837
+ },
838
+ "input-number": {
839
+ "font": {
840
+ "placeholder-value": {
841
+ "value": "$input-number.font.placeholder-value.light",
842
+ "type": "color"
843
+ },
844
+ "label": {
845
+ "value": "$input-number.font.label.light",
846
+ "type": "color"
847
+ },
848
+ "prefix-suffix": {
849
+ "value": "$input-number.font.prefix-suffix.light",
850
+ "type": "color"
851
+ }
852
+ },
853
+ "icon": {
854
+ "value": "$input-number.icon.light",
855
+ "type": "color"
856
+ },
857
+ "background": {
858
+ "default": {
859
+ "value": "$input-number.background.default.light",
860
+ "type": "color"
861
+ },
862
+ "prefix-sufix": {
863
+ "value": "$input-number.background.prefix-suffix.light",
864
+ "type": "color"
865
+ },
866
+ "read-only": {
867
+ "value": "$input-number.background.read-only.light",
868
+ "type": "color"
869
+ }
870
+ },
871
+ "border": {
872
+ "default": {
873
+ "value": "$input-number.border.default.light",
874
+ "type": "color"
875
+ },
876
+ "invalid": {
877
+ "value": "$input-number.border.invalid.light",
878
+ "type": "color"
879
+ }
880
+ }
881
+ },
882
+ "input-password": {
883
+ "font": {
884
+ "placeholder-value": {
885
+ "value": "$input-password.font.placeholder-value.light",
886
+ "type": "color"
887
+ },
888
+ "label": {
889
+ "value": "$input-password.font.label.light",
890
+ "type": "color"
891
+ },
892
+ "prefix-suffix": {
893
+ "value": "$input-password.font.prefix-suffix.light",
894
+ "type": "color"
895
+ }
896
+ },
897
+ "icon": {
898
+ "value": "$input-password.icon.light",
899
+ "type": "color"
900
+ },
901
+ "background": {
902
+ "default": {
903
+ "value": "$input-password.background.default.light",
904
+ "type": "color"
905
+ },
906
+ "prefix-sufix": {
907
+ "value": "$input-password.background.prefix-suffix.light",
908
+ "type": "color"
909
+ },
910
+ "read-only": {
911
+ "value": "$input-password.background.read-only.light",
912
+ "type": "color"
913
+ }
914
+ },
915
+ "border": {
916
+ "default": {
917
+ "value": "$input-password.border.default.light",
918
+ "type": "color"
919
+ },
920
+ "invalid": {
921
+ "value": "$input-password.border.invalid.light",
922
+ "type": "color"
923
+ }
924
+ }
925
+ },
926
+ "input-search": {
927
+ "font": {
928
+ "placeholder-value": {
929
+ "value": "$input-search.font.placeholder-value.light",
930
+ "type": "color"
931
+ },
932
+ "label": {
933
+ "value": "$input-search.font.label.light",
934
+ "type": "color"
935
+ },
936
+ "prefix-suffix": {
937
+ "value": "$input-search.font.prefix-suffix.light",
938
+ "type": "color"
939
+ }
940
+ },
941
+ "icon": {
942
+ "value": "$input-search.icon.light",
943
+ "type": "color"
944
+ },
945
+ "background": {
946
+ "default": {
947
+ "value": "$input-search.background.default.light",
948
+ "type": "color"
949
+ },
950
+ "prefix-sufix": {
951
+ "value": "$input-search.background.prefix-suffix.light",
952
+ "type": "color"
953
+ },
954
+ "read-only": {
955
+ "value": "$input-search.background.read-only.light",
956
+ "type": "color"
957
+ }
958
+ },
959
+ "border": {
960
+ "default": {
961
+ "value": "$input-search.border.default.light",
962
+ "type": "color"
963
+ },
964
+ "invalid": {
965
+ "value": "$input-search.border.invalid.light",
966
+ "type": "color"
967
+ }
968
+ }
969
+ },
970
+ "input-telephone": {
971
+ "font": {
972
+ "placeholder-value": {
973
+ "value": "$input-telephone.font.placeholder-value.light",
974
+ "type": "color"
975
+ },
976
+ "label": {
977
+ "value": "$input-telephone.font.label.light",
978
+ "type": "color"
979
+ },
980
+ "prefix-suffix": {
981
+ "value": "$input-telephone.font.prefix-suffix.light",
982
+ "type": "color"
983
+ }
984
+ },
985
+ "icon": {
986
+ "value": "$input-telephone.icon.light",
987
+ "type": "color"
988
+ },
989
+ "background": {
990
+ "default": {
991
+ "value": "$input-telephone.background.default.light",
992
+ "type": "color"
993
+ },
994
+ "prefix-sufix": {
995
+ "value": "$input-telephone.background.prefix-suffix.light",
996
+ "type": "color"
997
+ },
998
+ "read-only": {
999
+ "value": "$input-telephone.background.read-only.light",
1000
+ "type": "color"
1001
+ }
1002
+ },
1003
+ "border": {
1004
+ "default": {
1005
+ "value": "$input-telephone.border.default.light",
1006
+ "type": "color"
1007
+ },
1008
+ "invalid": {
1009
+ "value": "$input-telephone.border.invalid.light",
1010
+ "type": "color"
1011
+ }
1012
+ }
1013
+ },
1014
+ "input-text": {
1015
+ "font": {
1016
+ "placeholder-value": {
1017
+ "value": "$input-text.font.placeholder-value.light",
1018
+ "type": "color"
1019
+ },
1020
+ "label": {
1021
+ "value": "$input-text.font.label.light",
1022
+ "type": "color"
1023
+ },
1024
+ "prefix-suffix": {
1025
+ "value": "$input-text.font.prefix-suffix.light",
1026
+ "type": "color"
1027
+ }
1028
+ },
1029
+ "icon": {
1030
+ "value": "$input-text.icon.light",
1031
+ "type": "color"
1032
+ },
1033
+ "background": {
1034
+ "default": {
1035
+ "value": "$input-text.background.default.light",
1036
+ "type": "color"
1037
+ },
1038
+ "prefix-sufix": {
1039
+ "value": "$input-text.background.prefix-suffix.light",
1040
+ "type": "color"
1041
+ },
1042
+ "read-only": {
1043
+ "value": "$input-text.background.read-only.light",
1044
+ "type": "color"
1045
+ }
1046
+ },
1047
+ "border": {
1048
+ "default": {
1049
+ "value": "$input-text.border.default.light",
1050
+ "type": "color"
1051
+ },
1052
+ "invalid": {
1053
+ "value": "$input-text.border.invalid.light",
1054
+ "type": "color"
1055
+ }
1056
+ }
1057
+ },
1058
+ "input-week": {
1059
+ "font": {
1060
+ "placeholder-value": {
1061
+ "value": "$input-week.font.placeholder-value.light",
1062
+ "type": "color"
1063
+ },
1064
+ "label": {
1065
+ "value": "$input-week.font.label.light",
1066
+ "type": "color"
1067
+ },
1068
+ "prefix-suffix": {
1069
+ "value": "$input-week.font.prefix-suffix.light",
1070
+ "type": "color"
1071
+ }
1072
+ },
1073
+ "icon": {
1074
+ "value": "$input-week.icon.light",
1075
+ "type": "color"
1076
+ },
1077
+ "background": {
1078
+ "default": {
1079
+ "value": "$input-week.background.default.light",
1080
+ "type": "color"
1081
+ },
1082
+ "prefix-sufix": {
1083
+ "value": "$input-week.background.prefix-suffix.light",
1084
+ "type": "color"
1085
+ },
1086
+ "read-only": {
1087
+ "value": "$input-week.background.read-only.light",
1088
+ "type": "color"
1089
+ }
1090
+ },
1091
+ "border": {
1092
+ "default": {
1093
+ "value": "$input-week.border.default.light",
1094
+ "type": "color"
1095
+ },
1096
+ "invalid": {
1097
+ "value": "$input-week.border.invalid.light",
1098
+ "type": "color"
1099
+ }
1100
+ }
1101
+ },
1102
+ "textarea": {
1103
+ "font": {
1104
+ "placeholder-value": {
1105
+ "value": "$textarea.font.placeholder-value.light",
1106
+ "type": "color"
1107
+ },
1108
+ "label": {
1109
+ "value": "$textarea.font.label.light",
1110
+ "type": "color"
1111
+ },
1112
+ "chat-limit": {
1113
+ "value": "$textarea.font.chat-limit.light",
1114
+ "type": "color"
1115
+ }
1116
+ },
1117
+ "icon": {
1118
+ "value": "$textarea.icon.light",
1119
+ "type": "color"
1120
+ },
1121
+ "background": {
1122
+ "default": {
1123
+ "value": "$textarea.background.default.light",
1124
+ "type": "color"
1125
+ },
1126
+ "read-only": {
1127
+ "value": "$textarea.background.read-only.light",
1128
+ "type": "color"
1129
+ }
1130
+ },
1131
+ "border": {
1132
+ "default": {
1133
+ "value": "{textarea.border.light}",
1134
+ "type": "color"
1135
+ }
1136
+ }
1137
+ },
1138
+ "tab-title": {
1139
+ "font": {
1140
+ "default": {
1141
+ "value": "$tab-title.font.default.light",
1142
+ "type": "color"
1143
+ },
1144
+ "active": {
1145
+ "value": "$tab-title.font.active.light",
1146
+ "type": "color"
1147
+ }
1148
+ },
1149
+ "icon": {
1150
+ "default": {
1151
+ "value": "$tab-title.icon.default.light",
1152
+ "type": "color"
1153
+ },
1154
+ "active": {
1155
+ "value": "$tab-title.icon.active.light",
1156
+ "type": "color"
1157
+ }
1158
+ },
1159
+ "bordered": {
1160
+ "border": {
1161
+ "value": "$tab-title.bordered.border.light",
1162
+ "type": "color"
1163
+ },
1164
+ "background": {
1165
+ "default": {
1166
+ "value": "$tab-title.bordered.background.default.light",
1167
+ "type": "color"
1168
+ }
1169
+ }
1170
+ },
1171
+ "border": {
1172
+ "active": {
1173
+ "value": "$tab-title.border.active.light",
1174
+ "type": "color"
1175
+ }
1176
+ }
1177
+ },
1178
+ "tabs": {
1179
+ "bordered": {
1180
+ "border": {
1181
+ "value": "$tabs.bordered.border.light",
1182
+ "type": "color"
1183
+ },
1184
+ "background": {
1185
+ "value": "$tabs.bordered.background.default.light",
1186
+ "type": "color"
1187
+ }
1188
+ }
1189
+ },
1190
+ "card": {
1191
+ "font": {
1192
+ "title": {
1193
+ "value": "$card.font.title.light",
1194
+ "type": "color"
1195
+ },
1196
+ "subtitle": {
1197
+ "value": "$card.font.subtitle.light",
1198
+ "type": "color"
1199
+ },
1200
+ "description": {
1201
+ "value": "$card.font.description.light",
1202
+ "type": "color"
1203
+ }
1204
+ },
1205
+ "border": {
1206
+ "default": {
1207
+ "value": "$card.border.default.light",
1208
+ "type": "color"
1209
+ },
1210
+ "active": {
1211
+ "value": "$card.border.active.light",
1212
+ "type": "color"
1213
+ }
1214
+ },
1215
+ "background": {
1216
+ "default": {
1217
+ "value": "$card.background.default.light",
1218
+ "type": "color"
1219
+ }
1220
+ }
1221
+ },
1222
+ "action": {
1223
+ "font": {
1224
+ "value": "$action.font.default.light",
1225
+ "type": "color"
1226
+ },
1227
+ "icon": {
1228
+ "value": "$action.icon.light",
1229
+ "type": "color"
1230
+ },
1231
+ "background": {
1232
+ "default": {
1233
+ "value": "$action.background.default.light",
1234
+ "type": "color"
1235
+ },
1236
+ "active": {
1237
+ "value": "$action.background.active.light",
1238
+ "type": "color"
1239
+ }
1240
+ }
1241
+ },
1242
+ "action-bar": {
1243
+ "border": {
1244
+ "value": "$action-bar.border.light",
1245
+ "type": "color"
1246
+ },
1247
+ "background": {
1248
+ "value": "$action-bar.background.light",
1249
+ "type": "color"
1250
+ }
1251
+ },
1252
+ "action-pad": {
1253
+ "border": {
1254
+ "value": "$action-pad.border.light",
1255
+ "type": "color"
1256
+ },
1257
+ "background": {
1258
+ "value": "$action-pad.background.light",
1259
+ "type": "color"
1260
+ }
1261
+ },
1262
+ "action-bar-grid": {
1263
+ "border": {
1264
+ "value": "$action-bar-grid.border.light",
1265
+ "type": "color"
1266
+ },
1267
+ "background": {
1268
+ "value": "$action-bar-grid.background.light",
1269
+ "type": "color"
1270
+ }
1271
+ },
1272
+ "action-pad-grid": {
1273
+ "border": {
1274
+ "value": "$action-pad-grid.border.light",
1275
+ "type": "color"
1276
+ },
1277
+ "background": {
1278
+ "value": "$action-pad-grid.background.light",
1279
+ "type": "color"
1280
+ }
1281
+ },
1282
+ "block": {
1283
+ "font": {
1284
+ "heading": {
1285
+ "value": "$block.font.heading.light",
1286
+ "type": "color"
1287
+ },
1288
+ "active": {
1289
+ "value": "$action.font.active.light",
1290
+ "type": "color"
1291
+ },
1292
+ "description": {
1293
+ "value": "$block.font.description.light",
1294
+ "type": "color"
1295
+ },
1296
+ "content": {
1297
+ "value": "$block.font.content.light",
1298
+ "type": "color"
1299
+ }
1300
+ },
1301
+ "icon": {
1302
+ "idle": {
1303
+ "value": "$block.icon.idle.light",
1304
+ "type": "color"
1305
+ },
1306
+ "valid": {
1307
+ "value": "$block.icon.valid.light",
1308
+ "type": "color"
1309
+ },
1310
+ "invalid": {
1311
+ "value": "$block.icon.invalid.light",
1312
+ "type": "color"
1313
+ },
1314
+ "drag-handle": {
1315
+ "value": "$block.icon.drag-handle.light",
1316
+ "type": "color"
1317
+ },
1318
+ "chevron": {
1319
+ "value": "$block.icon.chevron.light",
1320
+ "type": "color"
1321
+ }
1322
+ },
1323
+ "border": {
1324
+ "value": "$block.border.light",
1325
+ "type": "color"
1326
+ },
1327
+ "background": {
1328
+ "value": "$block.background.light",
1329
+ "type": "color"
1330
+ }
1331
+ },
1332
+ "block-section": {
1333
+ "font": {
1334
+ "value": "$block-section.font.light",
1335
+ "type": "color"
1336
+ },
1337
+ "icon": {
1338
+ "valid": {
1339
+ "value": "$block-section.icon.valid.light",
1340
+ "type": "color"
1341
+ },
1342
+ "invalid": {
1343
+ "value": "$block-section.icon.invalid.light",
1344
+ "type": "color"
1345
+ },
1346
+ "chevron": {
1347
+ "value": "$block-section.icon.chevron.light",
1348
+ "type": "color"
1349
+ }
1350
+ },
1351
+ "background": {
1352
+ "value": "$block-section.background.light",
1353
+ "type": "color"
1354
+ }
1355
+ },
1356
+ "notice": {
1357
+ "font": {
1358
+ "title": {
1359
+ "value": "$notice.font.title.light",
1360
+ "type": "color"
1361
+ },
1362
+ "message": {
1363
+ "value": "$notice.font.message.light",
1364
+ "type": "color"
1365
+ }
1366
+ },
1367
+ "background": {
1368
+ "value": "$notice.background.light",
1369
+ "type": "color"
1370
+ },
1371
+ "icon": {
1372
+ "info": {
1373
+ "value": "$notice.icon.info.light",
1374
+ "type": "color"
1375
+ },
1376
+ "success": {
1377
+ "value": "$notice.icon.success.light",
1378
+ "type": "color"
1379
+ },
1380
+ "warning": {
1381
+ "value": "$notice.icon.warning.light",
1382
+ "type": "color"
1383
+ },
1384
+ "danger": {
1385
+ "value": "$notice.icon.danger.light",
1386
+ "type": "color"
1387
+ },
1388
+ "brand": {
1389
+ "value": "$notice.icon.brand.light",
1390
+ "type": "color"
1391
+ }
1392
+ },
1393
+ "highlight": {
1394
+ "info": {
1395
+ "value": "$notice.highlight.info.light",
1396
+ "type": "color"
1397
+ },
1398
+ "success": {
1399
+ "value": "$notice.highlight.success.light",
1400
+ "type": "color"
1401
+ },
1402
+ "warning": {
1403
+ "value": "$notice.highlight.warning.light",
1404
+ "type": "color"
1405
+ },
1406
+ "danger": {
1407
+ "value": "$notice.highlight.danger.light",
1408
+ "type": "color"
1409
+ },
1410
+ "brand": {
1411
+ "value": "$notice.highlight.brand.light",
1412
+ "type": "color"
1413
+ }
1414
+ }
1415
+ },
1416
+ "modal": {
1417
+ "font": {
1418
+ "header": {
1419
+ "value": "$modal.font.header.light",
1420
+ "type": "color"
1421
+ },
1422
+ "content": {
1423
+ "value": "$modal.font.content.light",
1424
+ "type": "color"
1425
+ }
1426
+ },
1427
+ "icon": {
1428
+ "value": "$modal.icon.light",
1429
+ "type": "color"
1430
+ },
1431
+ "border": {
1432
+ "default": {
1433
+ "value": "$modal.border.default.light",
1434
+ "type": "color"
1435
+ },
1436
+ "top": {
1437
+ "brand": {
1438
+ "value": "$modal.border.top.brand.light",
1439
+ "type": "color"
1440
+ },
1441
+ "info": {
1442
+ "value": "$modal.border.top.info.light",
1443
+ "type": "color"
1444
+ },
1445
+ "success": {
1446
+ "value": "$modal.border.top.success.light",
1447
+ "type": "color"
1448
+ },
1449
+ "danger": {
1450
+ "value": "$modal.border.top.danger.light",
1451
+ "type": "color"
1452
+ },
1453
+ "warning": {
1454
+ "value": "$modal.border.top.warning.light",
1455
+ "type": "color"
1456
+ }
1457
+ }
1458
+ },
1459
+ "background": {
1460
+ "value": "$modal.background.light",
1461
+ "type": "color"
1462
+ }
1463
+ },
1464
+ "panel-header": {
1465
+ "font": {
1466
+ "value": "$panel-header.font.light",
1467
+ "type": "color"
1468
+ },
1469
+ "icon": {
1470
+ "value": "$panel-header.icon.light",
1471
+ "type": "color"
1472
+ },
1473
+ "border": {
1474
+ "value": "$panel-header.border.light",
1475
+ "type": "color"
1476
+ },
1477
+ "background": {
1478
+ "value": "$panel-header.background.light",
1479
+ "type": "color"
1480
+ }
1481
+ },
1482
+ "popover": {
1483
+ "font": {
1484
+ "value": "$popover.font.light",
1485
+ "type": "color"
1486
+ },
1487
+ "icon": {
1488
+ "value": "$popover.icon.light",
1489
+ "type": "color"
1490
+ },
1491
+ "border": {
1492
+ "value": "$popover.border.light",
1493
+ "type": "color"
1494
+ },
1495
+ "background": {
1496
+ "value": "$popover.background.light",
1497
+ "type": "color"
1498
+ }
1499
+ },
1500
+ "slider": {
1501
+ "font": {
1502
+ "label": {
1503
+ "value": "$slider.font.label.light",
1504
+ "type": "color"
1505
+ },
1506
+ "tick-label": {
1507
+ "value": "$slider.font.tick-label.light",
1508
+ "type": "color"
1509
+ }
1510
+ },
1511
+ "handle": {
1512
+ "background": {
1513
+ "value": "$slider.handle.background.light",
1514
+ "type": "color"
1515
+ },
1516
+ "border": {
1517
+ "value": "$slider.handle.border.light",
1518
+ "type": "color"
1519
+ }
1520
+ },
1521
+ "border": {
1522
+ "default": {
1523
+ "value": "$slider.border.default.light",
1524
+ "type": "color"
1525
+ },
1526
+ "active": {
1527
+ "value": "$slider.border.active.light",
1528
+ "type": "color"
1529
+ }
1530
+ },
1531
+ "tick": {
1532
+ "default": {
1533
+ "background": {
1534
+ "value": "$slider.tick.default.background.light",
1535
+ "type": "color"
1536
+ },
1537
+ "border": {
1538
+ "value": "$slider.tick.default.border.light",
1539
+ "type": "color"
1540
+ }
1541
+ },
1542
+ "active": {
1543
+ "background": {
1544
+ "value": "$slider.tick.active.background.light",
1545
+ "type": "color"
1546
+ },
1547
+ "border": {
1548
+ "value": "$slider.tick.active.border.light",
1549
+ "type": "color"
1550
+ }
1551
+ }
1552
+ }
1553
+ },
1554
+ "slider-range": {
1555
+ "font": {
1556
+ "label": {
1557
+ "value": "$slider-range.font.label.light",
1558
+ "type": "color"
1559
+ },
1560
+ "tick-label": {
1561
+ "value": "$slider-range.font.tick-label.light",
1562
+ "type": "color"
1563
+ }
1564
+ },
1565
+ "handle": {
1566
+ "background": {
1567
+ "value": "$slider-range.handle.background.light",
1568
+ "type": "color"
1569
+ },
1570
+ "border": {
1571
+ "value": "$slider-range.handle.border.light",
1572
+ "type": "color"
1573
+ }
1574
+ },
1575
+ "border": {
1576
+ "default": {
1577
+ "value": "$slider-range.border.default.light",
1578
+ "type": "color"
1579
+ },
1580
+ "active": {
1581
+ "value": "$slider-range.border.active.light",
1582
+ "type": "color"
1583
+ }
1584
+ },
1585
+ "tick": {
1586
+ "default": {
1587
+ "background": {
1588
+ "value": "$slider-range.tick.default.background.light",
1589
+ "type": "color"
1590
+ },
1591
+ "border": {
1592
+ "value": "$slider-range.tick.default.border.light",
1593
+ "type": "color"
1594
+ }
1595
+ },
1596
+ "active": {
1597
+ "background": {
1598
+ "value": "$slider-range.tick.active.background.light",
1599
+ "type": "color"
1600
+ },
1601
+ "border": {
1602
+ "value": "$slider-range.tick.active.border.light",
1603
+ "type": "color"
1604
+ }
1605
+ }
1606
+ }
1607
+ },
1608
+ "slider-histogram": {
1609
+ "font": {
1610
+ "label": {
1611
+ "value": "$slider-histogram.font.label.light",
1612
+ "type": "color"
1613
+ },
1614
+ "tick-label": {
1615
+ "value": "$slider-histogram.font.tick-label.light",
1616
+ "type": "color"
1617
+ }
1618
+ },
1619
+ "handle": {
1620
+ "background": {
1621
+ "value": "$slider-histogram.handle.background.light",
1622
+ "type": "color"
1623
+ },
1624
+ "border": {
1625
+ "value": "$slider-histogram.handle.border.light",
1626
+ "type": "color"
1627
+ }
1628
+ },
1629
+ "border": {
1630
+ "default": {
1631
+ "value": "$slider-histogram.border.default.light",
1632
+ "type": "color"
1633
+ },
1634
+ "active": {
1635
+ "value": "$slider-histogram.border.active.light",
1636
+ "type": "color"
1637
+ }
1638
+ },
1639
+ "tick": {
1640
+ "default": {
1641
+ "background": {
1642
+ "value": "$slider-histogram.tick.default.background.light",
1643
+ "type": "color"
1644
+ },
1645
+ "border": {
1646
+ "value": "$slider-histogram.tick.default.border.light",
1647
+ "type": "color"
1648
+ }
1649
+ },
1650
+ "active": {
1651
+ "background": {
1652
+ "value": "$slider-histogram.tick.active.background.light",
1653
+ "type": "color"
1654
+ },
1655
+ "border": {
1656
+ "value": "$slider-histogram.tick.active.border.light",
1657
+ "type": "color"
1658
+ }
1659
+ }
1660
+ },
1661
+ "area": {
1662
+ "active": {
1663
+ "background": {
1664
+ "value": "$slider-histogram.area.active.background.light",
1665
+ "type": "color"
1666
+ }
1667
+ }
1668
+ },
1669
+ "active-end": {
1670
+ "background": {
1671
+ "value": "$slider-histogram.active-end.background.light",
1672
+ "type": "color"
1673
+ }
1674
+ }
1675
+ },
1676
+ "slider-histogram-range": {
1677
+ "font": {
1678
+ "label": {
1679
+ "value": "$slider-histogram-range.font.label.light",
1680
+ "type": "color"
1681
+ },
1682
+ "tick-label": {
1683
+ "value": "$slider-histogram-range.font.tick-label.light",
1684
+ "type": "color"
1685
+ }
1686
+ },
1687
+ "handle": {
1688
+ "background": {
1689
+ "value": "$slider-histogram-range.handle.background.light",
1690
+ "type": "color"
1691
+ },
1692
+ "border": {
1693
+ "value": "$slider-histogram-range.handle.border.light",
1694
+ "type": "color"
1695
+ }
1696
+ },
1697
+ "border": {
1698
+ "default": {
1699
+ "value": "$slider-histogram-range.border.default.light",
1700
+ "type": "color"
1701
+ },
1702
+ "active": {
1703
+ "value": "$slider-histogram-range.border.active.light",
1704
+ "type": "color"
1705
+ }
1706
+ },
1707
+ "tick": {
1708
+ "default": {
1709
+ "background": {
1710
+ "value": "$slider-histogram-range.tick.default.background.light",
1711
+ "type": "color"
1712
+ },
1713
+ "border": {
1714
+ "value": "$slider-histogram-range.tick.default.border.light",
1715
+ "type": "color"
1716
+ }
1717
+ },
1718
+ "active": {
1719
+ "background": {
1720
+ "value": "$slider-histogram-range.tick.active.background.light",
1721
+ "type": "color"
1722
+ },
1723
+ "border": {
1724
+ "value": "$slider-histogram-range.tick.active.border.light",
1725
+ "type": "color"
1726
+ }
1727
+ }
1728
+ },
1729
+ "area": {
1730
+ "active": {
1731
+ "background": {
1732
+ "value": "$slider-histogram-range.area.active.background.light",
1733
+ "type": "color"
1734
+ }
1735
+ }
1736
+ },
1737
+ "active-end": {
1738
+ "background": {
1739
+ "value": "$slider-histogram.active-end.background.light",
1740
+ "type": "color"
1741
+ }
1742
+ }
1743
+ },
1744
+ "filter": {
1745
+ "font": {
1746
+ "value": "$filter.font.light",
1747
+ "type": "color"
1748
+ },
1749
+ "icon": {
1750
+ "value": "$filter.icon.light",
1751
+ "type": "color"
1752
+ },
1753
+ "border": {
1754
+ "value": "$filter.border.light",
1755
+ "type": "color"
1756
+ },
1757
+ "background": {
1758
+ "value": "$filter.background.light",
1759
+ "type": "color"
1760
+ }
1761
+ },
1762
+ "scrim": {
1763
+ "background": {
1764
+ "value": "$scrim.background.light",
1765
+ "type": "color"
1766
+ }
1767
+ },
1768
+ "tip-manager": {
1769
+ "font": {
1770
+ "heading": {
1771
+ "value": "$tip-manager.font.heading.light",
1772
+ "type": "color"
1773
+ }
1774
+ },
1775
+ "icon": {
1776
+ "value": "$tip-manager.icon.light",
1777
+ "type": "color"
1778
+ },
1779
+ "background": {
1780
+ "default": {
1781
+ "light": {
1782
+ "value": "$tip-manager.background.default.light",
1783
+ "type": "color"
1784
+ }
1785
+ }
1786
+ },
1787
+ "border": {
1788
+ "default": {
1789
+ "value": "$tip-manager.border.default.light",
1790
+ "type": "color"
1791
+ }
1792
+ }
1793
+ },
1794
+ "button": {
1795
+ "font": {
1796
+ "brand": {
1797
+ "solid": {
1798
+ "value": "$button.font.brand.solid.light",
1799
+ "type": "color"
1800
+ },
1801
+ "outline-fill": {
1802
+ "value": "$button.font.brand.outline-fill.light",
1803
+ "type": "color"
1804
+ },
1805
+ "outline": {
1806
+ "value": "$button.font.brand.outline.light",
1807
+ "type": "color"
1808
+ },
1809
+ "transparent": {
1810
+ "value": "$button.font.brand.transparent.light",
1811
+ "type": "color"
1812
+ }
1813
+ },
1814
+ "inverse": {
1815
+ "solid": {
1816
+ "value": "$button.font.inverse.solid.light",
1817
+ "type": "color"
1818
+ },
1819
+ "outline-fill": {
1820
+ "value": "$button.font.inverse.outline-fill.light",
1821
+ "type": "color"
1822
+ },
1823
+ "outline": {
1824
+ "value": "$button.font.inverse.outline.light",
1825
+ "type": "color"
1826
+ },
1827
+ "transparent": {
1828
+ "value": "$button.font.inverse.transparent.light",
1829
+ "type": "color"
1830
+ }
1831
+ },
1832
+ "neutral": {
1833
+ "solid": {
1834
+ "value": "$button.font.inverse.solid.light",
1835
+ "type": "color"
1836
+ },
1837
+ "outline-fill": {
1838
+ "value": "$button.font.inverse.outline-fill.light",
1839
+ "type": "color"
1840
+ },
1841
+ "outline": {
1842
+ "value": "$button.font.inverse.outline.light",
1843
+ "type": "color"
1844
+ },
1845
+ "transparent": {
1846
+ "value": "$button.font.inverse.transparent.light",
1847
+ "type": "color"
1848
+ }
1849
+ },
1850
+ "danger": {
1851
+ "solid": {
1852
+ "value": "$button.font.danger.solid.light",
1853
+ "type": "color"
1854
+ },
1855
+ "outline-fill": {
1856
+ "value": "$button.font.danger.outline-fill.light",
1857
+ "type": "color"
1858
+ },
1859
+ "outline": {
1860
+ "value": "$button.font.danger.outline.light",
1861
+ "type": "color"
1862
+ },
1863
+ "transparent": {
1864
+ "value": "$button.font.danger.transparent.light",
1865
+ "type": "color"
1866
+ }
1867
+ }
1868
+ },
1869
+ "icon": {
1870
+ "brand": {
1871
+ "solid": {
1872
+ "value": "$button.icon.brand.solid.light",
1873
+ "type": "color"
1874
+ },
1875
+ "outline-fill": {
1876
+ "value": "$button.icon.brand.outline-fill.light",
1877
+ "type": "color"
1878
+ },
1879
+ "outline": {
1880
+ "value": "$button.icon.brand.outline.light",
1881
+ "type": "color"
1882
+ },
1883
+ "transparent": {
1884
+ "value": "$button.icon.brand.transparent.light",
1885
+ "type": "color"
1886
+ }
1887
+ },
1888
+ "inverse": {
1889
+ "solid": {
1890
+ "value": "$button.icon.inverse.solid.light",
1891
+ "type": "color"
1892
+ },
1893
+ "outline-fill": {
1894
+ "value": "$button.icon.inverse.outline-fill.light",
1895
+ "type": "color"
1896
+ },
1897
+ "outline": {
1898
+ "value": "$button.icon.inverse.outline.light",
1899
+ "type": "color"
1900
+ },
1901
+ "transparent": {
1902
+ "value": "$button.icon.inverse.transparent.light",
1903
+ "type": "color"
1904
+ }
1905
+ },
1906
+ "neutral": {
1907
+ "solid": {
1908
+ "value": "$button.icon.inverse.solid.light",
1909
+ "type": "color"
1910
+ },
1911
+ "outline-fill": {
1912
+ "value": "$button.icon.inverse.outline-fill.light",
1913
+ "type": "color"
1914
+ },
1915
+ "outline": {
1916
+ "value": "$button.icon.inverse.outline.light",
1917
+ "type": "color"
1918
+ },
1919
+ "transparent": {
1920
+ "value": "$button.icon.inverse.transparent.light",
1921
+ "type": "color"
1922
+ }
1923
+ },
1924
+ "danger": {
1925
+ "solid": {
1926
+ "value": "$button.icon.danger.solid.light",
1927
+ "type": "color"
1928
+ },
1929
+ "outline-fill": {
1930
+ "value": "$button.icon.danger.outline-fill.light",
1931
+ "type": "color"
1932
+ },
1933
+ "outline": {
1934
+ "value": "$button.icon.danger.outline.light",
1935
+ "type": "color"
1936
+ },
1937
+ "transparent": {
1938
+ "value": "$button.icon.danger.transparent.light",
1939
+ "type": "color"
1940
+ }
1941
+ }
1942
+ },
1943
+ "background": {
1944
+ "brand": {
1945
+ "solid": {
1946
+ "value": "$button.background.brand.solid.light",
1947
+ "type": "color"
1948
+ },
1949
+ "outline-fill": {
1950
+ "value": "$button.background.brand.outline-fill.light",
1951
+ "type": "color"
1952
+ }
1953
+ },
1954
+ "inverse": {
1955
+ "solid": {
1956
+ "value": "$button.background.inverse.solid.light",
1957
+ "type": "color"
1958
+ },
1959
+ "outline-fill": {
1960
+ "value": "$button.background.inverse.outline-fill.light",
1961
+ "type": "color"
1962
+ }
1963
+ },
1964
+ "neutral": {
1965
+ "solid": {
1966
+ "value": "$button.background.inverse.solid.light",
1967
+ "type": "color"
1968
+ },
1969
+ "outline-fill": {
1970
+ "value": "$button.background.inverse.outline-fill.light",
1971
+ "type": "color"
1972
+ }
1973
+ },
1974
+ "danger": {
1975
+ "solid": {
1976
+ "value": "$button.background.danger.solid.light",
1977
+ "type": "color"
1978
+ },
1979
+ "outline-fill": {
1980
+ "value": "$button.background.danger.outline-fill.light",
1981
+ "type": "color"
1982
+ }
1983
+ }
1984
+ },
1985
+ "border": {
1986
+ "brand": {
1987
+ "outline-fill": {
1988
+ "value": "$button.border.brand.outline-fill.light",
1989
+ "type": "color"
1990
+ },
1991
+ "outline": {
1992
+ "value": "$button.border.brand.outline.light",
1993
+ "type": "color"
1994
+ }
1995
+ },
1996
+ "inverse": {
1997
+ "outline-fill": {
1998
+ "value": "$button.border.inverse.outline-fill.light",
1999
+ "type": "color"
2000
+ },
2001
+ "outline": {
2002
+ "value": "$button.border.inverse.outline.light",
2003
+ "type": "color"
2004
+ }
2005
+ },
2006
+ "neutral": {
2007
+ "outline-fill": {
2008
+ "value": "$button.border.inverse.outline-fill.light",
2009
+ "type": "color"
2010
+ },
2011
+ "outline": {
2012
+ "value": "$button.border.inverse.outline.light",
2013
+ "type": "color"
2014
+ }
2015
+ },
2016
+ "danger": {
2017
+ "outline-fill": {
2018
+ "value": "$button.border.danger.outline-fill.light",
2019
+ "type": "color"
2020
+ },
2021
+ "outline": {
2022
+ "value": "$button.border.danger.outline.light",
2023
+ "type": "color"
2024
+ }
2025
+ }
2026
+ }
2027
+ },
2028
+ "split-button": {
2029
+ "font": {
2030
+ "brand": {
2031
+ "solid": {
2032
+ "value": "$split-button.font.brand.solid.light",
2033
+ "type": "color"
2034
+ },
2035
+ "outline-fill": {
2036
+ "value": "$split-button.font.brand.outline-fill.light",
2037
+ "type": "color"
2038
+ },
2039
+ "outline": {
2040
+ "value": "$split-button.font.brand.outline.light",
2041
+ "type": "color"
2042
+ },
2043
+ "transparent": {
2044
+ "value": "$split-button.font.brand.transparent.light",
2045
+ "type": "color"
2046
+ }
2047
+ },
2048
+ "inverse": {
2049
+ "solid": {
2050
+ "value": "$split-button.font.inverse.solid.light",
2051
+ "type": "color"
2052
+ },
2053
+ "outline-fill": {
2054
+ "value": "$split-button.font.inverse.outline-fill.light",
2055
+ "type": "color"
2056
+ },
2057
+ "outline": {
2058
+ "value": "$split-button.font.inverse.outline.light",
2059
+ "type": "color"
2060
+ },
2061
+ "transparent": {
2062
+ "value": "$split-button.font.inverse.transparent.light",
2063
+ "type": "color"
2064
+ }
2065
+ },
2066
+ "neutral": {
2067
+ "solid": {
2068
+ "value": "$split-button.font.inverse.solid.light",
2069
+ "type": "color"
2070
+ },
2071
+ "outline-fill": {
2072
+ "value": "$split-button.font.inverse.outline-fill.light",
2073
+ "type": "color"
2074
+ },
2075
+ "outline": {
2076
+ "value": "$split-button.font.inverse.outline.light",
2077
+ "type": "color"
2078
+ },
2079
+ "transparent": {
2080
+ "value": "$split-button.font.inverse.transparent.light",
2081
+ "type": "color"
2082
+ }
2083
+ },
2084
+ "danger": {
2085
+ "solid": {
2086
+ "value": "$split-button.font.danger.solid.light",
2087
+ "type": "color"
2088
+ },
2089
+ "outline-fill": {
2090
+ "value": "$split-button.font.danger.outline-fill.light",
2091
+ "type": "color"
2092
+ },
2093
+ "outline": {
2094
+ "value": "$split-button.font.danger.outline.light",
2095
+ "type": "color"
2096
+ },
2097
+ "transparent": {
2098
+ "value": "$split-button.font.danger.transparent.light",
2099
+ "type": "color"
2100
+ }
2101
+ }
2102
+ },
2103
+ "icon": {
2104
+ "brand": {
2105
+ "solid": {
2106
+ "value": "$split-button.icon.brand.solid.light",
2107
+ "type": "color"
2108
+ },
2109
+ "outline-fill": {
2110
+ "value": "$split-button.icon.brand.outline-fill.light",
2111
+ "type": "color"
2112
+ },
2113
+ "outline": {
2114
+ "value": "$split-button.icon.brand.outline.light",
2115
+ "type": "color"
2116
+ },
2117
+ "transparent": {
2118
+ "value": "$split-button.icon.brand.transparent.light",
2119
+ "type": "color"
2120
+ }
2121
+ },
2122
+ "inverse": {
2123
+ "solid": {
2124
+ "value": "$split-button.icon.inverse.solid.light",
2125
+ "type": "color"
2126
+ },
2127
+ "outline-fill": {
2128
+ "value": "$split-button.icon.inverse.outline-fill.light",
2129
+ "type": "color"
2130
+ },
2131
+ "outline": {
2132
+ "value": "$split-button.icon.inverse.outline.light",
2133
+ "type": "color"
2134
+ },
2135
+ "transparent": {
2136
+ "value": "$split-button.icon.inverse.transparent.light",
2137
+ "type": "color"
2138
+ }
2139
+ },
2140
+ "neutral": {
2141
+ "solid": {
2142
+ "value": "$split-button.icon.inverse.solid.light",
2143
+ "type": "color"
2144
+ },
2145
+ "outline-fill": {
2146
+ "value": "$split-button.icon.inverse.outline-fill.light",
2147
+ "type": "color"
2148
+ },
2149
+ "outline": {
2150
+ "value": "$split-button.icon.inverse.outline.light",
2151
+ "type": "color"
2152
+ },
2153
+ "transparent": {
2154
+ "value": "$split-button.icon.inverse.transparent.light",
2155
+ "type": "color"
2156
+ }
2157
+ },
2158
+ "danger": {
2159
+ "solid": {
2160
+ "value": "$split-button.icon.danger.solid.light",
2161
+ "type": "color"
2162
+ },
2163
+ "outline-fill": {
2164
+ "value": "$split-button.icon.danger.outline-fill.light",
2165
+ "type": "color"
2166
+ },
2167
+ "outline": {
2168
+ "value": "$split-button.icon.danger.outline.light",
2169
+ "type": "color"
2170
+ },
2171
+ "transparent": {
2172
+ "value": "$split-button.icon.danger.transparent.light",
2173
+ "type": "color"
2174
+ }
2175
+ }
2176
+ },
2177
+ "background": {
2178
+ "brand": {
2179
+ "solid": {
2180
+ "value": "$split-button.background.brand.solid.light",
2181
+ "type": "color"
2182
+ },
2183
+ "outline-fill": {
2184
+ "value": "$split-button.background.brand.outline-fill.light",
2185
+ "type": "color"
2186
+ }
2187
+ },
2188
+ "inverse": {
2189
+ "solid": {
2190
+ "value": "$split-button.background.inverse.solid.light",
2191
+ "type": "color"
2192
+ },
2193
+ "outline-fill": {
2194
+ "value": "$split-button.background.inverse.outline-fill.light",
2195
+ "type": "color"
2196
+ }
2197
+ },
2198
+ "neutral": {
2199
+ "solid": {
2200
+ "value": "$split-button.background.inverse.solid.light",
2201
+ "type": "color"
2202
+ },
2203
+ "outline-fill": {
2204
+ "value": "$split-button.background.inverse.outline-fill.light",
2205
+ "type": "color"
2206
+ }
2207
+ },
2208
+ "danger": {
2209
+ "solid": {
2210
+ "value": "$split-button.background.danger.solid.light",
2211
+ "type": "color"
2212
+ },
2213
+ "outline-fill": {
2214
+ "value": "$split-button.background.danger.outline-fill.light",
2215
+ "type": "color"
2216
+ }
2217
+ }
2218
+ },
2219
+ "border": {
2220
+ "brand": {
2221
+ "outline-fill": {
2222
+ "value": "$split-button.border.brand.outline-fill.light",
2223
+ "type": "color"
2224
+ },
2225
+ "outline": {
2226
+ "value": "$split-button.border.brand.outline.light",
2227
+ "type": "color"
2228
+ }
2229
+ },
2230
+ "inverse": {
2231
+ "outline-fill": {
2232
+ "value": "$split-button.border.inverse.outline-fill.light",
2233
+ "type": "color"
2234
+ },
2235
+ "outline": {
2236
+ "value": "$split-button.border.inverse.outline.light",
2237
+ "type": "color"
2238
+ }
2239
+ },
2240
+ "neutral": {
2241
+ "outline-fill": {
2242
+ "value": "$button.border.inverse.outline-fill.light",
2243
+ "type": "color"
2244
+ },
2245
+ "outline": {
2246
+ "value": "$split-button.border.inverse.outline.light",
2247
+ "type": "color"
2248
+ }
2249
+ },
2250
+ "danger": {
2251
+ "outline-fill": {
2252
+ "value": "$split-button.border.danger.outline-fill.light",
2253
+ "type": "color"
2254
+ },
2255
+ "outline": {
2256
+ "value": "$split-button.border.danger.outline.light",
2257
+ "type": "color"
2258
+ }
2259
+ }
2260
+ },
2261
+ "divider": {
2262
+ "brand": {
2263
+ "solid": {
2264
+ "value": "$split-button.divider.brand.solid.light",
2265
+ "type": "color"
2266
+ },
2267
+ "outline-fill": {
2268
+ "value": "$split-button.divider.brand.outline-fill.light",
2269
+ "type": "color"
2270
+ },
2271
+ "outline": {
2272
+ "value": "$split-button.divider.brand.outline.light",
2273
+ "type": "color"
2274
+ },
2275
+ "transparent": {
2276
+ "value": "$split-button.divider.brand.transparent.light",
2277
+ "type": "color"
2278
+ }
2279
+ },
2280
+ "inverse": {
2281
+ "solid": {
2282
+ "value": "$split-button.divider.inverse.solid.light",
2283
+ "type": "color"
2284
+ },
2285
+ "outline-fill": {
2286
+ "value": "$split-button.divider.inverse.outline-fill.light",
2287
+ "type": "color"
2288
+ },
2289
+ "outline": {
2290
+ "value": "$split-button.divider.inverse.outline.light",
2291
+ "type": "color"
2292
+ },
2293
+ "transparent": {
2294
+ "value": "$split-button.divider.inverse.transparent.light",
2295
+ "type": "color"
2296
+ }
2297
+ },
2298
+ "neutral": {
2299
+ "solid": {
2300
+ "value": "$split-button.divider.inverse.solid.light",
2301
+ "type": "color"
2302
+ },
2303
+ "outline-fill": {
2304
+ "value": "$split-button.divider.inverse.outline-fill.light",
2305
+ "type": "color"
2306
+ },
2307
+ "outline": {
2308
+ "value": "$split-button.divider.inverse.outline.light",
2309
+ "type": "color"
2310
+ },
2311
+ "transparent": {
2312
+ "value": "$split-button.divider.inverse.transparent.light",
2313
+ "type": "color"
2314
+ }
2315
+ },
2316
+ "danger": {
2317
+ "solid": {
2318
+ "value": "$split-button.divider.danger.solid.light",
2319
+ "type": "color"
2320
+ },
2321
+ "outline-fill": {
2322
+ "value": "$split-button.divider.danger.outline-fill.light",
2323
+ "type": "color"
2324
+ },
2325
+ "outline": {
2326
+ "value": "$split-button.divider.danger.outline.light",
2327
+ "type": "color"
2328
+ },
2329
+ "transparent": {
2330
+ "value": "$split-button.divider.danger.transparent.light",
2331
+ "type": "color"
2332
+ }
2333
+ }
2334
+ }
2335
+ },
2336
+ "fab": {
2337
+ "font": {
2338
+ "brand": {
2339
+ "solid": {
2340
+ "value": "$fab.font.brand.solid.light",
2341
+ "type": "color"
2342
+ },
2343
+ "outline-fill": {
2344
+ "value": "$fab.font.brand.outline-fill.light",
2345
+ "type": "color"
2346
+ }
2347
+ },
2348
+ "inverse": {
2349
+ "solid": {
2350
+ "value": "$fab.font.inverse.solid.light",
2351
+ "type": "color"
2352
+ },
2353
+ "outline-fill": {
2354
+ "value": "$fab.font.inverse.outline-fill.light",
2355
+ "type": "color"
2356
+ }
2357
+ },
2358
+ "neutral": {
2359
+ "solid": {
2360
+ "value": "$fab.font.inverse.solid.light",
2361
+ "type": "color"
2362
+ },
2363
+ "outline-fill": {
2364
+ "value": "$fab.font.inverse.outline-fill.light",
2365
+ "type": "color"
2366
+ }
2367
+ },
2368
+ "danger": {
2369
+ "solid": {
2370
+ "value": "$fab.font.danger.solid.light",
2371
+ "type": "color"
2372
+ },
2373
+ "outline-fill": {
2374
+ "value": "$fab.font.danger.outline-fill.light",
2375
+ "type": "color"
2376
+ }
2377
+ }
2378
+ },
2379
+ "icon": {
2380
+ "brand": {
2381
+ "solid": {
2382
+ "value": "$fab.icon.brand.solid.light",
2383
+ "type": "color"
2384
+ },
2385
+ "outline-fill": {
2386
+ "value": "$fab.icon.brand.outline-fill.light",
2387
+ "type": "color"
2388
+ }
2389
+ },
2390
+ "inverse": {
2391
+ "solid": {
2392
+ "value": "$fab.icon.inverse.solid.light",
2393
+ "type": "color"
2394
+ },
2395
+ "outline-fill": {
2396
+ "value": "$fab.icon.inverse.outline-fill.light",
2397
+ "type": "color"
2398
+ }
2399
+ },
2400
+ "neutral": {
2401
+ "solid": {
2402
+ "value": "$fab.icon.inverse.solid.light",
2403
+ "type": "color"
2404
+ },
2405
+ "outline-fill": {
2406
+ "value": "$fab.icon.inverse.outline-fill.light",
2407
+ "type": "color"
2408
+ }
2409
+ },
2410
+ "danger": {
2411
+ "solid": {
2412
+ "value": "$fab.icon.danger.solid.light",
2413
+ "type": "color"
2414
+ },
2415
+ "outline-fill": {
2416
+ "value": "$fab.icon.danger.outline-fill.light",
2417
+ "type": "color"
2418
+ }
2419
+ }
2420
+ },
2421
+ "background": {
2422
+ "brand": {
2423
+ "solid": {
2424
+ "value": "$fab.background.brand.solid.light",
2425
+ "type": "color"
2426
+ },
2427
+ "outline-fill": {
2428
+ "value": "$fab.background.brand.outline-fill.light",
2429
+ "type": "color"
2430
+ }
2431
+ },
2432
+ "inverse": {
2433
+ "solid": {
2434
+ "value": "$fab.background.inverse.solid.light",
2435
+ "type": "color"
2436
+ },
2437
+ "outline-fill": {
2438
+ "value": "$fab.background.inverse.outline-fill.light",
2439
+ "type": "color"
2440
+ }
2441
+ },
2442
+ "neutral": {
2443
+ "solid": {
2444
+ "value": "$fab.background.inverse.solid.light",
2445
+ "type": "color"
2446
+ },
2447
+ "outline-fill": {
2448
+ "value": "$fab.background.inverse.outline-fill.light",
2449
+ "type": "color"
2450
+ }
2451
+ },
2452
+ "danger": {
2453
+ "solid": {
2454
+ "value": "$fab.background.danger.solid.light",
2455
+ "type": "color"
2456
+ },
2457
+ "outline-fill": {
2458
+ "value": "$fab.background.danger.outline-fill.light",
2459
+ "type": "color"
2460
+ }
2461
+ }
2462
+ },
2463
+ "border": {
2464
+ "brand": {
2465
+ "outline-fill": {
2466
+ "value": "$fab.border.brand.outline-fill.light",
2467
+ "type": "color"
2468
+ },
2469
+ "solid": {
2470
+ "value": "$fab.border.brand.solid.light",
2471
+ "type": "color"
2472
+ }
2473
+ },
2474
+ "inverse": {
2475
+ "outline-fill": {
2476
+ "value": "$fab.border.inverse.outline-fill.light",
2477
+ "type": "color"
2478
+ },
2479
+ "solid": {
2480
+ "value": "$fab.border.inverse.solid.light",
2481
+ "type": "color"
2482
+ }
2483
+ },
2484
+ "neutral": {
2485
+ "outline-fill": {
2486
+ "value": "$fab.border.inverse.outline-fill.light",
2487
+ "type": "color"
2488
+ },
2489
+ "solid": {
2490
+ "value": "$fab.border.inverse.solid.light",
2491
+ "type": "color"
2492
+ }
2493
+ },
2494
+ "danger": {
2495
+ "outline-fill": {
2496
+ "value": "$fab.border.danger.outline-fill.light",
2497
+ "type": "color"
2498
+ },
2499
+ "solid": {
2500
+ "value": "$fab.border.danger.solid.light",
2501
+ "type": "color"
2502
+ }
2503
+ }
2504
+ }
2505
+ }
2506
+ }
2507
+ }
2508
+ }