ui-foundations 0.4.1 → 0.7.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.
- package/LICENSE +73 -0
- package/README.md +49 -13
- package/dist/core/index.css +1 -0
- package/dist/macros/ui.njk +94 -0
- package/dist/main.css +723 -138
- package/dist/react/accordion.js +36 -0
- package/dist/react/avatar.js +34 -0
- package/dist/react/button.js +1 -12
- package/dist/react/checkbox.js +3 -20
- package/dist/react/divider.js +31 -0
- package/dist/react/form.js +111 -0
- package/dist/react/icon.js +1 -12
- package/dist/react/index.js +7 -0
- package/dist/react/input.js +7 -0
- package/dist/react/radio.js +3 -20
- package/dist/react/switch.js +3 -20
- package/dist/react/tabs.js +72 -0
- package/dist/react/textarea.js +45 -0
- package/dist/react/tooltip.js +25 -0
- package/dist/react/warn-dev.js +15 -0
- package/dist/tokens/css/appearance-modes.tokens.mode-dark.css +12 -6
- package/dist/tokens/css/appearance-modes.tokens.mode-light.css +7 -1
- package/dist/tokens/css/components-ui.tokens.css +93 -73
- package/dist/tokens/css/core-primitives.tokens.css +72 -1
- package/dist/tokens/css/semantics-roles.tokens.css +1 -1
- package/dist/tokens/css/themes-brands.tokens.brand-a.css +11 -11
- package/dist/tokens/css/themes-brands.tokens.brand-b.css +1 -1
- package/dist/tokens/css/themes-brands.tokens.brand-c.css +22 -0
- package/dist/tokens/json/appearance-modes.tokens.mode-dark.json +24 -0
- package/dist/tokens/json/appearance-modes.tokens.mode-light.json +24 -0
- package/dist/tokens/json/components-ui.tokens.json +403 -269
- package/dist/tokens/json/core-primitives.tokens.json +302 -0
- package/dist/tokens/json/themes-brands.tokens.brand-a.json +10 -10
- package/dist/tokens/json/themes-brands.tokens.brand-b.json +10 -10
- package/dist/tokens/json/themes-brands.tokens.brand-c.json +81 -0
- package/dist/tokens/tokens.yaml +2138 -578
- package/dist/tokens/ts/appearance-modes.tokens.mode-dark.ts +12 -6
- package/dist/tokens/ts/appearance-modes.tokens.mode-light.ts +7 -1
- package/dist/tokens/ts/components-ui.tokens.ts +94 -74
- package/dist/tokens/ts/core-primitives.tokens.ts +73 -2
- package/dist/tokens/ts/semantics-roles.tokens.ts +1 -1
- package/dist/tokens/ts/themes-brands.tokens.brand-a.ts +11 -11
- package/dist/tokens/ts/themes-brands.tokens.brand-b.ts +1 -1
- package/dist/tokens/ts/themes-brands.tokens.brand-c.ts +32 -0
- package/dist/ui/index.css +7 -0
- package/dist/ui/patterns/accordion.css +81 -0
- package/dist/ui/patterns/avatar.css +57 -0
- package/dist/ui/patterns/button.css +3 -3
- package/dist/ui/patterns/checkbox.css +28 -28
- package/dist/ui/patterns/divider.css +25 -0
- package/dist/ui/patterns/form.css +112 -0
- package/dist/ui/patterns/input.css +12 -12
- package/dist/ui/patterns/label.css +1 -1
- package/dist/ui/patterns/tabs.css +71 -0
- package/dist/ui/patterns/textarea.css +50 -0
- package/dist/ui/patterns/tooltip.css +64 -0
- package/docs/agentic/README.md +1 -0
- package/docs/agentic/skills/component-accessibility-audit.md +132 -0
- package/docs/foundations/foundation-007-typography-selectors-and-specificity.md +1 -1
- package/package.json +15 -3
- package/dist/tokens/missing-tokens.json +0 -43
package/dist/tokens/tokens.yaml
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Auto-generated design tokens from Figma
|
|
2
|
-
# Generated on 2026-
|
|
2
|
+
# Generated on 2026-06-06T14:29:01.231Z
|
|
3
3
|
|
|
4
4
|
summary:
|
|
5
|
-
total:
|
|
5
|
+
total: 560
|
|
6
6
|
tokens:
|
|
7
7
|
-
|
|
8
8
|
cssVar: "--breakpoint-100"
|
|
@@ -85,7 +85,7 @@ tokens:
|
|
|
85
85
|
-
|
|
86
86
|
cssVar: "--brand-color-accent"
|
|
87
87
|
name: "brand-color-accent"
|
|
88
|
-
value: "var(--color-brand-
|
|
88
|
+
value: "var(--color-brand-c-coolblue-60)"
|
|
89
89
|
type: "color"
|
|
90
90
|
group: "colors"
|
|
91
91
|
path: "Brand/Color/Accent"
|
|
@@ -108,10 +108,23 @@ tokens:
|
|
|
108
108
|
scopeId: "b"
|
|
109
109
|
selector: ":root[data-brand=\"b\"]"
|
|
110
110
|
sourceFile: "Themes (Brands).tokens.json"
|
|
111
|
+
-
|
|
112
|
+
cssVar: "--brand-color-accent"
|
|
113
|
+
name: "brand-color-accent"
|
|
114
|
+
value: "var(--color-brand-a-green-400)"
|
|
115
|
+
type: "color"
|
|
116
|
+
group: "colors"
|
|
117
|
+
path: "Brand/Color/Accent"
|
|
118
|
+
pathKey: "Brand.Color.Accent"
|
|
119
|
+
scope: "brand:c"
|
|
120
|
+
scopeBucket: "brand"
|
|
121
|
+
scopeId: "c"
|
|
122
|
+
selector: ":root[data-brand=\"c\"]"
|
|
123
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
111
124
|
-
|
|
112
125
|
cssVar: "--brand-color-accent-dark"
|
|
113
126
|
name: "brand-color-accent-dark"
|
|
114
|
-
value: "var(--color-brand-
|
|
127
|
+
value: "var(--color-brand-c-coolblue-10)"
|
|
115
128
|
type: "color"
|
|
116
129
|
group: "colors"
|
|
117
130
|
path: "Brand/Color/Accent Dark"
|
|
@@ -134,10 +147,23 @@ tokens:
|
|
|
134
147
|
scopeId: "b"
|
|
135
148
|
selector: ":root[data-brand=\"b\"]"
|
|
136
149
|
sourceFile: "Themes (Brands).tokens.json"
|
|
150
|
+
-
|
|
151
|
+
cssVar: "--brand-color-accent-dark"
|
|
152
|
+
name: "brand-color-accent-dark"
|
|
153
|
+
value: "var(--color-brand-a-green-600)"
|
|
154
|
+
type: "color"
|
|
155
|
+
group: "colors"
|
|
156
|
+
path: "Brand/Color/Accent Dark"
|
|
157
|
+
pathKey: "Brand.Color.Accent Dark"
|
|
158
|
+
scope: "brand:c"
|
|
159
|
+
scopeBucket: "brand"
|
|
160
|
+
scopeId: "c"
|
|
161
|
+
selector: ":root[data-brand=\"c\"]"
|
|
162
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
137
163
|
-
|
|
138
164
|
cssVar: "--brand-color-functional-base"
|
|
139
165
|
name: "brand-color-functional-base"
|
|
140
|
-
value: "var(--color-brand-
|
|
166
|
+
value: "var(--color-brand-c-blue-10)"
|
|
141
167
|
type: "color"
|
|
142
168
|
group: "colors"
|
|
143
169
|
path: "Brand/Color/Functional/Base"
|
|
@@ -160,10 +186,23 @@ tokens:
|
|
|
160
186
|
scopeId: "b"
|
|
161
187
|
selector: ":root[data-brand=\"b\"]"
|
|
162
188
|
sourceFile: "Themes (Brands).tokens.json"
|
|
189
|
+
-
|
|
190
|
+
cssVar: "--brand-color-functional-base"
|
|
191
|
+
name: "brand-color-functional-base"
|
|
192
|
+
value: "var(--color-brand-a-green-700)"
|
|
193
|
+
type: "color"
|
|
194
|
+
group: "colors"
|
|
195
|
+
path: "Brand/Color/Functional/Base"
|
|
196
|
+
pathKey: "Brand.Color.Functional.Base"
|
|
197
|
+
scope: "brand:c"
|
|
198
|
+
scopeBucket: "brand"
|
|
199
|
+
scopeId: "c"
|
|
200
|
+
selector: ":root[data-brand=\"c\"]"
|
|
201
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
163
202
|
-
|
|
164
203
|
cssVar: "--brand-color-functional-base-dark"
|
|
165
204
|
name: "brand-color-functional-base-dark"
|
|
166
|
-
value: "var(--color-brand-
|
|
205
|
+
value: "var(--color-brand-c-midnight-10)"
|
|
167
206
|
type: "color"
|
|
168
207
|
group: "colors"
|
|
169
208
|
path: "Brand/Color/Functional/Base Dark"
|
|
@@ -186,10 +225,23 @@ tokens:
|
|
|
186
225
|
scopeId: "b"
|
|
187
226
|
selector: ":root[data-brand=\"b\"]"
|
|
188
227
|
sourceFile: "Themes (Brands).tokens.json"
|
|
228
|
+
-
|
|
229
|
+
cssVar: "--brand-color-functional-base-dark"
|
|
230
|
+
name: "brand-color-functional-base-dark"
|
|
231
|
+
value: "var(--color-brand-a-green-900)"
|
|
232
|
+
type: "color"
|
|
233
|
+
group: "colors"
|
|
234
|
+
path: "Brand/Color/Functional/Base Dark"
|
|
235
|
+
pathKey: "Brand.Color.Functional.Base Dark"
|
|
236
|
+
scope: "brand:c"
|
|
237
|
+
scopeBucket: "brand"
|
|
238
|
+
scopeId: "c"
|
|
239
|
+
selector: ":root[data-brand=\"c\"]"
|
|
240
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
189
241
|
-
|
|
190
242
|
cssVar: "--brand-color-functional-danger"
|
|
191
243
|
name: "brand-color-functional-danger"
|
|
192
|
-
value: "var(--color-brand-
|
|
244
|
+
value: "var(--color-brand-c-red-30)"
|
|
193
245
|
type: "color"
|
|
194
246
|
group: "colors"
|
|
195
247
|
path: "Brand/Color/Functional/Danger"
|
|
@@ -212,10 +264,23 @@ tokens:
|
|
|
212
264
|
scopeId: "b"
|
|
213
265
|
selector: ":root[data-brand=\"b\"]"
|
|
214
266
|
sourceFile: "Themes (Brands).tokens.json"
|
|
267
|
+
-
|
|
268
|
+
cssVar: "--brand-color-functional-danger"
|
|
269
|
+
name: "brand-color-functional-danger"
|
|
270
|
+
value: "var(--color-brand-a-red-600)"
|
|
271
|
+
type: "color"
|
|
272
|
+
group: "colors"
|
|
273
|
+
path: "Brand/Color/Functional/Danger"
|
|
274
|
+
pathKey: "Brand.Color.Functional.Danger"
|
|
275
|
+
scope: "brand:c"
|
|
276
|
+
scopeBucket: "brand"
|
|
277
|
+
scopeId: "c"
|
|
278
|
+
selector: ":root[data-brand=\"c\"]"
|
|
279
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
215
280
|
-
|
|
216
281
|
cssVar: "--brand-color-functional-success"
|
|
217
282
|
name: "brand-color-functional-success"
|
|
218
|
-
value: "var(--color-brand-
|
|
283
|
+
value: "var(--color-brand-c-green-30)"
|
|
219
284
|
type: "color"
|
|
220
285
|
group: "colors"
|
|
221
286
|
path: "Brand/Color/Functional/Success"
|
|
@@ -238,10 +303,23 @@ tokens:
|
|
|
238
303
|
scopeId: "b"
|
|
239
304
|
selector: ":root[data-brand=\"b\"]"
|
|
240
305
|
sourceFile: "Themes (Brands).tokens.json"
|
|
306
|
+
-
|
|
307
|
+
cssVar: "--brand-color-functional-success"
|
|
308
|
+
name: "brand-color-functional-success"
|
|
309
|
+
value: "var(--color-brand-a-green-600)"
|
|
310
|
+
type: "color"
|
|
311
|
+
group: "colors"
|
|
312
|
+
path: "Brand/Color/Functional/Success"
|
|
313
|
+
pathKey: "Brand.Color.Functional.Success"
|
|
314
|
+
scope: "brand:c"
|
|
315
|
+
scopeBucket: "brand"
|
|
316
|
+
scopeId: "c"
|
|
317
|
+
selector: ":root[data-brand=\"c\"]"
|
|
318
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
241
319
|
-
|
|
242
320
|
cssVar: "--brand-color-primary"
|
|
243
321
|
name: "brand-color-primary"
|
|
244
|
-
value: "var(--color-brand-
|
|
322
|
+
value: "var(--color-brand-c-blue-40)"
|
|
245
323
|
type: "color"
|
|
246
324
|
group: "colors"
|
|
247
325
|
path: "Brand/Color/Primary"
|
|
@@ -264,10 +342,23 @@ tokens:
|
|
|
264
342
|
scopeId: "b"
|
|
265
343
|
selector: ":root[data-brand=\"b\"]"
|
|
266
344
|
sourceFile: "Themes (Brands).tokens.json"
|
|
345
|
+
-
|
|
346
|
+
cssVar: "--brand-color-primary"
|
|
347
|
+
name: "brand-color-primary"
|
|
348
|
+
value: "var(--color-brand-a-sand-700)"
|
|
349
|
+
type: "color"
|
|
350
|
+
group: "colors"
|
|
351
|
+
path: "Brand/Color/Primary"
|
|
352
|
+
pathKey: "Brand.Color.Primary"
|
|
353
|
+
scope: "brand:c"
|
|
354
|
+
scopeBucket: "brand"
|
|
355
|
+
scopeId: "c"
|
|
356
|
+
selector: ":root[data-brand=\"c\"]"
|
|
357
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
267
358
|
-
|
|
268
359
|
cssVar: "--brand-color-primary-dark"
|
|
269
360
|
name: "brand-color-primary-dark"
|
|
270
|
-
value: "var(--color-brand-
|
|
361
|
+
value: "var(--color-brand-c-blue-10)"
|
|
271
362
|
type: "color"
|
|
272
363
|
group: "colors"
|
|
273
364
|
path: "Brand/Color/Primary Dark"
|
|
@@ -290,6 +381,19 @@ tokens:
|
|
|
290
381
|
scopeId: "b"
|
|
291
382
|
selector: ":root[data-brand=\"b\"]"
|
|
292
383
|
sourceFile: "Themes (Brands).tokens.json"
|
|
384
|
+
-
|
|
385
|
+
cssVar: "--brand-color-primary-dark"
|
|
386
|
+
name: "brand-color-primary-dark"
|
|
387
|
+
value: "var(--color-brand-a-sand-900)"
|
|
388
|
+
type: "color"
|
|
389
|
+
group: "colors"
|
|
390
|
+
path: "Brand/Color/Primary Dark"
|
|
391
|
+
pathKey: "Brand.Color.Primary Dark"
|
|
392
|
+
scope: "brand:c"
|
|
393
|
+
scopeBucket: "brand"
|
|
394
|
+
scopeId: "c"
|
|
395
|
+
selector: ":root[data-brand=\"c\"]"
|
|
396
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
293
397
|
-
|
|
294
398
|
cssVar: "--brand-color-subtle"
|
|
295
399
|
name: "brand-color-subtle"
|
|
@@ -316,6 +420,19 @@ tokens:
|
|
|
316
420
|
scopeId: "b"
|
|
317
421
|
selector: ":root[data-brand=\"b\"]"
|
|
318
422
|
sourceFile: "Themes (Brands).tokens.json"
|
|
423
|
+
-
|
|
424
|
+
cssVar: "--brand-color-subtle"
|
|
425
|
+
name: "brand-color-subtle"
|
|
426
|
+
value: "var(--color-neutral-500)"
|
|
427
|
+
type: "color"
|
|
428
|
+
group: "colors"
|
|
429
|
+
path: "Brand/Color/Subtle"
|
|
430
|
+
pathKey: "Brand.Color.Subtle"
|
|
431
|
+
scope: "brand:c"
|
|
432
|
+
scopeBucket: "brand"
|
|
433
|
+
scopeId: "c"
|
|
434
|
+
selector: ":root[data-brand=\"c\"]"
|
|
435
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
319
436
|
-
|
|
320
437
|
cssVar: "--brand-color-subtle-dark"
|
|
321
438
|
name: "brand-color-subtle-dark"
|
|
@@ -342,6 +459,19 @@ tokens:
|
|
|
342
459
|
scopeId: "b"
|
|
343
460
|
selector: ":root[data-brand=\"b\"]"
|
|
344
461
|
sourceFile: "Themes (Brands).tokens.json"
|
|
462
|
+
-
|
|
463
|
+
cssVar: "--brand-color-subtle-dark"
|
|
464
|
+
name: "brand-color-subtle-dark"
|
|
465
|
+
value: "var(--color-neutral-800)"
|
|
466
|
+
type: "color"
|
|
467
|
+
group: "colors"
|
|
468
|
+
path: "Brand/Color/Subtle Dark"
|
|
469
|
+
pathKey: "Brand.Color.Subtle Dark"
|
|
470
|
+
scope: "brand:c"
|
|
471
|
+
scopeBucket: "brand"
|
|
472
|
+
scopeId: "c"
|
|
473
|
+
selector: ":root[data-brand=\"c\"]"
|
|
474
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
345
475
|
-
|
|
346
476
|
cssVar: "--brand-color-subtle-light"
|
|
347
477
|
name: "brand-color-subtle-light"
|
|
@@ -368,6 +498,19 @@ tokens:
|
|
|
368
498
|
scopeId: "b"
|
|
369
499
|
selector: ":root[data-brand=\"b\"]"
|
|
370
500
|
sourceFile: "Themes (Brands).tokens.json"
|
|
501
|
+
-
|
|
502
|
+
cssVar: "--brand-color-subtle-light"
|
|
503
|
+
name: "brand-color-subtle-light"
|
|
504
|
+
value: "var(--color-neutral-200)"
|
|
505
|
+
type: "color"
|
|
506
|
+
group: "colors"
|
|
507
|
+
path: "Brand/Color/Subtle Light"
|
|
508
|
+
pathKey: "Brand.Color.Subtle Light"
|
|
509
|
+
scope: "brand:c"
|
|
510
|
+
scopeBucket: "brand"
|
|
511
|
+
scopeId: "c"
|
|
512
|
+
selector: ":root[data-brand=\"c\"]"
|
|
513
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
371
514
|
-
|
|
372
515
|
cssVar: "--color-border-brand"
|
|
373
516
|
name: "color-border-brand"
|
|
@@ -1305,132 +1448,925 @@ tokens:
|
|
|
1305
1448
|
selector: ":root"
|
|
1306
1449
|
sourceFile: "Core (Primitives).tokens.json"
|
|
1307
1450
|
-
|
|
1308
|
-
cssVar: "--color-
|
|
1309
|
-
name: "color-
|
|
1310
|
-
value: "
|
|
1451
|
+
cssVar: "--color-brand-c-blue-10"
|
|
1452
|
+
name: "color-brand-c-blue-10"
|
|
1453
|
+
value: "rgb(27 17 92)"
|
|
1311
1454
|
type: "color"
|
|
1312
1455
|
group: "colors"
|
|
1313
|
-
path: "Color/
|
|
1314
|
-
pathKey: "Color.
|
|
1315
|
-
scope: "
|
|
1316
|
-
scopeBucket: "
|
|
1317
|
-
scopeId: "
|
|
1318
|
-
selector: ":root
|
|
1319
|
-
sourceFile: "
|
|
1456
|
+
path: "Color/Brand C/Blue/10"
|
|
1457
|
+
pathKey: "Color.Brand C.Blue.10"
|
|
1458
|
+
scope: "global:core-primitives"
|
|
1459
|
+
scopeBucket: "global"
|
|
1460
|
+
scopeId: "core-primitives"
|
|
1461
|
+
selector: ":root"
|
|
1462
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1320
1463
|
-
|
|
1321
|
-
cssVar: "--color-
|
|
1322
|
-
name: "color-
|
|
1323
|
-
value: "
|
|
1464
|
+
cssVar: "--color-brand-c-blue-20"
|
|
1465
|
+
name: "color-brand-c-blue-20"
|
|
1466
|
+
value: "rgb(7 45 146)"
|
|
1324
1467
|
type: "color"
|
|
1325
1468
|
group: "colors"
|
|
1326
|
-
path: "Color/
|
|
1327
|
-
pathKey: "Color.
|
|
1328
|
-
scope: "
|
|
1329
|
-
scopeBucket: "
|
|
1330
|
-
scopeId: "
|
|
1469
|
+
path: "Color/Brand C/Blue/20"
|
|
1470
|
+
pathKey: "Color.Brand C.Blue.20"
|
|
1471
|
+
scope: "global:core-primitives"
|
|
1472
|
+
scopeBucket: "global"
|
|
1473
|
+
scopeId: "core-primitives"
|
|
1331
1474
|
selector: ":root"
|
|
1332
|
-
sourceFile: "
|
|
1475
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1333
1476
|
-
|
|
1334
|
-
cssVar: "--color-
|
|
1335
|
-
name: "color-
|
|
1336
|
-
value: "
|
|
1477
|
+
cssVar: "--color-brand-c-blue-30"
|
|
1478
|
+
name: "color-brand-c-blue-30"
|
|
1479
|
+
value: "rgb(10 60 194)"
|
|
1337
1480
|
type: "color"
|
|
1338
1481
|
group: "colors"
|
|
1339
|
-
path: "Color/
|
|
1340
|
-
pathKey: "Color.
|
|
1341
|
-
scope: "
|
|
1342
|
-
scopeBucket: "
|
|
1343
|
-
scopeId: "
|
|
1344
|
-
selector: ":root
|
|
1345
|
-
sourceFile: "
|
|
1482
|
+
path: "Color/Brand C/Blue/30"
|
|
1483
|
+
pathKey: "Color.Brand C.Blue.30"
|
|
1484
|
+
scope: "global:core-primitives"
|
|
1485
|
+
scopeBucket: "global"
|
|
1486
|
+
scopeId: "core-primitives"
|
|
1487
|
+
selector: ":root"
|
|
1488
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1346
1489
|
-
|
|
1347
|
-
cssVar: "--color-
|
|
1348
|
-
name: "color-
|
|
1349
|
-
value: "
|
|
1490
|
+
cssVar: "--color-brand-c-blue-40"
|
|
1491
|
+
name: "color-brand-c-blue-40"
|
|
1492
|
+
value: "rgb(12 75 243)"
|
|
1350
1493
|
type: "color"
|
|
1351
1494
|
group: "colors"
|
|
1352
|
-
path: "Color/
|
|
1353
|
-
pathKey: "Color.
|
|
1354
|
-
scope: "
|
|
1355
|
-
scopeBucket: "
|
|
1356
|
-
scopeId: "
|
|
1495
|
+
path: "Color/Brand C/Blue/40"
|
|
1496
|
+
pathKey: "Color.Brand C.Blue.40"
|
|
1497
|
+
scope: "global:core-primitives"
|
|
1498
|
+
scopeBucket: "global"
|
|
1499
|
+
scopeId: "core-primitives"
|
|
1357
1500
|
selector: ":root"
|
|
1358
|
-
sourceFile: "
|
|
1501
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1359
1502
|
-
|
|
1360
|
-
cssVar: "--color-
|
|
1361
|
-
name: "color-
|
|
1362
|
-
value: "
|
|
1503
|
+
cssVar: "--color-brand-c-blue-50"
|
|
1504
|
+
name: "color-brand-c-blue-50"
|
|
1505
|
+
value: "rgb(53 103 246)"
|
|
1363
1506
|
type: "color"
|
|
1364
1507
|
group: "colors"
|
|
1365
|
-
path: "Color/
|
|
1366
|
-
pathKey: "Color.
|
|
1367
|
-
scope: "
|
|
1368
|
-
scopeBucket: "
|
|
1369
|
-
scopeId: "
|
|
1370
|
-
selector: ":root
|
|
1371
|
-
sourceFile: "
|
|
1508
|
+
path: "Color/Brand C/Blue/50"
|
|
1509
|
+
pathKey: "Color.Brand C.Blue.50"
|
|
1510
|
+
scope: "global:core-primitives"
|
|
1511
|
+
scopeBucket: "global"
|
|
1512
|
+
scopeId: "core-primitives"
|
|
1513
|
+
selector: ":root"
|
|
1514
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1372
1515
|
-
|
|
1373
|
-
cssVar: "--color-
|
|
1374
|
-
name: "color-
|
|
1375
|
-
value: "
|
|
1516
|
+
cssVar: "--color-brand-c-blue-60"
|
|
1517
|
+
name: "color-brand-c-blue-60"
|
|
1518
|
+
value: "rgb(109 147 248)"
|
|
1376
1519
|
type: "color"
|
|
1377
1520
|
group: "colors"
|
|
1378
|
-
path: "Color/
|
|
1379
|
-
pathKey: "Color.
|
|
1380
|
-
scope: "
|
|
1381
|
-
scopeBucket: "
|
|
1382
|
-
scopeId: "
|
|
1521
|
+
path: "Color/Brand C/Blue/60"
|
|
1522
|
+
pathKey: "Color.Brand C.Blue.60"
|
|
1523
|
+
scope: "global:core-primitives"
|
|
1524
|
+
scopeBucket: "global"
|
|
1525
|
+
scopeId: "core-primitives"
|
|
1383
1526
|
selector: ":root"
|
|
1384
|
-
sourceFile: "
|
|
1527
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1385
1528
|
-
|
|
1386
|
-
cssVar: "--color-
|
|
1387
|
-
name: "color-
|
|
1388
|
-
value: "
|
|
1529
|
+
cssVar: "--color-brand-c-blue-70"
|
|
1530
|
+
name: "color-brand-c-blue-70"
|
|
1531
|
+
value: "rgb(148 176 250)"
|
|
1389
1532
|
type: "color"
|
|
1390
1533
|
group: "colors"
|
|
1391
|
-
path: "Color/
|
|
1392
|
-
pathKey: "Color.
|
|
1393
|
-
scope: "
|
|
1394
|
-
scopeBucket: "
|
|
1395
|
-
scopeId: "
|
|
1396
|
-
selector: ":root
|
|
1397
|
-
sourceFile: "
|
|
1534
|
+
path: "Color/Brand C/Blue/70"
|
|
1535
|
+
pathKey: "Color.Brand C.Blue.70"
|
|
1536
|
+
scope: "global:core-primitives"
|
|
1537
|
+
scopeBucket: "global"
|
|
1538
|
+
scopeId: "core-primitives"
|
|
1539
|
+
selector: ":root"
|
|
1540
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1398
1541
|
-
|
|
1399
|
-
cssVar: "--color-
|
|
1400
|
-
name: "color-
|
|
1401
|
-
value: "
|
|
1542
|
+
cssVar: "--color-brand-c-blue-80"
|
|
1543
|
+
name: "color-brand-c-blue-80"
|
|
1544
|
+
value: "rgb(182 200 252)"
|
|
1402
1545
|
type: "color"
|
|
1403
1546
|
group: "colors"
|
|
1404
|
-
path: "Color/
|
|
1405
|
-
pathKey: "Color.
|
|
1406
|
-
scope: "
|
|
1407
|
-
scopeBucket: "
|
|
1408
|
-
scopeId: "
|
|
1547
|
+
path: "Color/Brand C/Blue/80"
|
|
1548
|
+
pathKey: "Color.Brand C.Blue.80"
|
|
1549
|
+
scope: "global:core-primitives"
|
|
1550
|
+
scopeBucket: "global"
|
|
1551
|
+
scopeId: "core-primitives"
|
|
1409
1552
|
selector: ":root"
|
|
1410
|
-
sourceFile: "
|
|
1553
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1411
1554
|
-
|
|
1412
|
-
cssVar: "--color-
|
|
1413
|
-
name: "color-
|
|
1414
|
-
value: "
|
|
1555
|
+
cssVar: "--color-brand-c-blue-90"
|
|
1556
|
+
name: "color-brand-c-blue-90"
|
|
1557
|
+
value: "rgb(216 226 253)"
|
|
1415
1558
|
type: "color"
|
|
1416
1559
|
group: "colors"
|
|
1417
|
-
path: "Color/
|
|
1418
|
-
pathKey: "Color.
|
|
1419
|
-
scope: "
|
|
1420
|
-
scopeBucket: "
|
|
1421
|
-
scopeId: "
|
|
1422
|
-
selector: ":root
|
|
1423
|
-
sourceFile: "
|
|
1560
|
+
path: "Color/Brand C/Blue/90"
|
|
1561
|
+
pathKey: "Color.Brand C.Blue.90"
|
|
1562
|
+
scope: "global:core-primitives"
|
|
1563
|
+
scopeBucket: "global"
|
|
1564
|
+
scopeId: "core-primitives"
|
|
1565
|
+
selector: ":root"
|
|
1566
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1424
1567
|
-
|
|
1425
|
-
cssVar: "--color-
|
|
1426
|
-
name: "color-
|
|
1427
|
-
value: "
|
|
1568
|
+
cssVar: "--color-brand-c-blue-100"
|
|
1569
|
+
name: "color-brand-c-blue-100"
|
|
1570
|
+
value: "rgb(27 17 92)"
|
|
1428
1571
|
type: "color"
|
|
1429
1572
|
group: "colors"
|
|
1430
|
-
path: "Color/
|
|
1431
|
-
pathKey: "Color.
|
|
1432
|
-
scope: "
|
|
1433
|
-
scopeBucket: "
|
|
1573
|
+
path: "Color/Brand C/Blue/100"
|
|
1574
|
+
pathKey: "Color.Brand C.Blue.100"
|
|
1575
|
+
scope: "global:core-primitives"
|
|
1576
|
+
scopeBucket: "global"
|
|
1577
|
+
scopeId: "core-primitives"
|
|
1578
|
+
selector: ":root"
|
|
1579
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1580
|
+
-
|
|
1581
|
+
cssVar: "--color-brand-c-coolblue-10"
|
|
1582
|
+
name: "color-brand-c-coolblue-10"
|
|
1583
|
+
value: "rgb(5 68 97)"
|
|
1584
|
+
type: "color"
|
|
1585
|
+
group: "colors"
|
|
1586
|
+
path: "Color/Brand C/Coolblue/10"
|
|
1587
|
+
pathKey: "Color.Brand C.Coolblue.10"
|
|
1588
|
+
scope: "global:core-primitives"
|
|
1589
|
+
scopeBucket: "global"
|
|
1590
|
+
scopeId: "core-primitives"
|
|
1591
|
+
selector: ":root"
|
|
1592
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1593
|
+
-
|
|
1594
|
+
cssVar: "--color-brand-c-coolblue-20"
|
|
1595
|
+
name: "color-brand-c-coolblue-20"
|
|
1596
|
+
value: "rgb(7 102 146)"
|
|
1597
|
+
type: "color"
|
|
1598
|
+
group: "colors"
|
|
1599
|
+
path: "Color/Brand C/Coolblue/20"
|
|
1600
|
+
pathKey: "Color.Brand C.Coolblue.20"
|
|
1601
|
+
scope: "global:core-primitives"
|
|
1602
|
+
scopeBucket: "global"
|
|
1603
|
+
scopeId: "core-primitives"
|
|
1604
|
+
selector: ":root"
|
|
1605
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1606
|
+
-
|
|
1607
|
+
cssVar: "--color-brand-c-coolblue-30"
|
|
1608
|
+
name: "color-brand-c-coolblue-30"
|
|
1609
|
+
value: "rgb(10 136 194)"
|
|
1610
|
+
type: "color"
|
|
1611
|
+
group: "colors"
|
|
1612
|
+
path: "Color/Brand C/Coolblue/30"
|
|
1613
|
+
pathKey: "Color.Brand C.Coolblue.30"
|
|
1614
|
+
scope: "global:core-primitives"
|
|
1615
|
+
scopeBucket: "global"
|
|
1616
|
+
scopeId: "core-primitives"
|
|
1617
|
+
selector: ":root"
|
|
1618
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1619
|
+
-
|
|
1620
|
+
cssVar: "--color-brand-c-coolblue-40"
|
|
1621
|
+
name: "color-brand-c-coolblue-40"
|
|
1622
|
+
value: "rgb(12 170 243)"
|
|
1623
|
+
type: "color"
|
|
1624
|
+
group: "colors"
|
|
1625
|
+
path: "Color/Brand C/Coolblue/40"
|
|
1626
|
+
pathKey: "Color.Brand C.Coolblue.40"
|
|
1627
|
+
scope: "global:core-primitives"
|
|
1628
|
+
scopeBucket: "global"
|
|
1629
|
+
scopeId: "core-primitives"
|
|
1630
|
+
selector: ":root"
|
|
1631
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1632
|
+
-
|
|
1633
|
+
cssVar: "--color-brand-c-coolblue-50"
|
|
1634
|
+
name: "color-brand-c-coolblue-50"
|
|
1635
|
+
value: "rgb(56 185 245)"
|
|
1636
|
+
type: "color"
|
|
1637
|
+
group: "colors"
|
|
1638
|
+
path: "Color/Brand C/Coolblue/50"
|
|
1639
|
+
pathKey: "Color.Brand C.Coolblue.50"
|
|
1640
|
+
scope: "global:core-primitives"
|
|
1641
|
+
scopeBucket: "global"
|
|
1642
|
+
scopeId: "core-primitives"
|
|
1643
|
+
selector: ":root"
|
|
1644
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1645
|
+
-
|
|
1646
|
+
cssVar: "--color-brand-c-coolblue-60"
|
|
1647
|
+
name: "color-brand-c-coolblue-60"
|
|
1648
|
+
value: "rgb(112 203 244)"
|
|
1649
|
+
type: "color"
|
|
1650
|
+
group: "colors"
|
|
1651
|
+
path: "Color/Brand C/Coolblue/60"
|
|
1652
|
+
pathKey: "Color.Brand C.Coolblue.60"
|
|
1653
|
+
scope: "global:core-primitives"
|
|
1654
|
+
scopeBucket: "global"
|
|
1655
|
+
scopeId: "core-primitives"
|
|
1656
|
+
selector: ":root"
|
|
1657
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1658
|
+
-
|
|
1659
|
+
cssVar: "--color-brand-c-coolblue-70"
|
|
1660
|
+
name: "color-brand-c-coolblue-70"
|
|
1661
|
+
value: "rgb(169 223 248)"
|
|
1662
|
+
type: "color"
|
|
1663
|
+
group: "colors"
|
|
1664
|
+
path: "Color/Brand C/Coolblue/70"
|
|
1665
|
+
pathKey: "Color.Brand C.Coolblue.70"
|
|
1666
|
+
scope: "global:core-primitives"
|
|
1667
|
+
scopeBucket: "global"
|
|
1668
|
+
scopeId: "core-primitives"
|
|
1669
|
+
selector: ":root"
|
|
1670
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1671
|
+
-
|
|
1672
|
+
cssVar: "--color-brand-c-coolblue-80"
|
|
1673
|
+
name: "color-brand-c-coolblue-80"
|
|
1674
|
+
value: "rgb(198 234 251)"
|
|
1675
|
+
type: "color"
|
|
1676
|
+
group: "colors"
|
|
1677
|
+
path: "Color/Brand C/Coolblue/80"
|
|
1678
|
+
pathKey: "Color.Brand C.Coolblue.80"
|
|
1679
|
+
scope: "global:core-primitives"
|
|
1680
|
+
scopeBucket: "global"
|
|
1681
|
+
scopeId: "core-primitives"
|
|
1682
|
+
selector: ":root"
|
|
1683
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1684
|
+
-
|
|
1685
|
+
cssVar: "--color-brand-c-coolblue-90"
|
|
1686
|
+
name: "color-brand-c-coolblue-90"
|
|
1687
|
+
value: "rgb(226 244 253)"
|
|
1688
|
+
type: "color"
|
|
1689
|
+
group: "colors"
|
|
1690
|
+
path: "Color/Brand C/Coolblue/90"
|
|
1691
|
+
pathKey: "Color.Brand C.Coolblue.90"
|
|
1692
|
+
scope: "global:core-primitives"
|
|
1693
|
+
scopeBucket: "global"
|
|
1694
|
+
scopeId: "core-primitives"
|
|
1695
|
+
selector: ":root"
|
|
1696
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1697
|
+
-
|
|
1698
|
+
cssVar: "--color-brand-c-coolblue-100"
|
|
1699
|
+
name: "color-brand-c-coolblue-100"
|
|
1700
|
+
value: "rgb(11 68 97)"
|
|
1701
|
+
type: "color"
|
|
1702
|
+
group: "colors"
|
|
1703
|
+
path: "Color/Brand C/Coolblue/100"
|
|
1704
|
+
pathKey: "Color.Brand C.Coolblue.100"
|
|
1705
|
+
scope: "global:core-primitives"
|
|
1706
|
+
scopeBucket: "global"
|
|
1707
|
+
scopeId: "core-primitives"
|
|
1708
|
+
selector: ":root"
|
|
1709
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1710
|
+
-
|
|
1711
|
+
cssVar: "--color-brand-c-green-10"
|
|
1712
|
+
name: "color-brand-c-green-10"
|
|
1713
|
+
value: "rgb(5 66 61)"
|
|
1714
|
+
type: "color"
|
|
1715
|
+
group: "colors"
|
|
1716
|
+
path: "Color/Brand C/Green/10"
|
|
1717
|
+
pathKey: "Color.Brand C.Green.10"
|
|
1718
|
+
scope: "global:core-primitives"
|
|
1719
|
+
scopeBucket: "global"
|
|
1720
|
+
scopeId: "core-primitives"
|
|
1721
|
+
selector: ":root"
|
|
1722
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1723
|
+
-
|
|
1724
|
+
cssVar: "--color-brand-c-green-20"
|
|
1725
|
+
name: "color-brand-c-green-20"
|
|
1726
|
+
value: "rgb(36 111 73)"
|
|
1727
|
+
type: "color"
|
|
1728
|
+
group: "colors"
|
|
1729
|
+
path: "Color/Brand C/Green/20"
|
|
1730
|
+
pathKey: "Color.Brand C.Green.20"
|
|
1731
|
+
scope: "global:core-primitives"
|
|
1732
|
+
scopeBucket: "global"
|
|
1733
|
+
scopeId: "core-primitives"
|
|
1734
|
+
selector: ":root"
|
|
1735
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1736
|
+
-
|
|
1737
|
+
cssVar: "--color-brand-c-green-30"
|
|
1738
|
+
name: "color-brand-c-green-30"
|
|
1739
|
+
value: "rgb(43 161 104)"
|
|
1740
|
+
type: "color"
|
|
1741
|
+
group: "colors"
|
|
1742
|
+
path: "Color/Brand C/Green/30"
|
|
1743
|
+
pathKey: "Color.Brand C.Green.30"
|
|
1744
|
+
scope: "global:core-primitives"
|
|
1745
|
+
scopeBucket: "global"
|
|
1746
|
+
scopeId: "core-primitives"
|
|
1747
|
+
selector: ":root"
|
|
1748
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1749
|
+
-
|
|
1750
|
+
cssVar: "--color-brand-c-green-40"
|
|
1751
|
+
name: "color-brand-c-green-40"
|
|
1752
|
+
value: "rgb(48 182 117)"
|
|
1753
|
+
type: "color"
|
|
1754
|
+
group: "colors"
|
|
1755
|
+
path: "Color/Brand C/Green/40"
|
|
1756
|
+
pathKey: "Color.Brand C.Green.40"
|
|
1757
|
+
scope: "global:core-primitives"
|
|
1758
|
+
scopeBucket: "global"
|
|
1759
|
+
scopeId: "core-primitives"
|
|
1760
|
+
selector: ":root"
|
|
1761
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1762
|
+
-
|
|
1763
|
+
cssVar: "--color-brand-c-green-50"
|
|
1764
|
+
name: "color-brand-c-green-50"
|
|
1765
|
+
value: "rgb(97 196 141)"
|
|
1766
|
+
type: "color"
|
|
1767
|
+
group: "colors"
|
|
1768
|
+
path: "Color/Brand C/Green/50"
|
|
1769
|
+
pathKey: "Color.Brand C.Green.50"
|
|
1770
|
+
scope: "global:core-primitives"
|
|
1771
|
+
scopeBucket: "global"
|
|
1772
|
+
scopeId: "core-primitives"
|
|
1773
|
+
selector: ":root"
|
|
1774
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1775
|
+
-
|
|
1776
|
+
cssVar: "--color-brand-c-green-60"
|
|
1777
|
+
name: "color-brand-c-green-60"
|
|
1778
|
+
value: "rgb(135 210 166)"
|
|
1779
|
+
type: "color"
|
|
1780
|
+
group: "colors"
|
|
1781
|
+
path: "Color/Brand C/Green/60"
|
|
1782
|
+
pathKey: "Color.Brand C.Green.60"
|
|
1783
|
+
scope: "global:core-primitives"
|
|
1784
|
+
scopeBucket: "global"
|
|
1785
|
+
scopeId: "core-primitives"
|
|
1786
|
+
selector: ":root"
|
|
1787
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1788
|
+
-
|
|
1789
|
+
cssVar: "--color-brand-c-green-70"
|
|
1790
|
+
name: "color-brand-c-green-70"
|
|
1791
|
+
value: "rgb(169 224 191)"
|
|
1792
|
+
type: "color"
|
|
1793
|
+
group: "colors"
|
|
1794
|
+
path: "Color/Brand C/Green/70"
|
|
1795
|
+
pathKey: "Color.Brand C.Green.70"
|
|
1796
|
+
scope: "global:core-primitives"
|
|
1797
|
+
scopeBucket: "global"
|
|
1798
|
+
scopeId: "core-primitives"
|
|
1799
|
+
selector: ":root"
|
|
1800
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1801
|
+
-
|
|
1802
|
+
cssVar: "--color-brand-c-green-80"
|
|
1803
|
+
name: "color-brand-c-green-80"
|
|
1804
|
+
value: "rgb(197 228 205)"
|
|
1805
|
+
type: "color"
|
|
1806
|
+
group: "colors"
|
|
1807
|
+
path: "Color/Brand C/Green/80"
|
|
1808
|
+
pathKey: "Color.Brand C.Green.80"
|
|
1809
|
+
scope: "global:core-primitives"
|
|
1810
|
+
scopeBucket: "global"
|
|
1811
|
+
scopeId: "core-primitives"
|
|
1812
|
+
selector: ":root"
|
|
1813
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1814
|
+
-
|
|
1815
|
+
cssVar: "--color-brand-c-green-90"
|
|
1816
|
+
name: "color-brand-c-green-90"
|
|
1817
|
+
value: "rgb(223 246 235)"
|
|
1818
|
+
type: "color"
|
|
1819
|
+
group: "colors"
|
|
1820
|
+
path: "Color/Brand C/Green/90"
|
|
1821
|
+
pathKey: "Color.Brand C.Green.90"
|
|
1822
|
+
scope: "global:core-primitives"
|
|
1823
|
+
scopeBucket: "global"
|
|
1824
|
+
scopeId: "core-primitives"
|
|
1825
|
+
selector: ":root"
|
|
1826
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1827
|
+
-
|
|
1828
|
+
cssVar: "--color-brand-c-green-100"
|
|
1829
|
+
name: "color-brand-c-green-100"
|
|
1830
|
+
value: "rgb(239 251 245)"
|
|
1831
|
+
type: "color"
|
|
1832
|
+
group: "colors"
|
|
1833
|
+
path: "Color/Brand C/Green/100"
|
|
1834
|
+
pathKey: "Color.Brand C.Green.100"
|
|
1835
|
+
scope: "global:core-primitives"
|
|
1836
|
+
scopeBucket: "global"
|
|
1837
|
+
scopeId: "core-primitives"
|
|
1838
|
+
selector: ":root"
|
|
1839
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1840
|
+
-
|
|
1841
|
+
cssVar: "--color-brand-c-midnight-10"
|
|
1842
|
+
name: "color-brand-c-midnight-10"
|
|
1843
|
+
value: "rgb(11 9 45)"
|
|
1844
|
+
type: "color"
|
|
1845
|
+
group: "colors"
|
|
1846
|
+
path: "Color/Brand C/Midnight/10"
|
|
1847
|
+
pathKey: "Color.Brand C.Midnight.10"
|
|
1848
|
+
scope: "global:core-primitives"
|
|
1849
|
+
scopeBucket: "global"
|
|
1850
|
+
scopeId: "core-primitives"
|
|
1851
|
+
selector: ":root"
|
|
1852
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1853
|
+
-
|
|
1854
|
+
cssVar: "--color-brand-c-orange-10"
|
|
1855
|
+
name: "color-brand-c-orange-10"
|
|
1856
|
+
value: "rgb(102 61 0)"
|
|
1857
|
+
type: "color"
|
|
1858
|
+
group: "colors"
|
|
1859
|
+
path: "Color/Brand C/Orange/10"
|
|
1860
|
+
pathKey: "Color.Brand C.Orange.10"
|
|
1861
|
+
scope: "global:core-primitives"
|
|
1862
|
+
scopeBucket: "global"
|
|
1863
|
+
scopeId: "core-primitives"
|
|
1864
|
+
selector: ":root"
|
|
1865
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1866
|
+
-
|
|
1867
|
+
cssVar: "--color-brand-c-orange-20"
|
|
1868
|
+
name: "color-brand-c-orange-20"
|
|
1869
|
+
value: "rgb(153 92 0)"
|
|
1870
|
+
type: "color"
|
|
1871
|
+
group: "colors"
|
|
1872
|
+
path: "Color/Brand C/Orange/20"
|
|
1873
|
+
pathKey: "Color.Brand C.Orange.20"
|
|
1874
|
+
scope: "global:core-primitives"
|
|
1875
|
+
scopeBucket: "global"
|
|
1876
|
+
scopeId: "core-primitives"
|
|
1877
|
+
selector: ":root"
|
|
1878
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1879
|
+
-
|
|
1880
|
+
cssVar: "--color-brand-c-orange-30"
|
|
1881
|
+
name: "color-brand-c-orange-30"
|
|
1882
|
+
value: "rgb(204 122 0)"
|
|
1883
|
+
type: "color"
|
|
1884
|
+
group: "colors"
|
|
1885
|
+
path: "Color/Brand C/Orange/30"
|
|
1886
|
+
pathKey: "Color.Brand C.Orange.30"
|
|
1887
|
+
scope: "global:core-primitives"
|
|
1888
|
+
scopeBucket: "global"
|
|
1889
|
+
scopeId: "core-primitives"
|
|
1890
|
+
selector: ":root"
|
|
1891
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1892
|
+
-
|
|
1893
|
+
cssVar: "--color-brand-c-orange-40"
|
|
1894
|
+
name: "color-brand-c-orange-40"
|
|
1895
|
+
value: "rgb(255 153 0)"
|
|
1896
|
+
type: "color"
|
|
1897
|
+
group: "colors"
|
|
1898
|
+
path: "Color/Brand C/Orange/40"
|
|
1899
|
+
pathKey: "Color.Brand C.Orange.40"
|
|
1900
|
+
scope: "global:core-primitives"
|
|
1901
|
+
scopeBucket: "global"
|
|
1902
|
+
scopeId: "core-primitives"
|
|
1903
|
+
selector: ":root"
|
|
1904
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1905
|
+
-
|
|
1906
|
+
cssVar: "--color-brand-c-orange-50"
|
|
1907
|
+
name: "color-brand-c-orange-50"
|
|
1908
|
+
value: "rgb(255 171 46)"
|
|
1909
|
+
type: "color"
|
|
1910
|
+
group: "colors"
|
|
1911
|
+
path: "Color/Brand C/Orange/50"
|
|
1912
|
+
pathKey: "Color.Brand C.Orange.50"
|
|
1913
|
+
scope: "global:core-primitives"
|
|
1914
|
+
scopeBucket: "global"
|
|
1915
|
+
scopeId: "core-primitives"
|
|
1916
|
+
selector: ":root"
|
|
1917
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1918
|
+
-
|
|
1919
|
+
cssVar: "--color-brand-c-orange-60"
|
|
1920
|
+
name: "color-brand-c-orange-60"
|
|
1921
|
+
value: "rgb(255 194 102)"
|
|
1922
|
+
type: "color"
|
|
1923
|
+
group: "colors"
|
|
1924
|
+
path: "Color/Brand C/Orange/60"
|
|
1925
|
+
pathKey: "Color.Brand C.Orange.60"
|
|
1926
|
+
scope: "global:core-primitives"
|
|
1927
|
+
scopeBucket: "global"
|
|
1928
|
+
scopeId: "core-primitives"
|
|
1929
|
+
selector: ":root"
|
|
1930
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1931
|
+
-
|
|
1932
|
+
cssVar: "--color-brand-c-orange-70"
|
|
1933
|
+
name: "color-brand-c-orange-70"
|
|
1934
|
+
value: "rgb(255 210 143)"
|
|
1935
|
+
type: "color"
|
|
1936
|
+
group: "colors"
|
|
1937
|
+
path: "Color/Brand C/Orange/70"
|
|
1938
|
+
pathKey: "Color.Brand C.Orange.70"
|
|
1939
|
+
scope: "global:core-primitives"
|
|
1940
|
+
scopeBucket: "global"
|
|
1941
|
+
scopeId: "core-primitives"
|
|
1942
|
+
selector: ":root"
|
|
1943
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1944
|
+
-
|
|
1945
|
+
cssVar: "--color-brand-c-orange-80"
|
|
1946
|
+
name: "color-brand-c-orange-80"
|
|
1947
|
+
value: "rgb(255 224 178)"
|
|
1948
|
+
type: "color"
|
|
1949
|
+
group: "colors"
|
|
1950
|
+
path: "Color/Brand C/Orange/80"
|
|
1951
|
+
pathKey: "Color.Brand C.Orange.80"
|
|
1952
|
+
scope: "global:core-primitives"
|
|
1953
|
+
scopeBucket: "global"
|
|
1954
|
+
scopeId: "core-primitives"
|
|
1955
|
+
selector: ":root"
|
|
1956
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1957
|
+
-
|
|
1958
|
+
cssVar: "--color-brand-c-orange-90"
|
|
1959
|
+
name: "color-brand-c-orange-90"
|
|
1960
|
+
value: "rgb(255 239 214)"
|
|
1961
|
+
type: "color"
|
|
1962
|
+
group: "colors"
|
|
1963
|
+
path: "Color/Brand C/Orange/90"
|
|
1964
|
+
pathKey: "Color.Brand C.Orange.90"
|
|
1965
|
+
scope: "global:core-primitives"
|
|
1966
|
+
scopeBucket: "global"
|
|
1967
|
+
scopeId: "core-primitives"
|
|
1968
|
+
selector: ":root"
|
|
1969
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1970
|
+
-
|
|
1971
|
+
cssVar: "--color-brand-c-orange-100"
|
|
1972
|
+
name: "color-brand-c-orange-100"
|
|
1973
|
+
value: "rgb(255 247 235)"
|
|
1974
|
+
type: "color"
|
|
1975
|
+
group: "colors"
|
|
1976
|
+
path: "Color/Brand C/Orange/100"
|
|
1977
|
+
pathKey: "Color.Brand C.Orange.100"
|
|
1978
|
+
scope: "global:core-primitives"
|
|
1979
|
+
scopeBucket: "global"
|
|
1980
|
+
scopeId: "core-primitives"
|
|
1981
|
+
selector: ":root"
|
|
1982
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1983
|
+
-
|
|
1984
|
+
cssVar: "--color-brand-c-purple-10"
|
|
1985
|
+
name: "color-brand-c-purple-10"
|
|
1986
|
+
value: "rgb(57 17 92)"
|
|
1987
|
+
type: "color"
|
|
1988
|
+
group: "colors"
|
|
1989
|
+
path: "Color/Brand C/Purple/10"
|
|
1990
|
+
pathKey: "Color.Brand C.Purple.10"
|
|
1991
|
+
scope: "global:core-primitives"
|
|
1992
|
+
scopeBucket: "global"
|
|
1993
|
+
scopeId: "core-primitives"
|
|
1994
|
+
selector: ":root"
|
|
1995
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1996
|
+
-
|
|
1997
|
+
cssVar: "--color-brand-c-purple-20"
|
|
1998
|
+
name: "color-brand-c-purple-20"
|
|
1999
|
+
value: "rgb(81 7 146)"
|
|
2000
|
+
type: "color"
|
|
2001
|
+
group: "colors"
|
|
2002
|
+
path: "Color/Brand C/Purple/20"
|
|
2003
|
+
pathKey: "Color.Brand C.Purple.20"
|
|
2004
|
+
scope: "global:core-primitives"
|
|
2005
|
+
scopeBucket: "global"
|
|
2006
|
+
scopeId: "core-primitives"
|
|
2007
|
+
selector: ":root"
|
|
2008
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2009
|
+
-
|
|
2010
|
+
cssVar: "--color-brand-c-purple-30"
|
|
2011
|
+
name: "color-brand-c-purple-30"
|
|
2012
|
+
value: "rgb(108 10 194)"
|
|
2013
|
+
type: "color"
|
|
2014
|
+
group: "colors"
|
|
2015
|
+
path: "Color/Brand C/Purple/30"
|
|
2016
|
+
pathKey: "Color.Brand C.Purple.30"
|
|
2017
|
+
scope: "global:core-primitives"
|
|
2018
|
+
scopeBucket: "global"
|
|
2019
|
+
scopeId: "core-primitives"
|
|
2020
|
+
selector: ":root"
|
|
2021
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2022
|
+
-
|
|
2023
|
+
cssVar: "--color-brand-c-purple-40"
|
|
2024
|
+
name: "color-brand-c-purple-40"
|
|
2025
|
+
value: "rgb(135 12 243)"
|
|
2026
|
+
type: "color"
|
|
2027
|
+
group: "colors"
|
|
2028
|
+
path: "Color/Brand C/Purple/40"
|
|
2029
|
+
pathKey: "Color.Brand C.Purple.40"
|
|
2030
|
+
scope: "global:core-primitives"
|
|
2031
|
+
scopeBucket: "global"
|
|
2032
|
+
scopeId: "core-primitives"
|
|
2033
|
+
selector: ":root"
|
|
2034
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2035
|
+
-
|
|
2036
|
+
cssVar: "--color-brand-c-purple-50"
|
|
2037
|
+
name: "color-brand-c-purple-50"
|
|
2038
|
+
value: "rgb(156 53 246)"
|
|
2039
|
+
type: "color"
|
|
2040
|
+
group: "colors"
|
|
2041
|
+
path: "Color/Brand C/Purple/50"
|
|
2042
|
+
pathKey: "Color.Brand C.Purple.50"
|
|
2043
|
+
scope: "global:core-primitives"
|
|
2044
|
+
scopeBucket: "global"
|
|
2045
|
+
scopeId: "core-primitives"
|
|
2046
|
+
selector: ":root"
|
|
2047
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2048
|
+
-
|
|
2049
|
+
cssVar: "--color-brand-c-purple-60"
|
|
2050
|
+
name: "color-brand-c-purple-60"
|
|
2051
|
+
value: "rgb(183 109 248)"
|
|
2052
|
+
type: "color"
|
|
2053
|
+
group: "colors"
|
|
2054
|
+
path: "Color/Brand C/Purple/60"
|
|
2055
|
+
pathKey: "Color.Brand C.Purple.60"
|
|
2056
|
+
scope: "global:core-primitives"
|
|
2057
|
+
scopeBucket: "global"
|
|
2058
|
+
scopeId: "core-primitives"
|
|
2059
|
+
selector: ":root"
|
|
2060
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2061
|
+
-
|
|
2062
|
+
cssVar: "--color-brand-c-purple-70"
|
|
2063
|
+
name: "color-brand-c-purple-70"
|
|
2064
|
+
value: "rgb(202 148 250)"
|
|
2065
|
+
type: "color"
|
|
2066
|
+
group: "colors"
|
|
2067
|
+
path: "Color/Brand C/Purple/70"
|
|
2068
|
+
pathKey: "Color.Brand C.Purple.70"
|
|
2069
|
+
scope: "global:core-primitives"
|
|
2070
|
+
scopeBucket: "global"
|
|
2071
|
+
scopeId: "core-primitives"
|
|
2072
|
+
selector: ":root"
|
|
2073
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2074
|
+
-
|
|
2075
|
+
cssVar: "--color-brand-c-purple-80"
|
|
2076
|
+
name: "color-brand-c-purple-80"
|
|
2077
|
+
value: "rgb(219 182 252)"
|
|
2078
|
+
type: "color"
|
|
2079
|
+
group: "colors"
|
|
2080
|
+
path: "Color/Brand C/Purple/80"
|
|
2081
|
+
pathKey: "Color.Brand C.Purple.80"
|
|
2082
|
+
scope: "global:core-primitives"
|
|
2083
|
+
scopeBucket: "global"
|
|
2084
|
+
scopeId: "core-primitives"
|
|
2085
|
+
selector: ":root"
|
|
2086
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2087
|
+
-
|
|
2088
|
+
cssVar: "--color-brand-c-purple-90"
|
|
2089
|
+
name: "color-brand-c-purple-90"
|
|
2090
|
+
value: "rgb(236 216 253)"
|
|
2091
|
+
type: "color"
|
|
2092
|
+
group: "colors"
|
|
2093
|
+
path: "Color/Brand C/Purple/90"
|
|
2094
|
+
pathKey: "Color.Brand C.Purple.90"
|
|
2095
|
+
scope: "global:core-primitives"
|
|
2096
|
+
scopeBucket: "global"
|
|
2097
|
+
scopeId: "core-primitives"
|
|
2098
|
+
selector: ":root"
|
|
2099
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2100
|
+
-
|
|
2101
|
+
cssVar: "--color-brand-c-purple-100"
|
|
2102
|
+
name: "color-brand-c-purple-100"
|
|
2103
|
+
value: "rgb(245 236 254)"
|
|
2104
|
+
type: "color"
|
|
2105
|
+
group: "colors"
|
|
2106
|
+
path: "Color/Brand C/Purple/100"
|
|
2107
|
+
pathKey: "Color.Brand C.Purple.100"
|
|
2108
|
+
scope: "global:core-primitives"
|
|
2109
|
+
scopeBucket: "global"
|
|
2110
|
+
scopeId: "core-primitives"
|
|
2111
|
+
selector: ":root"
|
|
2112
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2113
|
+
-
|
|
2114
|
+
cssVar: "--color-brand-c-red-10"
|
|
2115
|
+
name: "color-brand-c-red-10"
|
|
2116
|
+
value: "rgb(96 6 9)"
|
|
2117
|
+
type: "color"
|
|
2118
|
+
group: "colors"
|
|
2119
|
+
path: "Color/Brand C/Red/10"
|
|
2120
|
+
pathKey: "Color.Brand C.Red.10"
|
|
2121
|
+
scope: "global:core-primitives"
|
|
2122
|
+
scopeBucket: "global"
|
|
2123
|
+
scopeId: "core-primitives"
|
|
2124
|
+
selector: ":root"
|
|
2125
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2126
|
+
-
|
|
2127
|
+
cssVar: "--color-brand-c-red-20"
|
|
2128
|
+
name: "color-brand-c-red-20"
|
|
2129
|
+
value: "rgb(144 9 14)"
|
|
2130
|
+
type: "color"
|
|
2131
|
+
group: "colors"
|
|
2132
|
+
path: "Color/Brand C/Red/20"
|
|
2133
|
+
pathKey: "Color.Brand C.Red.20"
|
|
2134
|
+
scope: "global:core-primitives"
|
|
2135
|
+
scopeBucket: "global"
|
|
2136
|
+
scopeId: "core-primitives"
|
|
2137
|
+
selector: ":root"
|
|
2138
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2139
|
+
-
|
|
2140
|
+
cssVar: "--color-brand-c-red-30"
|
|
2141
|
+
name: "color-brand-c-red-30"
|
|
2142
|
+
value: "rgb(192 12 18)"
|
|
2143
|
+
type: "color"
|
|
2144
|
+
group: "colors"
|
|
2145
|
+
path: "Color/Brand C/Red/30"
|
|
2146
|
+
pathKey: "Color.Brand C.Red.30"
|
|
2147
|
+
scope: "global:core-primitives"
|
|
2148
|
+
scopeBucket: "global"
|
|
2149
|
+
scopeId: "core-primitives"
|
|
2150
|
+
selector: ":root"
|
|
2151
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2152
|
+
-
|
|
2153
|
+
cssVar: "--color-brand-c-red-40"
|
|
2154
|
+
name: "color-brand-c-red-40"
|
|
2155
|
+
value: "rgb(240 15 23)"
|
|
2156
|
+
type: "color"
|
|
2157
|
+
group: "colors"
|
|
2158
|
+
path: "Color/Brand C/Red/40"
|
|
2159
|
+
pathKey: "Color.Brand C.Red.40"
|
|
2160
|
+
scope: "global:core-primitives"
|
|
2161
|
+
scopeBucket: "global"
|
|
2162
|
+
scopeId: "core-primitives"
|
|
2163
|
+
selector: ":root"
|
|
2164
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2165
|
+
-
|
|
2166
|
+
cssVar: "--color-brand-c-red-50"
|
|
2167
|
+
name: "color-brand-c-red-50"
|
|
2168
|
+
value: "rgb(242 58 65)"
|
|
2169
|
+
type: "color"
|
|
2170
|
+
group: "colors"
|
|
2171
|
+
path: "Color/Brand C/Red/50"
|
|
2172
|
+
pathKey: "Color.Brand C.Red.50"
|
|
2173
|
+
scope: "global:core-primitives"
|
|
2174
|
+
scopeBucket: "global"
|
|
2175
|
+
scopeId: "core-primitives"
|
|
2176
|
+
selector: ":root"
|
|
2177
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2178
|
+
-
|
|
2179
|
+
cssVar: "--color-brand-c-red-60"
|
|
2180
|
+
name: "color-brand-c-red-60"
|
|
2181
|
+
value: "rgb(246 111 116)"
|
|
2182
|
+
type: "color"
|
|
2183
|
+
group: "colors"
|
|
2184
|
+
path: "Color/Brand C/Red/60"
|
|
2185
|
+
pathKey: "Color.Brand C.Red.60"
|
|
2186
|
+
scope: "global:core-primitives"
|
|
2187
|
+
scopeBucket: "global"
|
|
2188
|
+
scopeId: "core-primitives"
|
|
2189
|
+
selector: ":root"
|
|
2190
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2191
|
+
-
|
|
2192
|
+
cssVar: "--color-brand-c-red-70"
|
|
2193
|
+
name: "color-brand-c-red-70"
|
|
2194
|
+
value: "rgb(248 150 153)"
|
|
2195
|
+
type: "color"
|
|
2196
|
+
group: "colors"
|
|
2197
|
+
path: "Color/Brand C/Red/70"
|
|
2198
|
+
pathKey: "Color.Brand C.Red.70"
|
|
2199
|
+
scope: "global:core-primitives"
|
|
2200
|
+
scopeBucket: "global"
|
|
2201
|
+
scopeId: "core-primitives"
|
|
2202
|
+
selector: ":root"
|
|
2203
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2204
|
+
-
|
|
2205
|
+
cssVar: "--color-brand-c-red-80"
|
|
2206
|
+
name: "color-brand-c-red-80"
|
|
2207
|
+
value: "rgb(250 183 185)"
|
|
2208
|
+
type: "color"
|
|
2209
|
+
group: "colors"
|
|
2210
|
+
path: "Color/Brand C/Red/80"
|
|
2211
|
+
pathKey: "Color.Brand C.Red.80"
|
|
2212
|
+
scope: "global:core-primitives"
|
|
2213
|
+
scopeBucket: "global"
|
|
2214
|
+
scopeId: "core-primitives"
|
|
2215
|
+
selector: ":root"
|
|
2216
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2217
|
+
-
|
|
2218
|
+
cssVar: "--color-brand-c-red-90"
|
|
2219
|
+
name: "color-brand-c-red-90"
|
|
2220
|
+
value: "rgb(253 226 227)"
|
|
2221
|
+
type: "color"
|
|
2222
|
+
group: "colors"
|
|
2223
|
+
path: "Color/Brand C/Red/90"
|
|
2224
|
+
pathKey: "Color.Brand C.Red.90"
|
|
2225
|
+
scope: "global:core-primitives"
|
|
2226
|
+
scopeBucket: "global"
|
|
2227
|
+
scopeId: "core-primitives"
|
|
2228
|
+
selector: ":root"
|
|
2229
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2230
|
+
-
|
|
2231
|
+
cssVar: "--color-brand-c-red-100"
|
|
2232
|
+
name: "color-brand-c-red-100"
|
|
2233
|
+
value: "rgb(254 236 236)"
|
|
2234
|
+
type: "color"
|
|
2235
|
+
group: "colors"
|
|
2236
|
+
path: "Color/Brand C/Red/100"
|
|
2237
|
+
pathKey: "Color.Brand C.Red.100"
|
|
2238
|
+
scope: "global:core-primitives"
|
|
2239
|
+
scopeBucket: "global"
|
|
2240
|
+
scopeId: "core-primitives"
|
|
2241
|
+
selector: ":root"
|
|
2242
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2243
|
+
-
|
|
2244
|
+
cssVar: "--color-fill-active"
|
|
2245
|
+
name: "color-fill-active"
|
|
2246
|
+
value: "var(--brand-color-accent)"
|
|
2247
|
+
type: "color"
|
|
2248
|
+
group: "colors"
|
|
2249
|
+
path: "Color/Fill/Active"
|
|
2250
|
+
pathKey: "Color.Fill.Active"
|
|
2251
|
+
scope: "mode:dark"
|
|
2252
|
+
scopeBucket: "mode"
|
|
2253
|
+
scopeId: "dark"
|
|
2254
|
+
selector: ":root[data-mode=\"dark\"]"
|
|
2255
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
2256
|
+
-
|
|
2257
|
+
cssVar: "--color-fill-active"
|
|
2258
|
+
name: "color-fill-active"
|
|
2259
|
+
value: "var(--brand-color-accent)"
|
|
2260
|
+
type: "color"
|
|
2261
|
+
group: "colors"
|
|
2262
|
+
path: "Color/Fill/Active"
|
|
2263
|
+
pathKey: "Color.Fill.Active"
|
|
2264
|
+
scope: "mode:light"
|
|
2265
|
+
scopeBucket: "mode"
|
|
2266
|
+
scopeId: "light"
|
|
2267
|
+
selector: ":root"
|
|
2268
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
2269
|
+
-
|
|
2270
|
+
cssVar: "--color-fill-brand"
|
|
2271
|
+
name: "color-fill-brand"
|
|
2272
|
+
value: "var(--brand-color-primary)"
|
|
2273
|
+
type: "color"
|
|
2274
|
+
group: "colors"
|
|
2275
|
+
path: "Color/Fill/Brand"
|
|
2276
|
+
pathKey: "Color.Fill.Brand"
|
|
2277
|
+
scope: "mode:dark"
|
|
2278
|
+
scopeBucket: "mode"
|
|
2279
|
+
scopeId: "dark"
|
|
2280
|
+
selector: ":root[data-mode=\"dark\"]"
|
|
2281
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
2282
|
+
-
|
|
2283
|
+
cssVar: "--color-fill-brand"
|
|
2284
|
+
name: "color-fill-brand"
|
|
2285
|
+
value: "var(--brand-color-primary)"
|
|
2286
|
+
type: "color"
|
|
2287
|
+
group: "colors"
|
|
2288
|
+
path: "Color/Fill/Brand"
|
|
2289
|
+
pathKey: "Color.Fill.Brand"
|
|
2290
|
+
scope: "mode:light"
|
|
2291
|
+
scopeBucket: "mode"
|
|
2292
|
+
scopeId: "light"
|
|
2293
|
+
selector: ":root"
|
|
2294
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
2295
|
+
-
|
|
2296
|
+
cssVar: "--color-fill-danger"
|
|
2297
|
+
name: "color-fill-danger"
|
|
2298
|
+
value: "var(--brand-color-functional-danger)"
|
|
2299
|
+
type: "color"
|
|
2300
|
+
group: "colors"
|
|
2301
|
+
path: "Color/Fill/Danger"
|
|
2302
|
+
pathKey: "Color.Fill.Danger"
|
|
2303
|
+
scope: "mode:dark"
|
|
2304
|
+
scopeBucket: "mode"
|
|
2305
|
+
scopeId: "dark"
|
|
2306
|
+
selector: ":root[data-mode=\"dark\"]"
|
|
2307
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
2308
|
+
-
|
|
2309
|
+
cssVar: "--color-fill-danger"
|
|
2310
|
+
name: "color-fill-danger"
|
|
2311
|
+
value: "var(--brand-color-functional-danger)"
|
|
2312
|
+
type: "color"
|
|
2313
|
+
group: "colors"
|
|
2314
|
+
path: "Color/Fill/Danger"
|
|
2315
|
+
pathKey: "Color.Fill.Danger"
|
|
2316
|
+
scope: "mode:light"
|
|
2317
|
+
scopeBucket: "mode"
|
|
2318
|
+
scopeId: "light"
|
|
2319
|
+
selector: ":root"
|
|
2320
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
2321
|
+
-
|
|
2322
|
+
cssVar: "--color-fill-disabled"
|
|
2323
|
+
name: "color-fill-disabled"
|
|
2324
|
+
value: "var(--color-neutral-300)"
|
|
2325
|
+
type: "color"
|
|
2326
|
+
group: "colors"
|
|
2327
|
+
path: "Color/Fill/Disabled"
|
|
2328
|
+
pathKey: "Color.Fill.Disabled"
|
|
2329
|
+
scope: "mode:dark"
|
|
2330
|
+
scopeBucket: "mode"
|
|
2331
|
+
scopeId: "dark"
|
|
2332
|
+
selector: ":root[data-mode=\"dark\"]"
|
|
2333
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
2334
|
+
-
|
|
2335
|
+
cssVar: "--color-fill-disabled"
|
|
2336
|
+
name: "color-fill-disabled"
|
|
2337
|
+
value: "var(--color-neutral-300)"
|
|
2338
|
+
type: "color"
|
|
2339
|
+
group: "colors"
|
|
2340
|
+
path: "Color/Fill/Disabled"
|
|
2341
|
+
pathKey: "Color.Fill.Disabled"
|
|
2342
|
+
scope: "mode:light"
|
|
2343
|
+
scopeBucket: "mode"
|
|
2344
|
+
scopeId: "light"
|
|
2345
|
+
selector: ":root"
|
|
2346
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
2347
|
+
-
|
|
2348
|
+
cssVar: "--color-fill-hover"
|
|
2349
|
+
name: "color-fill-hover"
|
|
2350
|
+
value: "var(--color-neutral-alpha-inverse-100)"
|
|
2351
|
+
type: "color"
|
|
2352
|
+
group: "colors"
|
|
2353
|
+
path: "Color/Fill/Hover"
|
|
2354
|
+
pathKey: "Color.Fill.Hover"
|
|
2355
|
+
scope: "mode:dark"
|
|
2356
|
+
scopeBucket: "mode"
|
|
2357
|
+
scopeId: "dark"
|
|
2358
|
+
selector: ":root[data-mode=\"dark\"]"
|
|
2359
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
2360
|
+
-
|
|
2361
|
+
cssVar: "--color-fill-hover"
|
|
2362
|
+
name: "color-fill-hover"
|
|
2363
|
+
value: "var(--color-neutral-alpha-500)"
|
|
2364
|
+
type: "color"
|
|
2365
|
+
group: "colors"
|
|
2366
|
+
path: "Color/Fill/Hover"
|
|
2367
|
+
pathKey: "Color.Fill.Hover"
|
|
2368
|
+
scope: "mode:light"
|
|
2369
|
+
scopeBucket: "mode"
|
|
1434
2370
|
scopeId: "light"
|
|
1435
2371
|
selector: ":root"
|
|
1436
2372
|
sourceFile: "Appearance (Modes).tokens.json"
|
|
@@ -1811,10 +2747,140 @@ tokens:
|
|
|
1811
2747
|
scopeId: "core-primitives"
|
|
1812
2748
|
selector: ":root"
|
|
1813
2749
|
sourceFile: "Core (Primitives).tokens.json"
|
|
2750
|
+
-
|
|
2751
|
+
cssVar: "--color-neutral-alpha-inverse-000"
|
|
2752
|
+
name: "color-neutral-alpha-inverse-000"
|
|
2753
|
+
value: "rgba(255 255 255 / 0)"
|
|
2754
|
+
type: "color"
|
|
2755
|
+
group: "colors"
|
|
2756
|
+
path: "Color/Neutral/Alpha Inverse/000"
|
|
2757
|
+
pathKey: "Color.Neutral.Alpha Inverse.000"
|
|
2758
|
+
scope: "global:core-primitives"
|
|
2759
|
+
scopeBucket: "global"
|
|
2760
|
+
scopeId: "core-primitives"
|
|
2761
|
+
selector: ":root"
|
|
2762
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2763
|
+
-
|
|
2764
|
+
cssVar: "--color-neutral-alpha-inverse-100"
|
|
2765
|
+
name: "color-neutral-alpha-inverse-100"
|
|
2766
|
+
value: "rgba(255 255 255 / 0.1)"
|
|
2767
|
+
type: "color"
|
|
2768
|
+
group: "colors"
|
|
2769
|
+
path: "Color/Neutral/Alpha Inverse/100"
|
|
2770
|
+
pathKey: "Color.Neutral.Alpha Inverse.100"
|
|
2771
|
+
scope: "global:core-primitives"
|
|
2772
|
+
scopeBucket: "global"
|
|
2773
|
+
scopeId: "core-primitives"
|
|
2774
|
+
selector: ":root"
|
|
2775
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2776
|
+
-
|
|
2777
|
+
cssVar: "--color-neutral-alpha-inverse-200"
|
|
2778
|
+
name: "color-neutral-alpha-inverse-200"
|
|
2779
|
+
value: "rgba(255 255 255 / 0.2)"
|
|
2780
|
+
type: "color"
|
|
2781
|
+
group: "colors"
|
|
2782
|
+
path: "Color/Neutral/Alpha Inverse/200"
|
|
2783
|
+
pathKey: "Color.Neutral.Alpha Inverse.200"
|
|
2784
|
+
scope: "global:core-primitives"
|
|
2785
|
+
scopeBucket: "global"
|
|
2786
|
+
scopeId: "core-primitives"
|
|
2787
|
+
selector: ":root"
|
|
2788
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2789
|
+
-
|
|
2790
|
+
cssVar: "--color-neutral-alpha-inverse-300"
|
|
2791
|
+
name: "color-neutral-alpha-inverse-300"
|
|
2792
|
+
value: "rgba(255 255 255 / 0.3)"
|
|
2793
|
+
type: "color"
|
|
2794
|
+
group: "colors"
|
|
2795
|
+
path: "Color/Neutral/Alpha Inverse/300"
|
|
2796
|
+
pathKey: "Color.Neutral.Alpha Inverse.300"
|
|
2797
|
+
scope: "global:core-primitives"
|
|
2798
|
+
scopeBucket: "global"
|
|
2799
|
+
scopeId: "core-primitives"
|
|
2800
|
+
selector: ":root"
|
|
2801
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2802
|
+
-
|
|
2803
|
+
cssVar: "--color-neutral-alpha-inverse-400"
|
|
2804
|
+
name: "color-neutral-alpha-inverse-400"
|
|
2805
|
+
value: "rgba(255 255 255 / 0.4)"
|
|
2806
|
+
type: "color"
|
|
2807
|
+
group: "colors"
|
|
2808
|
+
path: "Color/Neutral/Alpha Inverse/400"
|
|
2809
|
+
pathKey: "Color.Neutral.Alpha Inverse.400"
|
|
2810
|
+
scope: "global:core-primitives"
|
|
2811
|
+
scopeBucket: "global"
|
|
2812
|
+
scopeId: "core-primitives"
|
|
2813
|
+
selector: ":root"
|
|
2814
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2815
|
+
-
|
|
2816
|
+
cssVar: "--color-neutral-alpha-inverse-500"
|
|
2817
|
+
name: "color-neutral-alpha-inverse-500"
|
|
2818
|
+
value: "rgba(255 255 255 / 0.5)"
|
|
2819
|
+
type: "color"
|
|
2820
|
+
group: "colors"
|
|
2821
|
+
path: "Color/Neutral/Alpha Inverse/500"
|
|
2822
|
+
pathKey: "Color.Neutral.Alpha Inverse.500"
|
|
2823
|
+
scope: "global:core-primitives"
|
|
2824
|
+
scopeBucket: "global"
|
|
2825
|
+
scopeId: "core-primitives"
|
|
2826
|
+
selector: ":root"
|
|
2827
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2828
|
+
-
|
|
2829
|
+
cssVar: "--color-neutral-alpha-inverse-600"
|
|
2830
|
+
name: "color-neutral-alpha-inverse-600"
|
|
2831
|
+
value: "rgba(255 255 255 / 0.6)"
|
|
2832
|
+
type: "color"
|
|
2833
|
+
group: "colors"
|
|
2834
|
+
path: "Color/Neutral/Alpha Inverse/600"
|
|
2835
|
+
pathKey: "Color.Neutral.Alpha Inverse.600"
|
|
2836
|
+
scope: "global:core-primitives"
|
|
2837
|
+
scopeBucket: "global"
|
|
2838
|
+
scopeId: "core-primitives"
|
|
2839
|
+
selector: ":root"
|
|
2840
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2841
|
+
-
|
|
2842
|
+
cssVar: "--color-neutral-alpha-inverse-700"
|
|
2843
|
+
name: "color-neutral-alpha-inverse-700"
|
|
2844
|
+
value: "rgba(255 255 255 / 0.7)"
|
|
2845
|
+
type: "color"
|
|
2846
|
+
group: "colors"
|
|
2847
|
+
path: "Color/Neutral/Alpha Inverse/700"
|
|
2848
|
+
pathKey: "Color.Neutral.Alpha Inverse.700"
|
|
2849
|
+
scope: "global:core-primitives"
|
|
2850
|
+
scopeBucket: "global"
|
|
2851
|
+
scopeId: "core-primitives"
|
|
2852
|
+
selector: ":root"
|
|
2853
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2854
|
+
-
|
|
2855
|
+
cssVar: "--color-neutral-alpha-inverse-800"
|
|
2856
|
+
name: "color-neutral-alpha-inverse-800"
|
|
2857
|
+
value: "rgba(255 255 255 / 0.8)"
|
|
2858
|
+
type: "color"
|
|
2859
|
+
group: "colors"
|
|
2860
|
+
path: "Color/Neutral/Alpha Inverse/800"
|
|
2861
|
+
pathKey: "Color.Neutral.Alpha Inverse.800"
|
|
2862
|
+
scope: "global:core-primitives"
|
|
2863
|
+
scopeBucket: "global"
|
|
2864
|
+
scopeId: "core-primitives"
|
|
2865
|
+
selector: ":root"
|
|
2866
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2867
|
+
-
|
|
2868
|
+
cssVar: "--color-neutral-alpha-inverse-900"
|
|
2869
|
+
name: "color-neutral-alpha-inverse-900"
|
|
2870
|
+
value: "rgba(255 255 255 / 0.9)"
|
|
2871
|
+
type: "color"
|
|
2872
|
+
group: "colors"
|
|
2873
|
+
path: "Color/Neutral/Alpha Inverse/900"
|
|
2874
|
+
pathKey: "Color.Neutral.Alpha Inverse.900"
|
|
2875
|
+
scope: "global:core-primitives"
|
|
2876
|
+
scopeBucket: "global"
|
|
2877
|
+
scopeId: "core-primitives"
|
|
2878
|
+
selector: ":root"
|
|
2879
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1814
2880
|
-
|
|
1815
2881
|
cssVar: "--color-overlay-active"
|
|
1816
2882
|
name: "color-overlay-active"
|
|
1817
|
-
value: "var(--color-neutral-alpha-
|
|
2883
|
+
value: "var(--color-neutral-alpha-inverse-200)"
|
|
1818
2884
|
type: "color"
|
|
1819
2885
|
group: "colors"
|
|
1820
2886
|
path: "Color/Overlay/Active"
|
|
@@ -1840,7 +2906,7 @@ tokens:
|
|
|
1840
2906
|
-
|
|
1841
2907
|
cssVar: "--color-overlay-backdrop"
|
|
1842
2908
|
name: "color-overlay-backdrop"
|
|
1843
|
-
value: "var(--color-neutral-alpha-400)"
|
|
2909
|
+
value: "var(--color-neutral-alpha-inverse-400)"
|
|
1844
2910
|
type: "color"
|
|
1845
2911
|
group: "colors"
|
|
1846
2912
|
path: "Color/Overlay/Backdrop"
|
|
@@ -1866,7 +2932,7 @@ tokens:
|
|
|
1866
2932
|
-
|
|
1867
2933
|
cssVar: "--color-overlay-hover"
|
|
1868
2934
|
name: "color-overlay-hover"
|
|
1869
|
-
value: "var(--color-neutral-alpha-
|
|
2935
|
+
value: "var(--color-neutral-alpha-inverse-100)"
|
|
1870
2936
|
type: "color"
|
|
1871
2937
|
group: "colors"
|
|
1872
2938
|
path: "Color/Overlay/Hover"
|
|
@@ -1892,7 +2958,7 @@ tokens:
|
|
|
1892
2958
|
-
|
|
1893
2959
|
cssVar: "--color-overlay-selected"
|
|
1894
2960
|
name: "color-overlay-selected"
|
|
1895
|
-
value: "var(--color-neutral-alpha-
|
|
2961
|
+
value: "var(--color-neutral-alpha-inverse-300)"
|
|
1896
2962
|
type: "color"
|
|
1897
2963
|
group: "colors"
|
|
1898
2964
|
path: "Color/Overlay/Selected"
|
|
@@ -1968,78 +3034,234 @@ tokens:
|
|
|
1968
3034
|
selector: ":root"
|
|
1969
3035
|
sourceFile: "Appearance (Modes).tokens.json"
|
|
1970
3036
|
-
|
|
1971
|
-
cssVar: "--color-text-default"
|
|
1972
|
-
name: "color-text-default"
|
|
3037
|
+
cssVar: "--color-text-default"
|
|
3038
|
+
name: "color-text-default"
|
|
3039
|
+
value: "var(--color-neutral-800)"
|
|
3040
|
+
type: "color"
|
|
3041
|
+
group: "colors"
|
|
3042
|
+
path: "Color/Text/Default"
|
|
3043
|
+
pathKey: "Color.Text.Default"
|
|
3044
|
+
scope: "mode:dark"
|
|
3045
|
+
scopeBucket: "mode"
|
|
3046
|
+
scopeId: "dark"
|
|
3047
|
+
selector: ":root[data-mode=\"dark\"]"
|
|
3048
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
3049
|
+
-
|
|
3050
|
+
cssVar: "--color-text-default"
|
|
3051
|
+
name: "color-text-default"
|
|
3052
|
+
value: "var(--color-neutral-800)"
|
|
3053
|
+
type: "color"
|
|
3054
|
+
group: "colors"
|
|
3055
|
+
path: "Color/Text/Default"
|
|
3056
|
+
pathKey: "Color.Text.Default"
|
|
3057
|
+
scope: "mode:light"
|
|
3058
|
+
scopeBucket: "mode"
|
|
3059
|
+
scopeId: "light"
|
|
3060
|
+
selector: ":root"
|
|
3061
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
3062
|
+
-
|
|
3063
|
+
cssVar: "--color-text-disabled"
|
|
3064
|
+
name: "color-text-disabled"
|
|
3065
|
+
value: "var(--color-neutral-600)"
|
|
3066
|
+
type: "color"
|
|
3067
|
+
group: "colors"
|
|
3068
|
+
path: "Color/Text/Disabled"
|
|
3069
|
+
pathKey: "Color.Text.Disabled"
|
|
3070
|
+
scope: "mode:dark"
|
|
3071
|
+
scopeBucket: "mode"
|
|
3072
|
+
scopeId: "dark"
|
|
3073
|
+
selector: ":root[data-mode=\"dark\"]"
|
|
3074
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
3075
|
+
-
|
|
3076
|
+
cssVar: "--color-text-disabled"
|
|
3077
|
+
name: "color-text-disabled"
|
|
3078
|
+
value: "var(--color-neutral-600)"
|
|
3079
|
+
type: "color"
|
|
3080
|
+
group: "colors"
|
|
3081
|
+
path: "Color/Text/Disabled"
|
|
3082
|
+
pathKey: "Color.Text.Disabled"
|
|
3083
|
+
scope: "mode:light"
|
|
3084
|
+
scopeBucket: "mode"
|
|
3085
|
+
scopeId: "light"
|
|
3086
|
+
selector: ":root"
|
|
3087
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
3088
|
+
-
|
|
3089
|
+
cssVar: "--color-text-inverse"
|
|
3090
|
+
name: "color-text-inverse"
|
|
3091
|
+
value: "var(--color-neutral-1000)"
|
|
3092
|
+
type: "color"
|
|
3093
|
+
group: "colors"
|
|
3094
|
+
path: "Color/Text/Inverse"
|
|
3095
|
+
pathKey: "Color.Text.Inverse"
|
|
3096
|
+
scope: "mode:dark"
|
|
3097
|
+
scopeBucket: "mode"
|
|
3098
|
+
scopeId: "dark"
|
|
3099
|
+
selector: ":root[data-mode=\"dark\"]"
|
|
3100
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
3101
|
+
-
|
|
3102
|
+
cssVar: "--color-text-inverse"
|
|
3103
|
+
name: "color-text-inverse"
|
|
3104
|
+
value: "var(--color-neutral-000)"
|
|
3105
|
+
type: "color"
|
|
3106
|
+
group: "colors"
|
|
3107
|
+
path: "Color/Text/Inverse"
|
|
3108
|
+
pathKey: "Color.Text.Inverse"
|
|
3109
|
+
scope: "mode:light"
|
|
3110
|
+
scopeBucket: "mode"
|
|
3111
|
+
scopeId: "light"
|
|
3112
|
+
selector: ":root"
|
|
3113
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
3114
|
+
-
|
|
3115
|
+
cssVar: "--color-text-on-active"
|
|
3116
|
+
name: "color-text-on-active"
|
|
3117
|
+
value: "var(--color-neutral-000)"
|
|
3118
|
+
type: "color"
|
|
3119
|
+
group: "colors"
|
|
3120
|
+
path: "Color/Text/On Active"
|
|
3121
|
+
pathKey: "Color.Text.On Active"
|
|
3122
|
+
scope: "mode:dark"
|
|
3123
|
+
scopeBucket: "mode"
|
|
3124
|
+
scopeId: "dark"
|
|
3125
|
+
selector: ":root[data-mode=\"dark\"]"
|
|
3126
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
3127
|
+
-
|
|
3128
|
+
cssVar: "--color-text-on-active"
|
|
3129
|
+
name: "color-text-on-active"
|
|
3130
|
+
value: "var(--color-neutral-000)"
|
|
3131
|
+
type: "color"
|
|
3132
|
+
group: "colors"
|
|
3133
|
+
path: "Color/Text/On Active"
|
|
3134
|
+
pathKey: "Color.Text.On Active"
|
|
3135
|
+
scope: "mode:light"
|
|
3136
|
+
scopeBucket: "mode"
|
|
3137
|
+
scopeId: "light"
|
|
3138
|
+
selector: ":root"
|
|
3139
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
3140
|
+
-
|
|
3141
|
+
cssVar: "--color-text-on-brand"
|
|
3142
|
+
name: "color-text-on-brand"
|
|
3143
|
+
value: "var(--color-neutral-000)"
|
|
3144
|
+
type: "color"
|
|
3145
|
+
group: "colors"
|
|
3146
|
+
path: "Color/Text/On Brand"
|
|
3147
|
+
pathKey: "Color.Text.On Brand"
|
|
3148
|
+
scope: "mode:dark"
|
|
3149
|
+
scopeBucket: "mode"
|
|
3150
|
+
scopeId: "dark"
|
|
3151
|
+
selector: ":root[data-mode=\"dark\"]"
|
|
3152
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
3153
|
+
-
|
|
3154
|
+
cssVar: "--color-text-on-brand"
|
|
3155
|
+
name: "color-text-on-brand"
|
|
3156
|
+
value: "var(--color-neutral-000)"
|
|
3157
|
+
type: "color"
|
|
3158
|
+
group: "colors"
|
|
3159
|
+
path: "Color/Text/On Brand"
|
|
3160
|
+
pathKey: "Color.Text.On Brand"
|
|
3161
|
+
scope: "mode:light"
|
|
3162
|
+
scopeBucket: "mode"
|
|
3163
|
+
scopeId: "light"
|
|
3164
|
+
selector: ":root"
|
|
3165
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
3166
|
+
-
|
|
3167
|
+
cssVar: "--color-text-on-danger"
|
|
3168
|
+
name: "color-text-on-danger"
|
|
3169
|
+
value: "var(--color-neutral-000)"
|
|
3170
|
+
type: "color"
|
|
3171
|
+
group: "colors"
|
|
3172
|
+
path: "Color/Text/On Danger"
|
|
3173
|
+
pathKey: "Color.Text.On Danger"
|
|
3174
|
+
scope: "mode:dark"
|
|
3175
|
+
scopeBucket: "mode"
|
|
3176
|
+
scopeId: "dark"
|
|
3177
|
+
selector: ":root[data-mode=\"dark\"]"
|
|
3178
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
3179
|
+
-
|
|
3180
|
+
cssVar: "--color-text-on-danger"
|
|
3181
|
+
name: "color-text-on-danger"
|
|
3182
|
+
value: "var(--color-neutral-000)"
|
|
3183
|
+
type: "color"
|
|
3184
|
+
group: "colors"
|
|
3185
|
+
path: "Color/Text/On Danger"
|
|
3186
|
+
pathKey: "Color.Text.On Danger"
|
|
3187
|
+
scope: "mode:light"
|
|
3188
|
+
scopeBucket: "mode"
|
|
3189
|
+
scopeId: "light"
|
|
3190
|
+
selector: ":root"
|
|
3191
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
3192
|
+
-
|
|
3193
|
+
cssVar: "--color-text-on-disabled"
|
|
3194
|
+
name: "color-text-on-disabled"
|
|
1973
3195
|
value: "var(--color-neutral-800)"
|
|
1974
3196
|
type: "color"
|
|
1975
3197
|
group: "colors"
|
|
1976
|
-
path: "Color/Text/
|
|
1977
|
-
pathKey: "Color.Text.
|
|
3198
|
+
path: "Color/Text/On Disabled"
|
|
3199
|
+
pathKey: "Color.Text.On Disabled"
|
|
1978
3200
|
scope: "mode:dark"
|
|
1979
3201
|
scopeBucket: "mode"
|
|
1980
3202
|
scopeId: "dark"
|
|
1981
3203
|
selector: ":root[data-mode=\"dark\"]"
|
|
1982
3204
|
sourceFile: "Appearance (Modes).tokens.json"
|
|
1983
3205
|
-
|
|
1984
|
-
cssVar: "--color-text-
|
|
1985
|
-
name: "color-text-
|
|
3206
|
+
cssVar: "--color-text-on-disabled"
|
|
3207
|
+
name: "color-text-on-disabled"
|
|
1986
3208
|
value: "var(--color-neutral-800)"
|
|
1987
3209
|
type: "color"
|
|
1988
3210
|
group: "colors"
|
|
1989
|
-
path: "Color/Text/
|
|
1990
|
-
pathKey: "Color.Text.
|
|
3211
|
+
path: "Color/Text/On Disabled"
|
|
3212
|
+
pathKey: "Color.Text.On Disabled"
|
|
1991
3213
|
scope: "mode:light"
|
|
1992
3214
|
scopeBucket: "mode"
|
|
1993
3215
|
scopeId: "light"
|
|
1994
3216
|
selector: ":root"
|
|
1995
3217
|
sourceFile: "Appearance (Modes).tokens.json"
|
|
1996
3218
|
-
|
|
1997
|
-
cssVar: "--color-text-
|
|
1998
|
-
name: "color-text-
|
|
1999
|
-
value: "var(--color-
|
|
3219
|
+
cssVar: "--color-text-on-subtle"
|
|
3220
|
+
name: "color-text-on-subtle"
|
|
3221
|
+
value: "var(--brand-color-primary-dark)"
|
|
2000
3222
|
type: "color"
|
|
2001
3223
|
group: "colors"
|
|
2002
|
-
path: "Color/Text/
|
|
2003
|
-
pathKey: "Color.Text.
|
|
3224
|
+
path: "Color/Text/On Subtle"
|
|
3225
|
+
pathKey: "Color.Text.On Subtle"
|
|
2004
3226
|
scope: "mode:dark"
|
|
2005
3227
|
scopeBucket: "mode"
|
|
2006
3228
|
scopeId: "dark"
|
|
2007
3229
|
selector: ":root[data-mode=\"dark\"]"
|
|
2008
3230
|
sourceFile: "Appearance (Modes).tokens.json"
|
|
2009
3231
|
-
|
|
2010
|
-
cssVar: "--color-text-
|
|
2011
|
-
name: "color-text-
|
|
2012
|
-
value: "var(--color-
|
|
3232
|
+
cssVar: "--color-text-on-subtle"
|
|
3233
|
+
name: "color-text-on-subtle"
|
|
3234
|
+
value: "var(--brand-color-primary)"
|
|
2013
3235
|
type: "color"
|
|
2014
3236
|
group: "colors"
|
|
2015
|
-
path: "Color/Text/
|
|
2016
|
-
pathKey: "Color.Text.
|
|
3237
|
+
path: "Color/Text/On Subtle"
|
|
3238
|
+
pathKey: "Color.Text.On Subtle"
|
|
2017
3239
|
scope: "mode:light"
|
|
2018
3240
|
scopeBucket: "mode"
|
|
2019
3241
|
scopeId: "light"
|
|
2020
3242
|
selector: ":root"
|
|
2021
3243
|
sourceFile: "Appearance (Modes).tokens.json"
|
|
2022
3244
|
-
|
|
2023
|
-
cssVar: "--color-text-
|
|
2024
|
-
name: "color-text-
|
|
2025
|
-
value: "var(--color-neutral-
|
|
3245
|
+
cssVar: "--color-text-on-success"
|
|
3246
|
+
name: "color-text-on-success"
|
|
3247
|
+
value: "var(--color-neutral-000)"
|
|
2026
3248
|
type: "color"
|
|
2027
3249
|
group: "colors"
|
|
2028
|
-
path: "Color/Text/
|
|
2029
|
-
pathKey: "Color.Text.
|
|
3250
|
+
path: "Color/Text/On Success"
|
|
3251
|
+
pathKey: "Color.Text.On Success"
|
|
2030
3252
|
scope: "mode:dark"
|
|
2031
3253
|
scopeBucket: "mode"
|
|
2032
3254
|
scopeId: "dark"
|
|
2033
3255
|
selector: ":root[data-mode=\"dark\"]"
|
|
2034
3256
|
sourceFile: "Appearance (Modes).tokens.json"
|
|
2035
3257
|
-
|
|
2036
|
-
cssVar: "--color-text-
|
|
2037
|
-
name: "color-text-
|
|
3258
|
+
cssVar: "--color-text-on-success"
|
|
3259
|
+
name: "color-text-on-success"
|
|
2038
3260
|
value: "var(--color-neutral-000)"
|
|
2039
3261
|
type: "color"
|
|
2040
3262
|
group: "colors"
|
|
2041
|
-
path: "Color/Text/
|
|
2042
|
-
pathKey: "Color.Text.
|
|
3263
|
+
path: "Color/Text/On Success"
|
|
3264
|
+
pathKey: "Color.Text.On Success"
|
|
2043
3265
|
scope: "mode:light"
|
|
2044
3266
|
scopeBucket: "mode"
|
|
2045
3267
|
scopeId: "light"
|
|
@@ -2149,6 +3371,32 @@ tokens:
|
|
|
2149
3371
|
scopeId: "components-ui"
|
|
2150
3372
|
selector: ":root"
|
|
2151
3373
|
sourceFile: "Components (UI).tokens.json"
|
|
3374
|
+
-
|
|
3375
|
+
cssVar: "--badge-border-size-default"
|
|
3376
|
+
name: "badge-border-size-default"
|
|
3377
|
+
value: "var(--size-border-100)"
|
|
3378
|
+
type: "number"
|
|
3379
|
+
group: "components"
|
|
3380
|
+
path: "Badge/Border Size Default"
|
|
3381
|
+
pathKey: "Badge.Border Size Default"
|
|
3382
|
+
scope: "global:components-ui"
|
|
3383
|
+
scopeBucket: "global"
|
|
3384
|
+
scopeId: "components-ui"
|
|
3385
|
+
selector: ":root"
|
|
3386
|
+
sourceFile: "Components (UI).tokens.json"
|
|
3387
|
+
-
|
|
3388
|
+
cssVar: "--badge-brand-border-color"
|
|
3389
|
+
name: "badge-brand-border-color"
|
|
3390
|
+
value: "var(--color-transparent)"
|
|
3391
|
+
type: "color"
|
|
3392
|
+
group: "components"
|
|
3393
|
+
path: "Badge/Brand/Border Color"
|
|
3394
|
+
pathKey: "Badge.Brand.Border Color"
|
|
3395
|
+
scope: "global:components-ui"
|
|
3396
|
+
scopeBucket: "global"
|
|
3397
|
+
scopeId: "components-ui"
|
|
3398
|
+
selector: ":root"
|
|
3399
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2152
3400
|
-
|
|
2153
3401
|
cssVar: "--badge-brand-container-background"
|
|
2154
3402
|
name: "badge-brand-container-background"
|
|
@@ -2165,7 +3413,7 @@ tokens:
|
|
|
2165
3413
|
-
|
|
2166
3414
|
cssVar: "--badge-brand-text-color"
|
|
2167
3415
|
name: "badge-brand-text-color"
|
|
2168
|
-
value: "var(--color-text-
|
|
3416
|
+
value: "var(--color-text-on-brand)"
|
|
2169
3417
|
type: "color"
|
|
2170
3418
|
group: "components"
|
|
2171
3419
|
path: "Badge/Brand/Text Color"
|
|
@@ -2175,6 +3423,19 @@ tokens:
|
|
|
2175
3423
|
scopeId: "components-ui"
|
|
2176
3424
|
selector: ":root"
|
|
2177
3425
|
sourceFile: "Components (UI).tokens.json"
|
|
3426
|
+
-
|
|
3427
|
+
cssVar: "--badge-danger-border-color"
|
|
3428
|
+
name: "badge-danger-border-color"
|
|
3429
|
+
value: "var(--color-transparent)"
|
|
3430
|
+
type: "color"
|
|
3431
|
+
group: "components"
|
|
3432
|
+
path: "Badge/Danger/Container/Border Color"
|
|
3433
|
+
pathKey: "Badge.Danger.Container.Border Color"
|
|
3434
|
+
scope: "global:components-ui"
|
|
3435
|
+
scopeBucket: "global"
|
|
3436
|
+
scopeId: "components-ui"
|
|
3437
|
+
selector: ":root"
|
|
3438
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2178
3439
|
-
|
|
2179
3440
|
cssVar: "--badge-danger-container-background"
|
|
2180
3441
|
name: "badge-danger-container-background"
|
|
@@ -2191,7 +3452,7 @@ tokens:
|
|
|
2191
3452
|
-
|
|
2192
3453
|
cssVar: "--badge-danger-text-color"
|
|
2193
3454
|
name: "badge-danger-text-color"
|
|
2194
|
-
value: "var(--color-text-
|
|
3455
|
+
value: "var(--color-text-on-danger)"
|
|
2195
3456
|
type: "color"
|
|
2196
3457
|
group: "components"
|
|
2197
3458
|
path: "Badge/Danger/Text Color"
|
|
@@ -2201,6 +3462,19 @@ tokens:
|
|
|
2201
3462
|
scopeId: "components-ui"
|
|
2202
3463
|
selector: ":root"
|
|
2203
3464
|
sourceFile: "Components (UI).tokens.json"
|
|
3465
|
+
-
|
|
3466
|
+
cssVar: "--badge-default-border-color"
|
|
3467
|
+
name: "badge-default-border-color"
|
|
3468
|
+
value: "var(--color-transparent)"
|
|
3469
|
+
type: "color"
|
|
3470
|
+
group: "components"
|
|
3471
|
+
path: "Badge/Default/Border Color"
|
|
3472
|
+
pathKey: "Badge.Default.Border Color"
|
|
3473
|
+
scope: "global:components-ui"
|
|
3474
|
+
scopeBucket: "global"
|
|
3475
|
+
scopeId: "components-ui"
|
|
3476
|
+
selector: ":root"
|
|
3477
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2204
3478
|
-
|
|
2205
3479
|
cssVar: "--badge-default-container-background"
|
|
2206
3480
|
name: "badge-default-container-background"
|
|
@@ -2230,7 +3504,7 @@ tokens:
|
|
|
2230
3504
|
-
|
|
2231
3505
|
cssVar: "--badge-font-family"
|
|
2232
3506
|
name: "badge-font-family"
|
|
2233
|
-
value: "var(--
|
|
3507
|
+
value: "var(--brand-font-lead)"
|
|
2234
3508
|
type: "string"
|
|
2235
3509
|
group: "components"
|
|
2236
3510
|
path: "Badge/Font Family"
|
|
@@ -2243,11 +3517,11 @@ tokens:
|
|
|
2243
3517
|
-
|
|
2244
3518
|
cssVar: "--badge-font-size-md"
|
|
2245
3519
|
name: "badge-font-size-md"
|
|
2246
|
-
value: "
|
|
3520
|
+
value: ".875rem"
|
|
2247
3521
|
type: "number"
|
|
2248
3522
|
group: "components"
|
|
2249
|
-
path: "Badge/
|
|
2250
|
-
pathKey: "Badge.
|
|
3523
|
+
path: "Badge/font-size/md"
|
|
3524
|
+
pathKey: "Badge.font-size.md"
|
|
2251
3525
|
scope: "global:components-ui"
|
|
2252
3526
|
scopeBucket: "global"
|
|
2253
3527
|
scopeId: "components-ui"
|
|
@@ -2256,11 +3530,11 @@ tokens:
|
|
|
2256
3530
|
-
|
|
2257
3531
|
cssVar: "--badge-font-size-sm"
|
|
2258
3532
|
name: "badge-font-size-sm"
|
|
2259
|
-
value: "
|
|
3533
|
+
value: ".75rem"
|
|
2260
3534
|
type: "number"
|
|
2261
3535
|
group: "components"
|
|
2262
|
-
path: "Badge/
|
|
2263
|
-
pathKey: "Badge.
|
|
3536
|
+
path: "Badge/font-size/sm"
|
|
3537
|
+
pathKey: "Badge.font-size.sm"
|
|
2264
3538
|
scope: "global:components-ui"
|
|
2265
3539
|
scopeBucket: "global"
|
|
2266
3540
|
scopeId: "components-ui"
|
|
@@ -2269,7 +3543,7 @@ tokens:
|
|
|
2269
3543
|
-
|
|
2270
3544
|
cssVar: "--badge-font-weight"
|
|
2271
3545
|
name: "badge-font-weight"
|
|
2272
|
-
value: "var(--font-weight
|
|
3546
|
+
value: "var(--typography-label-font-weight)"
|
|
2273
3547
|
type: "string"
|
|
2274
3548
|
group: "components"
|
|
2275
3549
|
path: "Badge/Font Weight"
|
|
@@ -2292,14 +3566,27 @@ tokens:
|
|
|
2292
3566
|
scopeId: "components-ui"
|
|
2293
3567
|
selector: ":root"
|
|
2294
3568
|
sourceFile: "Components (UI).tokens.json"
|
|
3569
|
+
-
|
|
3570
|
+
cssVar: "--badge-height-min"
|
|
3571
|
+
name: "badge-height-min"
|
|
3572
|
+
value: "2.5rem"
|
|
3573
|
+
type: "number"
|
|
3574
|
+
group: "components"
|
|
3575
|
+
path: "Badge/Height Min"
|
|
3576
|
+
pathKey: "Badge.Height Min"
|
|
3577
|
+
scope: "global:components-ui"
|
|
3578
|
+
scopeBucket: "global"
|
|
3579
|
+
scopeId: "components-ui"
|
|
3580
|
+
selector: ":root"
|
|
3581
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2295
3582
|
-
|
|
2296
3583
|
cssVar: "--badge-line-height-md"
|
|
2297
3584
|
name: "badge-line-height-md"
|
|
2298
|
-
value: "
|
|
3585
|
+
value: "1.25rem"
|
|
2299
3586
|
type: "number"
|
|
2300
3587
|
group: "components"
|
|
2301
|
-
path: "Badge/
|
|
2302
|
-
pathKey: "Badge.
|
|
3588
|
+
path: "Badge/line-height/md"
|
|
3589
|
+
pathKey: "Badge.line-height.md"
|
|
2303
3590
|
scope: "global:components-ui"
|
|
2304
3591
|
scopeBucket: "global"
|
|
2305
3592
|
scopeId: "components-ui"
|
|
@@ -2308,11 +3595,11 @@ tokens:
|
|
|
2308
3595
|
-
|
|
2309
3596
|
cssVar: "--badge-line-height-sm"
|
|
2310
3597
|
name: "badge-line-height-sm"
|
|
2311
|
-
value: "
|
|
3598
|
+
value: "1rem"
|
|
2312
3599
|
type: "number"
|
|
2313
3600
|
group: "components"
|
|
2314
|
-
path: "Badge/
|
|
2315
|
-
pathKey: "Badge.
|
|
3601
|
+
path: "Badge/line-height/sm"
|
|
3602
|
+
pathKey: "Badge.line-height.sm"
|
|
2316
3603
|
scope: "global:components-ui"
|
|
2317
3604
|
scopeBucket: "global"
|
|
2318
3605
|
scopeId: "components-ui"
|
|
@@ -2334,11 +3621,24 @@ tokens:
|
|
|
2334
3621
|
-
|
|
2335
3622
|
cssVar: "--badge-padding-block-sm"
|
|
2336
3623
|
name: "badge-padding-block-sm"
|
|
2337
|
-
value: "
|
|
3624
|
+
value: ".125rem"
|
|
3625
|
+
type: "number"
|
|
3626
|
+
group: "components"
|
|
3627
|
+
path: "Badge/padding-block/sm"
|
|
3628
|
+
pathKey: "Badge.padding-block.sm"
|
|
3629
|
+
scope: "global:components-ui"
|
|
3630
|
+
scopeBucket: "global"
|
|
3631
|
+
scopeId: "components-ui"
|
|
3632
|
+
selector: ":root"
|
|
3633
|
+
sourceFile: "Components (UI).tokens.json"
|
|
3634
|
+
-
|
|
3635
|
+
cssVar: "--badge-padding-inline-icon-only"
|
|
3636
|
+
name: "badge-padding-inline-icon-only"
|
|
3637
|
+
value: "var(--size-spacing-200)"
|
|
2338
3638
|
type: "number"
|
|
2339
3639
|
group: "components"
|
|
2340
|
-
path: "Badge/Padding
|
|
2341
|
-
pathKey: "Badge.Padding
|
|
3640
|
+
path: "Badge/Padding Inline Icon Only"
|
|
3641
|
+
pathKey: "Badge.Padding Inline Icon Only"
|
|
2342
3642
|
scope: "global:components-ui"
|
|
2343
3643
|
scopeBucket: "global"
|
|
2344
3644
|
scopeId: "components-ui"
|
|
@@ -2360,11 +3660,24 @@ tokens:
|
|
|
2360
3660
|
-
|
|
2361
3661
|
cssVar: "--badge-padding-inline-sm"
|
|
2362
3662
|
name: "badge-padding-inline-sm"
|
|
2363
|
-
value: "
|
|
3663
|
+
value: ".5rem"
|
|
2364
3664
|
type: "number"
|
|
2365
3665
|
group: "components"
|
|
2366
|
-
path: "Badge/
|
|
2367
|
-
pathKey: "Badge.
|
|
3666
|
+
path: "Badge/padding-inline/sm"
|
|
3667
|
+
pathKey: "Badge.padding-inline.sm"
|
|
3668
|
+
scope: "global:components-ui"
|
|
3669
|
+
scopeBucket: "global"
|
|
3670
|
+
scopeId: "components-ui"
|
|
3671
|
+
selector: ":root"
|
|
3672
|
+
sourceFile: "Components (UI).tokens.json"
|
|
3673
|
+
-
|
|
3674
|
+
cssVar: "--badge-success-border-color"
|
|
3675
|
+
name: "badge-success-border-color"
|
|
3676
|
+
value: "var(--color-transparent)"
|
|
3677
|
+
type: "color"
|
|
3678
|
+
group: "components"
|
|
3679
|
+
path: "Badge/Success/Border Color"
|
|
3680
|
+
pathKey: "Badge.Success.Border Color"
|
|
2368
3681
|
scope: "global:components-ui"
|
|
2369
3682
|
scopeBucket: "global"
|
|
2370
3683
|
scopeId: "components-ui"
|
|
@@ -2386,7 +3699,7 @@ tokens:
|
|
|
2386
3699
|
-
|
|
2387
3700
|
cssVar: "--badge-success-text-color"
|
|
2388
3701
|
name: "badge-success-text-color"
|
|
2389
|
-
value: "var(--color-text-
|
|
3702
|
+
value: "var(--color-text-on-success)"
|
|
2390
3703
|
type: "color"
|
|
2391
3704
|
group: "components"
|
|
2392
3705
|
path: "Badge/Success/Text Color"
|
|
@@ -2396,6 +3709,19 @@ tokens:
|
|
|
2396
3709
|
scopeId: "components-ui"
|
|
2397
3710
|
selector: ":root"
|
|
2398
3711
|
sourceFile: "Components (UI).tokens.json"
|
|
3712
|
+
-
|
|
3713
|
+
cssVar: "--badge-width-min"
|
|
3714
|
+
name: "badge-width-min"
|
|
3715
|
+
value: "2.5rem"
|
|
3716
|
+
type: "number"
|
|
3717
|
+
group: "components"
|
|
3718
|
+
path: "Badge/Width Min"
|
|
3719
|
+
pathKey: "Badge.Width Min"
|
|
3720
|
+
scope: "global:components-ui"
|
|
3721
|
+
scopeBucket: "global"
|
|
3722
|
+
scopeId: "components-ui"
|
|
3723
|
+
selector: ":root"
|
|
3724
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2399
3725
|
-
|
|
2400
3726
|
cssVar: "--button-border-color-disabled"
|
|
2401
3727
|
name: "button-border-color-disabled"
|
|
@@ -3023,7 +4349,7 @@ tokens:
|
|
|
3023
4349
|
-
|
|
3024
4350
|
cssVar: "--button-solid-text-color-active"
|
|
3025
4351
|
name: "button-solid-text-color-active"
|
|
3026
|
-
value: "var(--color-text-
|
|
4352
|
+
value: "var(--color-text-on-brand)"
|
|
3027
4353
|
type: "color"
|
|
3028
4354
|
group: "components"
|
|
3029
4355
|
path: "Button/Solid/Text Color Active"
|
|
@@ -3036,7 +4362,7 @@ tokens:
|
|
|
3036
4362
|
-
|
|
3037
4363
|
cssVar: "--button-solid-text-color-default"
|
|
3038
4364
|
name: "button-solid-text-color-default"
|
|
3039
|
-
value: "var(--color-text-
|
|
4365
|
+
value: "var(--color-text-on-brand)"
|
|
3040
4366
|
type: "color"
|
|
3041
4367
|
group: "components"
|
|
3042
4368
|
path: "Button/Solid/Text Color Default"
|
|
@@ -3049,7 +4375,7 @@ tokens:
|
|
|
3049
4375
|
-
|
|
3050
4376
|
cssVar: "--button-solid-text-color-hover"
|
|
3051
4377
|
name: "button-solid-text-color-hover"
|
|
3052
|
-
value: "var(--color-text-
|
|
4378
|
+
value: "var(--color-text-on-brand)"
|
|
3053
4379
|
type: "color"
|
|
3054
4380
|
group: "components"
|
|
3055
4381
|
path: "Button/Solid/Text Color Hover"
|
|
@@ -3085,14 +4411,105 @@ tokens:
|
|
|
3085
4411
|
scopeId: "components-ui"
|
|
3086
4412
|
selector: ":root"
|
|
3087
4413
|
sourceFile: "Components (UI).tokens.json"
|
|
4414
|
+
-
|
|
4415
|
+
cssVar: "--checkbox-border-color-active"
|
|
4416
|
+
name: "checkbox-border-color-active"
|
|
4417
|
+
value: "var(--color-border-brand)"
|
|
4418
|
+
type: "color"
|
|
4419
|
+
group: "components"
|
|
4420
|
+
path: "Checkbox/Border/Color Active"
|
|
4421
|
+
pathKey: "Checkbox.Border.Color Active"
|
|
4422
|
+
scope: "global:components-ui"
|
|
4423
|
+
scopeBucket: "global"
|
|
4424
|
+
scopeId: "components-ui"
|
|
4425
|
+
selector: ":root"
|
|
4426
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4427
|
+
-
|
|
4428
|
+
cssVar: "--checkbox-border-color-default"
|
|
4429
|
+
name: "checkbox-border-color-default"
|
|
4430
|
+
value: "var(--color-border-subtle)"
|
|
4431
|
+
type: "color"
|
|
4432
|
+
group: "components"
|
|
4433
|
+
path: "Checkbox/Border/Color Default"
|
|
4434
|
+
pathKey: "Checkbox.Border.Color Default"
|
|
4435
|
+
scope: "global:components-ui"
|
|
4436
|
+
scopeBucket: "global"
|
|
4437
|
+
scopeId: "components-ui"
|
|
4438
|
+
selector: ":root"
|
|
4439
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4440
|
+
-
|
|
4441
|
+
cssVar: "--checkbox-border-color-disabled"
|
|
4442
|
+
name: "checkbox-border-color-disabled"
|
|
4443
|
+
value: "var(--color-border-disabled)"
|
|
4444
|
+
type: "color"
|
|
4445
|
+
group: "components"
|
|
4446
|
+
path: "Checkbox/Border/Color Disabled"
|
|
4447
|
+
pathKey: "Checkbox.Border.Color Disabled"
|
|
4448
|
+
scope: "global:components-ui"
|
|
4449
|
+
scopeBucket: "global"
|
|
4450
|
+
scopeId: "components-ui"
|
|
4451
|
+
selector: ":root"
|
|
4452
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4453
|
+
-
|
|
4454
|
+
cssVar: "--checkbox-border-color-focus"
|
|
4455
|
+
name: "checkbox-border-color-focus"
|
|
4456
|
+
value: "var(--color-border-brand)"
|
|
4457
|
+
type: "color"
|
|
4458
|
+
group: "components"
|
|
4459
|
+
path: "Checkbox/Border/Color Focus"
|
|
4460
|
+
pathKey: "Checkbox.Border.Color Focus"
|
|
4461
|
+
scope: "global:components-ui"
|
|
4462
|
+
scopeBucket: "global"
|
|
4463
|
+
scopeId: "components-ui"
|
|
4464
|
+
selector: ":root"
|
|
4465
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4466
|
+
-
|
|
4467
|
+
cssVar: "--checkbox-border-color-hover"
|
|
4468
|
+
name: "checkbox-border-color-hover"
|
|
4469
|
+
value: "var(--color-border-brand)"
|
|
4470
|
+
type: "color"
|
|
4471
|
+
group: "components"
|
|
4472
|
+
path: "Checkbox/Border/Color Hover"
|
|
4473
|
+
pathKey: "Checkbox.Border.Color Hover"
|
|
4474
|
+
scope: "global:components-ui"
|
|
4475
|
+
scopeBucket: "global"
|
|
4476
|
+
scopeId: "components-ui"
|
|
4477
|
+
selector: ":root"
|
|
4478
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4479
|
+
-
|
|
4480
|
+
cssVar: "--checkbox-border-color-invalid"
|
|
4481
|
+
name: "checkbox-border-color-invalid"
|
|
4482
|
+
value: "var(--color-border-danger)"
|
|
4483
|
+
type: "color"
|
|
4484
|
+
group: "components"
|
|
4485
|
+
path: "Checkbox/Border/Color Invalid"
|
|
4486
|
+
pathKey: "Checkbox.Border.Color Invalid"
|
|
4487
|
+
scope: "global:components-ui"
|
|
4488
|
+
scopeBucket: "global"
|
|
4489
|
+
scopeId: "components-ui"
|
|
4490
|
+
selector: ":root"
|
|
4491
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4492
|
+
-
|
|
4493
|
+
cssVar: "--checkbox-border-color-valid"
|
|
4494
|
+
name: "checkbox-border-color-valid"
|
|
4495
|
+
value: "var(--color-border-strong)"
|
|
4496
|
+
type: "color"
|
|
4497
|
+
group: "components"
|
|
4498
|
+
path: "Checkbox/Border/Color Valid"
|
|
4499
|
+
pathKey: "Checkbox.Border.Color Valid"
|
|
4500
|
+
scope: "global:components-ui"
|
|
4501
|
+
scopeBucket: "global"
|
|
4502
|
+
scopeId: "components-ui"
|
|
4503
|
+
selector: ":root"
|
|
4504
|
+
sourceFile: "Components (UI).tokens.json"
|
|
3088
4505
|
-
|
|
3089
4506
|
cssVar: "--checkbox-border-size-default"
|
|
3090
4507
|
name: "checkbox-border-size-default"
|
|
3091
4508
|
value: "var(--size-border-100)"
|
|
3092
4509
|
type: "number"
|
|
3093
4510
|
group: "components"
|
|
3094
|
-
path: "
|
|
3095
|
-
pathKey: "
|
|
4511
|
+
path: "Checkbox/Border/Size Default"
|
|
4512
|
+
pathKey: "Checkbox.Border.Size Default"
|
|
3096
4513
|
scope: "global:components-ui"
|
|
3097
4514
|
scopeBucket: "global"
|
|
3098
4515
|
scopeId: "components-ui"
|
|
@@ -3104,8 +4521,8 @@ tokens:
|
|
|
3104
4521
|
value: "var(--size-border-000)"
|
|
3105
4522
|
type: "number"
|
|
3106
4523
|
group: "components"
|
|
3107
|
-
path: "
|
|
3108
|
-
pathKey: "
|
|
4524
|
+
path: "Checkbox/Border/Size Disabled"
|
|
4525
|
+
pathKey: "Checkbox.Border.Size Disabled"
|
|
3109
4526
|
scope: "global:components-ui"
|
|
3110
4527
|
scopeBucket: "global"
|
|
3111
4528
|
scopeId: "components-ui"
|
|
@@ -3117,8 +4534,125 @@ tokens:
|
|
|
3117
4534
|
value: "var(--size-border-200)"
|
|
3118
4535
|
type: "number"
|
|
3119
4536
|
group: "components"
|
|
3120
|
-
path: "
|
|
3121
|
-
pathKey: "
|
|
4537
|
+
path: "Checkbox/Border/Size Hover"
|
|
4538
|
+
pathKey: "Checkbox.Border.Size Hover"
|
|
4539
|
+
scope: "global:components-ui"
|
|
4540
|
+
scopeBucket: "global"
|
|
4541
|
+
scopeId: "components-ui"
|
|
4542
|
+
selector: ":root"
|
|
4543
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4544
|
+
-
|
|
4545
|
+
cssVar: "--checkbox-container-background-active"
|
|
4546
|
+
name: "checkbox-container-background-active"
|
|
4547
|
+
value: "var(--color-fill-brand)"
|
|
4548
|
+
type: "color"
|
|
4549
|
+
group: "components"
|
|
4550
|
+
path: "Checkbox/Container/Background Active"
|
|
4551
|
+
pathKey: "Checkbox.Container.Background Active"
|
|
4552
|
+
scope: "global:components-ui"
|
|
4553
|
+
scopeBucket: "global"
|
|
4554
|
+
scopeId: "components-ui"
|
|
4555
|
+
selector: ":root"
|
|
4556
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4557
|
+
-
|
|
4558
|
+
cssVar: "--checkbox-container-background-default"
|
|
4559
|
+
name: "checkbox-container-background-default"
|
|
4560
|
+
value: "var(--color-fill-surface)"
|
|
4561
|
+
type: "color"
|
|
4562
|
+
group: "components"
|
|
4563
|
+
path: "Checkbox/Container/Background Default"
|
|
4564
|
+
pathKey: "Checkbox.Container.Background Default"
|
|
4565
|
+
scope: "global:components-ui"
|
|
4566
|
+
scopeBucket: "global"
|
|
4567
|
+
scopeId: "components-ui"
|
|
4568
|
+
selector: ":root"
|
|
4569
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4570
|
+
-
|
|
4571
|
+
cssVar: "--checkbox-container-background-disabled"
|
|
4572
|
+
name: "checkbox-container-background-disabled"
|
|
4573
|
+
value: "var(--color-fill-disabled)"
|
|
4574
|
+
type: "color"
|
|
4575
|
+
group: "components"
|
|
4576
|
+
path: "Checkbox/Container/Background Disabled"
|
|
4577
|
+
pathKey: "Checkbox.Container.Background Disabled"
|
|
4578
|
+
scope: "global:components-ui"
|
|
4579
|
+
scopeBucket: "global"
|
|
4580
|
+
scopeId: "components-ui"
|
|
4581
|
+
selector: ":root"
|
|
4582
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4583
|
+
-
|
|
4584
|
+
cssVar: "--checkbox-container-background-focus"
|
|
4585
|
+
name: "checkbox-container-background-focus"
|
|
4586
|
+
value: "var(--color-fill-surface)"
|
|
4587
|
+
type: "color"
|
|
4588
|
+
group: "components"
|
|
4589
|
+
path: "Checkbox/Container/Background Focus"
|
|
4590
|
+
pathKey: "Checkbox.Container.Background Focus"
|
|
4591
|
+
scope: "global:components-ui"
|
|
4592
|
+
scopeBucket: "global"
|
|
4593
|
+
scopeId: "components-ui"
|
|
4594
|
+
selector: ":root"
|
|
4595
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4596
|
+
-
|
|
4597
|
+
cssVar: "--checkbox-container-background-hover"
|
|
4598
|
+
name: "checkbox-container-background-hover"
|
|
4599
|
+
value: "var(--color-fill-surface)"
|
|
4600
|
+
type: "color"
|
|
4601
|
+
group: "components"
|
|
4602
|
+
path: "Checkbox/Container/Background Hover"
|
|
4603
|
+
pathKey: "Checkbox.Container.Background Hover"
|
|
4604
|
+
scope: "global:components-ui"
|
|
4605
|
+
scopeBucket: "global"
|
|
4606
|
+
scopeId: "components-ui"
|
|
4607
|
+
selector: ":root"
|
|
4608
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4609
|
+
-
|
|
4610
|
+
cssVar: "--checkbox-text-color-active"
|
|
4611
|
+
name: "checkbox-text-color-active"
|
|
4612
|
+
value: "var(--color-text-on-brand)"
|
|
4613
|
+
type: "color"
|
|
4614
|
+
group: "components"
|
|
4615
|
+
path: "Checkbox/Text Color Active"
|
|
4616
|
+
pathKey: "Checkbox.Text Color Active"
|
|
4617
|
+
scope: "global:components-ui"
|
|
4618
|
+
scopeBucket: "global"
|
|
4619
|
+
scopeId: "components-ui"
|
|
4620
|
+
selector: ":root"
|
|
4621
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4622
|
+
-
|
|
4623
|
+
cssVar: "--checkbox-text-color-default"
|
|
4624
|
+
name: "checkbox-text-color-default"
|
|
4625
|
+
value: "var(--color-text-default)"
|
|
4626
|
+
type: "color"
|
|
4627
|
+
group: "components"
|
|
4628
|
+
path: "Checkbox/Text Color Default"
|
|
4629
|
+
pathKey: "Checkbox.Text Color Default"
|
|
4630
|
+
scope: "global:components-ui"
|
|
4631
|
+
scopeBucket: "global"
|
|
4632
|
+
scopeId: "components-ui"
|
|
4633
|
+
selector: ":root"
|
|
4634
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4635
|
+
-
|
|
4636
|
+
cssVar: "--checkbox-text-color-disabled"
|
|
4637
|
+
name: "checkbox-text-color-disabled"
|
|
4638
|
+
value: "var(--color-text-disabled)"
|
|
4639
|
+
type: "color"
|
|
4640
|
+
group: "components"
|
|
4641
|
+
path: "Checkbox/Text Color Disabled"
|
|
4642
|
+
pathKey: "Checkbox.Text Color Disabled"
|
|
4643
|
+
scope: "global:components-ui"
|
|
4644
|
+
scopeBucket: "global"
|
|
4645
|
+
scopeId: "components-ui"
|
|
4646
|
+
selector: ":root"
|
|
4647
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4648
|
+
-
|
|
4649
|
+
cssVar: "--checkbox-text-color-hover"
|
|
4650
|
+
name: "checkbox-text-color-hover"
|
|
4651
|
+
value: "var(--color-text-brand)"
|
|
4652
|
+
type: "color"
|
|
4653
|
+
group: "components"
|
|
4654
|
+
path: "Checkbox/Text Color Hover"
|
|
4655
|
+
pathKey: "Checkbox.Text Color Hover"
|
|
3122
4656
|
scope: "global:components-ui"
|
|
3123
4657
|
scopeBucket: "global"
|
|
3124
4658
|
scopeId: "components-ui"
|
|
@@ -3281,286 +4815,208 @@ tokens:
|
|
|
3281
4815
|
selector: ":root"
|
|
3282
4816
|
sourceFile: "Components (UI).tokens.json"
|
|
3283
4817
|
-
|
|
3284
|
-
cssVar: "--input-border-color-
|
|
3285
|
-
name: "input-border-color-
|
|
3286
|
-
value: "var(--color-border-disabled)"
|
|
3287
|
-
type: "color"
|
|
3288
|
-
group: "components"
|
|
3289
|
-
path: "Input/Border Color Disabled"
|
|
3290
|
-
pathKey: "Input.Border Color Disabled"
|
|
3291
|
-
scope: "global:components-ui"
|
|
3292
|
-
scopeBucket: "global"
|
|
3293
|
-
scopeId: "components-ui"
|
|
3294
|
-
selector: ":root"
|
|
3295
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3296
|
-
-
|
|
3297
|
-
cssVar: "--input-border-radius"
|
|
3298
|
-
name: "input-border-radius"
|
|
3299
|
-
value: "var(--brand-corner-input)"
|
|
3300
|
-
type: "number"
|
|
3301
|
-
group: "components"
|
|
3302
|
-
path: "Input/Border Radius"
|
|
3303
|
-
pathKey: "Input.Border Radius"
|
|
3304
|
-
scope: "global:components-ui"
|
|
3305
|
-
scopeBucket: "global"
|
|
3306
|
-
scopeId: "components-ui"
|
|
3307
|
-
selector: ":root"
|
|
3308
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3309
|
-
-
|
|
3310
|
-
cssVar: "--input-border-size-active"
|
|
3311
|
-
name: "input-border-size-active"
|
|
3312
|
-
value: "var(--size-border-200)"
|
|
3313
|
-
type: "number"
|
|
3314
|
-
group: "components"
|
|
3315
|
-
path: "Input/Border Size Active"
|
|
3316
|
-
pathKey: "Input.Border Size Active"
|
|
3317
|
-
scope: "global:components-ui"
|
|
3318
|
-
scopeBucket: "global"
|
|
3319
|
-
scopeId: "components-ui"
|
|
3320
|
-
selector: ":root"
|
|
3321
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3322
|
-
-
|
|
3323
|
-
cssVar: "--input-border-size-default"
|
|
3324
|
-
name: "input-border-size-default"
|
|
3325
|
-
value: "var(--size-border-100)"
|
|
3326
|
-
type: "number"
|
|
3327
|
-
group: "components"
|
|
3328
|
-
path: "Input/Border Size Default"
|
|
3329
|
-
pathKey: "Input.Border Size Default"
|
|
3330
|
-
scope: "global:components-ui"
|
|
3331
|
-
scopeBucket: "global"
|
|
3332
|
-
scopeId: "components-ui"
|
|
3333
|
-
selector: ":root"
|
|
3334
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3335
|
-
-
|
|
3336
|
-
cssVar: "--input-border-size-hover"
|
|
3337
|
-
name: "input-border-size-hover"
|
|
3338
|
-
value: "var(--size-border-100)"
|
|
3339
|
-
type: "number"
|
|
3340
|
-
group: "components"
|
|
3341
|
-
path: "Input/Border Size Hover"
|
|
3342
|
-
pathKey: "Input.Border Size Hover"
|
|
3343
|
-
scope: "global:components-ui"
|
|
3344
|
-
scopeBucket: "global"
|
|
3345
|
-
scopeId: "components-ui"
|
|
3346
|
-
selector: ":root"
|
|
3347
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3348
|
-
-
|
|
3349
|
-
cssVar: "--input-checkbox-border-color-active"
|
|
3350
|
-
name: "input-checkbox-border-color-active"
|
|
4818
|
+
cssVar: "--input-border-color-active"
|
|
4819
|
+
name: "input-border-color-active"
|
|
3351
4820
|
value: "var(--color-border-brand)"
|
|
3352
4821
|
type: "color"
|
|
3353
4822
|
group: "components"
|
|
3354
|
-
path: "Input/
|
|
3355
|
-
pathKey: "Input.
|
|
4823
|
+
path: "Input/Border/Border Color Active"
|
|
4824
|
+
pathKey: "Input.Border.Border Color Active"
|
|
3356
4825
|
scope: "global:components-ui"
|
|
3357
4826
|
scopeBucket: "global"
|
|
3358
4827
|
scopeId: "components-ui"
|
|
3359
4828
|
selector: ":root"
|
|
3360
4829
|
sourceFile: "Components (UI).tokens.json"
|
|
3361
4830
|
-
|
|
3362
|
-
cssVar: "--input-
|
|
3363
|
-
name: "input-
|
|
3364
|
-
value: "var(--color-border-
|
|
4831
|
+
cssVar: "--input-border-color-default"
|
|
4832
|
+
name: "input-border-color-default"
|
|
4833
|
+
value: "var(--color-border-default)"
|
|
3365
4834
|
type: "color"
|
|
3366
4835
|
group: "components"
|
|
3367
|
-
path: "Input/
|
|
3368
|
-
pathKey: "Input.
|
|
4836
|
+
path: "Input/Border/Border Color Default"
|
|
4837
|
+
pathKey: "Input.Border.Border Color Default"
|
|
3369
4838
|
scope: "global:components-ui"
|
|
3370
4839
|
scopeBucket: "global"
|
|
3371
4840
|
scopeId: "components-ui"
|
|
3372
4841
|
selector: ":root"
|
|
3373
4842
|
sourceFile: "Components (UI).tokens.json"
|
|
3374
4843
|
-
|
|
3375
|
-
cssVar: "--input-
|
|
3376
|
-
name: "input-
|
|
4844
|
+
cssVar: "--input-border-color-disabled"
|
|
4845
|
+
name: "input-border-color-disabled"
|
|
3377
4846
|
value: "var(--color-border-disabled)"
|
|
3378
4847
|
type: "color"
|
|
3379
4848
|
group: "components"
|
|
3380
|
-
path: "Input/
|
|
3381
|
-
pathKey: "Input.
|
|
4849
|
+
path: "Input/Border/Border Color Disabled"
|
|
4850
|
+
pathKey: "Input.Border.Border Color Disabled"
|
|
3382
4851
|
scope: "global:components-ui"
|
|
3383
4852
|
scopeBucket: "global"
|
|
3384
4853
|
scopeId: "components-ui"
|
|
3385
4854
|
selector: ":root"
|
|
3386
4855
|
sourceFile: "Components (UI).tokens.json"
|
|
3387
4856
|
-
|
|
3388
|
-
cssVar: "--input-
|
|
3389
|
-
name: "input-
|
|
4857
|
+
cssVar: "--input-border-color-focus"
|
|
4858
|
+
name: "input-border-color-focus"
|
|
3390
4859
|
value: "var(--color-border-brand)"
|
|
3391
4860
|
type: "color"
|
|
3392
4861
|
group: "components"
|
|
3393
|
-
path: "Input/
|
|
3394
|
-
pathKey: "Input.
|
|
4862
|
+
path: "Input/Border/Border Color Focus"
|
|
4863
|
+
pathKey: "Input.Border.Border Color Focus"
|
|
3395
4864
|
scope: "global:components-ui"
|
|
3396
4865
|
scopeBucket: "global"
|
|
3397
4866
|
scopeId: "components-ui"
|
|
3398
4867
|
selector: ":root"
|
|
3399
4868
|
sourceFile: "Components (UI).tokens.json"
|
|
3400
4869
|
-
|
|
3401
|
-
cssVar: "--input-
|
|
3402
|
-
name: "input-
|
|
3403
|
-
value: "var(--color-border-
|
|
4870
|
+
cssVar: "--input-border-color-hover"
|
|
4871
|
+
name: "input-border-color-hover"
|
|
4872
|
+
value: "var(--color-border-brand)"
|
|
3404
4873
|
type: "color"
|
|
3405
4874
|
group: "components"
|
|
3406
|
-
path: "Input/
|
|
3407
|
-
pathKey: "Input.
|
|
4875
|
+
path: "Input/Border/Border Color Hover"
|
|
4876
|
+
pathKey: "Input.Border.Border Color Hover"
|
|
3408
4877
|
scope: "global:components-ui"
|
|
3409
4878
|
scopeBucket: "global"
|
|
3410
4879
|
scopeId: "components-ui"
|
|
3411
4880
|
selector: ":root"
|
|
3412
4881
|
sourceFile: "Components (UI).tokens.json"
|
|
3413
4882
|
-
|
|
3414
|
-
cssVar: "--input-
|
|
3415
|
-
name: "input-
|
|
4883
|
+
cssVar: "--input-border-color-invalid"
|
|
4884
|
+
name: "input-border-color-invalid"
|
|
3416
4885
|
value: "var(--color-border-danger)"
|
|
3417
4886
|
type: "color"
|
|
3418
4887
|
group: "components"
|
|
3419
|
-
path: "Input/
|
|
3420
|
-
pathKey: "Input.
|
|
4888
|
+
path: "Input/Border/Border Color Invalid"
|
|
4889
|
+
pathKey: "Input.Border.Border Color Invalid"
|
|
3421
4890
|
scope: "global:components-ui"
|
|
3422
4891
|
scopeBucket: "global"
|
|
3423
4892
|
scopeId: "components-ui"
|
|
3424
4893
|
selector: ":root"
|
|
3425
4894
|
sourceFile: "Components (UI).tokens.json"
|
|
3426
4895
|
-
|
|
3427
|
-
cssVar: "--input-
|
|
3428
|
-
name: "input-
|
|
4896
|
+
cssVar: "--input-border-color-valid"
|
|
4897
|
+
name: "input-border-color-valid"
|
|
3429
4898
|
value: "var(--color-border-strong)"
|
|
3430
4899
|
type: "color"
|
|
3431
4900
|
group: "components"
|
|
3432
|
-
path: "Input/
|
|
3433
|
-
pathKey: "Input.
|
|
4901
|
+
path: "Input/Border/Border Color Valid"
|
|
4902
|
+
pathKey: "Input.Border.Border Color Valid"
|
|
3434
4903
|
scope: "global:components-ui"
|
|
3435
4904
|
scopeBucket: "global"
|
|
3436
4905
|
scopeId: "components-ui"
|
|
3437
4906
|
selector: ":root"
|
|
3438
4907
|
sourceFile: "Components (UI).tokens.json"
|
|
3439
4908
|
-
|
|
3440
|
-
cssVar: "--input-
|
|
3441
|
-
name: "input-
|
|
3442
|
-
value: "var(--
|
|
3443
|
-
type: "
|
|
4909
|
+
cssVar: "--input-border-radius"
|
|
4910
|
+
name: "input-border-radius"
|
|
4911
|
+
value: "var(--brand-corner-input)"
|
|
4912
|
+
type: "number"
|
|
3444
4913
|
group: "components"
|
|
3445
|
-
path: "Input/
|
|
3446
|
-
pathKey: "Input.
|
|
4914
|
+
path: "Input/Border/Border Radius"
|
|
4915
|
+
pathKey: "Input.Border.Border Radius"
|
|
3447
4916
|
scope: "global:components-ui"
|
|
3448
4917
|
scopeBucket: "global"
|
|
3449
4918
|
scopeId: "components-ui"
|
|
3450
4919
|
selector: ":root"
|
|
3451
4920
|
sourceFile: "Components (UI).tokens.json"
|
|
3452
4921
|
-
|
|
3453
|
-
cssVar: "--input-
|
|
3454
|
-
name: "input-
|
|
3455
|
-
value: "var(--
|
|
3456
|
-
type: "
|
|
4922
|
+
cssVar: "--input-border-size-active"
|
|
4923
|
+
name: "input-border-size-active"
|
|
4924
|
+
value: "var(--size-border-200)"
|
|
4925
|
+
type: "number"
|
|
3457
4926
|
group: "components"
|
|
3458
|
-
path: "Input/
|
|
3459
|
-
pathKey: "Input.
|
|
4927
|
+
path: "Input/Border/Border Size Active"
|
|
4928
|
+
pathKey: "Input.Border.Border Size Active"
|
|
3460
4929
|
scope: "global:components-ui"
|
|
3461
4930
|
scopeBucket: "global"
|
|
3462
4931
|
scopeId: "components-ui"
|
|
3463
4932
|
selector: ":root"
|
|
3464
4933
|
sourceFile: "Components (UI).tokens.json"
|
|
3465
4934
|
-
|
|
3466
|
-
cssVar: "--input-
|
|
3467
|
-
name: "input-
|
|
3468
|
-
value: "var(--
|
|
3469
|
-
type: "
|
|
4935
|
+
cssVar: "--input-border-size-default"
|
|
4936
|
+
name: "input-border-size-default"
|
|
4937
|
+
value: "var(--size-border-100)"
|
|
4938
|
+
type: "number"
|
|
3470
4939
|
group: "components"
|
|
3471
|
-
path: "Input/
|
|
3472
|
-
pathKey: "Input.
|
|
4940
|
+
path: "Input/Border/Border Size Default"
|
|
4941
|
+
pathKey: "Input.Border.Border Size Default"
|
|
3473
4942
|
scope: "global:components-ui"
|
|
3474
4943
|
scopeBucket: "global"
|
|
3475
4944
|
scopeId: "components-ui"
|
|
3476
4945
|
selector: ":root"
|
|
3477
4946
|
sourceFile: "Components (UI).tokens.json"
|
|
3478
4947
|
-
|
|
3479
|
-
cssVar: "--input-
|
|
3480
|
-
name: "input-
|
|
3481
|
-
value: "var(--
|
|
3482
|
-
type: "
|
|
4948
|
+
cssVar: "--input-border-size-hover"
|
|
4949
|
+
name: "input-border-size-hover"
|
|
4950
|
+
value: "var(--size-border-100)"
|
|
4951
|
+
type: "number"
|
|
3483
4952
|
group: "components"
|
|
3484
|
-
path: "Input/
|
|
3485
|
-
pathKey: "Input.
|
|
4953
|
+
path: "Input/Border/Border Size Hover"
|
|
4954
|
+
pathKey: "Input.Border.Border Size Hover"
|
|
3486
4955
|
scope: "global:components-ui"
|
|
3487
4956
|
scopeBucket: "global"
|
|
3488
4957
|
scopeId: "components-ui"
|
|
3489
4958
|
selector: ":root"
|
|
3490
4959
|
sourceFile: "Components (UI).tokens.json"
|
|
3491
4960
|
-
|
|
3492
|
-
cssVar: "--input-
|
|
3493
|
-
name: "input-
|
|
4961
|
+
cssVar: "--input-container-background-active"
|
|
4962
|
+
name: "input-container-background-active"
|
|
3494
4963
|
value: "var(--color-fill-surface)"
|
|
3495
4964
|
type: "color"
|
|
3496
4965
|
group: "components"
|
|
3497
|
-
path: "Input/
|
|
3498
|
-
pathKey: "Input.
|
|
3499
|
-
scope: "global:components-ui"
|
|
3500
|
-
scopeBucket: "global"
|
|
3501
|
-
scopeId: "components-ui"
|
|
3502
|
-
selector: ":root"
|
|
3503
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3504
|
-
-
|
|
3505
|
-
cssVar: "--input-checkbox-text-color-active"
|
|
3506
|
-
name: "input-checkbox-text-color-active"
|
|
3507
|
-
value: "var(--color-text-inverse)"
|
|
3508
|
-
type: "color"
|
|
3509
|
-
group: "components"
|
|
3510
|
-
path: "Input/Checkbox/Text Color Active"
|
|
3511
|
-
pathKey: "Input.Checkbox.Text Color Active"
|
|
4966
|
+
path: "Input/Container/Background Active"
|
|
4967
|
+
pathKey: "Input.Container.Background Active"
|
|
3512
4968
|
scope: "global:components-ui"
|
|
3513
4969
|
scopeBucket: "global"
|
|
3514
4970
|
scopeId: "components-ui"
|
|
3515
4971
|
selector: ":root"
|
|
3516
4972
|
sourceFile: "Components (UI).tokens.json"
|
|
3517
4973
|
-
|
|
3518
|
-
cssVar: "--input-
|
|
3519
|
-
name: "input-
|
|
3520
|
-
value: "var(--color-
|
|
4974
|
+
cssVar: "--input-container-background-default"
|
|
4975
|
+
name: "input-container-background-default"
|
|
4976
|
+
value: "var(--color-fill-surface)"
|
|
3521
4977
|
type: "color"
|
|
3522
4978
|
group: "components"
|
|
3523
|
-
path: "Input/
|
|
3524
|
-
pathKey: "Input.
|
|
4979
|
+
path: "Input/Container/Background Default"
|
|
4980
|
+
pathKey: "Input.Container.Background Default"
|
|
3525
4981
|
scope: "global:components-ui"
|
|
3526
4982
|
scopeBucket: "global"
|
|
3527
4983
|
scopeId: "components-ui"
|
|
3528
4984
|
selector: ":root"
|
|
3529
4985
|
sourceFile: "Components (UI).tokens.json"
|
|
3530
4986
|
-
|
|
3531
|
-
cssVar: "--input-
|
|
3532
|
-
name: "input-
|
|
3533
|
-
value: "var(--color-
|
|
4987
|
+
cssVar: "--input-container-background-disabled"
|
|
4988
|
+
name: "input-container-background-disabled"
|
|
4989
|
+
value: "var(--color-fill-disabled)"
|
|
3534
4990
|
type: "color"
|
|
3535
4991
|
group: "components"
|
|
3536
|
-
path: "Input/
|
|
3537
|
-
pathKey: "Input.
|
|
4992
|
+
path: "Input/Container/Background Disabled"
|
|
4993
|
+
pathKey: "Input.Container.Background Disabled"
|
|
3538
4994
|
scope: "global:components-ui"
|
|
3539
4995
|
scopeBucket: "global"
|
|
3540
4996
|
scopeId: "components-ui"
|
|
3541
4997
|
selector: ":root"
|
|
3542
4998
|
sourceFile: "Components (UI).tokens.json"
|
|
3543
4999
|
-
|
|
3544
|
-
cssVar: "--input-
|
|
3545
|
-
name: "input-
|
|
3546
|
-
value: "var(--color-
|
|
5000
|
+
cssVar: "--input-container-background-focus"
|
|
5001
|
+
name: "input-container-background-focus"
|
|
5002
|
+
value: "var(--color-fill-surface)"
|
|
3547
5003
|
type: "color"
|
|
3548
5004
|
group: "components"
|
|
3549
|
-
path: "Input/
|
|
3550
|
-
pathKey: "Input.
|
|
5005
|
+
path: "Input/Container/Background Focus"
|
|
5006
|
+
pathKey: "Input.Container.Background Focus"
|
|
3551
5007
|
scope: "global:components-ui"
|
|
3552
5008
|
scopeBucket: "global"
|
|
3553
5009
|
scopeId: "components-ui"
|
|
3554
5010
|
selector: ":root"
|
|
3555
5011
|
sourceFile: "Components (UI).tokens.json"
|
|
3556
5012
|
-
|
|
3557
|
-
cssVar: "--input-container-background-
|
|
3558
|
-
name: "input-container-background-
|
|
3559
|
-
value: "var(--color-fill-
|
|
5013
|
+
cssVar: "--input-container-background-hover"
|
|
5014
|
+
name: "input-container-background-hover"
|
|
5015
|
+
value: "var(--color-fill-surface)"
|
|
3560
5016
|
type: "color"
|
|
3561
5017
|
group: "components"
|
|
3562
|
-
path: "Input/Container
|
|
3563
|
-
pathKey: "Input.Container
|
|
5018
|
+
path: "Input/Container/Background Hover"
|
|
5019
|
+
pathKey: "Input.Container.Background Hover"
|
|
3564
5020
|
scope: "global:components-ui"
|
|
3565
5021
|
scopeBucket: "global"
|
|
3566
5022
|
scopeId: "components-ui"
|
|
@@ -3631,6 +5087,19 @@ tokens:
|
|
|
3631
5087
|
scopeId: "components-ui"
|
|
3632
5088
|
selector: ":root"
|
|
3633
5089
|
sourceFile: "Components (UI).tokens.json"
|
|
5090
|
+
-
|
|
5091
|
+
cssVar: "--input-height-min"
|
|
5092
|
+
name: "input-height-min"
|
|
5093
|
+
value: "2.5rem"
|
|
5094
|
+
type: "number"
|
|
5095
|
+
group: "components"
|
|
5096
|
+
path: "Input/Height Min"
|
|
5097
|
+
pathKey: "Input.Height Min"
|
|
5098
|
+
scope: "global:components-ui"
|
|
5099
|
+
scopeBucket: "global"
|
|
5100
|
+
scopeId: "components-ui"
|
|
5101
|
+
selector: ":root"
|
|
5102
|
+
sourceFile: "Components (UI).tokens.json"
|
|
3634
5103
|
-
|
|
3635
5104
|
cssVar: "--input-line-height"
|
|
3636
5105
|
name: "input-line-height"
|
|
@@ -3703,380 +5172,211 @@ tokens:
|
|
|
3703
5172
|
type: "number"
|
|
3704
5173
|
group: "components"
|
|
3705
5174
|
path: "Input/Padding Inline Icon Only"
|
|
3706
|
-
pathKey: "Input.Padding Inline Icon Only"
|
|
3707
|
-
scope: "global:components-ui"
|
|
3708
|
-
scopeBucket: "global"
|
|
3709
|
-
scopeId: "components-ui"
|
|
3710
|
-
selector: ":root"
|
|
3711
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3712
|
-
-
|
|
3713
|
-
cssVar: "--input-radio-border-color-active"
|
|
3714
|
-
name: "input-radio-border-color-active"
|
|
3715
|
-
value: "var(--color-border-brand)"
|
|
3716
|
-
type: "color"
|
|
3717
|
-
group: "components"
|
|
3718
|
-
path: "Input/Radio/Border/Color Active"
|
|
3719
|
-
pathKey: "Input.Radio.Border.Color Active"
|
|
3720
|
-
scope: "global:components-ui"
|
|
3721
|
-
scopeBucket: "global"
|
|
3722
|
-
scopeId: "components-ui"
|
|
3723
|
-
selector: ":root"
|
|
3724
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3725
|
-
-
|
|
3726
|
-
cssVar: "--input-radio-border-color-default"
|
|
3727
|
-
name: "input-radio-border-color-default"
|
|
3728
|
-
value: "var(--color-border-subtle)"
|
|
3729
|
-
type: "color"
|
|
3730
|
-
group: "components"
|
|
3731
|
-
path: "Input/Radio/Border/Color Default"
|
|
3732
|
-
pathKey: "Input.Radio.Border.Color Default"
|
|
3733
|
-
scope: "global:components-ui"
|
|
3734
|
-
scopeBucket: "global"
|
|
3735
|
-
scopeId: "components-ui"
|
|
3736
|
-
selector: ":root"
|
|
3737
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3738
|
-
-
|
|
3739
|
-
cssVar: "--input-radio-border-color-disabled"
|
|
3740
|
-
name: "input-radio-border-color-disabled"
|
|
3741
|
-
value: "var(--color-border-disabled)"
|
|
3742
|
-
type: "color"
|
|
3743
|
-
group: "components"
|
|
3744
|
-
path: "Input/Radio/Border/Color Disabled"
|
|
3745
|
-
pathKey: "Input.Radio.Border.Color Disabled"
|
|
3746
|
-
scope: "global:components-ui"
|
|
3747
|
-
scopeBucket: "global"
|
|
3748
|
-
scopeId: "components-ui"
|
|
3749
|
-
selector: ":root"
|
|
3750
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3751
|
-
-
|
|
3752
|
-
cssVar: "--input-radio-border-color-focus"
|
|
3753
|
-
name: "input-radio-border-color-focus"
|
|
3754
|
-
value: "var(--color-border-brand)"
|
|
3755
|
-
type: "color"
|
|
3756
|
-
group: "components"
|
|
3757
|
-
path: "Input/Radio/Border/Color Focus"
|
|
3758
|
-
pathKey: "Input.Radio.Border.Color Focus"
|
|
3759
|
-
scope: "global:components-ui"
|
|
3760
|
-
scopeBucket: "global"
|
|
3761
|
-
scopeId: "components-ui"
|
|
3762
|
-
selector: ":root"
|
|
3763
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3764
|
-
-
|
|
3765
|
-
cssVar: "--input-radio-border-color-hover"
|
|
3766
|
-
name: "input-radio-border-color-hover"
|
|
3767
|
-
value: "var(--color-border-strong)"
|
|
3768
|
-
type: "color"
|
|
3769
|
-
group: "components"
|
|
3770
|
-
path: "Input/Radio/Border/Color Hover"
|
|
3771
|
-
pathKey: "Input.Radio.Border.Color Hover"
|
|
3772
|
-
scope: "global:components-ui"
|
|
3773
|
-
scopeBucket: "global"
|
|
3774
|
-
scopeId: "components-ui"
|
|
3775
|
-
selector: ":root"
|
|
3776
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3777
|
-
-
|
|
3778
|
-
cssVar: "--input-radio-container-background-active"
|
|
3779
|
-
name: "input-radio-container-background-active"
|
|
3780
|
-
value: "var(--color-fill-brand)"
|
|
3781
|
-
type: "color"
|
|
3782
|
-
group: "components"
|
|
3783
|
-
path: "Input/Radio/Container/Background Active"
|
|
3784
|
-
pathKey: "Input.Radio.Container.Background Active"
|
|
3785
|
-
scope: "global:components-ui"
|
|
3786
|
-
scopeBucket: "global"
|
|
3787
|
-
scopeId: "components-ui"
|
|
3788
|
-
selector: ":root"
|
|
3789
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3790
|
-
-
|
|
3791
|
-
cssVar: "--input-radio-container-background-default"
|
|
3792
|
-
name: "input-radio-container-background-default"
|
|
3793
|
-
value: "var(--color-fill-surface)"
|
|
3794
|
-
type: "color"
|
|
3795
|
-
group: "components"
|
|
3796
|
-
path: "Input/Radio/Container/Background Default"
|
|
3797
|
-
pathKey: "Input.Radio.Container.Background Default"
|
|
3798
|
-
scope: "global:components-ui"
|
|
3799
|
-
scopeBucket: "global"
|
|
3800
|
-
scopeId: "components-ui"
|
|
3801
|
-
selector: ":root"
|
|
3802
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3803
|
-
-
|
|
3804
|
-
cssVar: "--input-radio-container-background-disabled"
|
|
3805
|
-
name: "input-radio-container-background-disabled"
|
|
3806
|
-
value: "var(--color-fill-disabled)"
|
|
3807
|
-
type: "color"
|
|
3808
|
-
group: "components"
|
|
3809
|
-
path: "Input/Radio/Container/Background Disabled"
|
|
3810
|
-
pathKey: "Input.Radio.Container.Background Disabled"
|
|
3811
|
-
scope: "global:components-ui"
|
|
3812
|
-
scopeBucket: "global"
|
|
3813
|
-
scopeId: "components-ui"
|
|
3814
|
-
selector: ":root"
|
|
3815
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3816
|
-
-
|
|
3817
|
-
cssVar: "--input-radio-container-background-focus"
|
|
3818
|
-
name: "input-radio-container-background-focus"
|
|
3819
|
-
value: "var(--color-fill-surface)"
|
|
3820
|
-
type: "color"
|
|
3821
|
-
group: "components"
|
|
3822
|
-
path: "Input/Radio/Container/Background Focus"
|
|
3823
|
-
pathKey: "Input.Radio.Container.Background Focus"
|
|
3824
|
-
scope: "global:components-ui"
|
|
3825
|
-
scopeBucket: "global"
|
|
3826
|
-
scopeId: "components-ui"
|
|
3827
|
-
selector: ":root"
|
|
3828
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3829
|
-
-
|
|
3830
|
-
cssVar: "--input-radio-container-background-hover"
|
|
3831
|
-
name: "input-radio-container-background-hover"
|
|
3832
|
-
value: "var(--color-fill-surface)"
|
|
3833
|
-
type: "color"
|
|
3834
|
-
group: "components"
|
|
3835
|
-
path: "Input/Radio/Container/Background Hover"
|
|
3836
|
-
pathKey: "Input.Radio.Container.Background Hover"
|
|
3837
|
-
scope: "global:components-ui"
|
|
3838
|
-
scopeBucket: "global"
|
|
3839
|
-
scopeId: "components-ui"
|
|
3840
|
-
selector: ":root"
|
|
3841
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3842
|
-
-
|
|
3843
|
-
cssVar: "--input-radio-text-color-active"
|
|
3844
|
-
name: "input-radio-text-color-active"
|
|
3845
|
-
value: "var(--color-text-inverse)"
|
|
3846
|
-
type: "color"
|
|
3847
|
-
group: "components"
|
|
3848
|
-
path: "Input/Radio/Text Color Active"
|
|
3849
|
-
pathKey: "Input.Radio.Text Color Active"
|
|
3850
|
-
scope: "global:components-ui"
|
|
3851
|
-
scopeBucket: "global"
|
|
3852
|
-
scopeId: "components-ui"
|
|
3853
|
-
selector: ":root"
|
|
3854
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3855
|
-
-
|
|
3856
|
-
cssVar: "--input-radio-text-color-default"
|
|
3857
|
-
name: "input-radio-text-color-default"
|
|
3858
|
-
value: "var(--color-text-default)"
|
|
3859
|
-
type: "color"
|
|
3860
|
-
group: "components"
|
|
3861
|
-
path: "Input/Radio/Text Color Default"
|
|
3862
|
-
pathKey: "Input.Radio.Text Color Default"
|
|
3863
|
-
scope: "global:components-ui"
|
|
3864
|
-
scopeBucket: "global"
|
|
3865
|
-
scopeId: "components-ui"
|
|
3866
|
-
selector: ":root"
|
|
3867
|
-
sourceFile: "Components (UI).tokens.json"
|
|
3868
|
-
-
|
|
3869
|
-
cssVar: "--input-radio-text-color-disabled"
|
|
3870
|
-
name: "input-radio-text-color-disabled"
|
|
3871
|
-
value: "var(--color-text-disabled)"
|
|
3872
|
-
type: "color"
|
|
3873
|
-
group: "components"
|
|
3874
|
-
path: "Input/Radio/Text Color Disabled"
|
|
3875
|
-
pathKey: "Input.Radio.Text Color Disabled"
|
|
5175
|
+
pathKey: "Input.Padding Inline Icon Only"
|
|
3876
5176
|
scope: "global:components-ui"
|
|
3877
5177
|
scopeBucket: "global"
|
|
3878
5178
|
scopeId: "components-ui"
|
|
3879
5179
|
selector: ":root"
|
|
3880
5180
|
sourceFile: "Components (UI).tokens.json"
|
|
3881
5181
|
-
|
|
3882
|
-
cssVar: "--input-radio-
|
|
3883
|
-
name: "input-radio-
|
|
3884
|
-
value: "var(--color-
|
|
5182
|
+
cssVar: "--input-radio-border-color-active"
|
|
5183
|
+
name: "input-radio-border-color-active"
|
|
5184
|
+
value: "var(--color-border-brand)"
|
|
3885
5185
|
type: "color"
|
|
3886
5186
|
group: "components"
|
|
3887
|
-
path: "
|
|
3888
|
-
pathKey: "
|
|
5187
|
+
path: "Radio/Border/Color Active"
|
|
5188
|
+
pathKey: "Radio.Border.Color Active"
|
|
3889
5189
|
scope: "global:components-ui"
|
|
3890
5190
|
scopeBucket: "global"
|
|
3891
5191
|
scopeId: "components-ui"
|
|
3892
5192
|
selector: ":root"
|
|
3893
5193
|
sourceFile: "Components (UI).tokens.json"
|
|
3894
5194
|
-
|
|
3895
|
-
cssVar: "--input-
|
|
3896
|
-
name: "input-
|
|
3897
|
-
value: "var(--color-border-
|
|
5195
|
+
cssVar: "--input-radio-border-color-default"
|
|
5196
|
+
name: "input-radio-border-color-default"
|
|
5197
|
+
value: "var(--color-border-subtle)"
|
|
3898
5198
|
type: "color"
|
|
3899
5199
|
group: "components"
|
|
3900
|
-
path: "
|
|
3901
|
-
pathKey: "
|
|
5200
|
+
path: "Radio/Border/Color Default"
|
|
5201
|
+
pathKey: "Radio.Border.Color Default"
|
|
3902
5202
|
scope: "global:components-ui"
|
|
3903
5203
|
scopeBucket: "global"
|
|
3904
5204
|
scopeId: "components-ui"
|
|
3905
5205
|
selector: ":root"
|
|
3906
5206
|
sourceFile: "Components (UI).tokens.json"
|
|
3907
5207
|
-
|
|
3908
|
-
cssVar: "--input-
|
|
3909
|
-
name: "input-
|
|
3910
|
-
value: "var(--color-border-
|
|
5208
|
+
cssVar: "--input-radio-border-color-disabled"
|
|
5209
|
+
name: "input-radio-border-color-disabled"
|
|
5210
|
+
value: "var(--color-border-disabled)"
|
|
3911
5211
|
type: "color"
|
|
3912
5212
|
group: "components"
|
|
3913
|
-
path: "
|
|
3914
|
-
pathKey: "
|
|
5213
|
+
path: "Radio/Border/Color Disabled"
|
|
5214
|
+
pathKey: "Radio.Border.Color Disabled"
|
|
3915
5215
|
scope: "global:components-ui"
|
|
3916
5216
|
scopeBucket: "global"
|
|
3917
5217
|
scopeId: "components-ui"
|
|
3918
5218
|
selector: ":root"
|
|
3919
5219
|
sourceFile: "Components (UI).tokens.json"
|
|
3920
5220
|
-
|
|
3921
|
-
cssVar: "--input-
|
|
3922
|
-
name: "input-
|
|
5221
|
+
cssVar: "--input-radio-border-color-focus"
|
|
5222
|
+
name: "input-radio-border-color-focus"
|
|
3923
5223
|
value: "var(--color-border-brand)"
|
|
3924
5224
|
type: "color"
|
|
3925
5225
|
group: "components"
|
|
3926
|
-
path: "Input/
|
|
3927
|
-
pathKey: "Input.
|
|
5226
|
+
path: "Input/radio/border-color/focus"
|
|
5227
|
+
pathKey: "Input.radio.border-color.focus"
|
|
3928
5228
|
scope: "global:components-ui"
|
|
3929
5229
|
scopeBucket: "global"
|
|
3930
5230
|
scopeId: "components-ui"
|
|
3931
5231
|
selector: ":root"
|
|
3932
5232
|
sourceFile: "Components (UI).tokens.json"
|
|
3933
5233
|
-
|
|
3934
|
-
cssVar: "--input-
|
|
3935
|
-
name: "input-
|
|
5234
|
+
cssVar: "--input-radio-border-color-hover"
|
|
5235
|
+
name: "input-radio-border-color-hover"
|
|
3936
5236
|
value: "var(--color-border-brand)"
|
|
3937
5237
|
type: "color"
|
|
3938
5238
|
group: "components"
|
|
3939
|
-
path: "
|
|
3940
|
-
pathKey: "
|
|
5239
|
+
path: "Radio/Border/Color Hover"
|
|
5240
|
+
pathKey: "Radio.Border.Color Hover"
|
|
3941
5241
|
scope: "global:components-ui"
|
|
3942
5242
|
scopeBucket: "global"
|
|
3943
5243
|
scopeId: "components-ui"
|
|
3944
5244
|
selector: ":root"
|
|
3945
5245
|
sourceFile: "Components (UI).tokens.json"
|
|
3946
5246
|
-
|
|
3947
|
-
cssVar: "--input-
|
|
3948
|
-
name: "input-
|
|
3949
|
-
value: "var(--color-
|
|
5247
|
+
cssVar: "--input-radio-container-background-default"
|
|
5248
|
+
name: "input-radio-container-background-default"
|
|
5249
|
+
value: "var(--color-fill-surface)"
|
|
3950
5250
|
type: "color"
|
|
3951
5251
|
group: "components"
|
|
3952
|
-
path: "
|
|
3953
|
-
pathKey: "
|
|
5252
|
+
path: "Radio/Container/Background Default"
|
|
5253
|
+
pathKey: "Radio.Container.Background Default"
|
|
3954
5254
|
scope: "global:components-ui"
|
|
3955
5255
|
scopeBucket: "global"
|
|
3956
5256
|
scopeId: "components-ui"
|
|
3957
5257
|
selector: ":root"
|
|
3958
5258
|
sourceFile: "Components (UI).tokens.json"
|
|
3959
5259
|
-
|
|
3960
|
-
cssVar: "--input-
|
|
3961
|
-
name: "input-
|
|
3962
|
-
value: "var(--color-
|
|
5260
|
+
cssVar: "--input-radio-container-background-disabled"
|
|
5261
|
+
name: "input-radio-container-background-disabled"
|
|
5262
|
+
value: "var(--color-fill-disabled)"
|
|
3963
5263
|
type: "color"
|
|
3964
5264
|
group: "components"
|
|
3965
|
-
path: "
|
|
3966
|
-
pathKey: "
|
|
5265
|
+
path: "Radio/Container/Background Disabled"
|
|
5266
|
+
pathKey: "Radio.Container.Background Disabled"
|
|
3967
5267
|
scope: "global:components-ui"
|
|
3968
5268
|
scopeBucket: "global"
|
|
3969
5269
|
scopeId: "components-ui"
|
|
3970
5270
|
selector: ":root"
|
|
3971
5271
|
sourceFile: "Components (UI).tokens.json"
|
|
3972
5272
|
-
|
|
3973
|
-
cssVar: "--input-
|
|
3974
|
-
name: "input-
|
|
3975
|
-
value: "var(--color-
|
|
5273
|
+
cssVar: "--input-radio-container-background-hover"
|
|
5274
|
+
name: "input-radio-container-background-hover"
|
|
5275
|
+
value: "var(--color-fill-surface)"
|
|
3976
5276
|
type: "color"
|
|
3977
5277
|
group: "components"
|
|
3978
|
-
path: "Input/
|
|
3979
|
-
pathKey: "Input.
|
|
5278
|
+
path: "Input/radio/container-background/hover"
|
|
5279
|
+
pathKey: "Input.radio.container-background.hover"
|
|
3980
5280
|
scope: "global:components-ui"
|
|
3981
5281
|
scopeBucket: "global"
|
|
3982
5282
|
scopeId: "components-ui"
|
|
3983
5283
|
selector: ":root"
|
|
3984
5284
|
sourceFile: "Components (UI).tokens.json"
|
|
3985
5285
|
-
|
|
3986
|
-
cssVar: "--input-text-
|
|
3987
|
-
name: "input-text-
|
|
3988
|
-
value: "var(--color-
|
|
5286
|
+
cssVar: "--input-radio-text-color-active"
|
|
5287
|
+
name: "input-radio-text-color-active"
|
|
5288
|
+
value: "var(--color-text-default)"
|
|
3989
5289
|
type: "color"
|
|
3990
5290
|
group: "components"
|
|
3991
|
-
path: "Input/
|
|
3992
|
-
pathKey: "Input.
|
|
5291
|
+
path: "Input/radio/text-color/active"
|
|
5292
|
+
pathKey: "Input.radio.text-color.active"
|
|
3993
5293
|
scope: "global:components-ui"
|
|
3994
5294
|
scopeBucket: "global"
|
|
3995
5295
|
scopeId: "components-ui"
|
|
3996
5296
|
selector: ":root"
|
|
3997
5297
|
sourceFile: "Components (UI).tokens.json"
|
|
3998
5298
|
-
|
|
3999
|
-
cssVar: "--input-text-
|
|
4000
|
-
name: "input-text-
|
|
4001
|
-
value: "var(--color-
|
|
5299
|
+
cssVar: "--input-radio-text-color-default"
|
|
5300
|
+
name: "input-radio-text-color-default"
|
|
5301
|
+
value: "var(--color-text-default)"
|
|
4002
5302
|
type: "color"
|
|
4003
5303
|
group: "components"
|
|
4004
|
-
path: "
|
|
4005
|
-
pathKey: "
|
|
5304
|
+
path: "Radio/Text Color Default"
|
|
5305
|
+
pathKey: "Radio.Text Color Default"
|
|
4006
5306
|
scope: "global:components-ui"
|
|
4007
5307
|
scopeBucket: "global"
|
|
4008
5308
|
scopeId: "components-ui"
|
|
4009
5309
|
selector: ":root"
|
|
4010
5310
|
sourceFile: "Components (UI).tokens.json"
|
|
4011
5311
|
-
|
|
4012
|
-
cssVar: "--input-text-
|
|
4013
|
-
name: "input-text-
|
|
4014
|
-
value: "var(--color-
|
|
5312
|
+
cssVar: "--input-radio-text-color-disabled"
|
|
5313
|
+
name: "input-radio-text-color-disabled"
|
|
5314
|
+
value: "var(--color-text-disabled)"
|
|
4015
5315
|
type: "color"
|
|
4016
5316
|
group: "components"
|
|
4017
|
-
path: "
|
|
4018
|
-
pathKey: "
|
|
5317
|
+
path: "Radio/Text Color Disabled"
|
|
5318
|
+
pathKey: "Radio.Text Color Disabled"
|
|
4019
5319
|
scope: "global:components-ui"
|
|
4020
5320
|
scopeBucket: "global"
|
|
4021
5321
|
scopeId: "components-ui"
|
|
4022
5322
|
selector: ":root"
|
|
4023
5323
|
sourceFile: "Components (UI).tokens.json"
|
|
4024
5324
|
-
|
|
4025
|
-
cssVar: "--input-text-
|
|
4026
|
-
name: "input-text-
|
|
4027
|
-
value: "var(--color-
|
|
5325
|
+
cssVar: "--input-radio-text-color-hover"
|
|
5326
|
+
name: "input-radio-text-color-hover"
|
|
5327
|
+
value: "var(--color-text-strong)"
|
|
4028
5328
|
type: "color"
|
|
4029
5329
|
group: "components"
|
|
4030
|
-
path: "Input/
|
|
4031
|
-
pathKey: "Input.
|
|
5330
|
+
path: "Input/radio/text-color/hover"
|
|
5331
|
+
pathKey: "Input.radio.text-color.hover"
|
|
4032
5332
|
scope: "global:components-ui"
|
|
4033
5333
|
scopeBucket: "global"
|
|
4034
5334
|
scopeId: "components-ui"
|
|
4035
5335
|
selector: ":root"
|
|
4036
5336
|
sourceFile: "Components (UI).tokens.json"
|
|
4037
5337
|
-
|
|
4038
|
-
cssVar: "--input-text-
|
|
4039
|
-
name: "input-text-
|
|
4040
|
-
value: "
|
|
4041
|
-
type: "
|
|
5338
|
+
cssVar: "--input-text-color-active"
|
|
5339
|
+
name: "input-text-color-active"
|
|
5340
|
+
value: "var(--color-text-default)"
|
|
5341
|
+
type: "color"
|
|
4042
5342
|
group: "components"
|
|
4043
|
-
path: "Input/Text/
|
|
4044
|
-
pathKey: "Input.Text.
|
|
5343
|
+
path: "Input/Text/Text Color Active"
|
|
5344
|
+
pathKey: "Input.Text.Text Color Active"
|
|
4045
5345
|
scope: "global:components-ui"
|
|
4046
5346
|
scopeBucket: "global"
|
|
4047
5347
|
scopeId: "components-ui"
|
|
4048
5348
|
selector: ":root"
|
|
4049
5349
|
sourceFile: "Components (UI).tokens.json"
|
|
4050
5350
|
-
|
|
4051
|
-
cssVar: "--input-text-
|
|
4052
|
-
name: "input-text-
|
|
5351
|
+
cssVar: "--input-text-color-default"
|
|
5352
|
+
name: "input-text-color-default"
|
|
4053
5353
|
value: "var(--color-text-default)"
|
|
4054
5354
|
type: "color"
|
|
4055
5355
|
group: "components"
|
|
4056
|
-
path: "Input/Text/Text Color
|
|
4057
|
-
pathKey: "Input.Text.Text Color
|
|
5356
|
+
path: "Input/Text/Text Color Default"
|
|
5357
|
+
pathKey: "Input.Text.Text Color Default"
|
|
4058
5358
|
scope: "global:components-ui"
|
|
4059
5359
|
scopeBucket: "global"
|
|
4060
5360
|
scopeId: "components-ui"
|
|
4061
5361
|
selector: ":root"
|
|
4062
5362
|
sourceFile: "Components (UI).tokens.json"
|
|
4063
5363
|
-
|
|
4064
|
-
cssVar: "--input-text-
|
|
4065
|
-
name: "input-text-
|
|
4066
|
-
value: "var(--color-text-
|
|
5364
|
+
cssVar: "--input-text-color-disabled"
|
|
5365
|
+
name: "input-text-color-disabled"
|
|
5366
|
+
value: "var(--color-text-disabled)"
|
|
4067
5367
|
type: "color"
|
|
4068
5368
|
group: "components"
|
|
4069
|
-
path: "Input/Text/Text Color
|
|
4070
|
-
pathKey: "Input.Text.Text Color
|
|
5369
|
+
path: "Input/Text/Text Color Disabled"
|
|
5370
|
+
pathKey: "Input.Text.Text Color Disabled"
|
|
4071
5371
|
scope: "global:components-ui"
|
|
4072
5372
|
scopeBucket: "global"
|
|
4073
5373
|
scopeId: "components-ui"
|
|
4074
5374
|
selector: ":root"
|
|
4075
5375
|
sourceFile: "Components (UI).tokens.json"
|
|
4076
5376
|
-
|
|
4077
|
-
cssVar: "--input-text-
|
|
4078
|
-
name: "input-text-
|
|
4079
|
-
value: "var(--color-text-
|
|
5377
|
+
cssVar: "--input-text-color-hover"
|
|
5378
|
+
name: "input-text-color-hover"
|
|
5379
|
+
value: "var(--color-text-brand)"
|
|
4080
5380
|
type: "color"
|
|
4081
5381
|
group: "components"
|
|
4082
5382
|
path: "Input/Text/Text Color Hover"
|
|
@@ -4087,8 +5387,8 @@ tokens:
|
|
|
4087
5387
|
selector: ":root"
|
|
4088
5388
|
sourceFile: "Components (UI).tokens.json"
|
|
4089
5389
|
-
|
|
4090
|
-
cssVar: "--input-text-
|
|
4091
|
-
name: "input-text-
|
|
5390
|
+
cssVar: "--input-text-color-placeholder"
|
|
5391
|
+
name: "input-text-color-placeholder"
|
|
4092
5392
|
value: "var(--color-text-subtle)"
|
|
4093
5393
|
type: "color"
|
|
4094
5394
|
group: "components"
|
|
@@ -4222,8 +5522,8 @@ tokens:
|
|
|
4222
5522
|
value: "var(--size-border-100)"
|
|
4223
5523
|
type: "number"
|
|
4224
5524
|
group: "components"
|
|
4225
|
-
path: "
|
|
4226
|
-
pathKey: "
|
|
5525
|
+
path: "Radio/Border Size Default"
|
|
5526
|
+
pathKey: "Radio.Border Size Default"
|
|
4227
5527
|
scope: "global:components-ui"
|
|
4228
5528
|
scopeBucket: "global"
|
|
4229
5529
|
scopeId: "components-ui"
|
|
@@ -4235,8 +5535,8 @@ tokens:
|
|
|
4235
5535
|
value: "var(--size-border-000)"
|
|
4236
5536
|
type: "number"
|
|
4237
5537
|
group: "components"
|
|
4238
|
-
path: "
|
|
4239
|
-
pathKey: "
|
|
5538
|
+
path: "Radio/Border Size Disabled"
|
|
5539
|
+
pathKey: "Radio.Border Size Disabled"
|
|
4240
5540
|
scope: "global:components-ui"
|
|
4241
5541
|
scopeBucket: "global"
|
|
4242
5542
|
scopeId: "components-ui"
|
|
@@ -4248,8 +5548,8 @@ tokens:
|
|
|
4248
5548
|
value: "var(--size-border-200)"
|
|
4249
5549
|
type: "number"
|
|
4250
5550
|
group: "components"
|
|
4251
|
-
path: "
|
|
4252
|
-
pathKey: "
|
|
5551
|
+
path: "Radio/Border Size Hover"
|
|
5552
|
+
pathKey: "Radio.Border Size Hover"
|
|
4253
5553
|
scope: "global:components-ui"
|
|
4254
5554
|
scopeBucket: "global"
|
|
4255
5555
|
scopeId: "components-ui"
|
|
@@ -4307,6 +5607,188 @@ tokens:
|
|
|
4307
5607
|
scopeId: "core-primitives"
|
|
4308
5608
|
selector: ":root"
|
|
4309
5609
|
sourceFile: "Core (Primitives).tokens.json"
|
|
5610
|
+
-
|
|
5611
|
+
cssVar: "--switch-text-color-default"
|
|
5612
|
+
name: "switch-text-color-default"
|
|
5613
|
+
value: "var(--color-text-default)"
|
|
5614
|
+
type: "color"
|
|
5615
|
+
group: "components"
|
|
5616
|
+
path: "Switch/text-color/default"
|
|
5617
|
+
pathKey: "Switch.text-color.default"
|
|
5618
|
+
scope: "global:components-ui"
|
|
5619
|
+
scopeBucket: "global"
|
|
5620
|
+
scopeId: "components-ui"
|
|
5621
|
+
selector: ":root"
|
|
5622
|
+
sourceFile: "Components (UI).tokens.json"
|
|
5623
|
+
-
|
|
5624
|
+
cssVar: "--switch-text-color-disabled"
|
|
5625
|
+
name: "switch-text-color-disabled"
|
|
5626
|
+
value: "var(--color-text-disabled)"
|
|
5627
|
+
type: "color"
|
|
5628
|
+
group: "components"
|
|
5629
|
+
path: "Switch/text-color/disabled"
|
|
5630
|
+
pathKey: "Switch.text-color.disabled"
|
|
5631
|
+
scope: "global:components-ui"
|
|
5632
|
+
scopeBucket: "global"
|
|
5633
|
+
scopeId: "components-ui"
|
|
5634
|
+
selector: ":root"
|
|
5635
|
+
sourceFile: "Components (UI).tokens.json"
|
|
5636
|
+
-
|
|
5637
|
+
cssVar: "--switch-thumb-background-active"
|
|
5638
|
+
name: "switch-thumb-background-active"
|
|
5639
|
+
value: "var(--color-fill-surface)"
|
|
5640
|
+
type: "color"
|
|
5641
|
+
group: "components"
|
|
5642
|
+
path: "Switch/thumb/background/active"
|
|
5643
|
+
pathKey: "Switch.thumb.background.active"
|
|
5644
|
+
scope: "global:components-ui"
|
|
5645
|
+
scopeBucket: "global"
|
|
5646
|
+
scopeId: "components-ui"
|
|
5647
|
+
selector: ":root"
|
|
5648
|
+
sourceFile: "Components (UI).tokens.json"
|
|
5649
|
+
-
|
|
5650
|
+
cssVar: "--switch-thumb-background-default"
|
|
5651
|
+
name: "switch-thumb-background-default"
|
|
5652
|
+
value: "var(--color-border-default)"
|
|
5653
|
+
type: "color"
|
|
5654
|
+
group: "components"
|
|
5655
|
+
path: "Switch/thumb/background/default"
|
|
5656
|
+
pathKey: "Switch.thumb.background.default"
|
|
5657
|
+
scope: "global:components-ui"
|
|
5658
|
+
scopeBucket: "global"
|
|
5659
|
+
scopeId: "components-ui"
|
|
5660
|
+
selector: ":root"
|
|
5661
|
+
sourceFile: "Components (UI).tokens.json"
|
|
5662
|
+
-
|
|
5663
|
+
cssVar: "--switch-thumb-background-disabled"
|
|
5664
|
+
name: "switch-thumb-background-disabled"
|
|
5665
|
+
value: "var(--color-fill-surface)"
|
|
5666
|
+
type: "color"
|
|
5667
|
+
group: "components"
|
|
5668
|
+
path: "Switch/thumb/background/disabled"
|
|
5669
|
+
pathKey: "Switch.thumb.background.disabled"
|
|
5670
|
+
scope: "global:components-ui"
|
|
5671
|
+
scopeBucket: "global"
|
|
5672
|
+
scopeId: "components-ui"
|
|
5673
|
+
selector: ":root"
|
|
5674
|
+
sourceFile: "Components (UI).tokens.json"
|
|
5675
|
+
-
|
|
5676
|
+
cssVar: "--switch-thumb-background-hover"
|
|
5677
|
+
name: "switch-thumb-background-hover"
|
|
5678
|
+
value: "var(--color-border-brand)"
|
|
5679
|
+
type: "color"
|
|
5680
|
+
group: "components"
|
|
5681
|
+
path: "Switch/thumb/background/hover"
|
|
5682
|
+
pathKey: "Switch.thumb.background.hover"
|
|
5683
|
+
scope: "global:components-ui"
|
|
5684
|
+
scopeBucket: "global"
|
|
5685
|
+
scopeId: "components-ui"
|
|
5686
|
+
selector: ":root"
|
|
5687
|
+
sourceFile: "Components (UI).tokens.json"
|
|
5688
|
+
-
|
|
5689
|
+
cssVar: "--switch-track-background-active"
|
|
5690
|
+
name: "switch-track-background-active"
|
|
5691
|
+
value: "var(--color-fill-brand)"
|
|
5692
|
+
type: "color"
|
|
5693
|
+
group: "components"
|
|
5694
|
+
path: "Switch/track/background/active"
|
|
5695
|
+
pathKey: "Switch.track.background.active"
|
|
5696
|
+
scope: "global:components-ui"
|
|
5697
|
+
scopeBucket: "global"
|
|
5698
|
+
scopeId: "components-ui"
|
|
5699
|
+
selector: ":root"
|
|
5700
|
+
sourceFile: "Components (UI).tokens.json"
|
|
5701
|
+
-
|
|
5702
|
+
cssVar: "--switch-track-background-default"
|
|
5703
|
+
name: "switch-track-background-default"
|
|
5704
|
+
value: "var(--color-fill-surface)"
|
|
5705
|
+
type: "color"
|
|
5706
|
+
group: "components"
|
|
5707
|
+
path: "Switch/track/background/default"
|
|
5708
|
+
pathKey: "Switch.track.background.default"
|
|
5709
|
+
scope: "global:components-ui"
|
|
5710
|
+
scopeBucket: "global"
|
|
5711
|
+
scopeId: "components-ui"
|
|
5712
|
+
selector: ":root"
|
|
5713
|
+
sourceFile: "Components (UI).tokens.json"
|
|
5714
|
+
-
|
|
5715
|
+
cssVar: "--switch-track-background-disabled"
|
|
5716
|
+
name: "switch-track-background-disabled"
|
|
5717
|
+
value: "var(--color-fill-disabled)"
|
|
5718
|
+
type: "color"
|
|
5719
|
+
group: "components"
|
|
5720
|
+
path: "Switch/track/background/disabled"
|
|
5721
|
+
pathKey: "Switch.track.background.disabled"
|
|
5722
|
+
scope: "global:components-ui"
|
|
5723
|
+
scopeBucket: "global"
|
|
5724
|
+
scopeId: "components-ui"
|
|
5725
|
+
selector: ":root"
|
|
5726
|
+
sourceFile: "Components (UI).tokens.json"
|
|
5727
|
+
-
|
|
5728
|
+
cssVar: "--switch-track-background-hover"
|
|
5729
|
+
name: "switch-track-background-hover"
|
|
5730
|
+
value: "var(--color-fill-surface)"
|
|
5731
|
+
type: "color"
|
|
5732
|
+
group: "components"
|
|
5733
|
+
path: "Switch/track/background/hover"
|
|
5734
|
+
pathKey: "Switch.track.background.hover"
|
|
5735
|
+
scope: "global:components-ui"
|
|
5736
|
+
scopeBucket: "global"
|
|
5737
|
+
scopeId: "components-ui"
|
|
5738
|
+
selector: ":root"
|
|
5739
|
+
sourceFile: "Components (UI).tokens.json"
|
|
5740
|
+
-
|
|
5741
|
+
cssVar: "--switch-track-border-color-active"
|
|
5742
|
+
name: "switch-track-border-color-active"
|
|
5743
|
+
value: "var(--color-border-brand)"
|
|
5744
|
+
type: "color"
|
|
5745
|
+
group: "components"
|
|
5746
|
+
path: "Switch/track/border-color/active"
|
|
5747
|
+
pathKey: "Switch.track.border-color.active"
|
|
5748
|
+
scope: "global:components-ui"
|
|
5749
|
+
scopeBucket: "global"
|
|
5750
|
+
scopeId: "components-ui"
|
|
5751
|
+
selector: ":root"
|
|
5752
|
+
sourceFile: "Components (UI).tokens.json"
|
|
5753
|
+
-
|
|
5754
|
+
cssVar: "--switch-track-border-color-default"
|
|
5755
|
+
name: "switch-track-border-color-default"
|
|
5756
|
+
value: "var(--color-border-default)"
|
|
5757
|
+
type: "color"
|
|
5758
|
+
group: "components"
|
|
5759
|
+
path: "Switch/track/border-color/default"
|
|
5760
|
+
pathKey: "Switch.track.border-color.default"
|
|
5761
|
+
scope: "global:components-ui"
|
|
5762
|
+
scopeBucket: "global"
|
|
5763
|
+
scopeId: "components-ui"
|
|
5764
|
+
selector: ":root"
|
|
5765
|
+
sourceFile: "Components (UI).tokens.json"
|
|
5766
|
+
-
|
|
5767
|
+
cssVar: "--switch-track-border-color-disabled"
|
|
5768
|
+
name: "switch-track-border-color-disabled"
|
|
5769
|
+
value: "var(--color-border-disabled)"
|
|
5770
|
+
type: "color"
|
|
5771
|
+
group: "components"
|
|
5772
|
+
path: "Switch/track/border-color/disabled"
|
|
5773
|
+
pathKey: "Switch.track.border-color.disabled"
|
|
5774
|
+
scope: "global:components-ui"
|
|
5775
|
+
scopeBucket: "global"
|
|
5776
|
+
scopeId: "components-ui"
|
|
5777
|
+
selector: ":root"
|
|
5778
|
+
sourceFile: "Components (UI).tokens.json"
|
|
5779
|
+
-
|
|
5780
|
+
cssVar: "--switch-track-border-color-hover"
|
|
5781
|
+
name: "switch-track-border-color-hover"
|
|
5782
|
+
value: "var(--color-border-brand)"
|
|
5783
|
+
type: "color"
|
|
5784
|
+
group: "components"
|
|
5785
|
+
path: "Switch/track/border-color/hover"
|
|
5786
|
+
pathKey: "Switch.track.border-color.hover"
|
|
5787
|
+
scope: "global:components-ui"
|
|
5788
|
+
scopeBucket: "global"
|
|
5789
|
+
scopeId: "components-ui"
|
|
5790
|
+
selector: ":root"
|
|
5791
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4310
5792
|
-
|
|
4311
5793
|
cssVar: "--zindex-base"
|
|
4312
5794
|
name: "zindex-base"
|
|
@@ -4531,7 +6013,7 @@ tokens:
|
|
|
4531
6013
|
-
|
|
4532
6014
|
cssVar: "--brand-corner-button"
|
|
4533
6015
|
name: "brand-corner-button"
|
|
4534
|
-
value: "var(--size-radius-
|
|
6016
|
+
value: "var(--size-radius-full)"
|
|
4535
6017
|
type: "number"
|
|
4536
6018
|
group: "radii"
|
|
4537
6019
|
path: "Brand/Corner/Button"
|
|
@@ -4554,10 +6036,23 @@ tokens:
|
|
|
4554
6036
|
scopeId: "b"
|
|
4555
6037
|
selector: ":root[data-brand=\"b\"]"
|
|
4556
6038
|
sourceFile: "Themes (Brands).tokens.json"
|
|
6039
|
+
-
|
|
6040
|
+
cssVar: "--brand-corner-button"
|
|
6041
|
+
name: "brand-corner-button"
|
|
6042
|
+
value: "var(--size-radius-700)"
|
|
6043
|
+
type: "number"
|
|
6044
|
+
group: "radii"
|
|
6045
|
+
path: "Brand/Corner/Button"
|
|
6046
|
+
pathKey: "Brand.Corner.Button"
|
|
6047
|
+
scope: "brand:c"
|
|
6048
|
+
scopeBucket: "brand"
|
|
6049
|
+
scopeId: "c"
|
|
6050
|
+
selector: ":root[data-brand=\"c\"]"
|
|
6051
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
4557
6052
|
-
|
|
4558
6053
|
cssVar: "--brand-corner-card"
|
|
4559
6054
|
name: "brand-corner-card"
|
|
4560
|
-
value: "var(--size-radius-
|
|
6055
|
+
value: "var(--size-radius-300)"
|
|
4561
6056
|
type: "number"
|
|
4562
6057
|
group: "radii"
|
|
4563
6058
|
path: "Brand/Corner/Card"
|
|
@@ -4580,6 +6075,19 @@ tokens:
|
|
|
4580
6075
|
scopeId: "b"
|
|
4581
6076
|
selector: ":root[data-brand=\"b\"]"
|
|
4582
6077
|
sourceFile: "Themes (Brands).tokens.json"
|
|
6078
|
+
-
|
|
6079
|
+
cssVar: "--brand-corner-card"
|
|
6080
|
+
name: "brand-corner-card"
|
|
6081
|
+
value: "var(--size-radius-200)"
|
|
6082
|
+
type: "number"
|
|
6083
|
+
group: "radii"
|
|
6084
|
+
path: "Brand/Corner/Card"
|
|
6085
|
+
pathKey: "Brand.Corner.Card"
|
|
6086
|
+
scope: "brand:c"
|
|
6087
|
+
scopeBucket: "brand"
|
|
6088
|
+
scopeId: "c"
|
|
6089
|
+
selector: ":root[data-brand=\"c\"]"
|
|
6090
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
4583
6091
|
-
|
|
4584
6092
|
cssVar: "--brand-corner-input"
|
|
4585
6093
|
name: "brand-corner-input"
|
|
@@ -4606,6 +6114,19 @@ tokens:
|
|
|
4606
6114
|
scopeId: "b"
|
|
4607
6115
|
selector: ":root[data-brand=\"b\"]"
|
|
4608
6116
|
sourceFile: "Themes (Brands).tokens.json"
|
|
6117
|
+
-
|
|
6118
|
+
cssVar: "--brand-corner-input"
|
|
6119
|
+
name: "brand-corner-input"
|
|
6120
|
+
value: "var(--size-radius-200)"
|
|
6121
|
+
type: "number"
|
|
6122
|
+
group: "radii"
|
|
6123
|
+
path: "Brand/Corner/Input"
|
|
6124
|
+
pathKey: "Brand.Corner.Input"
|
|
6125
|
+
scope: "brand:c"
|
|
6126
|
+
scopeBucket: "brand"
|
|
6127
|
+
scopeId: "c"
|
|
6128
|
+
selector: ":root[data-brand=\"c\"]"
|
|
6129
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
4609
6130
|
-
|
|
4610
6131
|
cssVar: "--brand-corner-modal"
|
|
4611
6132
|
name: "brand-corner-modal"
|
|
@@ -4632,6 +6153,19 @@ tokens:
|
|
|
4632
6153
|
scopeId: "b"
|
|
4633
6154
|
selector: ":root[data-brand=\"b\"]"
|
|
4634
6155
|
sourceFile: "Themes (Brands).tokens.json"
|
|
6156
|
+
-
|
|
6157
|
+
cssVar: "--brand-corner-modal"
|
|
6158
|
+
name: "brand-corner-modal"
|
|
6159
|
+
value: "var(--size-radius-400)"
|
|
6160
|
+
type: "number"
|
|
6161
|
+
group: "radii"
|
|
6162
|
+
path: "Brand/Corner/Modal"
|
|
6163
|
+
pathKey: "Brand.Corner.Modal"
|
|
6164
|
+
scope: "brand:c"
|
|
6165
|
+
scopeBucket: "brand"
|
|
6166
|
+
scopeId: "c"
|
|
6167
|
+
selector: ":root[data-brand=\"c\"]"
|
|
6168
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
4635
6169
|
-
|
|
4636
6170
|
cssVar: "--corner-button-radius"
|
|
4637
6171
|
name: "corner-button-radius"
|
|
@@ -5022,6 +6556,19 @@ tokens:
|
|
|
5022
6556
|
scopeId: "b"
|
|
5023
6557
|
selector: ":root[data-brand=\"b\"]"
|
|
5024
6558
|
sourceFile: "Themes (Brands).tokens.json"
|
|
6559
|
+
-
|
|
6560
|
+
cssVar: "--brand-font-base"
|
|
6561
|
+
name: "brand-font-base"
|
|
6562
|
+
value: "var(--font-family-sans)"
|
|
6563
|
+
type: "string"
|
|
6564
|
+
group: "typography"
|
|
6565
|
+
path: "Brand/Font/Base"
|
|
6566
|
+
pathKey: "Brand.Font.Base"
|
|
6567
|
+
scope: "brand:c"
|
|
6568
|
+
scopeBucket: "brand"
|
|
6569
|
+
scopeId: "c"
|
|
6570
|
+
selector: ":root[data-brand=\"c\"]"
|
|
6571
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
5025
6572
|
-
|
|
5026
6573
|
cssVar: "--brand-font-lead"
|
|
5027
6574
|
name: "brand-font-lead"
|
|
@@ -5048,6 +6595,19 @@ tokens:
|
|
|
5048
6595
|
scopeId: "b"
|
|
5049
6596
|
selector: ":root[data-brand=\"b\"]"
|
|
5050
6597
|
sourceFile: "Themes (Brands).tokens.json"
|
|
6598
|
+
-
|
|
6599
|
+
cssVar: "--brand-font-lead"
|
|
6600
|
+
name: "brand-font-lead"
|
|
6601
|
+
value: "var(--font-family-serif)"
|
|
6602
|
+
type: "string"
|
|
6603
|
+
group: "typography"
|
|
6604
|
+
path: "Brand/Font/Lead"
|
|
6605
|
+
pathKey: "Brand.Font.Lead"
|
|
6606
|
+
scope: "brand:c"
|
|
6607
|
+
scopeBucket: "brand"
|
|
6608
|
+
scopeId: "c"
|
|
6609
|
+
selector: ":root[data-brand=\"c\"]"
|
|
6610
|
+
sourceFile: "Themes (Brands).tokens.json"
|
|
5051
6611
|
-
|
|
5052
6612
|
cssVar: "--font-family-mono"
|
|
5053
6613
|
name: "font-family-mono"
|