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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. package/.eslintrc.cjs +85 -0
  2. package/.turbo/turbo-build.log +64 -0
  3. package/.turbo/turbo-test.log +14 -0
  4. package/CHANGELOG.md +17 -4
  5. package/CONTRIBUTING.md +41 -0
  6. package/LICENSE.md +13 -0
  7. package/README.md +9 -11
  8. package/dist/css/brand-light.css +1 -1
  9. package/dist/css/calcite-dark.css +1 -1
  10. package/dist/css/calcite-headless.css +2 -1
  11. package/dist/css/calcite-light.css +1 -1
  12. package/dist/scss/brand-light.scss +1 -1
  13. package/dist/scss/calcite-dark.scss +1 -1
  14. package/dist/scss/calcite-headless.scss +3 -1
  15. package/dist/scss/calcite-light.scss +1 -1
  16. package/jest.config.json +16 -0
  17. package/package.json +11 -72
  18. package/src/$metadata.json +76 -0
  19. package/src/$themes.json +2360 -0
  20. package/src/brand/dark.json +1 -0
  21. package/src/brand/global.json +1 -0
  22. package/src/brand/light.json +20 -0
  23. package/src/calcite/dark.json +2488 -0
  24. package/src/calcite/light.json +2508 -0
  25. package/src/component/accordion-item.json +172 -0
  26. package/src/component/accordion.json +192 -0
  27. package/src/component/action-bar-grid.json +66 -0
  28. package/src/component/action-bar.json +66 -0
  29. package/src/component/action-pad-grid.json +80 -0
  30. package/src/component/action-pad.json +80 -0
  31. package/src/component/action.json +156 -0
  32. package/src/component/alert.json +258 -0
  33. package/src/component/avatar.json +140 -0
  34. package/src/component/block-section.json +124 -0
  35. package/src/component/block.json +198 -0
  36. package/src/component/button.json +650 -0
  37. package/src/component/card.json +116 -0
  38. package/src/component/checkbox.json +110 -0
  39. package/src/component/chip.json +382 -0
  40. package/src/component/color-picker.json +148 -0
  41. package/src/component/combobox.json +152 -0
  42. package/src/component/date-picker.json +354 -0
  43. package/src/component/dropdown-item.json +384 -0
  44. package/src/component/dropdown.json +58 -0
  45. package/src/component/fab.json +490 -0
  46. package/src/component/filter.json +174 -0
  47. package/src/component/input-date-picker.json +224 -0
  48. package/src/component/input-datetime-local.json +230 -0
  49. package/src/component/input-email.json +244 -0
  50. package/src/component/input-file.json +244 -0
  51. package/src/component/input-message.json +72 -0
  52. package/src/component/input-month.json +244 -0
  53. package/src/component/input-number.json +244 -0
  54. package/src/component/input-password.json +244 -0
  55. package/src/component/input-search.json +244 -0
  56. package/src/component/input-telephone.json +244 -0
  57. package/src/component/input-text.json +244 -0
  58. package/src/component/input-time.json +1 -0
  59. package/src/component/input-week.json +244 -0
  60. package/src/component/label.json +26 -0
  61. package/src/component/link.json +44 -0
  62. package/src/component/loader.json +130 -0
  63. package/src/component/modal.json +278 -0
  64. package/src/component/notice.json +280 -0
  65. package/src/component/pagination.json +152 -0
  66. package/src/component/panel-header.json +88 -0
  67. package/src/component/popover.json +170 -0
  68. package/src/component/radio.json +124 -0
  69. package/src/component/rating.json +243 -0
  70. package/src/component/scrim.json +18 -0
  71. package/src/component/segmented-control.json +154 -0
  72. package/src/component/slider-histogram-range.json +284 -0
  73. package/src/component/slider-histogram.json +280 -0
  74. package/src/component/slider-range.json +226 -0
  75. package/src/component/slider.json +226 -0
  76. package/src/component/split-button.json +830 -0
  77. package/src/component/stepper-item.json +372 -0
  78. package/src/component/stepper.json +152 -0
  79. package/src/component/switch.json +178 -0
  80. package/src/component/tab-title.json +228 -0
  81. package/src/component/tabs.json +242 -0
  82. package/src/component/textarea.json +200 -0
  83. package/src/component/time-picker.json +138 -0
  84. package/src/component/tip-manager.json +118 -0
  85. package/src/component/tip.json +114 -0
  86. package/src/component/tooltip.json +66 -0
  87. package/src/component/tree-item.json +176 -0
  88. package/src/core.json +1709 -0
  89. package/src/semantic.json +1709 -0
  90. package/support/run.ts +16 -0
  91. package/support/token-transformer/format/scss.ts +81 -0
  92. package/support/token-transformer/getThemes.ts +41 -0
  93. package/support/token-transformer/parse/expandComposites.test.ts +144 -0
  94. package/support/token-transformer/parse/expandComposites.ts +72 -0
  95. package/support/token-transformer/sd-run.ts +147 -0
  96. package/support/token-transformer/transform/nameCamelCase.test.ts +36 -0
  97. package/support/token-transformer/transform/nameCamelCase.ts +15 -0
  98. package/support/token-transformer/transform/nameKebabCase.test.ts +36 -0
  99. package/support/token-transformer/transform/nameKebabCase.ts +26 -0
  100. package/support/token-transformer/utils/compositeTokens.test.ts +133 -0
  101. package/support/token-transformer/utils/compositeTokens.ts +103 -0
  102. package/support/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts +20 -0
  103. package/support/token-transformer/utils/matchList.ts +11 -0
  104. package/support/token-transformer/utils/parseName.ts +18 -0
  105. package/support/token-transformer/utils/parseTokenPath.ts +19 -0
  106. package/support/token-transformer/utils/regex.ts +9 -0
  107. package/support/token-transformer/utils/sortAllTokens.ts +12 -0
  108. package/support/token-transformer/utils/transformOptions.ts +31 -0
  109. package/tsconfig-base.json +17 -0
  110. package/tsconfig-eslint.json +4 -0
  111. package/tsconfig.json +4 -0
@@ -0,0 +1,154 @@
1
+ {
2
+ "segmented-control": {
3
+ "font": {
4
+ "default": {
5
+ "light": {
6
+ "value": "$semantic.ui.color.text.3.light",
7
+ "type": "color"
8
+ },
9
+ "dark": {
10
+ "value": "$semantic.ui.color.text.3.dark",
11
+ "type": "color"
12
+ }
13
+ },
14
+ "sm": {
15
+ "value": "$semantic.font.default.bold.-3h",
16
+ "type": "typography"
17
+ },
18
+ "md": {
19
+ "value": "$semantic.font.default.bold.-1h",
20
+ "type": "typography"
21
+ },
22
+ "lg": {
23
+ "value": "$semantic.font.default.bold.0h",
24
+ "type": "typography"
25
+ },
26
+ "checked": {
27
+ "light": {
28
+ "value": "$semantic.ui.color.text.inverse.light",
29
+ "type": "color"
30
+ },
31
+ "dark": {
32
+ "value": "$semantic.ui.color.text.inverse.dark",
33
+ "type": "color"
34
+ }
35
+ }
36
+ },
37
+ "border": {
38
+ "light": {
39
+ "value": "$semantic.ui.color.border.1.light",
40
+ "type": "color"
41
+ },
42
+ "dark": {
43
+ "value": "$semantic.ui.color.border.1.dark",
44
+ "type": "color"
45
+ }
46
+ },
47
+ "background": {
48
+ "default": {
49
+ "light": {
50
+ "value": "$semantic.ui.color.background.light",
51
+ "type": "color"
52
+ },
53
+ "dark": {
54
+ "value": "$semantic.ui.color.background.dark",
55
+ "type": "color"
56
+ }
57
+ }
58
+ },
59
+ "foreground": {
60
+ "light": {
61
+ "value": "$semantic.ui.color.foreground.2.light",
62
+ "type": "color"
63
+ },
64
+ "dark": {
65
+ "value": "$semantic.ui.color.foreground.2.dark",
66
+ "type": "color"
67
+ }
68
+ },
69
+ "border-radius": {
70
+ "sm": {
71
+ "value": "$core.border.border-radius.4",
72
+ "type": "borderRadius"
73
+ },
74
+ "md": {
75
+ "value": "$core.border.border-radius.5",
76
+ "type": "borderRadius"
77
+ },
78
+ "lg": {
79
+ "value": "$core.border.border-radius.6",
80
+ "type": "borderRadius"
81
+ }
82
+ },
83
+ "border-width": {
84
+ "sm": {
85
+ "value": "$core.border.border-width.1",
86
+ "type": "borderWidth"
87
+ },
88
+ "md": {
89
+ "value": "$core.border.border-width.2",
90
+ "type": "borderWidth"
91
+ },
92
+ "lg": {
93
+ "value": "$core.border.border-width.4",
94
+ "type": "borderWidth"
95
+ }
96
+ },
97
+ "comp-size": {
98
+ "sm": {
99
+ "value": "$core.sizing.9",
100
+ "type": "sizing"
101
+ },
102
+ "md": {
103
+ "value": "$core.sizing.11",
104
+ "type": "sizing"
105
+ },
106
+ "lg": {
107
+ "value": "$core.sizing.14",
108
+ "type": "sizing"
109
+ }
110
+ },
111
+ "icon-size": {
112
+ "sm": {
113
+ "value": "$core.sizing.7",
114
+ "type": "sizing"
115
+ },
116
+ "md": {
117
+ "value": "$core.sizing.9",
118
+ "type": "sizing"
119
+ },
120
+ "lg": {
121
+ "value": "$core.sizing.11",
122
+ "type": "sizing"
123
+ }
124
+ },
125
+ "space-between": {
126
+ "sm": {
127
+ "value": "$core.spacing.9",
128
+ "type": "spacing"
129
+ },
130
+ "md": {
131
+ "value": "$core.spacing.11",
132
+ "type": "spacing"
133
+ },
134
+ "lg": {
135
+ "value": "$core.spacing.14",
136
+ "type": "spacing"
137
+ }
138
+ },
139
+ "space-around": {
140
+ "sm": {
141
+ "value": "$core.spacing.7",
142
+ "type": "spacing"
143
+ },
144
+ "md": {
145
+ "value": "$core.spacing.9",
146
+ "type": "spacing"
147
+ },
148
+ "lg": {
149
+ "value": "$core.spacing.11",
150
+ "type": "spacing"
151
+ }
152
+ }
153
+ }
154
+ }
@@ -0,0 +1,284 @@
1
+ {
2
+ "slider-histogram-range": {
3
+ "font": {
4
+ "label": {
5
+ "light": {
6
+ "value": "$semantic.ui.color.text.1.light",
7
+ "type": "color"
8
+ },
9
+ "dark": {
10
+ "value": "$semantic.ui.color.text.1.dark",
11
+ "type": "color"
12
+ },
13
+ "sm": {
14
+ "value": "$semantic.font.default.regular.-2h",
15
+ "type": "typography"
16
+ },
17
+ "md": {
18
+ "value": "$semantic.font.default.regular.-1h",
19
+ "type": "typography"
20
+ },
21
+ "lg": {
22
+ "value": "$semantic.font.default.regular.0h",
23
+ "type": "typography"
24
+ }
25
+ },
26
+ "tick-label": {
27
+ "light": {
28
+ "value": "$semantic.ui.color.text.2.light",
29
+ "type": "color"
30
+ },
31
+ "dark": {
32
+ "value": "$semantic.ui.color.text.2.dark",
33
+ "type": "color"
34
+ },
35
+ "sm": {
36
+ "value": "$semantic.font.default.medium.-3h",
37
+ "type": "typography"
38
+ },
39
+ "md": {
40
+ "value": "$semantic.font.default.medium.-2h",
41
+ "type": "typography"
42
+ },
43
+ "lg": {
44
+ "value": "$semantic.font.default.medium.-1h",
45
+ "type": "typography"
46
+ }
47
+ }
48
+ },
49
+ "handle": {
50
+ "background": {
51
+ "light": {
52
+ "value": "$semantic.ui.color.foreground.1.light",
53
+ "type": "color"
54
+ },
55
+ "dark": {
56
+ "value": "$semantic.ui.color.foreground.1.dark",
57
+ "type": "color"
58
+ }
59
+ },
60
+ "border": {
61
+ "light": {
62
+ "value": "$semantic.ui.color.text.3.light",
63
+ "type": "color"
64
+ },
65
+ "dark": {
66
+ "value": "$semantic.ui.color.border.input.dark",
67
+ "type": "color"
68
+ }
69
+ },
70
+ "border-width": {
71
+ "sm": {
72
+ "value": "$core.border.border-width.1",
73
+ "type": "borderWidth"
74
+ },
75
+ "md": {
76
+ "value": "$core.border.border-width.1",
77
+ "type": "borderWidth"
78
+ },
79
+ "lg": {
80
+ "value": "$core.border.border-width.1",
81
+ "type": "borderWidth"
82
+ }
83
+ }
84
+ },
85
+ "border": {
86
+ "default": {
87
+ "light": {
88
+ "value": "$semantic.ui.color.border.2.light",
89
+ "type": "color"
90
+ },
91
+ "dark": {
92
+ "value": "$semantic.ui.color.border.2.dark",
93
+ "type": "color"
94
+ }
95
+ },
96
+ "active": {
97
+ "light": {
98
+ "value": "$semantic.ui.color.brand.default.light",
99
+ "type": "color"
100
+ },
101
+ "dark": {
102
+ "value": "$semantic.ui.color.brand.default.dark",
103
+ "type": "color"
104
+ }
105
+ }
106
+ },
107
+ "tick-size": {
108
+ "width": {
109
+ "sm": {
110
+ "value": "$core.sizing.1",
111
+ "type": "sizing"
112
+ },
113
+ "md": {
114
+ "value": "$core.sizing.1",
115
+ "type": "sizing"
116
+ },
117
+ "lg": {
118
+ "value": "$core.sizing.1",
119
+ "type": "sizing"
120
+ }
121
+ },
122
+ "height": {
123
+ "sm": {
124
+ "value": "$core.sizing.2",
125
+ "type": "sizing"
126
+ },
127
+ "md": {
128
+ "value": "$core.sizing.2",
129
+ "type": "sizing"
130
+ },
131
+ "lg": {
132
+ "value": "$core.sizing.2",
133
+ "type": "sizing"
134
+ }
135
+ }
136
+ },
137
+ "handle-size": {
138
+ "sm": {
139
+ "value": "$core.sizing.4",
140
+ "type": "sizing"
141
+ },
142
+ "md": {
143
+ "value": "$core.sizing.6",
144
+ "type": "sizing"
145
+ },
146
+ "lg": {
147
+ "value": "$core.sizing.7",
148
+ "type": "sizing"
149
+ }
150
+ },
151
+ "space-between": {
152
+ "sm": {
153
+ "value": "$core.spacing.1",
154
+ "type": "spacing"
155
+ },
156
+ "md": {
157
+ "value": "$core.spacing.3",
158
+ "type": "spacing"
159
+ },
160
+ "lg": {
161
+ "value": "$core.spacing.3",
162
+ "type": "spacing"
163
+ }
164
+ },
165
+ "space-around": {
166
+ "sm": {
167
+ "value": "$core.spacing.1",
168
+ "type": "spacing"
169
+ },
170
+ "md": {
171
+ "value": "$core.spacing.2",
172
+ "type": "spacing"
173
+ },
174
+ "lg": {
175
+ "value": "$core.spacing.3",
176
+ "type": "spacing"
177
+ }
178
+ },
179
+ "tick": {
180
+ "default": {
181
+ "background": {
182
+ "light": {
183
+ "value": "$semantic.ui.color.border.input.light",
184
+ "type": "color"
185
+ },
186
+ "dark": {
187
+ "value": "$semantic.ui.color.border.input.dark",
188
+ "type": "color"
189
+ }
190
+ },
191
+ "border": {
192
+ "light": {
193
+ "value": "$semantic.ui.color.foreground.1.light",
194
+ "type": "color"
195
+ },
196
+ "dark": {
197
+ "value": "$semantic.ui.color.foreground.1.dark",
198
+ "type": "color"
199
+ }
200
+ }
201
+ },
202
+ "active": {
203
+ "background": {
204
+ "light": {
205
+ "value": "$semantic.ui.color.brand.default.light",
206
+ "type": "color"
207
+ },
208
+ "dark": {
209
+ "value": "$semantic.ui.color.brand.default.dark",
210
+ "type": "color"
211
+ }
212
+ },
213
+ "border": {
214
+ "light": {
215
+ "value": "$semantic.ui.color.foreground.1.light",
216
+ "type": "color"
217
+ },
218
+ "dark": {
219
+ "value": "$semantic.ui.color.foreground.1.dark",
220
+ "type": "color"
221
+ }
222
+ }
223
+ },
224
+ "border-width": {
225
+ "sm": {
226
+ "value": "$core.border.border-width.0",
227
+ "type": "borderWidth"
228
+ },
229
+ "md": {
230
+ "value": "$core.border.border-width.0",
231
+ "type": "borderWidth"
232
+ },
233
+ "lg": {
234
+ "value": "$core.border.border-width.0",
235
+ "type": "borderWidth"
236
+ }
237
+ }
238
+ },
239
+ "area": {
240
+ "active": {
241
+ "background": {
242
+ "light": {
243
+ "value": "#9BBDDF",
244
+ "type": "color"
245
+ },
246
+ "dark": {
247
+ "value": "#8DCEF7",
248
+ "type": "color"
249
+ }
250
+ }
251
+ }
252
+ },
253
+ "active-start-end": {
254
+ "width": {
255
+ "sm": {
256
+ "value": "$core.sizing.0",
257
+ "type": "sizing"
258
+ },
259
+ "md": {
260
+ "value": "$core.sizing.0",
261
+ "type": "sizing"
262
+ },
263
+ "lg": {
264
+ "value": "$core.sizing.0",
265
+ "type": "sizing"
266
+ }
267
+ },
268
+ "height": {
269
+ "sm": {
270
+ "value": "$core.sizing.15",
271
+ "type": "sizing"
272
+ },
273
+ "md": {
274
+ "value": "$core.sizing.15",
275
+ "type": "sizing"
276
+ },
277
+ "lg": {
278
+ "value": "$core.sizing.15",
279
+ "type": "sizing"
280
+ }
281
+ }
282
+ }
283
+ }
284
+ }
@@ -0,0 +1,280 @@
1
+ {
2
+ "slider-histogram": {
3
+ "font": {
4
+ "label": {
5
+ "light": {
6
+ "value": "$semantic.ui.color.text.1.light",
7
+ "type": "color"
8
+ },
9
+ "dark": {
10
+ "value": "$semantic.ui.color.text.1.dark",
11
+ "type": "color"
12
+ },
13
+ "sm": {
14
+ "value": "$semantic.font.default.regular.-2h",
15
+ "type": "typography"
16
+ },
17
+ "md": {
18
+ "value": "$semantic.font.default.regular.-1h",
19
+ "type": "typography"
20
+ },
21
+ "lg": {
22
+ "value": "$semantic.font.default.regular.0h",
23
+ "type": "typography"
24
+ }
25
+ },
26
+ "tick-label": {
27
+ "light": {
28
+ "value": "$semantic.ui.color.text.2.light",
29
+ "type": "color"
30
+ },
31
+ "dark": {
32
+ "value": "$semantic.ui.color.text.2.dark",
33
+ "type": "color"
34
+ },
35
+ "sm": {
36
+ "value": "$semantic.font.default.medium.-3h",
37
+ "type": "typography"
38
+ },
39
+ "md": {
40
+ "value": "$semantic.font.default.medium.-2h",
41
+ "type": "typography"
42
+ },
43
+ "lg": {
44
+ "value": "$semantic.font.default.medium.-1h",
45
+ "type": "typography"
46
+ }
47
+ }
48
+ },
49
+ "handle": {
50
+ "background": {
51
+ "light": {
52
+ "value": "$semantic.ui.color.foreground.1.light",
53
+ "type": "color"
54
+ },
55
+ "dark": {
56
+ "value": "$semantic.ui.color.foreground.1.dark",
57
+ "type": "color"
58
+ }
59
+ },
60
+ "border": {
61
+ "light": {
62
+ "value": "$semantic.ui.color.text.3.light",
63
+ "type": "color"
64
+ },
65
+ "dark": {
66
+ "value": "$semantic.ui.color.border.input.dark",
67
+ "type": "color"
68
+ }
69
+ }
70
+ },
71
+ "border": {
72
+ "default": {
73
+ "light": {
74
+ "value": "$semantic.ui.color.border.2.light",
75
+ "type": "color"
76
+ },
77
+ "dark": {
78
+ "value": "$semantic.ui.color.border.2.dark",
79
+ "type": "color"
80
+ }
81
+ },
82
+ "active": {
83
+ "light": {
84
+ "value": "$semantic.ui.color.brand.default.light",
85
+ "type": "color"
86
+ },
87
+ "dark": {
88
+ "value": "$semantic.ui.color.brand.default.dark",
89
+ "type": "color"
90
+ }
91
+ }
92
+ },
93
+ "border-width": {
94
+ "sm": {
95
+ "value": "$core.border.border-width.1",
96
+ "type": "borderWidth"
97
+ },
98
+ "md": {
99
+ "value": "$core.border.border-width.1",
100
+ "type": "borderWidth"
101
+ },
102
+ "lg": {
103
+ "value": "$core.border.border-width.1",
104
+ "type": "borderWidth"
105
+ }
106
+ },
107
+ "tick-size": {
108
+ "width": {
109
+ "sm": {
110
+ "value": "$core.sizing.1",
111
+ "type": "sizing"
112
+ },
113
+ "md": {
114
+ "value": "$core.sizing.1",
115
+ "type": "sizing"
116
+ },
117
+ "lg": {
118
+ "value": "$core.sizing.1",
119
+ "type": "sizing"
120
+ }
121
+ },
122
+ "height": {
123
+ "sm": {
124
+ "value": "$core.sizing.2",
125
+ "type": "sizing"
126
+ },
127
+ "md": {
128
+ "value": "$core.sizing.2",
129
+ "type": "sizing"
130
+ },
131
+ "lg": {
132
+ "value": "$core.sizing.2",
133
+ "type": "sizing"
134
+ }
135
+ }
136
+ },
137
+ "handle-size": {
138
+ "sm": {
139
+ "value": "$core.sizing.4",
140
+ "type": "sizing"
141
+ },
142
+ "md": {
143
+ "value": "$core.sizing.6",
144
+ "type": "sizing"
145
+ },
146
+ "lg": {
147
+ "value": "$core.sizing.7",
148
+ "type": "sizing"
149
+ }
150
+ },
151
+ "space-between": {
152
+ "sm": {
153
+ "value": "$core.spacing.1",
154
+ "type": "spacing"
155
+ },
156
+ "md": {
157
+ "value": "$core.spacing.3",
158
+ "type": "spacing"
159
+ },
160
+ "lg": {
161
+ "value": "$core.spacing.3",
162
+ "type": "spacing"
163
+ }
164
+ },
165
+ "space-around": {
166
+ "sm": {
167
+ "value": "$core.spacing.1",
168
+ "type": "spacing"
169
+ },
170
+ "md": {
171
+ "value": "$core.spacing.2",
172
+ "type": "spacing"
173
+ },
174
+ "lg": {
175
+ "value": "$core.spacing.3",
176
+ "type": "spacing"
177
+ }
178
+ },
179
+ "tick": {
180
+ "default": {
181
+ "background": {
182
+ "light": {
183
+ "value": "$semantic.ui.color.border.input.light",
184
+ "type": "color"
185
+ },
186
+ "dark": {
187
+ "value": "$semantic.ui.color.border.input.dark",
188
+ "type": "color"
189
+ }
190
+ },
191
+ "border": {
192
+ "light": {
193
+ "value": "$semantic.ui.color.foreground.1.light",
194
+ "type": "color"
195
+ },
196
+ "dark": {
197
+ "value": "$semantic.ui.color.foreground.1.dark",
198
+ "type": "color"
199
+ }
200
+ }
201
+ },
202
+ "active": {
203
+ "background": {
204
+ "light": {
205
+ "value": "$semantic.ui.color.brand.default.light",
206
+ "type": "color"
207
+ },
208
+ "dark": {
209
+ "value": "$semantic.ui.color.brand.default.dark",
210
+ "type": "color"
211
+ }
212
+ },
213
+ "border": {
214
+ "light": {
215
+ "value": "$semantic.ui.color.foreground.1.light",
216
+ "type": "color"
217
+ },
218
+ "dark": {
219
+ "value": "$semantic.ui.color.foreground.1.dark",
220
+ "type": "color"
221
+ }
222
+ }
223
+ }
224
+ },
225
+ "area": {
226
+ "active": {
227
+ "background": {
228
+ "light": {
229
+ "value": "#9BBDDF",
230
+ "type": "color"
231
+ },
232
+ "dark": {
233
+ "value": "#8DCEF7",
234
+ "type": "color"
235
+ }
236
+ }
237
+ }
238
+ },
239
+ "active-end": {
240
+ "width": {
241
+ "sm": {
242
+ "value": "$core.sizing.0",
243
+ "type": "sizing"
244
+ },
245
+ "md": {
246
+ "value": "$core.sizing.0",
247
+ "type": "sizing"
248
+ },
249
+ "lg": {
250
+ "value": "$core.sizing.0",
251
+ "type": "sizing"
252
+ }
253
+ },
254
+ "height": {
255
+ "sm": {
256
+ "value": "$core.sizing.15",
257
+ "type": "sizing"
258
+ },
259
+ "md": {
260
+ "value": "$core.sizing.15",
261
+ "type": "sizing"
262
+ },
263
+ "lg": {
264
+ "value": "$core.sizing.15",
265
+ "type": "sizing"
266
+ }
267
+ },
268
+ "background": {
269
+ "light": {
270
+ "value": "$semantic.ui.color.foreground.1.light",
271
+ "type": "color"
272
+ },
273
+ "dark": {
274
+ "value": "$semantic.ui.color.foreground.1.dark",
275
+ "type": "color"
276
+ }
277
+ }
278
+ }
279
+ }
280
+ }