@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,372 @@
1
+ {
2
+ "stepper-item": {
3
+ "font": {
4
+ "heading": {
5
+ "default": {
6
+ "light": {
7
+ "value": "$semantic.ui.color.text.2.light",
8
+ "type": "color"
9
+ },
10
+ "dark": {
11
+ "value": "$semantic.ui.color.text.2.dark",
12
+ "type": "color"
13
+ }
14
+ },
15
+ "active": {
16
+ "light": {
17
+ "value": "$semantic.ui.color.text.1.light",
18
+ "type": "color"
19
+ },
20
+ "dark": {
21
+ "value": "$semantic.ui.color.text.1.dark",
22
+ "type": "color"
23
+ }
24
+ },
25
+ "error": {
26
+ "light": {
27
+ "value": "$semantic.ui.color.text.2.light",
28
+ "type": "color"
29
+ },
30
+ "dark": {
31
+ "value": "$semantic.ui.color.text.1.dark",
32
+ "type": "color"
33
+ }
34
+ },
35
+ "complete": {
36
+ "light": {
37
+ "value": "$semantic.ui.color.text.2.light",
38
+ "type": "color"
39
+ },
40
+ "dark": {
41
+ "value": "$semantic.ui.color.text.2.dark",
42
+ "type": "color"
43
+ }
44
+ },
45
+ "sm": {
46
+ "value": "$semantic.font.default.medium.-1h",
47
+ "type": "typography"
48
+ },
49
+ "md": {
50
+ "value": "$semantic.font.default.medium.0h",
51
+ "type": "typography"
52
+ },
53
+ "lg": {
54
+ "value": "$semantic.font.default.medium.1h",
55
+ "type": "typography"
56
+ }
57
+ },
58
+ "description": {
59
+ "default": {
60
+ "light": {
61
+ "value": "$semantic.ui.color.text.3.light",
62
+ "type": "color"
63
+ },
64
+ "dark": {
65
+ "value": "$semantic.ui.color.text.2.dark",
66
+ "type": "color"
67
+ }
68
+ },
69
+ "active": {
70
+ "light": {
71
+ "value": "$semantic.ui.color.text.2.light",
72
+ "type": "color"
73
+ },
74
+ "dark": {
75
+ "value": "$semantic.ui.color.text.1.dark",
76
+ "type": "color"
77
+ }
78
+ },
79
+ "error": {
80
+ "light": {
81
+ "value": "$semantic.ui.color.text.3.light",
82
+ "type": "color"
83
+ },
84
+ "dark": {
85
+ "value": "$semantic.ui.color.text.1.dark",
86
+ "type": "color"
87
+ }
88
+ },
89
+ "complete": {
90
+ "light": {
91
+ "value": "$semantic.ui.color.text.3.light",
92
+ "type": "color"
93
+ },
94
+ "dark": {
95
+ "value": "$semantic.ui.color.text.2.dark",
96
+ "type": "color"
97
+ }
98
+ },
99
+ "sm": {
100
+ "value": "$semantic.font.default.regular.-2h",
101
+ "type": "typography"
102
+ },
103
+ "md": {
104
+ "value": "$semantic.font.default.regular.-1h",
105
+ "type": "typography"
106
+ },
107
+ "lg": {
108
+ "value": "$semantic.font.default.regular.0h",
109
+ "type": "typography"
110
+ }
111
+ },
112
+ "context": {
113
+ "default": {
114
+ "light": {
115
+ "value": "$semantic.ui.color.text.3.light",
116
+ "type": "color"
117
+ },
118
+ "dark": {
119
+ "value": "$semantic.ui.color.text.2.dark",
120
+ "type": "color"
121
+ }
122
+ },
123
+ "active": {
124
+ "light": {
125
+ "value": "$semantic.ui.color.text.2.light",
126
+ "type": "color"
127
+ },
128
+ "dark": {
129
+ "value": "$semantic.ui.color.text.1.dark",
130
+ "type": "color"
131
+ }
132
+ },
133
+ "error": {
134
+ "light": {
135
+ "value": "$semantic.ui.color.text.3.light",
136
+ "type": "color"
137
+ },
138
+ "dark": {
139
+ "value": "$semantic.ui.color.text.1.dark",
140
+ "type": "color"
141
+ }
142
+ },
143
+ "complete": {
144
+ "light": {
145
+ "value": "$semantic.ui.color.text.3.light",
146
+ "type": "color"
147
+ },
148
+ "dark": {
149
+ "value": "$semantic.ui.color.text.2.dark",
150
+ "type": "color"
151
+ }
152
+ },
153
+ "sm": {
154
+ "value": "$semantic.font.default.regular.-2h",
155
+ "type": "typography"
156
+ },
157
+ "md": {
158
+ "value": "$semantic.font.default.regular.-1h",
159
+ "type": "typography"
160
+ },
161
+ "lg": {
162
+ "value": "$semantic.font.default.regular.0h",
163
+ "type": "typography"
164
+ }
165
+ }
166
+ },
167
+ "icon": {
168
+ "default": {
169
+ "light": {
170
+ "value": "$semantic.ui.color.border.3.light",
171
+ "type": "color"
172
+ },
173
+ "dark": {
174
+ "value": "$semantic.ui.color.border.3.dark",
175
+ "type": "color"
176
+ }
177
+ },
178
+ "active": {
179
+ "light": {
180
+ "value": "$semantic.ui.color.brand.default.light",
181
+ "type": "color"
182
+ },
183
+ "dark": {
184
+ "value": "$semantic.ui.color.brand.default.dark",
185
+ "type": "color"
186
+ }
187
+ },
188
+ "error": {
189
+ "light": {
190
+ "value": "$semantic.ui.color.danger.default.light",
191
+ "type": "color"
192
+ },
193
+ "dark": {
194
+ "value": "$semantic.ui.color.danger.default.dark",
195
+ "type": "color"
196
+ }
197
+ }
198
+ },
199
+ "border": {
200
+ "default": {
201
+ "light": {
202
+ "value": "$semantic.ui.color.border.3.light",
203
+ "type": "color"
204
+ },
205
+ "dark": {
206
+ "value": "$semantic.ui.color.border.3.dark",
207
+ "type": "color"
208
+ }
209
+ },
210
+ "active": {
211
+ "light": {
212
+ "value": "$semantic.ui.color.brand.default.light",
213
+ "type": "color"
214
+ },
215
+ "dark": {
216
+ "value": "$semantic.ui.color.brand.default.dark",
217
+ "type": "color"
218
+ }
219
+ },
220
+ "error": {
221
+ "light": {
222
+ "value": "$semantic.ui.color.danger.default.light",
223
+ "type": "color"
224
+ },
225
+ "dark": {
226
+ "value": "$semantic.ui.color.danger.default.dark",
227
+ "type": "color"
228
+ }
229
+ }
230
+ },
231
+ "background": {
232
+ "default": {
233
+ "light": {
234
+ "value": "$semantic.ui.color.background.light",
235
+ "type": "color"
236
+ },
237
+ "dark": {
238
+ "value": "$semantic.ui.color.background.dark",
239
+ "type": "color"
240
+ }
241
+ }
242
+ },
243
+ "foreground": {
244
+ "light": {
245
+ "value": "$semantic.ui.color.foreground.2.light",
246
+ "type": "color"
247
+ },
248
+ "dark": {
249
+ "value": "$semantic.ui.color.foreground.2.dark",
250
+ "type": "color"
251
+ }
252
+ },
253
+ "border-radius": {
254
+ "sm": {
255
+ "value": "$core.border.border-radius.4",
256
+ "type": "borderRadius"
257
+ },
258
+ "md": {
259
+ "value": "$core.border.border-radius.5",
260
+ "type": "borderRadius"
261
+ },
262
+ "lg": {
263
+ "value": "$core.border.border-radius.6",
264
+ "type": "borderRadius"
265
+ }
266
+ },
267
+ "border-width": {
268
+ "sm": {
269
+ "value": "$core.border.border-width.1",
270
+ "type": "borderWidth"
271
+ },
272
+ "md": {
273
+ "value": "$core.border.border-width.1",
274
+ "type": "borderWidth"
275
+ },
276
+ "lg": {
277
+ "value": "$core.border.border-width.1",
278
+ "type": "borderWidth"
279
+ }
280
+ },
281
+ "comp-size": {
282
+ "sm": {
283
+ "value": "$core.sizing.9",
284
+ "type": "sizing"
285
+ },
286
+ "md": {
287
+ "value": "$core.sizing.11",
288
+ "type": "sizing"
289
+ },
290
+ "lg": {
291
+ "value": "$core.sizing.14",
292
+ "type": "sizing"
293
+ }
294
+ },
295
+ "icon-size": {
296
+ "sm": {
297
+ "value": "$core.sizing.7",
298
+ "type": "sizing"
299
+ },
300
+ "md": {
301
+ "value": "$core.sizing.7",
302
+ "type": "sizing"
303
+ },
304
+ "lg": {
305
+ "value": "$core.sizing.7",
306
+ "type": "sizing"
307
+ }
308
+ },
309
+ "space-between": {
310
+ "sm": {
311
+ "value": "$core.spacing.5",
312
+ "type": "spacing"
313
+ },
314
+ "md": {
315
+ "value": "$core.spacing.7",
316
+ "type": "spacing"
317
+ },
318
+ "lg": {
319
+ "value": "$core.spacing.14",
320
+ "type": "spacing"
321
+ }
322
+ },
323
+ "space-around": {
324
+ "left": {
325
+ "sm": {
326
+ "value": "$core.spacing.none",
327
+ "type": "spacing"
328
+ },
329
+ "md": {
330
+ "value": "$core.spacing.none",
331
+ "type": "spacing"
332
+ },
333
+ "lg": {
334
+ "value": "$core.spacing.none",
335
+ "type": "spacing"
336
+ }
337
+ },
338
+ "right": {
339
+ "sm": {
340
+ "value": "$core.spacing.5",
341
+ "type": "spacing"
342
+ },
343
+ "md": {
344
+ "value": "$core.spacing.7",
345
+ "type": "spacing"
346
+ },
347
+ "lg": {
348
+ "value": "$core.spacing.8",
349
+ "type": "spacing"
350
+ }
351
+ },
352
+ "top-bottom": {
353
+ "sm": {
354
+ "value": "$core.spacing.7",
355
+ "type": "spacing"
356
+ },
357
+ "md": {
358
+ "value": "$core.spacing.8",
359
+ "type": "spacing"
360
+ },
361
+ "lg": {
362
+ "value": "$core.spacing.9",
363
+ "type": "spacing"
364
+ }
365
+ }
366
+ },
367
+ "disabled": {
368
+ "value": "{core.opacity.50}",
369
+ "type": "opacity"
370
+ }
371
+ }
372
+ }
@@ -0,0 +1,152 @@
1
+ {
2
+ "stepper": {
3
+ "font": {
4
+ "light": {
5
+ "value": "$semantic.ui.color.text.3.light",
6
+ "type": "color"
7
+ },
8
+ "dark": {
9
+ "value": "$semantic.ui.color.text.3.dark",
10
+ "type": "color"
11
+ },
12
+ "sm": {
13
+ "value": "$semantic.font.default.bold.-3h",
14
+ "type": "typography"
15
+ },
16
+ "md": {
17
+ "value": "$semantic.font.default.bold.-1h",
18
+ "type": "typography"
19
+ },
20
+ "lg": {
21
+ "value": "$semantic.font.default.bold.0h",
22
+ "type": "typography"
23
+ }
24
+ },
25
+ "icon": {
26
+ "light": {
27
+ "value": "$semantic.ui.color.text.3.light",
28
+ "type": "color"
29
+ },
30
+ "dark": {
31
+ "value": "$semantic.ui.color.text.3.dark",
32
+ "type": "color"
33
+ }
34
+ },
35
+ "border": {
36
+ "light": {
37
+ "value": "$semantic.ui.color.border.1.light",
38
+ "type": "color"
39
+ },
40
+ "dark": {
41
+ "value": "$semantic.ui.color.border.1.dark",
42
+ "type": "color"
43
+ }
44
+ },
45
+ "background": {
46
+ "default": {
47
+ "light": {
48
+ "value": "$semantic.ui.color.background.light",
49
+ "type": "color"
50
+ },
51
+ "dark": {
52
+ "value": "$semantic.ui.color.background.dark",
53
+ "type": "color"
54
+ }
55
+ }
56
+ },
57
+ "foreground": {
58
+ "light": {
59
+ "value": "$semantic.ui.color.foreground.2.light",
60
+ "type": "color"
61
+ },
62
+ "dark": {
63
+ "value": "$semantic.ui.color.foreground.2.dark",
64
+ "type": "color"
65
+ }
66
+ },
67
+ "border-radius": {
68
+ "sm": {
69
+ "value": "$core.border.border-radius.4",
70
+ "type": "borderRadius"
71
+ },
72
+ "md": {
73
+ "value": "$core.border.border-radius.5",
74
+ "type": "borderRadius"
75
+ },
76
+ "lg": {
77
+ "value": "$core.border.border-radius.6",
78
+ "type": "borderRadius"
79
+ }
80
+ },
81
+ "border-width": {
82
+ "sm": {
83
+ "value": "$core.border.border-width.1",
84
+ "type": "borderWidth"
85
+ },
86
+ "md": {
87
+ "value": "$core.border.border-width.2",
88
+ "type": "borderWidth"
89
+ },
90
+ "lg": {
91
+ "value": "$core.border.border-width.4",
92
+ "type": "borderWidth"
93
+ }
94
+ },
95
+ "comp-size": {
96
+ "sm": {
97
+ "value": "$core.sizing.9",
98
+ "type": "sizing"
99
+ },
100
+ "md": {
101
+ "value": "$core.sizing.11",
102
+ "type": "sizing"
103
+ },
104
+ "lg": {
105
+ "value": "$core.sizing.14",
106
+ "type": "sizing"
107
+ }
108
+ },
109
+ "icon-size": {
110
+ "sm": {
111
+ "value": "$core.sizing.7",
112
+ "type": "sizing"
113
+ },
114
+ "md": {
115
+ "value": "$core.sizing.9",
116
+ "type": "sizing"
117
+ },
118
+ "lg": {
119
+ "value": "$core.sizing.11",
120
+ "type": "sizing"
121
+ }
122
+ },
123
+ "space-between": {
124
+ "sm": {
125
+ "value": "$core.spacing.9",
126
+ "type": "spacing"
127
+ },
128
+ "md": {
129
+ "value": "$core.spacing.11",
130
+ "type": "spacing"
131
+ },
132
+ "lg": {
133
+ "value": "$core.spacing.14",
134
+ "type": "spacing"
135
+ }
136
+ },
137
+ "space-around": {
138
+ "sm": {
139
+ "value": "$core.spacing.7",
140
+ "type": "spacing"
141
+ },
142
+ "md": {
143
+ "value": "$core.spacing.9",
144
+ "type": "spacing"
145
+ },
146
+ "lg": {
147
+ "value": "$core.spacing.11",
148
+ "type": "spacing"
149
+ }
150
+ }
151
+ }
152
+ }
@@ -0,0 +1,178 @@
1
+ {
2
+ "switch": {
3
+ "background": {
4
+ "default": {
5
+ "light": {
6
+ "value": "$semantic.ui.color.foreground.2.light",
7
+ "type": "color"
8
+ },
9
+ "dark": {
10
+ "value": "$semantic.ui.color.foreground.2.dark",
11
+ "type": "color"
12
+ }
13
+ },
14
+ "checked": {
15
+ "light": {
16
+ "value": "$semantic.ui.color.brand.default.light",
17
+ "type": "color"
18
+ },
19
+ "dark": {
20
+ "value": "$semantic.ui.color.brand.default.dark",
21
+ "type": "color"
22
+ }
23
+ }
24
+ },
25
+ "border-radius": {
26
+ "sm": {
27
+ "value": "$core.border.border-radius.full",
28
+ "type": "borderRadius"
29
+ },
30
+ "md": {
31
+ "value": "$core.border.border-radius.full",
32
+ "type": "borderRadius"
33
+ },
34
+ "lg": {
35
+ "value": "$core.border.border-radius.full",
36
+ "type": "borderRadius"
37
+ }
38
+ },
39
+ "comp-size": {
40
+ "sm": {
41
+ "value": "$core.sizing.9",
42
+ "type": "sizing"
43
+ },
44
+ "md": {
45
+ "value": "$core.sizing.11",
46
+ "type": "sizing"
47
+ },
48
+ "lg": {
49
+ "value": "$core.sizing.15",
50
+ "type": "sizing"
51
+ }
52
+ },
53
+ "handle-size": {
54
+ "sm": {
55
+ "value": "$core.sizing.5",
56
+ "type": "sizing"
57
+ },
58
+ "md": {
59
+ "value": "$core.sizing.7",
60
+ "type": "sizing"
61
+ },
62
+ "lg": {
63
+ "value": "$core.sizing.9",
64
+ "type": "sizing"
65
+ }
66
+ },
67
+ "border": {
68
+ "default": {
69
+ "light": {
70
+ "value": "$semantic.ui.color.border.1.light",
71
+ "type": "color"
72
+ },
73
+ "dark": {
74
+ "value": "$semantic.ui.color.border.1.dark",
75
+ "type": "color"
76
+ }
77
+ },
78
+ "checked": {
79
+ "light": {
80
+ "value": "$semantic.ui.color.brand.hover.light",
81
+ "type": "color"
82
+ },
83
+ "dark": {
84
+ "value": "$semantic.ui.color.brand.hover.dark",
85
+ "type": "color"
86
+ }
87
+ }
88
+ },
89
+ "handle": {
90
+ "background": {
91
+ "default": {
92
+ "light": {
93
+ "value": "$semantic.ui.color.foreground.1.light",
94
+ "type": "color"
95
+ },
96
+ "dark": {
97
+ "value": "$semantic.ui.color.foreground.1.dark",
98
+ "type": "color"
99
+ }
100
+ },
101
+ "checked": {
102
+ "light": {
103
+ "value": "$semantic.ui.color.foreground.1.light",
104
+ "type": "color"
105
+ },
106
+ "dark": {
107
+ "value": "$semantic.ui.color.foreground.1.dark",
108
+ "type": "color"
109
+ }
110
+ }
111
+ },
112
+ "border": {
113
+ "default": {
114
+ "light": {
115
+ "value": "$semantic.ui.color.border.input.light",
116
+ "type": "color"
117
+ },
118
+ "dark": {
119
+ "value": "$semantic.ui.color.border.input.dark",
120
+ "type": "color"
121
+ }
122
+ },
123
+ "checked": {
124
+ "light": {
125
+ "value": "$semantic.ui.color.brand.default.light",
126
+ "type": "color"
127
+ },
128
+ "dark": {
129
+ "value": "$semantic.ui.color.brand.default.dark",
130
+ "type": "color"
131
+ }
132
+ }
133
+ },
134
+ "border-radius": {
135
+ "sm": {
136
+ "value": "$core.border.border-radius.half",
137
+ "type": "borderRadius"
138
+ },
139
+ "md": {
140
+ "value": "$core.border.border-radius.half",
141
+ "type": "borderRadius"
142
+ },
143
+ "lg": {
144
+ "value": "$core.border.border-radius.half",
145
+ "type": "borderRadius"
146
+ }
147
+ },
148
+ "border-width": {
149
+ "sm": {
150
+ "value": "{core.border.border-width.1}",
151
+ "type": "borderWidth"
152
+ },
153
+ "md": {
154
+ "value": "{core.border.border-width.1}",
155
+ "type": "borderWidth"
156
+ },
157
+ "lg": {
158
+ "value": "{core.border.border-width.1}",
159
+ "type": "borderWidth"
160
+ }
161
+ }
162
+ },
163
+ "border-width": {
164
+ "sm": {
165
+ "value": "{core.border.border-width.0}",
166
+ "type": "borderWidth"
167
+ },
168
+ "md": {
169
+ "value": "{core.border.border-width.0}",
170
+ "type": "borderWidth"
171
+ },
172
+ "lg": {
173
+ "value": "{core.border.border-width.0}",
174
+ "type": "borderWidth"
175
+ }
176
+ }
177
+ }
178
+ }