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