@cdx-ui/styles 0.0.1-beta.9 → 0.0.1-beta.90
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 +116 -20
- package/css/theme.css +201 -85
- package/css/vanilla.css +124 -54
- package/lib/commonjs/applyThemeOverride.js +154 -0
- package/lib/commonjs/applyThemeOverride.js.map +1 -0
- package/lib/commonjs/index.js +82 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/palette.js +262 -0
- package/lib/commonjs/palette.js.map +1 -0
- package/lib/commonjs/theming.js +255 -0
- package/lib/commonjs/theming.js.map +1 -0
- package/lib/commonjs/types.js +75 -0
- package/lib/commonjs/types.js.map +1 -0
- package/lib/commonjs/useCdxFonts.js +4 -231
- package/lib/commonjs/useCdxFonts.js.map +1 -1
- package/lib/commonjs/useForgeFonts.js +237 -0
- package/lib/commonjs/useForgeFonts.js.map +1 -0
- package/lib/module/applyThemeOverride.js +149 -0
- package/lib/module/applyThemeOverride.js.map +1 -0
- package/lib/module/index.js +11 -20
- package/lib/module/index.js.map +1 -1
- package/lib/module/palette.js +257 -0
- package/lib/module/palette.js.map +1 -0
- package/lib/module/theming.js +239 -0
- package/lib/module/theming.js.map +1 -0
- package/lib/module/types.js +71 -0
- package/lib/module/types.js.map +1 -0
- package/lib/module/useCdxFonts.js +3 -219
- package/lib/module/useCdxFonts.js.map +1 -1
- package/lib/module/useForgeFonts.js +223 -0
- package/lib/module/useForgeFonts.js.map +1 -0
- package/lib/runtime/prestige-vs-default.json +1 -0
- package/lib/runtime/pulse-vs-default.json +1 -0
- package/lib/runtime/token-to-css-var.json +672 -0
- package/lib/typescript/applyThemeOverride.d.ts +26 -0
- package/lib/typescript/applyThemeOverride.d.ts.map +1 -0
- package/lib/typescript/index.d.ts +8 -57
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/palette.d.ts +60 -0
- package/lib/typescript/palette.d.ts.map +1 -0
- package/lib/typescript/theming.d.ts +40 -0
- package/lib/typescript/theming.d.ts.map +1 -0
- package/lib/typescript/types.d.ts +90 -0
- package/lib/typescript/types.d.ts.map +1 -0
- package/lib/typescript/useCdxFonts.d.ts +3 -11
- package/lib/typescript/useCdxFonts.d.ts.map +1 -1
- package/lib/typescript/useForgeFonts.d.ts +12 -0
- package/lib/typescript/useForgeFonts.d.ts.map +1 -0
- package/package.json +27 -8
- package/runtime/prestige-vs-default.json +1 -0
- package/runtime/pulse-vs-default.json +1 -0
- package/runtime/token-to-css-var.json +672 -0
- package/src/__tests__/applyThemeOverride.test.ts +552 -0
- package/src/__tests__/generateColorScale.test.ts +296 -0
- package/src/__tests__/presetJson.test.ts +120 -0
- package/src/__tests__/sd.config.test.ts +856 -0
- package/src/__tests__/theming.test.ts +647 -0
- package/src/__tests__/types.test.ts +72 -0
- package/src/__tests__/useCdxFonts.test.ts +27 -0
- package/src/__tests__/useForgeFonts.test.ts +226 -0
- package/src/applyThemeOverride.ts +139 -0
- package/src/index.ts +36 -60
- package/src/palette.ts +307 -0
- package/src/theming.ts +268 -0
- package/src/types.ts +112 -0
- package/src/useCdxFonts.ts +3 -229
- package/src/useForgeFonts.ts +230 -0
- package/tokens/presets/.manifest.json +3 -3
- package/tokens/presets/poise.json +319 -39
- package/tokens/presets/prestige.json +1 -1
- package/tokens/presets/pulse.json +1 -1
|
@@ -0,0 +1,672 @@
|
|
|
1
|
+
{
|
|
2
|
+
"blur.2xl": "--blur-2xl",
|
|
3
|
+
"blur.3xl": "--blur-3xl",
|
|
4
|
+
"blur.lg": "--blur-lg",
|
|
5
|
+
"blur.md": "--blur-md",
|
|
6
|
+
"blur.sm": "--blur-sm",
|
|
7
|
+
"blur.xl": "--blur-xl",
|
|
8
|
+
"blur.xs": "--blur-xs",
|
|
9
|
+
"breakpoint.2xl": "--breakpoint-2xl",
|
|
10
|
+
"breakpoint.lg": "--breakpoint-lg",
|
|
11
|
+
"breakpoint.md": "--breakpoint-md",
|
|
12
|
+
"breakpoint.sm": "--breakpoint-sm",
|
|
13
|
+
"breakpoint.xl": "--breakpoint-xl",
|
|
14
|
+
"color.accent.100": "--color-accent-100",
|
|
15
|
+
"color.accent.200": "--color-accent-200",
|
|
16
|
+
"color.accent.300": "--color-accent-300",
|
|
17
|
+
"color.accent.400": "--color-accent-400",
|
|
18
|
+
"color.accent.50": "--color-accent-50",
|
|
19
|
+
"color.accent.500": "--color-accent-500",
|
|
20
|
+
"color.accent.600": "--color-accent-600",
|
|
21
|
+
"color.accent.700": "--color-accent-700",
|
|
22
|
+
"color.accent.800": "--color-accent-800",
|
|
23
|
+
"color.accent.900": "--color-accent-900",
|
|
24
|
+
"color.accent.950": "--color-accent-950",
|
|
25
|
+
"color.accent.input": "--color-accent-input",
|
|
26
|
+
"color.amber.100": "--color-amber-100",
|
|
27
|
+
"color.amber.200": "--color-amber-200",
|
|
28
|
+
"color.amber.300": "--color-amber-300",
|
|
29
|
+
"color.amber.400": "--color-amber-400",
|
|
30
|
+
"color.amber.50": "--color-amber-50",
|
|
31
|
+
"color.amber.500": "--color-amber-500",
|
|
32
|
+
"color.amber.600": "--color-amber-600",
|
|
33
|
+
"color.amber.700": "--color-amber-700",
|
|
34
|
+
"color.amber.800": "--color-amber-800",
|
|
35
|
+
"color.amber.900": "--color-amber-900",
|
|
36
|
+
"color.amber.950": "--color-amber-950",
|
|
37
|
+
"color.base.100": "--color-base-100",
|
|
38
|
+
"color.base.200": "--color-base-200",
|
|
39
|
+
"color.base.300": "--color-base-300",
|
|
40
|
+
"color.base.400": "--color-base-400",
|
|
41
|
+
"color.base.50": "--color-base-50",
|
|
42
|
+
"color.base.500": "--color-base-500",
|
|
43
|
+
"color.base.600": "--color-base-600",
|
|
44
|
+
"color.base.700": "--color-base-700",
|
|
45
|
+
"color.base.800": "--color-base-800",
|
|
46
|
+
"color.base.900": "--color-base-900",
|
|
47
|
+
"color.base.950": "--color-base-950",
|
|
48
|
+
"color.black": "--color-black",
|
|
49
|
+
"color.blue.100": "--color-blue-100",
|
|
50
|
+
"color.blue.200": "--color-blue-200",
|
|
51
|
+
"color.blue.300": "--color-blue-300",
|
|
52
|
+
"color.blue.400": "--color-blue-400",
|
|
53
|
+
"color.blue.50": "--color-blue-50",
|
|
54
|
+
"color.blue.500": "--color-blue-500",
|
|
55
|
+
"color.blue.600": "--color-blue-600",
|
|
56
|
+
"color.blue.700": "--color-blue-700",
|
|
57
|
+
"color.blue.800": "--color-blue-800",
|
|
58
|
+
"color.blue.900": "--color-blue-900",
|
|
59
|
+
"color.blue.950": "--color-blue-950",
|
|
60
|
+
"color.brand.100": "--color-brand-100",
|
|
61
|
+
"color.brand.200": "--color-brand-200",
|
|
62
|
+
"color.brand.300": "--color-brand-300",
|
|
63
|
+
"color.brand.400": "--color-brand-400",
|
|
64
|
+
"color.brand.50": "--color-brand-50",
|
|
65
|
+
"color.brand.500": "--color-brand-500",
|
|
66
|
+
"color.brand.600": "--color-brand-600",
|
|
67
|
+
"color.brand.700": "--color-brand-700",
|
|
68
|
+
"color.brand.800": "--color-brand-800",
|
|
69
|
+
"color.brand.900": "--color-brand-900",
|
|
70
|
+
"color.brand.950": "--color-brand-950",
|
|
71
|
+
"color.brand.input": "--color-brand-input",
|
|
72
|
+
"color.green.100": "--color-green-100",
|
|
73
|
+
"color.green.200": "--color-green-200",
|
|
74
|
+
"color.green.300": "--color-green-300",
|
|
75
|
+
"color.green.400": "--color-green-400",
|
|
76
|
+
"color.green.50": "--color-green-50",
|
|
77
|
+
"color.green.500": "--color-green-500",
|
|
78
|
+
"color.green.600": "--color-green-600",
|
|
79
|
+
"color.green.700": "--color-green-700",
|
|
80
|
+
"color.green.800": "--color-green-800",
|
|
81
|
+
"color.green.900": "--color-green-900",
|
|
82
|
+
"color.green.950": "--color-green-950",
|
|
83
|
+
"color.neutral.100": "--color-neutral-100",
|
|
84
|
+
"color.neutral.200": "--color-neutral-200",
|
|
85
|
+
"color.neutral.300": "--color-neutral-300",
|
|
86
|
+
"color.neutral.400": "--color-neutral-400",
|
|
87
|
+
"color.neutral.50": "--color-neutral-50",
|
|
88
|
+
"color.neutral.500": "--color-neutral-500",
|
|
89
|
+
"color.neutral.600": "--color-neutral-600",
|
|
90
|
+
"color.neutral.700": "--color-neutral-700",
|
|
91
|
+
"color.neutral.800": "--color-neutral-800",
|
|
92
|
+
"color.neutral.900": "--color-neutral-900",
|
|
93
|
+
"color.neutral.950": "--color-neutral-950",
|
|
94
|
+
"color.orange.100": "--color-orange-100",
|
|
95
|
+
"color.orange.200": "--color-orange-200",
|
|
96
|
+
"color.orange.300": "--color-orange-300",
|
|
97
|
+
"color.orange.400": "--color-orange-400",
|
|
98
|
+
"color.orange.50": "--color-orange-50",
|
|
99
|
+
"color.orange.500": "--color-orange-500",
|
|
100
|
+
"color.orange.600": "--color-orange-600",
|
|
101
|
+
"color.orange.700": "--color-orange-700",
|
|
102
|
+
"color.orange.800": "--color-orange-800",
|
|
103
|
+
"color.orange.900": "--color-orange-900",
|
|
104
|
+
"color.orange.950": "--color-orange-950",
|
|
105
|
+
"color.pink.100": "--color-pink-100",
|
|
106
|
+
"color.pink.200": "--color-pink-200",
|
|
107
|
+
"color.pink.300": "--color-pink-300",
|
|
108
|
+
"color.pink.400": "--color-pink-400",
|
|
109
|
+
"color.pink.50": "--color-pink-50",
|
|
110
|
+
"color.pink.500": "--color-pink-500",
|
|
111
|
+
"color.pink.600": "--color-pink-600",
|
|
112
|
+
"color.pink.700": "--color-pink-700",
|
|
113
|
+
"color.pink.800": "--color-pink-800",
|
|
114
|
+
"color.pink.900": "--color-pink-900",
|
|
115
|
+
"color.pink.950": "--color-pink-950",
|
|
116
|
+
"color.purple.100": "--color-purple-100",
|
|
117
|
+
"color.purple.200": "--color-purple-200",
|
|
118
|
+
"color.purple.300": "--color-purple-300",
|
|
119
|
+
"color.purple.400": "--color-purple-400",
|
|
120
|
+
"color.purple.50": "--color-purple-50",
|
|
121
|
+
"color.purple.500": "--color-purple-500",
|
|
122
|
+
"color.purple.600": "--color-purple-600",
|
|
123
|
+
"color.purple.700": "--color-purple-700",
|
|
124
|
+
"color.purple.800": "--color-purple-800",
|
|
125
|
+
"color.purple.900": "--color-purple-900",
|
|
126
|
+
"color.purple.950": "--color-purple-950",
|
|
127
|
+
"color.red.100": "--color-red-100",
|
|
128
|
+
"color.red.200": "--color-red-200",
|
|
129
|
+
"color.red.300": "--color-red-300",
|
|
130
|
+
"color.red.400": "--color-red-400",
|
|
131
|
+
"color.red.50": "--color-red-50",
|
|
132
|
+
"color.red.500": "--color-red-500",
|
|
133
|
+
"color.red.600": "--color-red-600",
|
|
134
|
+
"color.red.700": "--color-red-700",
|
|
135
|
+
"color.red.800": "--color-red-800",
|
|
136
|
+
"color.red.900": "--color-red-900",
|
|
137
|
+
"color.red.950": "--color-red-950",
|
|
138
|
+
"color.sky.100": "--color-sky-100",
|
|
139
|
+
"color.sky.200": "--color-sky-200",
|
|
140
|
+
"color.sky.300": "--color-sky-300",
|
|
141
|
+
"color.sky.400": "--color-sky-400",
|
|
142
|
+
"color.sky.50": "--color-sky-50",
|
|
143
|
+
"color.sky.500": "--color-sky-500",
|
|
144
|
+
"color.sky.600": "--color-sky-600",
|
|
145
|
+
"color.sky.700": "--color-sky-700",
|
|
146
|
+
"color.sky.800": "--color-sky-800",
|
|
147
|
+
"color.sky.900": "--color-sky-900",
|
|
148
|
+
"color.sky.950": "--color-sky-950",
|
|
149
|
+
"color.teal.100": "--color-teal-100",
|
|
150
|
+
"color.teal.200": "--color-teal-200",
|
|
151
|
+
"color.teal.300": "--color-teal-300",
|
|
152
|
+
"color.teal.400": "--color-teal-400",
|
|
153
|
+
"color.teal.50": "--color-teal-50",
|
|
154
|
+
"color.teal.500": "--color-teal-500",
|
|
155
|
+
"color.teal.600": "--color-teal-600",
|
|
156
|
+
"color.teal.700": "--color-teal-700",
|
|
157
|
+
"color.teal.800": "--color-teal-800",
|
|
158
|
+
"color.teal.900": "--color-teal-900",
|
|
159
|
+
"color.teal.950": "--color-teal-950",
|
|
160
|
+
"color.transparent": "--color-transparent",
|
|
161
|
+
"color.white": "--color-white",
|
|
162
|
+
"color.yellow.100": "--color-yellow-100",
|
|
163
|
+
"color.yellow.200": "--color-yellow-200",
|
|
164
|
+
"color.yellow.300": "--color-yellow-300",
|
|
165
|
+
"color.yellow.400": "--color-yellow-400",
|
|
166
|
+
"color.yellow.50": "--color-yellow-50",
|
|
167
|
+
"color.yellow.500": "--color-yellow-500",
|
|
168
|
+
"color.yellow.600": "--color-yellow-600",
|
|
169
|
+
"color.yellow.700": "--color-yellow-700",
|
|
170
|
+
"color.yellow.800": "--color-yellow-800",
|
|
171
|
+
"color.yellow.900": "--color-yellow-900",
|
|
172
|
+
"color.yellow.950": "--color-yellow-950",
|
|
173
|
+
"container.2xl": "--container-2xl",
|
|
174
|
+
"container.2xs": "--container-2xs",
|
|
175
|
+
"container.3xl": "--container-3xl",
|
|
176
|
+
"container.3xs": "--container-3xs",
|
|
177
|
+
"container.4xl": "--container-4xl",
|
|
178
|
+
"container.5xl": "--container-5xl",
|
|
179
|
+
"container.6xl": "--container-6xl",
|
|
180
|
+
"container.7xl": "--container-7xl",
|
|
181
|
+
"container.lg": "--container-lg",
|
|
182
|
+
"container.md": "--container-md",
|
|
183
|
+
"container.sm": "--container-sm",
|
|
184
|
+
"container.xl": "--container-xl",
|
|
185
|
+
"container.xs": "--container-xs",
|
|
186
|
+
"drop-shadow.2xl": "--drop-shadow-2xl",
|
|
187
|
+
"drop-shadow.lg": "--drop-shadow-lg",
|
|
188
|
+
"drop-shadow.md": "--drop-shadow-md",
|
|
189
|
+
"drop-shadow.sm": "--drop-shadow-sm",
|
|
190
|
+
"drop-shadow.xl": "--drop-shadow-xl",
|
|
191
|
+
"drop-shadow.xs": "--drop-shadow-xs",
|
|
192
|
+
"font-weight.black": "--font-weight-black",
|
|
193
|
+
"font-weight.bold": "--font-weight-bold",
|
|
194
|
+
"font-weight.extrabold": "--font-weight-extrabold",
|
|
195
|
+
"font-weight.extralight": "--font-weight-extralight",
|
|
196
|
+
"font-weight.light": "--font-weight-light",
|
|
197
|
+
"font-weight.medium": "--font-weight-medium",
|
|
198
|
+
"font-weight.normal": "--font-weight-normal",
|
|
199
|
+
"font-weight.semibold": "--font-weight-semibold",
|
|
200
|
+
"font-weight.thin": "--font-weight-thin",
|
|
201
|
+
"font.body": "--font-body",
|
|
202
|
+
"font.body-bold": "--font-body-bold",
|
|
203
|
+
"font.body-bold-italic": "--font-body-bold-italic",
|
|
204
|
+
"font.body-italic": "--font-body-italic",
|
|
205
|
+
"font.body-medium": "--font-body-medium",
|
|
206
|
+
"font.body-medium-italic": "--font-body-medium-italic",
|
|
207
|
+
"font.body-semibold": "--font-body-semibold",
|
|
208
|
+
"font.body-semibold-italic": "--font-body-semibold-italic",
|
|
209
|
+
"font.display": "--font-display",
|
|
210
|
+
"font.display-bold": "--font-display-bold",
|
|
211
|
+
"font.display-bold-italic": "--font-display-bold-italic",
|
|
212
|
+
"font.display-italic": "--font-display-italic",
|
|
213
|
+
"font.display-medium": "--font-display-medium",
|
|
214
|
+
"font.display-medium-italic": "--font-display-medium-italic",
|
|
215
|
+
"font.display-semibold": "--font-display-semibold",
|
|
216
|
+
"font.display-semibold-italic": "--font-display-semibold-italic",
|
|
217
|
+
"font.mono": "--font-mono",
|
|
218
|
+
"font.mono-bold": "--font-mono-bold",
|
|
219
|
+
"font.mono-bold-italic": "--font-mono-bold-italic",
|
|
220
|
+
"font.mono-italic": "--font-mono-italic",
|
|
221
|
+
"font.mono-medium": "--font-mono-medium",
|
|
222
|
+
"font.mono-medium-italic": "--font-mono-medium-italic",
|
|
223
|
+
"font.mono-semibold": "--font-mono-semibold",
|
|
224
|
+
"font.mono-semibold-italic": "--font-mono-semibold-italic",
|
|
225
|
+
"font.sans": "--font-sans",
|
|
226
|
+
"font.sans-bold": "--font-sans-bold",
|
|
227
|
+
"font.sans-bold-italic": "--font-sans-bold-italic",
|
|
228
|
+
"font.sans-italic": "--font-sans-italic",
|
|
229
|
+
"font.sans-medium": "--font-sans-medium",
|
|
230
|
+
"font.sans-medium-italic": "--font-sans-medium-italic",
|
|
231
|
+
"font.sans-semibold": "--font-sans-semibold",
|
|
232
|
+
"font.sans-semibold-italic": "--font-sans-semibold-italic",
|
|
233
|
+
"inset-shadow.2xs": "--inset-shadow-2xs",
|
|
234
|
+
"inset-shadow.sm": "--inset-shadow-sm",
|
|
235
|
+
"inset-shadow.xs": "--inset-shadow-xs",
|
|
236
|
+
"leading.loose": "--leading-loose",
|
|
237
|
+
"leading.normal": "--leading-normal",
|
|
238
|
+
"leading.relaxed": "--leading-relaxed",
|
|
239
|
+
"leading.snug": "--leading-snug",
|
|
240
|
+
"leading.tight": "--leading-tight",
|
|
241
|
+
"modes.dark.border-radius.button": "--border-radius-button",
|
|
242
|
+
"modes.dark.border-radius.default": "--border-radius-default",
|
|
243
|
+
"modes.dark.border-radius.none": "--border-radius-none",
|
|
244
|
+
"modes.dark.border-radius.round": "--border-radius-round",
|
|
245
|
+
"modes.dark.border.width.default": "--border-width-default",
|
|
246
|
+
"modes.dark.border.width.focused": "--border-width-focused",
|
|
247
|
+
"modes.dark.border.width.selected": "--border-width-selected",
|
|
248
|
+
"modes.dark.color.chart.categorical.1": "--color-chart-categorical-1",
|
|
249
|
+
"modes.dark.color.chart.categorical.2": "--color-chart-categorical-2",
|
|
250
|
+
"modes.dark.color.chart.categorical.3": "--color-chart-categorical-3",
|
|
251
|
+
"modes.dark.color.chart.categorical.4": "--color-chart-categorical-4",
|
|
252
|
+
"modes.dark.color.chart.categorical.5": "--color-chart-categorical-5",
|
|
253
|
+
"modes.dark.color.chart.categorical.6": "--color-chart-categorical-6",
|
|
254
|
+
"modes.dark.color.chart.simple.primary": "--color-chart-simple-primary",
|
|
255
|
+
"modes.dark.color.chart.simple.secondary": "--color-chart-simple-secondary",
|
|
256
|
+
"modes.dark.color.content.action": "--color-content-action",
|
|
257
|
+
"modes.dark.color.content.action-on-strong": "--color-content-action-on-strong",
|
|
258
|
+
"modes.dark.color.content.action-on-subtle": "--color-content-action-on-subtle",
|
|
259
|
+
"modes.dark.color.content.brand": "--color-content-brand",
|
|
260
|
+
"modes.dark.color.content.danger": "--color-content-danger",
|
|
261
|
+
"modes.dark.color.content.danger-on-strong": "--color-content-danger-on-strong",
|
|
262
|
+
"modes.dark.color.content.danger-on-subtle": "--color-content-danger-on-subtle",
|
|
263
|
+
"modes.dark.color.content.info": "--color-content-info",
|
|
264
|
+
"modes.dark.color.content.info-on-strong": "--color-content-info-on-strong",
|
|
265
|
+
"modes.dark.color.content.info-on-subtle": "--color-content-info-on-subtle",
|
|
266
|
+
"modes.dark.color.content.link": "--color-content-link",
|
|
267
|
+
"modes.dark.color.content.link-visited": "--color-content-link-visited",
|
|
268
|
+
"modes.dark.color.content.neutral-on-strong": "--color-content-neutral-on-strong",
|
|
269
|
+
"modes.dark.color.content.neutral-on-subtle": "--color-content-neutral-on-subtle",
|
|
270
|
+
"modes.dark.color.content.primary": "--color-content-primary",
|
|
271
|
+
"modes.dark.color.content.secondary": "--color-content-secondary",
|
|
272
|
+
"modes.dark.color.content.selected": "--color-content-selected",
|
|
273
|
+
"modes.dark.color.content.success": "--color-content-success",
|
|
274
|
+
"modes.dark.color.content.success-on-strong": "--color-content-success-on-strong",
|
|
275
|
+
"modes.dark.color.content.success-on-subtle": "--color-content-success-on-subtle",
|
|
276
|
+
"modes.dark.color.content.tertiary": "--color-content-tertiary",
|
|
277
|
+
"modes.dark.color.content.warning": "--color-content-warning",
|
|
278
|
+
"modes.dark.color.content.warning-on-strong": "--color-content-warning-on-strong",
|
|
279
|
+
"modes.dark.color.content.warning-on-subtle": "--color-content-warning-on-subtle",
|
|
280
|
+
"modes.dark.color.stroke.action": "--color-stroke-action",
|
|
281
|
+
"modes.dark.color.stroke.danger": "--color-stroke-danger",
|
|
282
|
+
"modes.dark.color.stroke.focus": "--color-stroke-focus",
|
|
283
|
+
"modes.dark.color.stroke.hover": "--color-stroke-hover",
|
|
284
|
+
"modes.dark.color.stroke.info": "--color-stroke-info",
|
|
285
|
+
"modes.dark.color.stroke.primary": "--color-stroke-primary",
|
|
286
|
+
"modes.dark.color.stroke.ring": "--color-stroke-ring",
|
|
287
|
+
"modes.dark.color.stroke.secondary": "--color-stroke-secondary",
|
|
288
|
+
"modes.dark.color.stroke.success": "--color-stroke-success",
|
|
289
|
+
"modes.dark.color.stroke.warning": "--color-stroke-warning",
|
|
290
|
+
"modes.dark.color.surface.accent.core": "--color-surface-accent-core",
|
|
291
|
+
"modes.dark.color.surface.accent.strong": "--color-surface-accent-strong",
|
|
292
|
+
"modes.dark.color.surface.accent.subtle": "--color-surface-accent-subtle",
|
|
293
|
+
"modes.dark.color.surface.accent.tint": "--color-surface-accent-tint",
|
|
294
|
+
"modes.dark.color.surface.action.strong": "--color-surface-action-strong",
|
|
295
|
+
"modes.dark.color.surface.action.strong-active": "--color-surface-action-strong-active",
|
|
296
|
+
"modes.dark.color.surface.action.strong-hover": "--color-surface-action-strong-hover",
|
|
297
|
+
"modes.dark.color.surface.action.subtle": "--color-surface-action-subtle",
|
|
298
|
+
"modes.dark.color.surface.action.subtle-active": "--color-surface-action-subtle-active",
|
|
299
|
+
"modes.dark.color.surface.action.subtle-hover": "--color-surface-action-subtle-hover",
|
|
300
|
+
"modes.dark.color.surface.action.tint": "--color-surface-action-tint",
|
|
301
|
+
"modes.dark.color.surface.action.tint-active": "--color-surface-action-tint-active",
|
|
302
|
+
"modes.dark.color.surface.action.tint-hover": "--color-surface-action-tint-hover",
|
|
303
|
+
"modes.dark.color.surface.backdrop": "--color-surface-backdrop",
|
|
304
|
+
"modes.dark.color.surface.background": "--color-surface-background",
|
|
305
|
+
"modes.dark.color.surface.brand.core": "--color-surface-brand-core",
|
|
306
|
+
"modes.dark.color.surface.brand.strong": "--color-surface-brand-strong",
|
|
307
|
+
"modes.dark.color.surface.brand.subtle": "--color-surface-brand-subtle",
|
|
308
|
+
"modes.dark.color.surface.brand.tint": "--color-surface-brand-tint",
|
|
309
|
+
"modes.dark.color.surface.danger.strong": "--color-surface-danger-strong",
|
|
310
|
+
"modes.dark.color.surface.danger.strong-active": "--color-surface-danger-strong-active",
|
|
311
|
+
"modes.dark.color.surface.danger.strong-hover": "--color-surface-danger-strong-hover",
|
|
312
|
+
"modes.dark.color.surface.danger.subtle": "--color-surface-danger-subtle",
|
|
313
|
+
"modes.dark.color.surface.danger.subtle-active": "--color-surface-danger-subtle-active",
|
|
314
|
+
"modes.dark.color.surface.danger.subtle-hover": "--color-surface-danger-subtle-hover",
|
|
315
|
+
"modes.dark.color.surface.danger.tint": "--color-surface-danger-tint",
|
|
316
|
+
"modes.dark.color.surface.danger.tint-active": "--color-surface-danger-tint-active",
|
|
317
|
+
"modes.dark.color.surface.danger.tint-hover": "--color-surface-danger-tint-hover",
|
|
318
|
+
"modes.dark.color.surface.info.strong": "--color-surface-info-strong",
|
|
319
|
+
"modes.dark.color.surface.info.strong-active": "--color-surface-info-strong-active",
|
|
320
|
+
"modes.dark.color.surface.info.strong-hover": "--color-surface-info-strong-hover",
|
|
321
|
+
"modes.dark.color.surface.info.subtle": "--color-surface-info-subtle",
|
|
322
|
+
"modes.dark.color.surface.info.subtle-active": "--color-surface-info-subtle-active",
|
|
323
|
+
"modes.dark.color.surface.info.subtle-hover": "--color-surface-info-subtle-hover",
|
|
324
|
+
"modes.dark.color.surface.info.tint": "--color-surface-info-tint",
|
|
325
|
+
"modes.dark.color.surface.info.tint-active": "--color-surface-info-tint-active",
|
|
326
|
+
"modes.dark.color.surface.info.tint-hover": "--color-surface-info-tint-hover",
|
|
327
|
+
"modes.dark.color.surface.neutral.strong": "--color-surface-neutral-strong",
|
|
328
|
+
"modes.dark.color.surface.neutral.strong-active": "--color-surface-neutral-strong-active",
|
|
329
|
+
"modes.dark.color.surface.neutral.strong-hover": "--color-surface-neutral-strong-hover",
|
|
330
|
+
"modes.dark.color.surface.neutral.subtle": "--color-surface-neutral-subtle",
|
|
331
|
+
"modes.dark.color.surface.neutral.subtle-active": "--color-surface-neutral-subtle-active",
|
|
332
|
+
"modes.dark.color.surface.neutral.subtle-hover": "--color-surface-neutral-subtle-hover",
|
|
333
|
+
"modes.dark.color.surface.neutral.tint": "--color-surface-neutral-tint",
|
|
334
|
+
"modes.dark.color.surface.neutral.tint-active": "--color-surface-neutral-tint-active",
|
|
335
|
+
"modes.dark.color.surface.neutral.tint-hover": "--color-surface-neutral-tint-hover",
|
|
336
|
+
"modes.dark.color.surface.primary": "--color-surface-primary",
|
|
337
|
+
"modes.dark.color.surface.primary-active": "--color-surface-primary-active",
|
|
338
|
+
"modes.dark.color.surface.primary-hover": "--color-surface-primary-hover",
|
|
339
|
+
"modes.dark.color.surface.secondary": "--color-surface-secondary",
|
|
340
|
+
"modes.dark.color.surface.secondary-active": "--color-surface-secondary-active",
|
|
341
|
+
"modes.dark.color.surface.secondary-hover": "--color-surface-secondary-hover",
|
|
342
|
+
"modes.dark.color.surface.success.strong": "--color-surface-success-strong",
|
|
343
|
+
"modes.dark.color.surface.success.strong-active": "--color-surface-success-strong-active",
|
|
344
|
+
"modes.dark.color.surface.success.strong-hover": "--color-surface-success-strong-hover",
|
|
345
|
+
"modes.dark.color.surface.success.subtle": "--color-surface-success-subtle",
|
|
346
|
+
"modes.dark.color.surface.success.subtle-active": "--color-surface-success-subtle-active",
|
|
347
|
+
"modes.dark.color.surface.success.subtle-hover": "--color-surface-success-subtle-hover",
|
|
348
|
+
"modes.dark.color.surface.success.tint": "--color-surface-success-tint",
|
|
349
|
+
"modes.dark.color.surface.success.tint-active": "--color-surface-success-tint-active",
|
|
350
|
+
"modes.dark.color.surface.success.tint-hover": "--color-surface-success-tint-hover",
|
|
351
|
+
"modes.dark.color.surface.tertiary": "--color-surface-tertiary",
|
|
352
|
+
"modes.dark.color.surface.warning.strong": "--color-surface-warning-strong",
|
|
353
|
+
"modes.dark.color.surface.warning.strong-active": "--color-surface-warning-strong-active",
|
|
354
|
+
"modes.dark.color.surface.warning.strong-hover": "--color-surface-warning-strong-hover",
|
|
355
|
+
"modes.dark.color.surface.warning.subtle": "--color-surface-warning-subtle",
|
|
356
|
+
"modes.dark.color.surface.warning.subtle-active": "--color-surface-warning-subtle-active",
|
|
357
|
+
"modes.dark.color.surface.warning.subtle-hover": "--color-surface-warning-subtle-hover",
|
|
358
|
+
"modes.dark.color.surface.warning.tint": "--color-surface-warning-tint",
|
|
359
|
+
"modes.dark.color.surface.warning.tint-active": "--color-surface-warning-tint-active",
|
|
360
|
+
"modes.dark.color.surface.warning.tint-hover": "--color-surface-warning-tint-hover",
|
|
361
|
+
"modes.dark.font.body": "--font-body",
|
|
362
|
+
"modes.dark.font.body-bold": "--font-body-bold",
|
|
363
|
+
"modes.dark.font.body-bold-italic": "--font-body-bold-italic",
|
|
364
|
+
"modes.dark.font.body-italic": "--font-body-italic",
|
|
365
|
+
"modes.dark.font.body-medium": "--font-body-medium",
|
|
366
|
+
"modes.dark.font.body-medium-italic": "--font-body-medium-italic",
|
|
367
|
+
"modes.dark.font.body-semibold": "--font-body-semibold",
|
|
368
|
+
"modes.dark.font.body-semibold-italic": "--font-body-semibold-italic",
|
|
369
|
+
"modes.dark.font.display": "--font-display",
|
|
370
|
+
"modes.dark.font.display-bold": "--font-display-bold",
|
|
371
|
+
"modes.dark.font.display-bold-italic": "--font-display-bold-italic",
|
|
372
|
+
"modes.dark.font.display-italic": "--font-display-italic",
|
|
373
|
+
"modes.dark.font.display-medium": "--font-display-medium",
|
|
374
|
+
"modes.dark.font.display-medium-italic": "--font-display-medium-italic",
|
|
375
|
+
"modes.dark.font.display-semibold": "--font-display-semibold",
|
|
376
|
+
"modes.dark.font.display-semibold-italic": "--font-display-semibold-italic",
|
|
377
|
+
"modes.dark.opacity.disabled": "--opacity-disabled",
|
|
378
|
+
"modes.dark.opacity.focus": "--opacity-focus",
|
|
379
|
+
"modes.dark.opacity.hover": "--opacity-hover",
|
|
380
|
+
"modes.dark.opacity.hover-overlay": "--opacity-hover-overlay",
|
|
381
|
+
"modes.dark.opacity.selected": "--opacity-selected",
|
|
382
|
+
"modes.dark.opacity.selected-focus": "--opacity-selected-focus",
|
|
383
|
+
"modes.dark.opacity.selected-hover": "--opacity-selected-hover",
|
|
384
|
+
"modes.light.border-radius.button": "--border-radius-button",
|
|
385
|
+
"modes.light.border-radius.default": "--border-radius-default",
|
|
386
|
+
"modes.light.border-radius.none": "--border-radius-none",
|
|
387
|
+
"modes.light.border-radius.round": "--border-radius-round",
|
|
388
|
+
"modes.light.border.width.default": "--border-width-default",
|
|
389
|
+
"modes.light.border.width.focused": "--border-width-focused",
|
|
390
|
+
"modes.light.border.width.selected": "--border-width-selected",
|
|
391
|
+
"modes.light.color.chart.categorical.1": "--color-chart-categorical-1",
|
|
392
|
+
"modes.light.color.chart.categorical.2": "--color-chart-categorical-2",
|
|
393
|
+
"modes.light.color.chart.categorical.3": "--color-chart-categorical-3",
|
|
394
|
+
"modes.light.color.chart.categorical.4": "--color-chart-categorical-4",
|
|
395
|
+
"modes.light.color.chart.categorical.5": "--color-chart-categorical-5",
|
|
396
|
+
"modes.light.color.chart.categorical.6": "--color-chart-categorical-6",
|
|
397
|
+
"modes.light.color.chart.simple.primary": "--color-chart-simple-primary",
|
|
398
|
+
"modes.light.color.chart.simple.secondary": "--color-chart-simple-secondary",
|
|
399
|
+
"modes.light.color.content.action": "--color-content-action",
|
|
400
|
+
"modes.light.color.content.action-on-strong": "--color-content-action-on-strong",
|
|
401
|
+
"modes.light.color.content.action-on-subtle": "--color-content-action-on-subtle",
|
|
402
|
+
"modes.light.color.content.brand": "--color-content-brand",
|
|
403
|
+
"modes.light.color.content.danger": "--color-content-danger",
|
|
404
|
+
"modes.light.color.content.danger-on-strong": "--color-content-danger-on-strong",
|
|
405
|
+
"modes.light.color.content.danger-on-subtle": "--color-content-danger-on-subtle",
|
|
406
|
+
"modes.light.color.content.info": "--color-content-info",
|
|
407
|
+
"modes.light.color.content.info-on-strong": "--color-content-info-on-strong",
|
|
408
|
+
"modes.light.color.content.info-on-subtle": "--color-content-info-on-subtle",
|
|
409
|
+
"modes.light.color.content.link": "--color-content-link",
|
|
410
|
+
"modes.light.color.content.link-visited": "--color-content-link-visited",
|
|
411
|
+
"modes.light.color.content.neutral-on-strong": "--color-content-neutral-on-strong",
|
|
412
|
+
"modes.light.color.content.neutral-on-subtle": "--color-content-neutral-on-subtle",
|
|
413
|
+
"modes.light.color.content.primary": "--color-content-primary",
|
|
414
|
+
"modes.light.color.content.secondary": "--color-content-secondary",
|
|
415
|
+
"modes.light.color.content.selected": "--color-content-selected",
|
|
416
|
+
"modes.light.color.content.success": "--color-content-success",
|
|
417
|
+
"modes.light.color.content.success-on-strong": "--color-content-success-on-strong",
|
|
418
|
+
"modes.light.color.content.success-on-subtle": "--color-content-success-on-subtle",
|
|
419
|
+
"modes.light.color.content.tertiary": "--color-content-tertiary",
|
|
420
|
+
"modes.light.color.content.warning": "--color-content-warning",
|
|
421
|
+
"modes.light.color.content.warning-on-strong": "--color-content-warning-on-strong",
|
|
422
|
+
"modes.light.color.content.warning-on-subtle": "--color-content-warning-on-subtle",
|
|
423
|
+
"modes.light.color.stroke.action": "--color-stroke-action",
|
|
424
|
+
"modes.light.color.stroke.danger": "--color-stroke-danger",
|
|
425
|
+
"modes.light.color.stroke.focus": "--color-stroke-focus",
|
|
426
|
+
"modes.light.color.stroke.hover": "--color-stroke-hover",
|
|
427
|
+
"modes.light.color.stroke.info": "--color-stroke-info",
|
|
428
|
+
"modes.light.color.stroke.primary": "--color-stroke-primary",
|
|
429
|
+
"modes.light.color.stroke.ring": "--color-stroke-ring",
|
|
430
|
+
"modes.light.color.stroke.secondary": "--color-stroke-secondary",
|
|
431
|
+
"modes.light.color.stroke.success": "--color-stroke-success",
|
|
432
|
+
"modes.light.color.stroke.warning": "--color-stroke-warning",
|
|
433
|
+
"modes.light.color.surface.accent.core": "--color-surface-accent-core",
|
|
434
|
+
"modes.light.color.surface.accent.strong": "--color-surface-accent-strong",
|
|
435
|
+
"modes.light.color.surface.accent.subtle": "--color-surface-accent-subtle",
|
|
436
|
+
"modes.light.color.surface.accent.tint": "--color-surface-accent-tint",
|
|
437
|
+
"modes.light.color.surface.action.strong": "--color-surface-action-strong",
|
|
438
|
+
"modes.light.color.surface.action.strong-active": "--color-surface-action-strong-active",
|
|
439
|
+
"modes.light.color.surface.action.strong-hover": "--color-surface-action-strong-hover",
|
|
440
|
+
"modes.light.color.surface.action.subtle": "--color-surface-action-subtle",
|
|
441
|
+
"modes.light.color.surface.action.subtle-active": "--color-surface-action-subtle-active",
|
|
442
|
+
"modes.light.color.surface.action.subtle-hover": "--color-surface-action-subtle-hover",
|
|
443
|
+
"modes.light.color.surface.action.tint": "--color-surface-action-tint",
|
|
444
|
+
"modes.light.color.surface.action.tint-active": "--color-surface-action-tint-active",
|
|
445
|
+
"modes.light.color.surface.action.tint-hover": "--color-surface-action-tint-hover",
|
|
446
|
+
"modes.light.color.surface.backdrop": "--color-surface-backdrop",
|
|
447
|
+
"modes.light.color.surface.background": "--color-surface-background",
|
|
448
|
+
"modes.light.color.surface.brand.core": "--color-surface-brand-core",
|
|
449
|
+
"modes.light.color.surface.brand.strong": "--color-surface-brand-strong",
|
|
450
|
+
"modes.light.color.surface.brand.subtle": "--color-surface-brand-subtle",
|
|
451
|
+
"modes.light.color.surface.brand.tint": "--color-surface-brand-tint",
|
|
452
|
+
"modes.light.color.surface.danger.strong": "--color-surface-danger-strong",
|
|
453
|
+
"modes.light.color.surface.danger.strong-active": "--color-surface-danger-strong-active",
|
|
454
|
+
"modes.light.color.surface.danger.strong-hover": "--color-surface-danger-strong-hover",
|
|
455
|
+
"modes.light.color.surface.danger.subtle": "--color-surface-danger-subtle",
|
|
456
|
+
"modes.light.color.surface.danger.subtle-active": "--color-surface-danger-subtle-active",
|
|
457
|
+
"modes.light.color.surface.danger.subtle-hover": "--color-surface-danger-subtle-hover",
|
|
458
|
+
"modes.light.color.surface.danger.tint": "--color-surface-danger-tint",
|
|
459
|
+
"modes.light.color.surface.danger.tint-active": "--color-surface-danger-tint-active",
|
|
460
|
+
"modes.light.color.surface.danger.tint-hover": "--color-surface-danger-tint-hover",
|
|
461
|
+
"modes.light.color.surface.info.strong": "--color-surface-info-strong",
|
|
462
|
+
"modes.light.color.surface.info.strong-active": "--color-surface-info-strong-active",
|
|
463
|
+
"modes.light.color.surface.info.strong-hover": "--color-surface-info-strong-hover",
|
|
464
|
+
"modes.light.color.surface.info.subtle": "--color-surface-info-subtle",
|
|
465
|
+
"modes.light.color.surface.info.subtle-active": "--color-surface-info-subtle-active",
|
|
466
|
+
"modes.light.color.surface.info.subtle-hover": "--color-surface-info-subtle-hover",
|
|
467
|
+
"modes.light.color.surface.info.tint": "--color-surface-info-tint",
|
|
468
|
+
"modes.light.color.surface.info.tint-active": "--color-surface-info-tint-active",
|
|
469
|
+
"modes.light.color.surface.info.tint-hover": "--color-surface-info-tint-hover",
|
|
470
|
+
"modes.light.color.surface.neutral.strong": "--color-surface-neutral-strong",
|
|
471
|
+
"modes.light.color.surface.neutral.strong-active": "--color-surface-neutral-strong-active",
|
|
472
|
+
"modes.light.color.surface.neutral.strong-hover": "--color-surface-neutral-strong-hover",
|
|
473
|
+
"modes.light.color.surface.neutral.subtle": "--color-surface-neutral-subtle",
|
|
474
|
+
"modes.light.color.surface.neutral.subtle-active": "--color-surface-neutral-subtle-active",
|
|
475
|
+
"modes.light.color.surface.neutral.subtle-hover": "--color-surface-neutral-subtle-hover",
|
|
476
|
+
"modes.light.color.surface.neutral.tint": "--color-surface-neutral-tint",
|
|
477
|
+
"modes.light.color.surface.neutral.tint-active": "--color-surface-neutral-tint-active",
|
|
478
|
+
"modes.light.color.surface.neutral.tint-hover": "--color-surface-neutral-tint-hover",
|
|
479
|
+
"modes.light.color.surface.primary": "--color-surface-primary",
|
|
480
|
+
"modes.light.color.surface.primary-active": "--color-surface-primary-active",
|
|
481
|
+
"modes.light.color.surface.primary-hover": "--color-surface-primary-hover",
|
|
482
|
+
"modes.light.color.surface.secondary": "--color-surface-secondary",
|
|
483
|
+
"modes.light.color.surface.secondary-active": "--color-surface-secondary-active",
|
|
484
|
+
"modes.light.color.surface.secondary-hover": "--color-surface-secondary-hover",
|
|
485
|
+
"modes.light.color.surface.success.strong": "--color-surface-success-strong",
|
|
486
|
+
"modes.light.color.surface.success.strong-active": "--color-surface-success-strong-active",
|
|
487
|
+
"modes.light.color.surface.success.strong-hover": "--color-surface-success-strong-hover",
|
|
488
|
+
"modes.light.color.surface.success.subtle": "--color-surface-success-subtle",
|
|
489
|
+
"modes.light.color.surface.success.subtle-active": "--color-surface-success-subtle-active",
|
|
490
|
+
"modes.light.color.surface.success.subtle-hover": "--color-surface-success-subtle-hover",
|
|
491
|
+
"modes.light.color.surface.success.tint": "--color-surface-success-tint",
|
|
492
|
+
"modes.light.color.surface.success.tint-active": "--color-surface-success-tint-active",
|
|
493
|
+
"modes.light.color.surface.success.tint-hover": "--color-surface-success-tint-hover",
|
|
494
|
+
"modes.light.color.surface.tertiary": "--color-surface-tertiary",
|
|
495
|
+
"modes.light.color.surface.warning.strong": "--color-surface-warning-strong",
|
|
496
|
+
"modes.light.color.surface.warning.strong-active": "--color-surface-warning-strong-active",
|
|
497
|
+
"modes.light.color.surface.warning.strong-hover": "--color-surface-warning-strong-hover",
|
|
498
|
+
"modes.light.color.surface.warning.subtle": "--color-surface-warning-subtle",
|
|
499
|
+
"modes.light.color.surface.warning.subtle-active": "--color-surface-warning-subtle-active",
|
|
500
|
+
"modes.light.color.surface.warning.subtle-hover": "--color-surface-warning-subtle-hover",
|
|
501
|
+
"modes.light.color.surface.warning.tint": "--color-surface-warning-tint",
|
|
502
|
+
"modes.light.color.surface.warning.tint-active": "--color-surface-warning-tint-active",
|
|
503
|
+
"modes.light.color.surface.warning.tint-hover": "--color-surface-warning-tint-hover",
|
|
504
|
+
"modes.light.font.body": "--font-body",
|
|
505
|
+
"modes.light.font.body-bold": "--font-body-bold",
|
|
506
|
+
"modes.light.font.body-bold-italic": "--font-body-bold-italic",
|
|
507
|
+
"modes.light.font.body-italic": "--font-body-italic",
|
|
508
|
+
"modes.light.font.body-medium": "--font-body-medium",
|
|
509
|
+
"modes.light.font.body-medium-italic": "--font-body-medium-italic",
|
|
510
|
+
"modes.light.font.body-semibold": "--font-body-semibold",
|
|
511
|
+
"modes.light.font.body-semibold-italic": "--font-body-semibold-italic",
|
|
512
|
+
"modes.light.font.display": "--font-display",
|
|
513
|
+
"modes.light.font.display-bold": "--font-display-bold",
|
|
514
|
+
"modes.light.font.display-bold-italic": "--font-display-bold-italic",
|
|
515
|
+
"modes.light.font.display-italic": "--font-display-italic",
|
|
516
|
+
"modes.light.font.display-medium": "--font-display-medium",
|
|
517
|
+
"modes.light.font.display-medium-italic": "--font-display-medium-italic",
|
|
518
|
+
"modes.light.font.display-semibold": "--font-display-semibold",
|
|
519
|
+
"modes.light.font.display-semibold-italic": "--font-display-semibold-italic",
|
|
520
|
+
"modes.light.opacity.disabled": "--opacity-disabled",
|
|
521
|
+
"modes.light.opacity.focus": "--opacity-focus",
|
|
522
|
+
"modes.light.opacity.hover": "--opacity-hover",
|
|
523
|
+
"modes.light.opacity.hover-overlay": "--opacity-hover-overlay",
|
|
524
|
+
"modes.light.opacity.selected": "--opacity-selected",
|
|
525
|
+
"modes.light.opacity.selected-focus": "--opacity-selected-focus",
|
|
526
|
+
"modes.light.opacity.selected-hover": "--opacity-selected-hover",
|
|
527
|
+
"perspective.distant": "--perspective-distant",
|
|
528
|
+
"perspective.dramatic": "--perspective-dramatic",
|
|
529
|
+
"perspective.midrange": "--perspective-midrange",
|
|
530
|
+
"perspective.near": "--perspective-near",
|
|
531
|
+
"perspective.normal": "--perspective-normal",
|
|
532
|
+
"platform.android.font.mono": "--font-mono",
|
|
533
|
+
"platform.android.font.mono-bold": "--font-mono-bold",
|
|
534
|
+
"platform.android.font.mono-bold-italic": "--font-mono-bold-italic",
|
|
535
|
+
"platform.android.font.mono-italic": "--font-mono-italic",
|
|
536
|
+
"platform.android.font.mono-medium": "--font-mono-medium",
|
|
537
|
+
"platform.android.font.mono-medium-italic": "--font-mono-medium-italic",
|
|
538
|
+
"platform.android.font.mono-semibold": "--font-mono-semibold",
|
|
539
|
+
"platform.android.font.mono-semibold-italic": "--font-mono-semibold-italic",
|
|
540
|
+
"platform.android.font.sans": "--font-sans",
|
|
541
|
+
"platform.android.font.sans-bold": "--font-sans-bold",
|
|
542
|
+
"platform.android.font.sans-bold-italic": "--font-sans-bold-italic",
|
|
543
|
+
"platform.android.font.sans-italic": "--font-sans-italic",
|
|
544
|
+
"platform.android.font.sans-medium": "--font-sans-medium",
|
|
545
|
+
"platform.android.font.sans-medium-italic": "--font-sans-medium-italic",
|
|
546
|
+
"platform.android.font.sans-semibold": "--font-sans-semibold",
|
|
547
|
+
"platform.android.font.sans-semibold-italic": "--font-sans-semibold-italic",
|
|
548
|
+
"platform.ios.font.mono": "--font-mono",
|
|
549
|
+
"platform.ios.font.mono-bold": "--font-mono-bold",
|
|
550
|
+
"platform.ios.font.mono-bold-italic": "--font-mono-bold-italic",
|
|
551
|
+
"platform.ios.font.mono-italic": "--font-mono-italic",
|
|
552
|
+
"platform.ios.font.mono-medium": "--font-mono-medium",
|
|
553
|
+
"platform.ios.font.mono-medium-italic": "--font-mono-medium-italic",
|
|
554
|
+
"platform.ios.font.mono-semibold": "--font-mono-semibold",
|
|
555
|
+
"platform.ios.font.mono-semibold-italic": "--font-mono-semibold-italic",
|
|
556
|
+
"platform.ios.font.sans": "--font-sans",
|
|
557
|
+
"platform.ios.font.sans-bold": "--font-sans-bold",
|
|
558
|
+
"platform.ios.font.sans-bold-italic": "--font-sans-bold-italic",
|
|
559
|
+
"platform.ios.font.sans-italic": "--font-sans-italic",
|
|
560
|
+
"platform.ios.font.sans-medium": "--font-sans-medium",
|
|
561
|
+
"platform.ios.font.sans-medium-italic": "--font-sans-medium-italic",
|
|
562
|
+
"platform.ios.font.sans-semibold": "--font-sans-semibold",
|
|
563
|
+
"platform.ios.font.sans-semibold-italic": "--font-sans-semibold-italic",
|
|
564
|
+
"platform.web.font.mono": "--font-mono",
|
|
565
|
+
"platform.web.font.mono-bold": "--font-mono-bold",
|
|
566
|
+
"platform.web.font.mono-bold-italic": "--font-mono-bold-italic",
|
|
567
|
+
"platform.web.font.mono-italic": "--font-mono-italic",
|
|
568
|
+
"platform.web.font.mono-medium": "--font-mono-medium",
|
|
569
|
+
"platform.web.font.mono-medium-italic": "--font-mono-medium-italic",
|
|
570
|
+
"platform.web.font.mono-semibold": "--font-mono-semibold",
|
|
571
|
+
"platform.web.font.mono-semibold-italic": "--font-mono-semibold-italic",
|
|
572
|
+
"platform.web.font.sans": "--font-sans",
|
|
573
|
+
"platform.web.font.sans-bold": "--font-sans-bold",
|
|
574
|
+
"platform.web.font.sans-bold-italic": "--font-sans-bold-italic",
|
|
575
|
+
"platform.web.font.sans-italic": "--font-sans-italic",
|
|
576
|
+
"platform.web.font.sans-medium": "--font-sans-medium",
|
|
577
|
+
"platform.web.font.sans-medium-italic": "--font-sans-medium-italic",
|
|
578
|
+
"platform.web.font.sans-semibold": "--font-sans-semibold",
|
|
579
|
+
"platform.web.font.sans-semibold-italic": "--font-sans-semibold-italic",
|
|
580
|
+
"radius.2xl": "--radius-2xl",
|
|
581
|
+
"radius.3xl": "--radius-3xl",
|
|
582
|
+
"radius.4xl": "--radius-4xl",
|
|
583
|
+
"radius.full": "--radius-full",
|
|
584
|
+
"radius.lg": "--radius-lg",
|
|
585
|
+
"radius.md": "--radius-md",
|
|
586
|
+
"radius.none": "--radius-none",
|
|
587
|
+
"radius.sm": "--radius-sm",
|
|
588
|
+
"radius.xl": "--radius-xl",
|
|
589
|
+
"radius.xs": "--radius-xs",
|
|
590
|
+
"shadow.2xl": "--shadow-2xl",
|
|
591
|
+
"shadow.2xs": "--shadow-2xs",
|
|
592
|
+
"shadow.lg": "--shadow-lg",
|
|
593
|
+
"shadow.md": "--shadow-md",
|
|
594
|
+
"shadow.sm": "--shadow-sm",
|
|
595
|
+
"shadow.xl": "--shadow-xl",
|
|
596
|
+
"shadow.xs": "--shadow-xs",
|
|
597
|
+
"spacing.0": "--spacing-0",
|
|
598
|
+
"spacing.0-5": "--spacing-0-5",
|
|
599
|
+
"spacing.1": "--spacing-1",
|
|
600
|
+
"spacing.1-5": "--spacing-1-5",
|
|
601
|
+
"spacing.10": "--spacing-10",
|
|
602
|
+
"spacing.11": "--spacing-11",
|
|
603
|
+
"spacing.12": "--spacing-12",
|
|
604
|
+
"spacing.14": "--spacing-14",
|
|
605
|
+
"spacing.16": "--spacing-16",
|
|
606
|
+
"spacing.2": "--spacing-2",
|
|
607
|
+
"spacing.2-5": "--spacing-2-5",
|
|
608
|
+
"spacing.20": "--spacing-20",
|
|
609
|
+
"spacing.24": "--spacing-24",
|
|
610
|
+
"spacing.28": "--spacing-28",
|
|
611
|
+
"spacing.3": "--spacing-3",
|
|
612
|
+
"spacing.3-5": "--spacing-3-5",
|
|
613
|
+
"spacing.32": "--spacing-32",
|
|
614
|
+
"spacing.36": "--spacing-36",
|
|
615
|
+
"spacing.4": "--spacing-4",
|
|
616
|
+
"spacing.40": "--spacing-40",
|
|
617
|
+
"spacing.44": "--spacing-44",
|
|
618
|
+
"spacing.48": "--spacing-48",
|
|
619
|
+
"spacing.5": "--spacing-5",
|
|
620
|
+
"spacing.52": "--spacing-52",
|
|
621
|
+
"spacing.56": "--spacing-56",
|
|
622
|
+
"spacing.6": "--spacing-6",
|
|
623
|
+
"spacing.60": "--spacing-60",
|
|
624
|
+
"spacing.64": "--spacing-64",
|
|
625
|
+
"spacing.7": "--spacing-7",
|
|
626
|
+
"spacing.72": "--spacing-72",
|
|
627
|
+
"spacing.8": "--spacing-8",
|
|
628
|
+
"spacing.80": "--spacing-80",
|
|
629
|
+
"spacing.9": "--spacing-9",
|
|
630
|
+
"spacing.96": "--spacing-96",
|
|
631
|
+
"spacing.base": "--spacing",
|
|
632
|
+
"spacing.px": "--spacing-px",
|
|
633
|
+
"text-shadow.2xs": "--text-shadow-2xs",
|
|
634
|
+
"text-shadow.lg": "--text-shadow-lg",
|
|
635
|
+
"text-shadow.md": "--text-shadow-md",
|
|
636
|
+
"text-shadow.sm": "--text-shadow-sm",
|
|
637
|
+
"text-shadow.xs": "--text-shadow-xs",
|
|
638
|
+
"text.2xl.font-size": "--text-2xl",
|
|
639
|
+
"text.2xl.line-height": "--text-2xl--line-height",
|
|
640
|
+
"text.2xs.font-size": "--text-2xs",
|
|
641
|
+
"text.2xs.line-height": "--text-2xs--line-height",
|
|
642
|
+
"text.3xl.font-size": "--text-3xl",
|
|
643
|
+
"text.3xl.line-height": "--text-3xl--line-height",
|
|
644
|
+
"text.4xl.font-size": "--text-4xl",
|
|
645
|
+
"text.4xl.line-height": "--text-4xl--line-height",
|
|
646
|
+
"text.5xl.font-size": "--text-5xl",
|
|
647
|
+
"text.5xl.line-height": "--text-5xl--line-height",
|
|
648
|
+
"text.6xl.font-size": "--text-6xl",
|
|
649
|
+
"text.6xl.line-height": "--text-6xl--line-height",
|
|
650
|
+
"text.7xl.font-size": "--text-7xl",
|
|
651
|
+
"text.7xl.line-height": "--text-7xl--line-height",
|
|
652
|
+
"text.8xl.font-size": "--text-8xl",
|
|
653
|
+
"text.8xl.line-height": "--text-8xl--line-height",
|
|
654
|
+
"text.9xl.font-size": "--text-9xl",
|
|
655
|
+
"text.9xl.line-height": "--text-9xl--line-height",
|
|
656
|
+
"text.base.font-size": "--text-base",
|
|
657
|
+
"text.base.line-height": "--text-base--line-height",
|
|
658
|
+
"text.lg.font-size": "--text-lg",
|
|
659
|
+
"text.lg.line-height": "--text-lg--line-height",
|
|
660
|
+
"text.sm.font-size": "--text-sm",
|
|
661
|
+
"text.sm.line-height": "--text-sm--line-height",
|
|
662
|
+
"text.xl.font-size": "--text-xl",
|
|
663
|
+
"text.xl.line-height": "--text-xl--line-height",
|
|
664
|
+
"text.xs.font-size": "--text-xs",
|
|
665
|
+
"text.xs.line-height": "--text-xs--line-height",
|
|
666
|
+
"tracking.normal": "--tracking-normal",
|
|
667
|
+
"tracking.tight": "--tracking-tight",
|
|
668
|
+
"tracking.tighter": "--tracking-tighter",
|
|
669
|
+
"tracking.wide": "--tracking-wide",
|
|
670
|
+
"tracking.wider": "--tracking-wider",
|
|
671
|
+
"tracking.widest": "--tracking-widest"
|
|
672
|
+
}
|