ui-foundations 0.3.2 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +179 -36
- package/dist/assets/icons/checkmark.svg +1 -0
- package/dist/core/index.css +7 -7
- package/dist/macros/ui.njk +142 -0
- package/dist/main.css +465 -173
- package/dist/react/badge.js +41 -0
- package/dist/react/button.js +15 -6
- package/dist/react/checkbox.js +30 -0
- package/dist/react/icon.js +19 -1
- package/dist/react/index.js +2 -0
- package/dist/react/label.js +1 -1
- package/dist/react/radio.js +62 -0
- package/dist/react/switch.js +18 -0
- package/dist/tokens/css/{appearance-(modes).tokens.mode-dark.css → appearance-modes.tokens.mode-dark.css} +1 -1
- package/dist/tokens/css/{appearance-(modes).tokens.mode-light.css → appearance-modes.tokens.mode-light.css} +1 -1
- package/dist/tokens/css/{components-(ui).tokens.css → components-ui.tokens.css} +46 -3
- package/dist/tokens/css/{core-(primitives).tokens.css → core-primitives.tokens.css} +61 -19
- package/dist/tokens/css/{semantics-(roles).tokens.css → semantics-roles.tokens.css} +1 -1
- package/dist/tokens/css/themes-brands.tokens.brand-a.css +22 -0
- package/dist/tokens/css/{themes-(brands).tokens.brand-b.css → themes-brands.tokens.brand-b.css} +9 -9
- package/dist/tokens/json/appearance-modes.tokens.mode-dark.json +121 -0
- package/dist/tokens/json/appearance-modes.tokens.mode-light.json +121 -0
- package/dist/tokens/json/components-ui.tokens.json +715 -0
- package/dist/tokens/json/{core-(primitives).tokens.json → core-primitives.tokens.json} +227 -413
- package/dist/tokens/json/semantics-roles.tokens.json +141 -0
- package/dist/tokens/json/themes-brands.tokens.brand-a.json +81 -0
- package/dist/tokens/json/themes-brands.tokens.brand-b.json +81 -0
- package/dist/tokens/missing-tokens.json +43 -0
- package/dist/tokens/tokens.yaml +1254 -149
- package/dist/tokens/ts/{appearance-(modes).tokens.mode-dark.ts → appearance-modes.tokens.mode-dark.ts} +1 -1
- package/dist/tokens/ts/{appearance-(modes).tokens.mode-light.ts → appearance-modes.tokens.mode-light.ts} +1 -1
- package/dist/tokens/ts/{components-(ui).tokens.ts → components-ui.tokens.ts} +47 -4
- package/dist/tokens/ts/{core-(primitives).tokens.ts → core-primitives.tokens.ts} +62 -20
- package/dist/tokens/ts/{semantics-(roles).tokens.ts → semantics-roles.tokens.ts} +1 -1
- package/dist/tokens/ts/{themes-(brands).tokens.brand-a.ts → themes-brands.tokens.brand-a.ts} +9 -9
- package/dist/tokens/ts/{themes-(brands).tokens.brand-b.ts → themes-brands.tokens.brand-b.ts} +9 -9
- package/dist/ui/index.css +2 -0
- package/dist/ui/patterns/badge.css +49 -0
- package/dist/ui/patterns/checkbox.css +71 -22
- package/dist/ui/patterns/radio.css +109 -0
- package/docs/README.md +38 -0
- package/docs/agentic/README.md +34 -0
- package/docs/agentic/assistant-behavior-rules.md +48 -0
- package/docs/agentic/skills/ux-writing-coach.md +116 -0
- package/docs/foundations/README.md +31 -0
- package/docs/foundations/foundation-001-token-layering.md +6 -0
- package/docs/foundations/foundation-002-naming-and-grouping.md +6 -0
- package/docs/foundations/foundation-003-color-semantics-and-status.md +6 -0
- package/docs/foundations/foundation-004-typography-scale-and-line-height.md +6 -0
- package/docs/foundations/foundation-005-responsive-breakpoints-and-containers.md +6 -0
- package/docs/foundations/foundation-006-z-index-layering.md +6 -0
- package/docs/foundations/foundation-007-typography-selectors-and-specificity.md +6 -0
- package/docs/foundations/foundation-008-mode-activation-and-consumer-control.md +6 -0
- package/docs/foundations/foundation-009-component-boundaries-and-utility.md +6 -0
- package/docs/foundations/foundation-010-implementation-and-pipeline-workflow.md +6 -0
- package/docs/foundations/foundation-011-branching-and-release-governance.md +6 -0
- package/docs/foundations/foundation-012-minimal-markup-and-composition.md +6 -0
- package/package.json +15 -11
- package/dist/tokens/css/themes-(brands).tokens.brand-a.css +0 -22
- package/dist/tokens/json/appearance-(modes).tokens.mode-dark.json +0 -182
- package/dist/tokens/json/appearance-(modes).tokens.mode-light.json +0 -182
- package/dist/tokens/json/components-(ui).tokens.json +0 -739
- package/dist/tokens/json/semantics-(roles).tokens.json +0 -203
- package/dist/tokens/json/themes-(brands).tokens.brand-a.json +0 -115
- package/dist/tokens/json/themes-(brands).tokens.brand-b.json +0 -115
- package/docs/agentic/skills/README.md +0 -51
- package/docs/agentic/skills/design-ops-specialist/SKILL.md +0 -60
- package/docs/agentic/skills/design-system-architect/SKILL.md +0 -106
- package/docs/agentic/team-ai-playbook.md +0 -226
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-04-28T09:23:28.582Z
|
|
3
3
|
|
|
4
4
|
summary:
|
|
5
|
-
total:
|
|
5
|
+
total: 440
|
|
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-a-
|
|
88
|
+
value: "var(--color-brand-a-green-400)"
|
|
89
89
|
type: "color"
|
|
90
90
|
group: "colors"
|
|
91
91
|
path: "Brand/Color/Accent"
|
|
@@ -98,7 +98,7 @@ tokens:
|
|
|
98
98
|
-
|
|
99
99
|
cssVar: "--brand-color-accent"
|
|
100
100
|
name: "brand-color-accent"
|
|
101
|
-
value: "var(--color-brand-b-
|
|
101
|
+
value: "var(--color-brand-b-green-400)"
|
|
102
102
|
type: "color"
|
|
103
103
|
group: "colors"
|
|
104
104
|
path: "Brand/Color/Accent"
|
|
@@ -111,7 +111,7 @@ tokens:
|
|
|
111
111
|
-
|
|
112
112
|
cssVar: "--brand-color-accent-dark"
|
|
113
113
|
name: "brand-color-accent-dark"
|
|
114
|
-
value: "var(--color-brand-a-
|
|
114
|
+
value: "var(--color-brand-a-green-600)"
|
|
115
115
|
type: "color"
|
|
116
116
|
group: "colors"
|
|
117
117
|
path: "Brand/Color/Accent Dark"
|
|
@@ -124,7 +124,7 @@ tokens:
|
|
|
124
124
|
-
|
|
125
125
|
cssVar: "--brand-color-accent-dark"
|
|
126
126
|
name: "brand-color-accent-dark"
|
|
127
|
-
value: "var(--color-brand-b-
|
|
127
|
+
value: "var(--color-brand-b-green-800)"
|
|
128
128
|
type: "color"
|
|
129
129
|
group: "colors"
|
|
130
130
|
path: "Brand/Color/Accent Dark"
|
|
@@ -137,7 +137,7 @@ tokens:
|
|
|
137
137
|
-
|
|
138
138
|
cssVar: "--brand-color-functional-base"
|
|
139
139
|
name: "brand-color-functional-base"
|
|
140
|
-
value: "var(--color-brand-a-
|
|
140
|
+
value: "var(--color-brand-a-green-700)"
|
|
141
141
|
type: "color"
|
|
142
142
|
group: "colors"
|
|
143
143
|
path: "Brand/Color/Functional/Base"
|
|
@@ -150,7 +150,7 @@ tokens:
|
|
|
150
150
|
-
|
|
151
151
|
cssVar: "--brand-color-functional-base"
|
|
152
152
|
name: "brand-color-functional-base"
|
|
153
|
-
value: "var(--color-brand-b-purple-
|
|
153
|
+
value: "var(--color-brand-b-purple-700)"
|
|
154
154
|
type: "color"
|
|
155
155
|
group: "colors"
|
|
156
156
|
path: "Brand/Color/Functional/Base"
|
|
@@ -163,7 +163,7 @@ tokens:
|
|
|
163
163
|
-
|
|
164
164
|
cssVar: "--brand-color-functional-base-dark"
|
|
165
165
|
name: "brand-color-functional-base-dark"
|
|
166
|
-
value: "var(--color-brand-a-
|
|
166
|
+
value: "var(--color-brand-a-green-900)"
|
|
167
167
|
type: "color"
|
|
168
168
|
group: "colors"
|
|
169
169
|
path: "Brand/Color/Functional/Base Dark"
|
|
@@ -176,7 +176,7 @@ tokens:
|
|
|
176
176
|
-
|
|
177
177
|
cssVar: "--brand-color-functional-base-dark"
|
|
178
178
|
name: "brand-color-functional-base-dark"
|
|
179
|
-
value: "var(--color-brand-b-purple-
|
|
179
|
+
value: "var(--color-brand-b-purple-900)"
|
|
180
180
|
type: "color"
|
|
181
181
|
group: "colors"
|
|
182
182
|
path: "Brand/Color/Functional/Base Dark"
|
|
@@ -189,7 +189,7 @@ tokens:
|
|
|
189
189
|
-
|
|
190
190
|
cssVar: "--brand-color-functional-danger"
|
|
191
191
|
name: "brand-color-functional-danger"
|
|
192
|
-
value: "var(--color-brand-a-red)"
|
|
192
|
+
value: "var(--color-brand-a-red-600)"
|
|
193
193
|
type: "color"
|
|
194
194
|
group: "colors"
|
|
195
195
|
path: "Brand/Color/Functional/Danger"
|
|
@@ -202,7 +202,7 @@ tokens:
|
|
|
202
202
|
-
|
|
203
203
|
cssVar: "--brand-color-functional-danger"
|
|
204
204
|
name: "brand-color-functional-danger"
|
|
205
|
-
value: "var(--color-brand-b-red)"
|
|
205
|
+
value: "var(--color-brand-b-red-600)"
|
|
206
206
|
type: "color"
|
|
207
207
|
group: "colors"
|
|
208
208
|
path: "Brand/Color/Functional/Danger"
|
|
@@ -215,7 +215,7 @@ tokens:
|
|
|
215
215
|
-
|
|
216
216
|
cssVar: "--brand-color-functional-success"
|
|
217
217
|
name: "brand-color-functional-success"
|
|
218
|
-
value: "var(--color-brand-a-green)"
|
|
218
|
+
value: "var(--color-brand-a-green-600)"
|
|
219
219
|
type: "color"
|
|
220
220
|
group: "colors"
|
|
221
221
|
path: "Brand/Color/Functional/Success"
|
|
@@ -228,7 +228,7 @@ tokens:
|
|
|
228
228
|
-
|
|
229
229
|
cssVar: "--brand-color-functional-success"
|
|
230
230
|
name: "brand-color-functional-success"
|
|
231
|
-
value: "var(--color-brand-b-green)"
|
|
231
|
+
value: "var(--color-brand-b-green-600)"
|
|
232
232
|
type: "color"
|
|
233
233
|
group: "colors"
|
|
234
234
|
path: "Brand/Color/Functional/Success"
|
|
@@ -241,7 +241,7 @@ tokens:
|
|
|
241
241
|
-
|
|
242
242
|
cssVar: "--brand-color-primary"
|
|
243
243
|
name: "brand-color-primary"
|
|
244
|
-
value: "var(--color-brand-a-
|
|
244
|
+
value: "var(--color-brand-a-sand-700)"
|
|
245
245
|
type: "color"
|
|
246
246
|
group: "colors"
|
|
247
247
|
path: "Brand/Color/Primary"
|
|
@@ -254,7 +254,7 @@ tokens:
|
|
|
254
254
|
-
|
|
255
255
|
cssVar: "--brand-color-primary"
|
|
256
256
|
name: "brand-color-primary"
|
|
257
|
-
value: "var(--color-brand-b-
|
|
257
|
+
value: "var(--color-brand-b-purple-600)"
|
|
258
258
|
type: "color"
|
|
259
259
|
group: "colors"
|
|
260
260
|
path: "Brand/Color/Primary"
|
|
@@ -267,7 +267,7 @@ tokens:
|
|
|
267
267
|
-
|
|
268
268
|
cssVar: "--brand-color-primary-dark"
|
|
269
269
|
name: "brand-color-primary-dark"
|
|
270
|
-
value: "var(--color-brand-a-
|
|
270
|
+
value: "var(--color-brand-a-sand-900)"
|
|
271
271
|
type: "color"
|
|
272
272
|
group: "colors"
|
|
273
273
|
path: "Brand/Color/Primary Dark"
|
|
@@ -280,7 +280,7 @@ tokens:
|
|
|
280
280
|
-
|
|
281
281
|
cssVar: "--brand-color-primary-dark"
|
|
282
282
|
name: "brand-color-primary-dark"
|
|
283
|
-
value: "var(--color-brand-b-
|
|
283
|
+
value: "var(--color-brand-b-purple-800)"
|
|
284
284
|
type: "color"
|
|
285
285
|
group: "colors"
|
|
286
286
|
path: "Brand/Color/Primary Dark"
|
|
@@ -512,247 +512,793 @@ tokens:
|
|
|
512
512
|
selector: ":root[data-mode=\"dark\"]"
|
|
513
513
|
sourceFile: "Appearance (Modes).tokens.json"
|
|
514
514
|
-
|
|
515
|
-
cssVar: "--color-border-subtle"
|
|
516
|
-
name: "color-border-subtle"
|
|
517
|
-
value: "var(--brand-color-subtle)"
|
|
515
|
+
cssVar: "--color-border-subtle"
|
|
516
|
+
name: "color-border-subtle"
|
|
517
|
+
value: "var(--brand-color-subtle)"
|
|
518
|
+
type: "color"
|
|
519
|
+
group: "colors"
|
|
520
|
+
path: "Color/Border/Subtle"
|
|
521
|
+
pathKey: "Color.Border.Subtle"
|
|
522
|
+
scope: "mode:light"
|
|
523
|
+
scopeBucket: "mode"
|
|
524
|
+
scopeId: "light"
|
|
525
|
+
selector: ":root"
|
|
526
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
527
|
+
-
|
|
528
|
+
cssVar: "--color-brand-a-green-100"
|
|
529
|
+
name: "color-brand-a-green-100"
|
|
530
|
+
value: "rgb(243 246 233)"
|
|
531
|
+
type: "color"
|
|
532
|
+
group: "colors"
|
|
533
|
+
path: "Color/Brand A/Green/100"
|
|
534
|
+
pathKey: "Color.Brand A.Green.100"
|
|
535
|
+
scope: "global:core-primitives"
|
|
536
|
+
scopeBucket: "global"
|
|
537
|
+
scopeId: "core-primitives"
|
|
538
|
+
selector: ":root"
|
|
539
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
540
|
+
-
|
|
541
|
+
cssVar: "--color-brand-a-green-200"
|
|
542
|
+
name: "color-brand-a-green-200"
|
|
543
|
+
value: "rgb(223 231 197)"
|
|
544
|
+
type: "color"
|
|
545
|
+
group: "colors"
|
|
546
|
+
path: "Color/Brand A/Green/200"
|
|
547
|
+
pathKey: "Color.Brand A.Green.200"
|
|
548
|
+
scope: "global:core-primitives"
|
|
549
|
+
scopeBucket: "global"
|
|
550
|
+
scopeId: "core-primitives"
|
|
551
|
+
selector: ":root"
|
|
552
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
553
|
+
-
|
|
554
|
+
cssVar: "--color-brand-a-green-300"
|
|
555
|
+
name: "color-brand-a-green-300"
|
|
556
|
+
value: "rgb(207 219 169)"
|
|
557
|
+
type: "color"
|
|
558
|
+
group: "colors"
|
|
559
|
+
path: "Color/Brand A/Green/300"
|
|
560
|
+
pathKey: "Color.Brand A.Green.300"
|
|
561
|
+
scope: "global:core-primitives"
|
|
562
|
+
scopeBucket: "global"
|
|
563
|
+
scopeId: "core-primitives"
|
|
564
|
+
selector: ":root"
|
|
565
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
566
|
+
-
|
|
567
|
+
cssVar: "--color-brand-a-green-400"
|
|
568
|
+
name: "color-brand-a-green-400"
|
|
569
|
+
value: "rgb(191 207 140)"
|
|
570
|
+
type: "color"
|
|
571
|
+
group: "colors"
|
|
572
|
+
path: "Color/Brand A/Green/400"
|
|
573
|
+
pathKey: "Color.Brand A.Green.400"
|
|
574
|
+
scope: "global:core-primitives"
|
|
575
|
+
scopeBucket: "global"
|
|
576
|
+
scopeId: "core-primitives"
|
|
577
|
+
selector: ":root"
|
|
578
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
579
|
+
-
|
|
580
|
+
cssVar: "--color-brand-a-green-500"
|
|
581
|
+
name: "color-brand-a-green-500"
|
|
582
|
+
value: "rgb(175 195 111)"
|
|
583
|
+
type: "color"
|
|
584
|
+
group: "colors"
|
|
585
|
+
path: "Color/Brand A/Green/500"
|
|
586
|
+
pathKey: "Color.Brand A.Green.500"
|
|
587
|
+
scope: "global:core-primitives"
|
|
588
|
+
scopeBucket: "global"
|
|
589
|
+
scopeId: "core-primitives"
|
|
590
|
+
selector: ":root"
|
|
591
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
592
|
+
-
|
|
593
|
+
cssVar: "--color-brand-a-green-600"
|
|
594
|
+
name: "color-brand-a-green-600"
|
|
595
|
+
value: "rgb(159 183 82)"
|
|
596
|
+
type: "color"
|
|
597
|
+
group: "colors"
|
|
598
|
+
path: "Color/Brand A/Green/600"
|
|
599
|
+
pathKey: "Color.Brand A.Green.600"
|
|
600
|
+
scope: "global:core-primitives"
|
|
601
|
+
scopeBucket: "global"
|
|
602
|
+
scopeId: "core-primitives"
|
|
603
|
+
selector: ":root"
|
|
604
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
605
|
+
-
|
|
606
|
+
cssVar: "--color-brand-a-green-700"
|
|
607
|
+
name: "color-brand-a-green-700"
|
|
608
|
+
value: "rgb(137 158 66)"
|
|
609
|
+
type: "color"
|
|
610
|
+
group: "colors"
|
|
611
|
+
path: "Color/Brand A/Green/700"
|
|
612
|
+
pathKey: "Color.Brand A.Green.700"
|
|
613
|
+
scope: "global:core-primitives"
|
|
614
|
+
scopeBucket: "global"
|
|
615
|
+
scopeId: "core-primitives"
|
|
616
|
+
selector: ":root"
|
|
617
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
618
|
+
-
|
|
619
|
+
cssVar: "--color-brand-a-green-800"
|
|
620
|
+
name: "color-brand-a-green-800"
|
|
621
|
+
value: "rgb(112 129 54)"
|
|
622
|
+
type: "color"
|
|
623
|
+
group: "colors"
|
|
624
|
+
path: "Color/Brand A/Green/800"
|
|
625
|
+
pathKey: "Color.Brand A.Green.800"
|
|
626
|
+
scope: "global:core-primitives"
|
|
627
|
+
scopeBucket: "global"
|
|
628
|
+
scopeId: "core-primitives"
|
|
629
|
+
selector: ":root"
|
|
630
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
631
|
+
-
|
|
632
|
+
cssVar: "--color-brand-a-green-900"
|
|
633
|
+
name: "color-brand-a-green-900"
|
|
634
|
+
value: "rgb(81 93 39)"
|
|
635
|
+
type: "color"
|
|
636
|
+
group: "colors"
|
|
637
|
+
path: "Color/Brand A/Green/900"
|
|
638
|
+
pathKey: "Color.Brand A.Green.900"
|
|
639
|
+
scope: "global:core-primitives"
|
|
640
|
+
scopeBucket: "global"
|
|
641
|
+
scopeId: "core-primitives"
|
|
642
|
+
selector: ":root"
|
|
643
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
644
|
+
-
|
|
645
|
+
cssVar: "--color-brand-a-red-100"
|
|
646
|
+
name: "color-brand-a-red-100"
|
|
647
|
+
value: "rgb(254 251 251)"
|
|
648
|
+
type: "color"
|
|
649
|
+
group: "colors"
|
|
650
|
+
path: "Color/Brand A/Red/100"
|
|
651
|
+
pathKey: "Color.Brand A.Red.100"
|
|
652
|
+
scope: "global:core-primitives"
|
|
653
|
+
scopeBucket: "global"
|
|
654
|
+
scopeId: "core-primitives"
|
|
655
|
+
selector: ":root"
|
|
656
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
657
|
+
-
|
|
658
|
+
cssVar: "--color-brand-a-red-200"
|
|
659
|
+
name: "color-brand-a-red-200"
|
|
660
|
+
value: "rgb(250 224 230)"
|
|
661
|
+
type: "color"
|
|
662
|
+
group: "colors"
|
|
663
|
+
path: "Color/Brand A/Red/200"
|
|
664
|
+
pathKey: "Color.Brand A.Red.200"
|
|
665
|
+
scope: "global:core-primitives"
|
|
666
|
+
scopeBucket: "global"
|
|
667
|
+
scopeId: "core-primitives"
|
|
668
|
+
selector: ":root"
|
|
669
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
670
|
+
-
|
|
671
|
+
cssVar: "--color-brand-a-red-300"
|
|
672
|
+
name: "color-brand-a-red-300"
|
|
673
|
+
value: "rgb(244 179 195)"
|
|
674
|
+
type: "color"
|
|
675
|
+
group: "colors"
|
|
676
|
+
path: "Color/Brand A/Red/300"
|
|
677
|
+
pathKey: "Color.Brand A.Red.300"
|
|
678
|
+
scope: "global:core-primitives"
|
|
679
|
+
scopeBucket: "global"
|
|
680
|
+
scopeId: "core-primitives"
|
|
681
|
+
selector: ":root"
|
|
682
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
683
|
+
-
|
|
684
|
+
cssVar: "--color-brand-a-red-400"
|
|
685
|
+
name: "color-brand-a-red-400"
|
|
686
|
+
value: "rgb(238 135 160)"
|
|
687
|
+
type: "color"
|
|
688
|
+
group: "colors"
|
|
689
|
+
path: "Color/Brand A/Red/400"
|
|
690
|
+
pathKey: "Color.Brand A.Red.400"
|
|
691
|
+
scope: "global:core-primitives"
|
|
692
|
+
scopeBucket: "global"
|
|
693
|
+
scopeId: "core-primitives"
|
|
694
|
+
selector: ":root"
|
|
695
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
696
|
+
-
|
|
697
|
+
cssVar: "--color-brand-a-red-500"
|
|
698
|
+
name: "color-brand-a-red-500"
|
|
699
|
+
value: "rgb(231 90 124)"
|
|
700
|
+
type: "color"
|
|
701
|
+
group: "colors"
|
|
702
|
+
path: "Color/Brand A/Red/500"
|
|
703
|
+
pathKey: "Color.Brand A.Red.500"
|
|
704
|
+
scope: "global:core-primitives"
|
|
705
|
+
scopeBucket: "global"
|
|
706
|
+
scopeId: "core-primitives"
|
|
707
|
+
selector: ":root"
|
|
708
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
709
|
+
-
|
|
710
|
+
cssVar: "--color-brand-a-red-600"
|
|
711
|
+
name: "color-brand-a-red-600"
|
|
712
|
+
value: "rgb(225 46 89)"
|
|
713
|
+
type: "color"
|
|
714
|
+
group: "colors"
|
|
715
|
+
path: "Color/Brand A/Red/600"
|
|
716
|
+
pathKey: "Color.Brand A.Red.600"
|
|
717
|
+
scope: "global:core-primitives"
|
|
718
|
+
scopeBucket: "global"
|
|
719
|
+
scopeId: "core-primitives"
|
|
720
|
+
selector: ":root"
|
|
721
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
722
|
+
-
|
|
723
|
+
cssVar: "--color-brand-a-red-700"
|
|
724
|
+
name: "color-brand-a-red-700"
|
|
725
|
+
value: "rgb(191 28 67)"
|
|
726
|
+
type: "color"
|
|
727
|
+
group: "colors"
|
|
728
|
+
path: "Color/Brand A/Red/700"
|
|
729
|
+
pathKey: "Color.Brand A.Red.700"
|
|
730
|
+
scope: "global:core-primitives"
|
|
731
|
+
scopeBucket: "global"
|
|
732
|
+
scopeId: "core-primitives"
|
|
733
|
+
selector: ":root"
|
|
734
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
735
|
+
-
|
|
736
|
+
cssVar: "--color-brand-a-red-800"
|
|
737
|
+
name: "color-brand-a-red-800"
|
|
738
|
+
value: "rgb(147 21 52)"
|
|
739
|
+
type: "color"
|
|
740
|
+
group: "colors"
|
|
741
|
+
path: "Color/Brand A/Red/800"
|
|
742
|
+
pathKey: "Color.Brand A.Red.800"
|
|
743
|
+
scope: "global:core-primitives"
|
|
744
|
+
scopeBucket: "global"
|
|
745
|
+
scopeId: "core-primitives"
|
|
746
|
+
selector: ":root"
|
|
747
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
748
|
+
-
|
|
749
|
+
cssVar: "--color-brand-a-red-900"
|
|
750
|
+
name: "color-brand-a-red-900"
|
|
751
|
+
value: "rgb(102 15 36)"
|
|
752
|
+
type: "color"
|
|
753
|
+
group: "colors"
|
|
754
|
+
path: "Color/Brand A/Red/900"
|
|
755
|
+
pathKey: "Color.Brand A.Red.900"
|
|
756
|
+
scope: "global:core-primitives"
|
|
757
|
+
scopeBucket: "global"
|
|
758
|
+
scopeId: "core-primitives"
|
|
759
|
+
selector: ":root"
|
|
760
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
761
|
+
-
|
|
762
|
+
cssVar: "--color-brand-a-sand-100"
|
|
763
|
+
name: "color-brand-a-sand-100"
|
|
764
|
+
value: "rgb(240 240 229)"
|
|
765
|
+
type: "color"
|
|
766
|
+
group: "colors"
|
|
767
|
+
path: "Color/Brand A/Sand/100"
|
|
768
|
+
pathKey: "Color.Brand A.Sand.100"
|
|
769
|
+
scope: "global:core-primitives"
|
|
770
|
+
scopeBucket: "global"
|
|
771
|
+
scopeId: "core-primitives"
|
|
772
|
+
selector: ":root"
|
|
773
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
774
|
+
-
|
|
775
|
+
cssVar: "--color-brand-a-sand-200"
|
|
776
|
+
name: "color-brand-a-sand-200"
|
|
777
|
+
value: "rgb(221 222 197)"
|
|
778
|
+
type: "color"
|
|
779
|
+
group: "colors"
|
|
780
|
+
path: "Color/Brand A/Sand/200"
|
|
781
|
+
pathKey: "Color.Brand A.Sand.200"
|
|
782
|
+
scope: "global:core-primitives"
|
|
783
|
+
scopeBucket: "global"
|
|
784
|
+
scopeId: "core-primitives"
|
|
785
|
+
selector: ":root"
|
|
786
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
787
|
+
-
|
|
788
|
+
cssVar: "--color-brand-a-sand-300"
|
|
789
|
+
name: "color-brand-a-sand-300"
|
|
790
|
+
value: "rgb(192 193 172)"
|
|
791
|
+
type: "color"
|
|
792
|
+
group: "colors"
|
|
793
|
+
path: "Color/Brand A/Sand/300"
|
|
794
|
+
pathKey: "Color.Brand A.Sand.300"
|
|
795
|
+
scope: "global:core-primitives"
|
|
796
|
+
scopeBucket: "global"
|
|
797
|
+
scopeId: "core-primitives"
|
|
798
|
+
selector: ":root"
|
|
799
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
800
|
+
-
|
|
801
|
+
cssVar: "--color-brand-a-sand-400"
|
|
802
|
+
name: "color-brand-a-sand-400"
|
|
803
|
+
value: "rgb(164 165 147)"
|
|
804
|
+
type: "color"
|
|
805
|
+
group: "colors"
|
|
806
|
+
path: "Color/Brand A/Sand/400"
|
|
807
|
+
pathKey: "Color.Brand A.Sand.400"
|
|
808
|
+
scope: "global:core-primitives"
|
|
809
|
+
scopeBucket: "global"
|
|
810
|
+
scopeId: "core-primitives"
|
|
811
|
+
selector: ":root"
|
|
812
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
813
|
+
-
|
|
814
|
+
cssVar: "--color-brand-a-sand-500"
|
|
815
|
+
name: "color-brand-a-sand-500"
|
|
816
|
+
value: "rgb(136 137 122)"
|
|
817
|
+
type: "color"
|
|
818
|
+
group: "colors"
|
|
819
|
+
path: "Color/Brand A/Sand/500"
|
|
820
|
+
pathKey: "Color.Brand A.Sand.500"
|
|
821
|
+
scope: "global:core-primitives"
|
|
822
|
+
scopeBucket: "global"
|
|
823
|
+
scopeId: "core-primitives"
|
|
824
|
+
selector: ":root"
|
|
825
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
826
|
+
-
|
|
827
|
+
cssVar: "--color-brand-a-sand-600"
|
|
828
|
+
name: "color-brand-a-sand-600"
|
|
829
|
+
value: "rgb(108 109 97)"
|
|
830
|
+
type: "color"
|
|
831
|
+
group: "colors"
|
|
832
|
+
path: "Color/Brand A/Sand/600"
|
|
833
|
+
pathKey: "Color.Brand A.Sand.600"
|
|
834
|
+
scope: "global:core-primitives"
|
|
835
|
+
scopeBucket: "global"
|
|
836
|
+
scopeId: "core-primitives"
|
|
837
|
+
selector: ":root"
|
|
838
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
839
|
+
-
|
|
840
|
+
cssVar: "--color-brand-a-sand-700"
|
|
841
|
+
name: "color-brand-a-sand-700"
|
|
842
|
+
value: "rgb(80 81 72)"
|
|
843
|
+
type: "color"
|
|
844
|
+
group: "colors"
|
|
845
|
+
path: "Color/Brand A/Sand/700"
|
|
846
|
+
pathKey: "Color.Brand A.Sand.700"
|
|
847
|
+
scope: "global:core-primitives"
|
|
848
|
+
scopeBucket: "global"
|
|
849
|
+
scopeId: "core-primitives"
|
|
850
|
+
selector: ":root"
|
|
851
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
852
|
+
-
|
|
853
|
+
cssVar: "--color-brand-a-sand-800"
|
|
854
|
+
name: "color-brand-a-sand-800"
|
|
855
|
+
value: "rgb(52 52 47)"
|
|
856
|
+
type: "color"
|
|
857
|
+
group: "colors"
|
|
858
|
+
path: "Color/Brand A/Sand/800"
|
|
859
|
+
pathKey: "Color.Brand A.Sand.800"
|
|
860
|
+
scope: "global:core-primitives"
|
|
861
|
+
scopeBucket: "global"
|
|
862
|
+
scopeId: "core-primitives"
|
|
863
|
+
selector: ":root"
|
|
864
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
865
|
+
-
|
|
866
|
+
cssVar: "--color-brand-a-sand-900"
|
|
867
|
+
name: "color-brand-a-sand-900"
|
|
868
|
+
value: "rgb(24 24 22)"
|
|
869
|
+
type: "color"
|
|
870
|
+
group: "colors"
|
|
871
|
+
path: "Color/Brand A/Sand/900"
|
|
872
|
+
pathKey: "Color.Brand A.Sand.900"
|
|
873
|
+
scope: "global:core-primitives"
|
|
874
|
+
scopeBucket: "global"
|
|
875
|
+
scopeId: "core-primitives"
|
|
876
|
+
selector: ":root"
|
|
877
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
878
|
+
-
|
|
879
|
+
cssVar: "--color-brand-b-blue-100"
|
|
880
|
+
name: "color-brand-b-blue-100"
|
|
881
|
+
value: "rgb(206 219 253)"
|
|
882
|
+
type: "color"
|
|
883
|
+
group: "colors"
|
|
884
|
+
path: "Color/Brand B/Blue/100"
|
|
885
|
+
pathKey: "Color.Brand B.Blue.100"
|
|
886
|
+
scope: "global:core-primitives"
|
|
887
|
+
scopeBucket: "global"
|
|
888
|
+
scopeId: "core-primitives"
|
|
889
|
+
selector: ":root"
|
|
890
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
891
|
+
-
|
|
892
|
+
cssVar: "--color-brand-b-blue-200"
|
|
893
|
+
name: "color-brand-b-blue-200"
|
|
894
|
+
value: "rgb(158 183 250)"
|
|
895
|
+
type: "color"
|
|
896
|
+
group: "colors"
|
|
897
|
+
path: "Color/Brand B/Blue/200"
|
|
898
|
+
pathKey: "Color.Brand B.Blue.200"
|
|
899
|
+
scope: "global:core-primitives"
|
|
900
|
+
scopeBucket: "global"
|
|
901
|
+
scopeId: "core-primitives"
|
|
902
|
+
selector: ":root"
|
|
903
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
904
|
+
-
|
|
905
|
+
cssVar: "--color-brand-b-blue-300"
|
|
906
|
+
name: "color-brand-b-blue-300"
|
|
907
|
+
value: "rgb(109 147 248)"
|
|
908
|
+
type: "color"
|
|
909
|
+
group: "colors"
|
|
910
|
+
path: "Color/Brand B/Blue/300"
|
|
911
|
+
pathKey: "Color.Brand B.Blue.300"
|
|
912
|
+
scope: "global:core-primitives"
|
|
913
|
+
scopeBucket: "global"
|
|
914
|
+
scopeId: "core-primitives"
|
|
915
|
+
selector: ":root"
|
|
916
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
917
|
+
-
|
|
918
|
+
cssVar: "--color-brand-b-blue-400"
|
|
919
|
+
name: "color-brand-b-blue-400"
|
|
920
|
+
value: "rgb(61 111 245)"
|
|
921
|
+
type: "color"
|
|
922
|
+
group: "colors"
|
|
923
|
+
path: "Color/Brand B/Blue/400"
|
|
924
|
+
pathKey: "Color.Brand B.Blue.400"
|
|
925
|
+
scope: "global:core-primitives"
|
|
926
|
+
scopeBucket: "global"
|
|
927
|
+
scopeId: "core-primitives"
|
|
928
|
+
selector: ":root"
|
|
929
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
930
|
+
-
|
|
931
|
+
cssVar: "--color-brand-b-blue-500"
|
|
932
|
+
name: "color-brand-b-blue-500"
|
|
933
|
+
value: "rgb(12 75 243)"
|
|
934
|
+
type: "color"
|
|
935
|
+
group: "colors"
|
|
936
|
+
path: "Color/Brand B/Blue/500"
|
|
937
|
+
pathKey: "Color.Brand B.Blue.500"
|
|
938
|
+
scope: "global:core-primitives"
|
|
939
|
+
scopeBucket: "global"
|
|
940
|
+
scopeId: "core-primitives"
|
|
941
|
+
selector: ":root"
|
|
942
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
943
|
+
-
|
|
944
|
+
cssVar: "--color-brand-b-blue-600"
|
|
945
|
+
name: "color-brand-b-blue-600"
|
|
946
|
+
value: "rgb(10 60 194)"
|
|
947
|
+
type: "color"
|
|
948
|
+
group: "colors"
|
|
949
|
+
path: "Color/Brand B/Blue/600"
|
|
950
|
+
pathKey: "Color.Brand B.Blue.600"
|
|
951
|
+
scope: "global:core-primitives"
|
|
952
|
+
scopeBucket: "global"
|
|
953
|
+
scopeId: "core-primitives"
|
|
954
|
+
selector: ":root"
|
|
955
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
956
|
+
-
|
|
957
|
+
cssVar: "--color-brand-b-blue-700"
|
|
958
|
+
name: "color-brand-b-blue-700"
|
|
959
|
+
value: "rgb(7 45 146)"
|
|
960
|
+
type: "color"
|
|
961
|
+
group: "colors"
|
|
962
|
+
path: "Color/Brand B/Blue/700"
|
|
963
|
+
pathKey: "Color.Brand B.Blue.700"
|
|
964
|
+
scope: "global:core-primitives"
|
|
965
|
+
scopeBucket: "global"
|
|
966
|
+
scopeId: "core-primitives"
|
|
967
|
+
selector: ":root"
|
|
968
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
969
|
+
-
|
|
970
|
+
cssVar: "--color-brand-b-blue-800"
|
|
971
|
+
name: "color-brand-b-blue-800"
|
|
972
|
+
value: "rgb(5 30 97)"
|
|
973
|
+
type: "color"
|
|
974
|
+
group: "colors"
|
|
975
|
+
path: "Color/Brand B/Blue/800"
|
|
976
|
+
pathKey: "Color.Brand B.Blue.800"
|
|
977
|
+
scope: "global:core-primitives"
|
|
978
|
+
scopeBucket: "global"
|
|
979
|
+
scopeId: "core-primitives"
|
|
980
|
+
selector: ":root"
|
|
981
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
982
|
+
-
|
|
983
|
+
cssVar: "--color-brand-b-blue-900"
|
|
984
|
+
name: "color-brand-b-blue-900"
|
|
985
|
+
value: "rgb(2 15 49)"
|
|
986
|
+
type: "color"
|
|
987
|
+
group: "colors"
|
|
988
|
+
path: "Color/Brand B/Blue/900"
|
|
989
|
+
pathKey: "Color.Brand B.Blue.900"
|
|
990
|
+
scope: "global:core-primitives"
|
|
991
|
+
scopeBucket: "global"
|
|
992
|
+
scopeId: "core-primitives"
|
|
993
|
+
selector: ":root"
|
|
994
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
995
|
+
-
|
|
996
|
+
cssVar: "--color-brand-b-green-100"
|
|
997
|
+
name: "color-brand-b-green-100"
|
|
998
|
+
value: "rgb(246 254 250)"
|
|
999
|
+
type: "color"
|
|
1000
|
+
group: "colors"
|
|
1001
|
+
path: "Color/Brand B/Green/100"
|
|
1002
|
+
pathKey: "Color.Brand B.Green.100"
|
|
1003
|
+
scope: "global:core-primitives"
|
|
1004
|
+
scopeBucket: "global"
|
|
1005
|
+
scopeId: "core-primitives"
|
|
1006
|
+
selector: ":root"
|
|
1007
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1008
|
+
-
|
|
1009
|
+
cssVar: "--color-brand-b-green-200"
|
|
1010
|
+
name: "color-brand-b-green-200"
|
|
1011
|
+
value: "rgb(200 249 223)"
|
|
1012
|
+
type: "color"
|
|
1013
|
+
group: "colors"
|
|
1014
|
+
path: "Color/Brand B/Green/200"
|
|
1015
|
+
pathKey: "Color.Brand B.Green.200"
|
|
1016
|
+
scope: "global:core-primitives"
|
|
1017
|
+
scopeBucket: "global"
|
|
1018
|
+
scopeId: "core-primitives"
|
|
1019
|
+
selector: ":root"
|
|
1020
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1021
|
+
-
|
|
1022
|
+
cssVar: "--color-brand-b-green-300"
|
|
1023
|
+
name: "color-brand-b-green-300"
|
|
1024
|
+
value: "rgb(154 244 196)"
|
|
1025
|
+
type: "color"
|
|
1026
|
+
group: "colors"
|
|
1027
|
+
path: "Color/Brand B/Green/300"
|
|
1028
|
+
pathKey: "Color.Brand B.Green.300"
|
|
1029
|
+
scope: "global:core-primitives"
|
|
1030
|
+
scopeBucket: "global"
|
|
1031
|
+
scopeId: "core-primitives"
|
|
1032
|
+
selector: ":root"
|
|
1033
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1034
|
+
-
|
|
1035
|
+
cssVar: "--color-brand-b-green-400"
|
|
1036
|
+
name: "color-brand-b-green-400"
|
|
1037
|
+
value: "rgb(108 239 170)"
|
|
1038
|
+
type: "color"
|
|
1039
|
+
group: "colors"
|
|
1040
|
+
path: "Color/Brand B/Green/400"
|
|
1041
|
+
pathKey: "Color.Brand B.Green.400"
|
|
1042
|
+
scope: "global:core-primitives"
|
|
1043
|
+
scopeBucket: "global"
|
|
1044
|
+
scopeId: "core-primitives"
|
|
1045
|
+
selector: ":root"
|
|
1046
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1047
|
+
-
|
|
1048
|
+
cssVar: "--color-brand-b-green-500"
|
|
1049
|
+
name: "color-brand-b-green-500"
|
|
1050
|
+
value: "rgb(62 234 143)"
|
|
1051
|
+
type: "color"
|
|
1052
|
+
group: "colors"
|
|
1053
|
+
path: "Color/Brand B/Green/500"
|
|
1054
|
+
pathKey: "Color.Brand B.Green.500"
|
|
1055
|
+
scope: "global:core-primitives"
|
|
1056
|
+
scopeBucket: "global"
|
|
1057
|
+
scopeId: "core-primitives"
|
|
1058
|
+
selector: ":root"
|
|
1059
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
1060
|
+
-
|
|
1061
|
+
cssVar: "--color-brand-b-green-600"
|
|
1062
|
+
name: "color-brand-b-green-600"
|
|
1063
|
+
value: "rgb(19 174 92)"
|
|
518
1064
|
type: "color"
|
|
519
1065
|
group: "colors"
|
|
520
|
-
path: "Color/
|
|
521
|
-
pathKey: "Color.
|
|
522
|
-
scope: "
|
|
523
|
-
scopeBucket: "
|
|
524
|
-
scopeId: "
|
|
1066
|
+
path: "Color/Brand B/Green/600"
|
|
1067
|
+
pathKey: "Color.Brand B.Green.600"
|
|
1068
|
+
scope: "global:core-primitives"
|
|
1069
|
+
scopeBucket: "global"
|
|
1070
|
+
scopeId: "core-primitives"
|
|
525
1071
|
selector: ":root"
|
|
526
|
-
sourceFile: "
|
|
1072
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
527
1073
|
-
|
|
528
|
-
cssVar: "--color-brand-
|
|
529
|
-
name: "color-brand-
|
|
530
|
-
value: "rgb(
|
|
1074
|
+
cssVar: "--color-brand-b-green-700"
|
|
1075
|
+
name: "color-brand-b-green-700"
|
|
1076
|
+
value: "rgb(14 129 68)"
|
|
531
1077
|
type: "color"
|
|
532
1078
|
group: "colors"
|
|
533
|
-
path: "Color/Brand
|
|
534
|
-
pathKey: "Color.Brand
|
|
1079
|
+
path: "Color/Brand B/Green/700"
|
|
1080
|
+
pathKey: "Color.Brand B.Green.700"
|
|
535
1081
|
scope: "global:core-primitives"
|
|
536
1082
|
scopeBucket: "global"
|
|
537
1083
|
scopeId: "core-primitives"
|
|
538
1084
|
selector: ":root"
|
|
539
1085
|
sourceFile: "Core (Primitives).tokens.json"
|
|
540
1086
|
-
|
|
541
|
-
cssVar: "--color-brand-
|
|
542
|
-
name: "color-brand-
|
|
543
|
-
value: "rgb(
|
|
1087
|
+
cssVar: "--color-brand-b-green-800"
|
|
1088
|
+
name: "color-brand-b-green-800"
|
|
1089
|
+
value: "rgb(8 69 36)"
|
|
544
1090
|
type: "color"
|
|
545
1091
|
group: "colors"
|
|
546
|
-
path: "Color/Brand
|
|
547
|
-
pathKey: "Color.Brand
|
|
1092
|
+
path: "Color/Brand B/Green/800"
|
|
1093
|
+
pathKey: "Color.Brand B.Green.800"
|
|
548
1094
|
scope: "global:core-primitives"
|
|
549
1095
|
scopeBucket: "global"
|
|
550
1096
|
scopeId: "core-primitives"
|
|
551
1097
|
selector: ":root"
|
|
552
1098
|
sourceFile: "Core (Primitives).tokens.json"
|
|
553
1099
|
-
|
|
554
|
-
cssVar: "--color-brand-
|
|
555
|
-
name: "color-brand-
|
|
556
|
-
value: "rgb(
|
|
1100
|
+
cssVar: "--color-brand-b-green-900"
|
|
1101
|
+
name: "color-brand-b-green-900"
|
|
1102
|
+
value: "rgb(4 37 19)"
|
|
557
1103
|
type: "color"
|
|
558
1104
|
group: "colors"
|
|
559
|
-
path: "Color/Brand
|
|
560
|
-
pathKey: "Color.Brand
|
|
1105
|
+
path: "Color/Brand B/Green/900"
|
|
1106
|
+
pathKey: "Color.Brand B.Green.900"
|
|
561
1107
|
scope: "global:core-primitives"
|
|
562
1108
|
scopeBucket: "global"
|
|
563
1109
|
scopeId: "core-primitives"
|
|
564
1110
|
selector: ":root"
|
|
565
1111
|
sourceFile: "Core (Primitives).tokens.json"
|
|
566
1112
|
-
|
|
567
|
-
cssVar: "--color-brand-
|
|
568
|
-
name: "color-brand-
|
|
569
|
-
value: "rgb(
|
|
1113
|
+
cssVar: "--color-brand-b-purple-200"
|
|
1114
|
+
name: "color-brand-b-purple-200"
|
|
1115
|
+
value: "rgb(222 192 255)"
|
|
570
1116
|
type: "color"
|
|
571
1117
|
group: "colors"
|
|
572
|
-
path: "Color/Brand
|
|
573
|
-
pathKey: "Color.Brand
|
|
1118
|
+
path: "Color/Brand B/Purple/200"
|
|
1119
|
+
pathKey: "Color.Brand B.Purple.200"
|
|
574
1120
|
scope: "global:core-primitives"
|
|
575
1121
|
scopeBucket: "global"
|
|
576
1122
|
scopeId: "core-primitives"
|
|
577
1123
|
selector: ":root"
|
|
578
1124
|
sourceFile: "Core (Primitives).tokens.json"
|
|
579
1125
|
-
|
|
580
|
-
cssVar: "--color-brand-
|
|
581
|
-
name: "color-brand-
|
|
582
|
-
value: "rgb(
|
|
1126
|
+
cssVar: "--color-brand-b-purple-300"
|
|
1127
|
+
name: "color-brand-b-purple-300"
|
|
1128
|
+
value: "rgb(196 143 255)"
|
|
583
1129
|
type: "color"
|
|
584
1130
|
group: "colors"
|
|
585
|
-
path: "Color/Brand
|
|
586
|
-
pathKey: "Color.Brand
|
|
1131
|
+
path: "Color/Brand B/Purple/300"
|
|
1132
|
+
pathKey: "Color.Brand B.Purple.300"
|
|
587
1133
|
scope: "global:core-primitives"
|
|
588
1134
|
scopeBucket: "global"
|
|
589
1135
|
scopeId: "core-primitives"
|
|
590
1136
|
selector: ":root"
|
|
591
1137
|
sourceFile: "Core (Primitives).tokens.json"
|
|
592
1138
|
-
|
|
593
|
-
cssVar: "--color-brand-
|
|
594
|
-
name: "color-brand-
|
|
595
|
-
value: "rgb(
|
|
1139
|
+
cssVar: "--color-brand-b-purple-600"
|
|
1140
|
+
name: "color-brand-b-purple-600"
|
|
1141
|
+
value: "rgb(151 71 255)"
|
|
596
1142
|
type: "color"
|
|
597
1143
|
group: "colors"
|
|
598
|
-
path: "Color/Brand
|
|
599
|
-
pathKey: "Color.Brand
|
|
1144
|
+
path: "Color/Brand B/Purple/600"
|
|
1145
|
+
pathKey: "Color.Brand B.Purple.600"
|
|
600
1146
|
scope: "global:core-primitives"
|
|
601
1147
|
scopeBucket: "global"
|
|
602
1148
|
scopeId: "core-primitives"
|
|
603
1149
|
selector: ":root"
|
|
604
1150
|
sourceFile: "Core (Primitives).tokens.json"
|
|
605
1151
|
-
|
|
606
|
-
cssVar: "--color-brand-
|
|
607
|
-
name: "color-brand-
|
|
608
|
-
value: "rgb(
|
|
1152
|
+
cssVar: "--color-brand-b-purple-700"
|
|
1153
|
+
name: "color-brand-b-purple-700"
|
|
1154
|
+
value: "rgb(122 20 255)"
|
|
609
1155
|
type: "color"
|
|
610
1156
|
group: "colors"
|
|
611
|
-
path: "Color/Brand
|
|
612
|
-
pathKey: "Color.Brand
|
|
1157
|
+
path: "Color/Brand B/Purple/700"
|
|
1158
|
+
pathKey: "Color.Brand B.Purple.700"
|
|
613
1159
|
scope: "global:core-primitives"
|
|
614
1160
|
scopeBucket: "global"
|
|
615
1161
|
scopeId: "core-primitives"
|
|
616
1162
|
selector: ":root"
|
|
617
1163
|
sourceFile: "Core (Primitives).tokens.json"
|
|
618
1164
|
-
|
|
619
|
-
cssVar: "--color-brand-
|
|
620
|
-
name: "color-brand-
|
|
1165
|
+
cssVar: "--color-brand-b-purple-800"
|
|
1166
|
+
name: "color-brand-b-purple-800"
|
|
621
1167
|
value: "rgb(85 26 139)"
|
|
622
1168
|
type: "color"
|
|
623
1169
|
group: "colors"
|
|
624
|
-
path: "Color/Brand
|
|
625
|
-
pathKey: "Color.Brand
|
|
1170
|
+
path: "Color/Brand B/Purple/800"
|
|
1171
|
+
pathKey: "Color.Brand B.Purple.800"
|
|
626
1172
|
scope: "global:core-primitives"
|
|
627
1173
|
scopeBucket: "global"
|
|
628
1174
|
scopeId: "core-primitives"
|
|
629
1175
|
selector: ":root"
|
|
630
1176
|
sourceFile: "Core (Primitives).tokens.json"
|
|
631
1177
|
-
|
|
632
|
-
cssVar: "--color-brand-
|
|
633
|
-
name: "color-brand-
|
|
634
|
-
value: "rgb(
|
|
1178
|
+
cssVar: "--color-brand-b-purple-900"
|
|
1179
|
+
name: "color-brand-b-purple-900"
|
|
1180
|
+
value: "rgb(58 18 95)"
|
|
635
1181
|
type: "color"
|
|
636
1182
|
group: "colors"
|
|
637
|
-
path: "Color/Brand
|
|
638
|
-
pathKey: "Color.Brand
|
|
1183
|
+
path: "Color/Brand B/Purple/900"
|
|
1184
|
+
pathKey: "Color.Brand B.Purple.900"
|
|
639
1185
|
scope: "global:core-primitives"
|
|
640
1186
|
scopeBucket: "global"
|
|
641
1187
|
scopeId: "core-primitives"
|
|
642
1188
|
selector: ":root"
|
|
643
1189
|
sourceFile: "Core (Primitives).tokens.json"
|
|
644
1190
|
-
|
|
645
|
-
cssVar: "--color-brand-b-
|
|
646
|
-
name: "color-brand-b-
|
|
647
|
-
value: "rgb(
|
|
1191
|
+
cssVar: "--color-brand-b-red-100"
|
|
1192
|
+
name: "color-brand-b-red-100"
|
|
1193
|
+
value: "rgb(255 255 255)"
|
|
648
1194
|
type: "color"
|
|
649
1195
|
group: "colors"
|
|
650
|
-
path: "Color/Brand B/
|
|
651
|
-
pathKey: "Color.Brand B.
|
|
1196
|
+
path: "Color/Brand B/Red/100"
|
|
1197
|
+
pathKey: "Color.Brand B.Red.100"
|
|
652
1198
|
scope: "global:core-primitives"
|
|
653
1199
|
scopeBucket: "global"
|
|
654
1200
|
scopeId: "core-primitives"
|
|
655
1201
|
selector: ":root"
|
|
656
1202
|
sourceFile: "Core (Primitives).tokens.json"
|
|
657
1203
|
-
|
|
658
|
-
cssVar: "--color-brand-b-
|
|
659
|
-
name: "color-brand-b-
|
|
660
|
-
value: "rgb(
|
|
1204
|
+
cssVar: "--color-brand-b-red-200"
|
|
1205
|
+
name: "color-brand-b-red-200"
|
|
1206
|
+
value: "rgb(255 204 204)"
|
|
661
1207
|
type: "color"
|
|
662
1208
|
group: "colors"
|
|
663
|
-
path: "Color/Brand B/
|
|
664
|
-
pathKey: "Color.Brand B.
|
|
1209
|
+
path: "Color/Brand B/Red/200"
|
|
1210
|
+
pathKey: "Color.Brand B.Red.200"
|
|
665
1211
|
scope: "global:core-primitives"
|
|
666
1212
|
scopeBucket: "global"
|
|
667
1213
|
scopeId: "core-primitives"
|
|
668
1214
|
selector: ":root"
|
|
669
1215
|
sourceFile: "Core (Primitives).tokens.json"
|
|
670
1216
|
-
|
|
671
|
-
cssVar: "--color-brand-b-
|
|
672
|
-
name: "color-brand-b-
|
|
673
|
-
value: "rgb(
|
|
1217
|
+
cssVar: "--color-brand-b-red-300"
|
|
1218
|
+
name: "color-brand-b-red-300"
|
|
1219
|
+
value: "rgb(255 153 153)"
|
|
674
1220
|
type: "color"
|
|
675
1221
|
group: "colors"
|
|
676
|
-
path: "Color/Brand B/
|
|
677
|
-
pathKey: "Color.Brand B.
|
|
1222
|
+
path: "Color/Brand B/Red/300"
|
|
1223
|
+
pathKey: "Color.Brand B.Red.300"
|
|
678
1224
|
scope: "global:core-primitives"
|
|
679
1225
|
scopeBucket: "global"
|
|
680
1226
|
scopeId: "core-primitives"
|
|
681
1227
|
selector: ":root"
|
|
682
1228
|
sourceFile: "Core (Primitives).tokens.json"
|
|
683
1229
|
-
|
|
684
|
-
cssVar: "--color-brand-b-
|
|
685
|
-
name: "color-brand-b-
|
|
686
|
-
value: "rgb(
|
|
1230
|
+
cssVar: "--color-brand-b-red-400"
|
|
1231
|
+
name: "color-brand-b-red-400"
|
|
1232
|
+
value: "rgb(255 102 102)"
|
|
687
1233
|
type: "color"
|
|
688
1234
|
group: "colors"
|
|
689
|
-
path: "Color/Brand B/
|
|
690
|
-
pathKey: "Color.Brand B.
|
|
1235
|
+
path: "Color/Brand B/Red/400"
|
|
1236
|
+
pathKey: "Color.Brand B.Red.400"
|
|
691
1237
|
scope: "global:core-primitives"
|
|
692
1238
|
scopeBucket: "global"
|
|
693
1239
|
scopeId: "core-primitives"
|
|
694
1240
|
selector: ":root"
|
|
695
1241
|
sourceFile: "Core (Primitives).tokens.json"
|
|
696
1242
|
-
|
|
697
|
-
cssVar: "--color-brand-b-
|
|
698
|
-
name: "color-brand-b-
|
|
699
|
-
value: "rgb(
|
|
1243
|
+
cssVar: "--color-brand-b-red-500"
|
|
1244
|
+
name: "color-brand-b-red-500"
|
|
1245
|
+
value: "rgb(255 51 51)"
|
|
700
1246
|
type: "color"
|
|
701
1247
|
group: "colors"
|
|
702
|
-
path: "Color/Brand B/
|
|
703
|
-
pathKey: "Color.Brand B.
|
|
1248
|
+
path: "Color/Brand B/Red/500"
|
|
1249
|
+
pathKey: "Color.Brand B.Red.500"
|
|
704
1250
|
scope: "global:core-primitives"
|
|
705
1251
|
scopeBucket: "global"
|
|
706
1252
|
scopeId: "core-primitives"
|
|
707
1253
|
selector: ":root"
|
|
708
1254
|
sourceFile: "Core (Primitives).tokens.json"
|
|
709
1255
|
-
|
|
710
|
-
cssVar: "--color-brand-b-
|
|
711
|
-
name: "color-brand-b-
|
|
712
|
-
value: "rgb(
|
|
1256
|
+
cssVar: "--color-brand-b-red-600"
|
|
1257
|
+
name: "color-brand-b-red-600"
|
|
1258
|
+
value: "rgb(255 0 0)"
|
|
713
1259
|
type: "color"
|
|
714
1260
|
group: "colors"
|
|
715
|
-
path: "Color/Brand B/
|
|
716
|
-
pathKey: "Color.Brand B.
|
|
1261
|
+
path: "Color/Brand B/Red/600"
|
|
1262
|
+
pathKey: "Color.Brand B.Red.600"
|
|
717
1263
|
scope: "global:core-primitives"
|
|
718
1264
|
scopeBucket: "global"
|
|
719
1265
|
scopeId: "core-primitives"
|
|
720
1266
|
selector: ":root"
|
|
721
1267
|
sourceFile: "Core (Primitives).tokens.json"
|
|
722
1268
|
-
|
|
723
|
-
cssVar: "--color-brand-b-
|
|
724
|
-
name: "color-brand-b-
|
|
725
|
-
value: "rgb(
|
|
1269
|
+
cssVar: "--color-brand-b-red-700"
|
|
1270
|
+
name: "color-brand-b-red-700"
|
|
1271
|
+
value: "rgb(153 0 0)"
|
|
726
1272
|
type: "color"
|
|
727
1273
|
group: "colors"
|
|
728
|
-
path: "Color/Brand B/
|
|
729
|
-
pathKey: "Color.Brand B.
|
|
1274
|
+
path: "Color/Brand B/Red/700"
|
|
1275
|
+
pathKey: "Color.Brand B.Red.700"
|
|
730
1276
|
scope: "global:core-primitives"
|
|
731
1277
|
scopeBucket: "global"
|
|
732
1278
|
scopeId: "core-primitives"
|
|
733
1279
|
selector: ":root"
|
|
734
1280
|
sourceFile: "Core (Primitives).tokens.json"
|
|
735
1281
|
-
|
|
736
|
-
cssVar: "--color-brand-b-
|
|
737
|
-
name: "color-brand-b-
|
|
738
|
-
value: "rgb(
|
|
1282
|
+
cssVar: "--color-brand-b-red-800"
|
|
1283
|
+
name: "color-brand-b-red-800"
|
|
1284
|
+
value: "rgb(102 0 0)"
|
|
739
1285
|
type: "color"
|
|
740
1286
|
group: "colors"
|
|
741
|
-
path: "Color/Brand B/
|
|
742
|
-
pathKey: "Color.Brand B.
|
|
1287
|
+
path: "Color/Brand B/Red/800"
|
|
1288
|
+
pathKey: "Color.Brand B.Red.800"
|
|
743
1289
|
scope: "global:core-primitives"
|
|
744
1290
|
scopeBucket: "global"
|
|
745
1291
|
scopeId: "core-primitives"
|
|
746
1292
|
selector: ":root"
|
|
747
1293
|
sourceFile: "Core (Primitives).tokens.json"
|
|
748
1294
|
-
|
|
749
|
-
cssVar: "--color-brand-b-red"
|
|
750
|
-
name: "color-brand-b-red"
|
|
751
|
-
value: "rgb(
|
|
1295
|
+
cssVar: "--color-brand-b-red-900"
|
|
1296
|
+
name: "color-brand-b-red-900"
|
|
1297
|
+
value: "rgb(51 0 0)"
|
|
752
1298
|
type: "color"
|
|
753
1299
|
group: "colors"
|
|
754
|
-
path: "Color/Brand B/Red"
|
|
755
|
-
pathKey: "Color.Brand B.Red"
|
|
1300
|
+
path: "Color/Brand B/Red/900"
|
|
1301
|
+
pathKey: "Color.Brand B.Red.900"
|
|
756
1302
|
scope: "global:core-primitives"
|
|
757
1303
|
scopeBucket: "global"
|
|
758
1304
|
scopeId: "core-primitives"
|
|
@@ -1552,44 +2098,304 @@ tokens:
|
|
|
1552
2098
|
selector: ":root"
|
|
1553
2099
|
sourceFile: "Appearance (Modes).tokens.json"
|
|
1554
2100
|
-
|
|
1555
|
-
cssVar: "--color-text-success"
|
|
1556
|
-
name: "color-text-success"
|
|
1557
|
-
value: "var(--brand-color-functional-success)"
|
|
1558
|
-
type: "color"
|
|
1559
|
-
group: "colors"
|
|
1560
|
-
path: "Color/Text/Success"
|
|
1561
|
-
pathKey: "Color.Text.Success"
|
|
1562
|
-
scope: "mode:dark"
|
|
1563
|
-
scopeBucket: "mode"
|
|
1564
|
-
scopeId: "dark"
|
|
1565
|
-
selector: ":root[data-mode=\"dark\"]"
|
|
1566
|
-
sourceFile: "Appearance (Modes).tokens.json"
|
|
2101
|
+
cssVar: "--color-text-success"
|
|
2102
|
+
name: "color-text-success"
|
|
2103
|
+
value: "var(--brand-color-functional-success)"
|
|
2104
|
+
type: "color"
|
|
2105
|
+
group: "colors"
|
|
2106
|
+
path: "Color/Text/Success"
|
|
2107
|
+
pathKey: "Color.Text.Success"
|
|
2108
|
+
scope: "mode:dark"
|
|
2109
|
+
scopeBucket: "mode"
|
|
2110
|
+
scopeId: "dark"
|
|
2111
|
+
selector: ":root[data-mode=\"dark\"]"
|
|
2112
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
2113
|
+
-
|
|
2114
|
+
cssVar: "--color-text-success"
|
|
2115
|
+
name: "color-text-success"
|
|
2116
|
+
value: "var(--brand-color-functional-success)"
|
|
2117
|
+
type: "color"
|
|
2118
|
+
group: "colors"
|
|
2119
|
+
path: "Color/Text/Success"
|
|
2120
|
+
pathKey: "Color.Text.Success"
|
|
2121
|
+
scope: "mode:light"
|
|
2122
|
+
scopeBucket: "mode"
|
|
2123
|
+
scopeId: "light"
|
|
2124
|
+
selector: ":root"
|
|
2125
|
+
sourceFile: "Appearance (Modes).tokens.json"
|
|
2126
|
+
-
|
|
2127
|
+
cssVar: "--color-transparent"
|
|
2128
|
+
name: "color-transparent"
|
|
2129
|
+
value: "rgba(0 0 0 / 0)"
|
|
2130
|
+
type: "color"
|
|
2131
|
+
group: "colors"
|
|
2132
|
+
path: "Color/Transparent"
|
|
2133
|
+
pathKey: "Color.Transparent"
|
|
2134
|
+
scope: "global:core-primitives"
|
|
2135
|
+
scopeBucket: "global"
|
|
2136
|
+
scopeId: "core-primitives"
|
|
2137
|
+
selector: ":root"
|
|
2138
|
+
sourceFile: "Core (Primitives).tokens.json"
|
|
2139
|
+
-
|
|
2140
|
+
cssVar: "--badge-border-radius"
|
|
2141
|
+
name: "badge-border-radius"
|
|
2142
|
+
value: "var(--size-radius-full)"
|
|
2143
|
+
type: "number"
|
|
2144
|
+
group: "components"
|
|
2145
|
+
path: "Badge/Border Radius"
|
|
2146
|
+
pathKey: "Badge.Border Radius"
|
|
2147
|
+
scope: "global:components-ui"
|
|
2148
|
+
scopeBucket: "global"
|
|
2149
|
+
scopeId: "components-ui"
|
|
2150
|
+
selector: ":root"
|
|
2151
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2152
|
+
-
|
|
2153
|
+
cssVar: "--badge-brand-container-background"
|
|
2154
|
+
name: "badge-brand-container-background"
|
|
2155
|
+
value: "var(--color-fill-brand)"
|
|
2156
|
+
type: "color"
|
|
2157
|
+
group: "components"
|
|
2158
|
+
path: "Badge/Brand/Container/Background"
|
|
2159
|
+
pathKey: "Badge.Brand.Container.Background"
|
|
2160
|
+
scope: "global:components-ui"
|
|
2161
|
+
scopeBucket: "global"
|
|
2162
|
+
scopeId: "components-ui"
|
|
2163
|
+
selector: ":root"
|
|
2164
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2165
|
+
-
|
|
2166
|
+
cssVar: "--badge-brand-text-color"
|
|
2167
|
+
name: "badge-brand-text-color"
|
|
2168
|
+
value: "var(--color-text-inverse)"
|
|
2169
|
+
type: "color"
|
|
2170
|
+
group: "components"
|
|
2171
|
+
path: "Badge/Brand/Text Color"
|
|
2172
|
+
pathKey: "Badge.Brand.Text Color"
|
|
2173
|
+
scope: "global:components-ui"
|
|
2174
|
+
scopeBucket: "global"
|
|
2175
|
+
scopeId: "components-ui"
|
|
2176
|
+
selector: ":root"
|
|
2177
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2178
|
+
-
|
|
2179
|
+
cssVar: "--badge-danger-container-background"
|
|
2180
|
+
name: "badge-danger-container-background"
|
|
2181
|
+
value: "var(--color-fill-danger)"
|
|
2182
|
+
type: "color"
|
|
2183
|
+
group: "components"
|
|
2184
|
+
path: "Badge/Danger/Container/Background"
|
|
2185
|
+
pathKey: "Badge.Danger.Container.Background"
|
|
2186
|
+
scope: "global:components-ui"
|
|
2187
|
+
scopeBucket: "global"
|
|
2188
|
+
scopeId: "components-ui"
|
|
2189
|
+
selector: ":root"
|
|
2190
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2191
|
+
-
|
|
2192
|
+
cssVar: "--badge-danger-text-color"
|
|
2193
|
+
name: "badge-danger-text-color"
|
|
2194
|
+
value: "var(--color-text-inverse)"
|
|
2195
|
+
type: "color"
|
|
2196
|
+
group: "components"
|
|
2197
|
+
path: "Badge/Danger/Text Color"
|
|
2198
|
+
pathKey: "Badge.Danger.Text Color"
|
|
2199
|
+
scope: "global:components-ui"
|
|
2200
|
+
scopeBucket: "global"
|
|
2201
|
+
scopeId: "components-ui"
|
|
2202
|
+
selector: ":root"
|
|
2203
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2204
|
+
-
|
|
2205
|
+
cssVar: "--badge-default-container-background"
|
|
2206
|
+
name: "badge-default-container-background"
|
|
2207
|
+
value: "var(--color-fill-subtle)"
|
|
2208
|
+
type: "color"
|
|
2209
|
+
group: "components"
|
|
2210
|
+
path: "Badge/Default/Container/Background"
|
|
2211
|
+
pathKey: "Badge.Default.Container.Background"
|
|
2212
|
+
scope: "global:components-ui"
|
|
2213
|
+
scopeBucket: "global"
|
|
2214
|
+
scopeId: "components-ui"
|
|
2215
|
+
selector: ":root"
|
|
2216
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2217
|
+
-
|
|
2218
|
+
cssVar: "--badge-default-text-color"
|
|
2219
|
+
name: "badge-default-text-color"
|
|
2220
|
+
value: "var(--color-text-default)"
|
|
2221
|
+
type: "color"
|
|
2222
|
+
group: "components"
|
|
2223
|
+
path: "Badge/Default/Text Color"
|
|
2224
|
+
pathKey: "Badge.Default.Text Color"
|
|
2225
|
+
scope: "global:components-ui"
|
|
2226
|
+
scopeBucket: "global"
|
|
2227
|
+
scopeId: "components-ui"
|
|
2228
|
+
selector: ":root"
|
|
2229
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2230
|
+
-
|
|
2231
|
+
cssVar: "--badge-font-family"
|
|
2232
|
+
name: "badge-font-family"
|
|
2233
|
+
value: "var(--typography-label-font-family)"
|
|
2234
|
+
type: "string"
|
|
2235
|
+
group: "components"
|
|
2236
|
+
path: "Badge/Font Family"
|
|
2237
|
+
pathKey: "Badge.Font Family"
|
|
2238
|
+
scope: "global:components-ui"
|
|
2239
|
+
scopeBucket: "global"
|
|
2240
|
+
scopeId: "components-ui"
|
|
2241
|
+
selector: ":root"
|
|
2242
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2243
|
+
-
|
|
2244
|
+
cssVar: "--badge-font-size-md"
|
|
2245
|
+
name: "badge-font-size-md"
|
|
2246
|
+
value: "var(--font-size-sm)"
|
|
2247
|
+
type: "number"
|
|
2248
|
+
group: "components"
|
|
2249
|
+
path: "Badge/Font Size Md"
|
|
2250
|
+
pathKey: "Badge.Font Size Md"
|
|
2251
|
+
scope: "global:components-ui"
|
|
2252
|
+
scopeBucket: "global"
|
|
2253
|
+
scopeId: "components-ui"
|
|
2254
|
+
selector: ":root"
|
|
2255
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2256
|
+
-
|
|
2257
|
+
cssVar: "--badge-font-size-sm"
|
|
2258
|
+
name: "badge-font-size-sm"
|
|
2259
|
+
value: "var(--font-size-xs)"
|
|
2260
|
+
type: "number"
|
|
2261
|
+
group: "components"
|
|
2262
|
+
path: "Badge/Font Size Sm"
|
|
2263
|
+
pathKey: "Badge.Font Size Sm"
|
|
2264
|
+
scope: "global:components-ui"
|
|
2265
|
+
scopeBucket: "global"
|
|
2266
|
+
scopeId: "components-ui"
|
|
2267
|
+
selector: ":root"
|
|
2268
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2269
|
+
-
|
|
2270
|
+
cssVar: "--badge-font-weight"
|
|
2271
|
+
name: "badge-font-weight"
|
|
2272
|
+
value: "var(--font-weight-700)"
|
|
2273
|
+
type: "string"
|
|
2274
|
+
group: "components"
|
|
2275
|
+
path: "Badge/Font Weight"
|
|
2276
|
+
pathKey: "Badge.Font Weight"
|
|
2277
|
+
scope: "global:components-ui"
|
|
2278
|
+
scopeBucket: "global"
|
|
2279
|
+
scopeId: "components-ui"
|
|
2280
|
+
selector: ":root"
|
|
2281
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2282
|
+
-
|
|
2283
|
+
cssVar: "--badge-gap"
|
|
2284
|
+
name: "badge-gap"
|
|
2285
|
+
value: "var(--size-spacing-100)"
|
|
2286
|
+
type: "number"
|
|
2287
|
+
group: "components"
|
|
2288
|
+
path: "Badge/Gap"
|
|
2289
|
+
pathKey: "Badge.Gap"
|
|
2290
|
+
scope: "global:components-ui"
|
|
2291
|
+
scopeBucket: "global"
|
|
2292
|
+
scopeId: "components-ui"
|
|
2293
|
+
selector: ":root"
|
|
2294
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2295
|
+
-
|
|
2296
|
+
cssVar: "--badge-line-height-md"
|
|
2297
|
+
name: "badge-line-height-md"
|
|
2298
|
+
value: "var(--line-height-sm)"
|
|
2299
|
+
type: "number"
|
|
2300
|
+
group: "components"
|
|
2301
|
+
path: "Badge/Line Height Md"
|
|
2302
|
+
pathKey: "Badge.Line Height Md"
|
|
2303
|
+
scope: "global:components-ui"
|
|
2304
|
+
scopeBucket: "global"
|
|
2305
|
+
scopeId: "components-ui"
|
|
2306
|
+
selector: ":root"
|
|
2307
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2308
|
+
-
|
|
2309
|
+
cssVar: "--badge-line-height-sm"
|
|
2310
|
+
name: "badge-line-height-sm"
|
|
2311
|
+
value: "var(--line-height-xs)"
|
|
2312
|
+
type: "number"
|
|
2313
|
+
group: "components"
|
|
2314
|
+
path: "Badge/Line Height Sm"
|
|
2315
|
+
pathKey: "Badge.Line Height Sm"
|
|
2316
|
+
scope: "global:components-ui"
|
|
2317
|
+
scopeBucket: "global"
|
|
2318
|
+
scopeId: "components-ui"
|
|
2319
|
+
selector: ":root"
|
|
2320
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2321
|
+
-
|
|
2322
|
+
cssVar: "--badge-padding-block-md"
|
|
2323
|
+
name: "badge-padding-block-md"
|
|
2324
|
+
value: "var(--size-spacing-100)"
|
|
2325
|
+
type: "number"
|
|
2326
|
+
group: "components"
|
|
2327
|
+
path: "Badge/Padding Block Md"
|
|
2328
|
+
pathKey: "Badge.Padding Block Md"
|
|
2329
|
+
scope: "global:components-ui"
|
|
2330
|
+
scopeBucket: "global"
|
|
2331
|
+
scopeId: "components-ui"
|
|
2332
|
+
selector: ":root"
|
|
2333
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2334
|
+
-
|
|
2335
|
+
cssVar: "--badge-padding-block-sm"
|
|
2336
|
+
name: "badge-padding-block-sm"
|
|
2337
|
+
value: "var(--size-spacing-000)"
|
|
2338
|
+
type: "number"
|
|
2339
|
+
group: "components"
|
|
2340
|
+
path: "Badge/Padding Block Sm"
|
|
2341
|
+
pathKey: "Badge.Padding Block Sm"
|
|
2342
|
+
scope: "global:components-ui"
|
|
2343
|
+
scopeBucket: "global"
|
|
2344
|
+
scopeId: "components-ui"
|
|
2345
|
+
selector: ":root"
|
|
2346
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2347
|
+
-
|
|
2348
|
+
cssVar: "--badge-padding-inline-md"
|
|
2349
|
+
name: "badge-padding-inline-md"
|
|
2350
|
+
value: "var(--size-spacing-300)"
|
|
2351
|
+
type: "number"
|
|
2352
|
+
group: "components"
|
|
2353
|
+
path: "Badge/Padding Inline Md"
|
|
2354
|
+
pathKey: "Badge.Padding Inline Md"
|
|
2355
|
+
scope: "global:components-ui"
|
|
2356
|
+
scopeBucket: "global"
|
|
2357
|
+
scopeId: "components-ui"
|
|
2358
|
+
selector: ":root"
|
|
2359
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2360
|
+
-
|
|
2361
|
+
cssVar: "--badge-padding-inline-sm"
|
|
2362
|
+
name: "badge-padding-inline-sm"
|
|
2363
|
+
value: "var(--size-spacing-200)"
|
|
2364
|
+
type: "number"
|
|
2365
|
+
group: "components"
|
|
2366
|
+
path: "Badge/Padding Inline Sm"
|
|
2367
|
+
pathKey: "Badge.Padding Inline Sm"
|
|
2368
|
+
scope: "global:components-ui"
|
|
2369
|
+
scopeBucket: "global"
|
|
2370
|
+
scopeId: "components-ui"
|
|
2371
|
+
selector: ":root"
|
|
2372
|
+
sourceFile: "Components (UI).tokens.json"
|
|
1567
2373
|
-
|
|
1568
|
-
cssVar: "--
|
|
1569
|
-
name: "
|
|
1570
|
-
value: "var(--
|
|
2374
|
+
cssVar: "--badge-success-container-background"
|
|
2375
|
+
name: "badge-success-container-background"
|
|
2376
|
+
value: "var(--color-fill-success)"
|
|
1571
2377
|
type: "color"
|
|
1572
|
-
group: "
|
|
1573
|
-
path: "
|
|
1574
|
-
pathKey: "
|
|
1575
|
-
scope: "
|
|
1576
|
-
scopeBucket: "
|
|
1577
|
-
scopeId: "
|
|
2378
|
+
group: "components"
|
|
2379
|
+
path: "Badge/Success/Container/Background"
|
|
2380
|
+
pathKey: "Badge.Success.Container.Background"
|
|
2381
|
+
scope: "global:components-ui"
|
|
2382
|
+
scopeBucket: "global"
|
|
2383
|
+
scopeId: "components-ui"
|
|
1578
2384
|
selector: ":root"
|
|
1579
|
-
sourceFile: "
|
|
2385
|
+
sourceFile: "Components (UI).tokens.json"
|
|
1580
2386
|
-
|
|
1581
|
-
cssVar: "--color
|
|
1582
|
-
name: "color
|
|
1583
|
-
value: "
|
|
2387
|
+
cssVar: "--badge-success-text-color"
|
|
2388
|
+
name: "badge-success-text-color"
|
|
2389
|
+
value: "var(--color-text-inverse)"
|
|
1584
2390
|
type: "color"
|
|
1585
|
-
group: "
|
|
1586
|
-
path: "Color
|
|
1587
|
-
pathKey: "Color
|
|
1588
|
-
scope: "global:
|
|
2391
|
+
group: "components"
|
|
2392
|
+
path: "Badge/Success/Text Color"
|
|
2393
|
+
pathKey: "Badge.Success.Text Color"
|
|
2394
|
+
scope: "global:components-ui"
|
|
1589
2395
|
scopeBucket: "global"
|
|
1590
|
-
scopeId: "
|
|
2396
|
+
scopeId: "components-ui"
|
|
1591
2397
|
selector: ":root"
|
|
1592
|
-
sourceFile: "
|
|
2398
|
+
sourceFile: "Components (UI).tokens.json"
|
|
1593
2399
|
-
|
|
1594
2400
|
cssVar: "--button-border-color-disabled"
|
|
1595
2401
|
name: "button-border-color-disabled"
|
|
@@ -2279,6 +3085,45 @@ tokens:
|
|
|
2279
3085
|
scopeId: "components-ui"
|
|
2280
3086
|
selector: ":root"
|
|
2281
3087
|
sourceFile: "Components (UI).tokens.json"
|
|
3088
|
+
-
|
|
3089
|
+
cssVar: "--checkbox-border-size-default"
|
|
3090
|
+
name: "checkbox-border-size-default"
|
|
3091
|
+
value: "var(--size-border-100)"
|
|
3092
|
+
type: "number"
|
|
3093
|
+
group: "components"
|
|
3094
|
+
path: "Input/Checkbox/Border Size Default"
|
|
3095
|
+
pathKey: "Input.Checkbox.Border Size Default"
|
|
3096
|
+
scope: "global:components-ui"
|
|
3097
|
+
scopeBucket: "global"
|
|
3098
|
+
scopeId: "components-ui"
|
|
3099
|
+
selector: ":root"
|
|
3100
|
+
sourceFile: "Components (UI).tokens.json"
|
|
3101
|
+
-
|
|
3102
|
+
cssVar: "--checkbox-border-size-disabled"
|
|
3103
|
+
name: "checkbox-border-size-disabled"
|
|
3104
|
+
value: "var(--size-border-000)"
|
|
3105
|
+
type: "number"
|
|
3106
|
+
group: "components"
|
|
3107
|
+
path: "Input/Checkbox/Border Size Disabled"
|
|
3108
|
+
pathKey: "Input.Checkbox.Border Size Disabled"
|
|
3109
|
+
scope: "global:components-ui"
|
|
3110
|
+
scopeBucket: "global"
|
|
3111
|
+
scopeId: "components-ui"
|
|
3112
|
+
selector: ":root"
|
|
3113
|
+
sourceFile: "Components (UI).tokens.json"
|
|
3114
|
+
-
|
|
3115
|
+
cssVar: "--checkbox-border-size-hover"
|
|
3116
|
+
name: "checkbox-border-size-hover"
|
|
3117
|
+
value: "var(--size-border-200)"
|
|
3118
|
+
type: "number"
|
|
3119
|
+
group: "components"
|
|
3120
|
+
path: "Input/Checkbox/Border Size Hover"
|
|
3121
|
+
pathKey: "Input.Checkbox.Border Size Hover"
|
|
3122
|
+
scope: "global:components-ui"
|
|
3123
|
+
scopeBucket: "global"
|
|
3124
|
+
scopeId: "components-ui"
|
|
3125
|
+
selector: ":root"
|
|
3126
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2282
3127
|
-
|
|
2283
3128
|
cssVar: "--form-border-radius"
|
|
2284
3129
|
name: "form-border-radius"
|
|
@@ -2526,6 +3371,19 @@ tokens:
|
|
|
2526
3371
|
scopeId: "components-ui"
|
|
2527
3372
|
selector: ":root"
|
|
2528
3373
|
sourceFile: "Components (UI).tokens.json"
|
|
3374
|
+
-
|
|
3375
|
+
cssVar: "--input-checkbox-border-color-disabled"
|
|
3376
|
+
name: "input-checkbox-border-color-disabled"
|
|
3377
|
+
value: "var(--color-border-disabled)"
|
|
3378
|
+
type: "color"
|
|
3379
|
+
group: "components"
|
|
3380
|
+
path: "Input/Checkbox/Border/Color Disabled"
|
|
3381
|
+
pathKey: "Input.Checkbox.Border.Color Disabled"
|
|
3382
|
+
scope: "global:components-ui"
|
|
3383
|
+
scopeBucket: "global"
|
|
3384
|
+
scopeId: "components-ui"
|
|
3385
|
+
selector: ":root"
|
|
3386
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2529
3387
|
-
|
|
2530
3388
|
cssVar: "--input-checkbox-border-color-focus"
|
|
2531
3389
|
name: "input-checkbox-border-color-focus"
|
|
@@ -2542,7 +3400,7 @@ tokens:
|
|
|
2542
3400
|
-
|
|
2543
3401
|
cssVar: "--input-checkbox-border-color-hover"
|
|
2544
3402
|
name: "input-checkbox-border-color-hover"
|
|
2545
|
-
value: "var(--color-border-
|
|
3403
|
+
value: "var(--color-border-strong)"
|
|
2546
3404
|
type: "color"
|
|
2547
3405
|
group: "components"
|
|
2548
3406
|
path: "Input/Checkbox/Border/Color Hover"
|
|
@@ -2604,6 +3462,19 @@ tokens:
|
|
|
2604
3462
|
scopeId: "components-ui"
|
|
2605
3463
|
selector: ":root"
|
|
2606
3464
|
sourceFile: "Components (UI).tokens.json"
|
|
3465
|
+
-
|
|
3466
|
+
cssVar: "--input-checkbox-container-background-disabled"
|
|
3467
|
+
name: "input-checkbox-container-background-disabled"
|
|
3468
|
+
value: "var(--color-fill-disabled)"
|
|
3469
|
+
type: "color"
|
|
3470
|
+
group: "components"
|
|
3471
|
+
path: "Input/Checkbox/Container/Background Disabled"
|
|
3472
|
+
pathKey: "Input.Checkbox.Container.Background Disabled"
|
|
3473
|
+
scope: "global:components-ui"
|
|
3474
|
+
scopeBucket: "global"
|
|
3475
|
+
scopeId: "components-ui"
|
|
3476
|
+
selector: ":root"
|
|
3477
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2607
3478
|
-
|
|
2608
3479
|
cssVar: "--input-checkbox-container-background-focus"
|
|
2609
3480
|
name: "input-checkbox-container-background-focus"
|
|
@@ -2656,10 +3527,23 @@ tokens:
|
|
|
2656
3527
|
scopeId: "components-ui"
|
|
2657
3528
|
selector: ":root"
|
|
2658
3529
|
sourceFile: "Components (UI).tokens.json"
|
|
3530
|
+
-
|
|
3531
|
+
cssVar: "--input-checkbox-text-color-disabled"
|
|
3532
|
+
name: "input-checkbox-text-color-disabled"
|
|
3533
|
+
value: "var(--color-text-disabled)"
|
|
3534
|
+
type: "color"
|
|
3535
|
+
group: "components"
|
|
3536
|
+
path: "Input/Checkbox/Text Color Disabled"
|
|
3537
|
+
pathKey: "Input.Checkbox.Text Color Disabled"
|
|
3538
|
+
scope: "global:components-ui"
|
|
3539
|
+
scopeBucket: "global"
|
|
3540
|
+
scopeId: "components-ui"
|
|
3541
|
+
selector: ":root"
|
|
3542
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2659
3543
|
-
|
|
2660
3544
|
cssVar: "--input-checkbox-text-color-hover"
|
|
2661
3545
|
name: "input-checkbox-text-color-hover"
|
|
2662
|
-
value: "var(--color-text-
|
|
3546
|
+
value: "var(--color-text-strong)"
|
|
2663
3547
|
type: "color"
|
|
2664
3548
|
group: "components"
|
|
2665
3549
|
path: "Input/Checkbox/Text Color Hover"
|
|
@@ -2825,6 +3709,188 @@ tokens:
|
|
|
2825
3709
|
scopeId: "components-ui"
|
|
2826
3710
|
selector: ":root"
|
|
2827
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"
|
|
3876
|
+
scope: "global:components-ui"
|
|
3877
|
+
scopeBucket: "global"
|
|
3878
|
+
scopeId: "components-ui"
|
|
3879
|
+
selector: ":root"
|
|
3880
|
+
sourceFile: "Components (UI).tokens.json"
|
|
3881
|
+
-
|
|
3882
|
+
cssVar: "--input-radio-text-color-hover"
|
|
3883
|
+
name: "input-radio-text-color-hover"
|
|
3884
|
+
value: "var(--color-text-strong)"
|
|
3885
|
+
type: "color"
|
|
3886
|
+
group: "components"
|
|
3887
|
+
path: "Input/Radio/Text Color Hover"
|
|
3888
|
+
pathKey: "Input.Radio.Text Color Hover"
|
|
3889
|
+
scope: "global:components-ui"
|
|
3890
|
+
scopeBucket: "global"
|
|
3891
|
+
scopeId: "components-ui"
|
|
3892
|
+
selector: ":root"
|
|
3893
|
+
sourceFile: "Components (UI).tokens.json"
|
|
2828
3894
|
-
|
|
2829
3895
|
cssVar: "--input-text-border-color-active"
|
|
2830
3896
|
name: "input-text-border-color-active"
|
|
@@ -3150,6 +4216,45 @@ tokens:
|
|
|
3150
4216
|
scopeId: "components-ui"
|
|
3151
4217
|
selector: ":root"
|
|
3152
4218
|
sourceFile: "Components (UI).tokens.json"
|
|
4219
|
+
-
|
|
4220
|
+
cssVar: "--radio-border-size-default"
|
|
4221
|
+
name: "radio-border-size-default"
|
|
4222
|
+
value: "var(--size-border-100)"
|
|
4223
|
+
type: "number"
|
|
4224
|
+
group: "components"
|
|
4225
|
+
path: "Input/Radio/Border Size Default"
|
|
4226
|
+
pathKey: "Input.Radio.Border Size Default"
|
|
4227
|
+
scope: "global:components-ui"
|
|
4228
|
+
scopeBucket: "global"
|
|
4229
|
+
scopeId: "components-ui"
|
|
4230
|
+
selector: ":root"
|
|
4231
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4232
|
+
-
|
|
4233
|
+
cssVar: "--radio-border-size-disabled"
|
|
4234
|
+
name: "radio-border-size-disabled"
|
|
4235
|
+
value: "var(--size-border-000)"
|
|
4236
|
+
type: "number"
|
|
4237
|
+
group: "components"
|
|
4238
|
+
path: "Input/Radio/Border Size Disabled"
|
|
4239
|
+
pathKey: "Input.Radio.Border Size Disabled"
|
|
4240
|
+
scope: "global:components-ui"
|
|
4241
|
+
scopeBucket: "global"
|
|
4242
|
+
scopeId: "components-ui"
|
|
4243
|
+
selector: ":root"
|
|
4244
|
+
sourceFile: "Components (UI).tokens.json"
|
|
4245
|
+
-
|
|
4246
|
+
cssVar: "--radio-border-size-hover"
|
|
4247
|
+
name: "radio-border-size-hover"
|
|
4248
|
+
value: "var(--size-border-200)"
|
|
4249
|
+
type: "number"
|
|
4250
|
+
group: "components"
|
|
4251
|
+
path: "Input/Radio/Border Size Hover"
|
|
4252
|
+
pathKey: "Input.Radio.Border Size Hover"
|
|
4253
|
+
scope: "global:components-ui"
|
|
4254
|
+
scopeBucket: "global"
|
|
4255
|
+
scopeId: "components-ui"
|
|
4256
|
+
selector: ":root"
|
|
4257
|
+
sourceFile: "Components (UI).tokens.json"
|
|
3153
4258
|
-
|
|
3154
4259
|
cssVar: "--size-border-000"
|
|
3155
4260
|
name: "size-border-000"
|