qstd 0.2.17 → 0.2.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (124) hide show
  1. package/dist/block/test-types.d.ts.map +1 -1
  2. package/dist/react/index.css +12 -0
  3. package/package.json +22 -20
  4. package/styled-system/css/conditions.mjs +36 -0
  5. package/styled-system/css/css.d.ts +22 -0
  6. package/styled-system/css/css.mjs +45 -0
  7. package/styled-system/css/cva.d.ts +6 -0
  8. package/styled-system/css/cva.mjs +87 -0
  9. package/styled-system/css/cx.d.ts +5 -0
  10. package/styled-system/css/cx.mjs +15 -0
  11. package/styled-system/css/index.d.ts +5 -0
  12. package/styled-system/css/index.mjs +4 -0
  13. package/styled-system/css/sva.d.ts +4 -0
  14. package/styled-system/css/sva.mjs +46 -0
  15. package/styled-system/helpers.mjs +328 -0
  16. package/styled-system/jsx/aspect-ratio.d.ts +10 -0
  17. package/styled-system/jsx/aspect-ratio.mjs +14 -0
  18. package/styled-system/jsx/bleed.d.ts +10 -0
  19. package/styled-system/jsx/bleed.mjs +14 -0
  20. package/styled-system/jsx/box.d.ts +10 -0
  21. package/styled-system/jsx/box.mjs +14 -0
  22. package/styled-system/jsx/center.d.ts +10 -0
  23. package/styled-system/jsx/center.mjs +14 -0
  24. package/styled-system/jsx/circle.d.ts +10 -0
  25. package/styled-system/jsx/circle.mjs +14 -0
  26. package/styled-system/jsx/container.d.ts +10 -0
  27. package/styled-system/jsx/container.mjs +14 -0
  28. package/styled-system/jsx/cq.d.ts +10 -0
  29. package/styled-system/jsx/cq.mjs +14 -0
  30. package/styled-system/jsx/create-style-context.d.ts +54 -0
  31. package/styled-system/jsx/create-style-context.mjs +98 -0
  32. package/styled-system/jsx/divider.d.ts +10 -0
  33. package/styled-system/jsx/divider.mjs +14 -0
  34. package/styled-system/jsx/factory-helper.mjs +22 -0
  35. package/styled-system/jsx/factory.d.ts +3 -0
  36. package/styled-system/jsx/factory.mjs +89 -0
  37. package/styled-system/jsx/flex.d.ts +10 -0
  38. package/styled-system/jsx/flex.mjs +14 -0
  39. package/styled-system/jsx/float.d.ts +10 -0
  40. package/styled-system/jsx/float.mjs +14 -0
  41. package/styled-system/jsx/grid-item.d.ts +10 -0
  42. package/styled-system/jsx/grid-item.mjs +14 -0
  43. package/styled-system/jsx/grid.d.ts +10 -0
  44. package/styled-system/jsx/grid.mjs +14 -0
  45. package/styled-system/jsx/hstack.d.ts +10 -0
  46. package/styled-system/jsx/hstack.mjs +14 -0
  47. package/styled-system/jsx/index.d.ts +25 -0
  48. package/styled-system/jsx/index.mjs +23 -0
  49. package/styled-system/jsx/is-valid-prop.d.ts +11 -0
  50. package/styled-system/jsx/is-valid-prop.mjs +17 -0
  51. package/styled-system/jsx/link-overlay.d.ts +10 -0
  52. package/styled-system/jsx/link-overlay.mjs +14 -0
  53. package/styled-system/jsx/spacer.d.ts +10 -0
  54. package/styled-system/jsx/spacer.mjs +14 -0
  55. package/styled-system/jsx/square.d.ts +10 -0
  56. package/styled-system/jsx/square.mjs +14 -0
  57. package/styled-system/jsx/stack.d.ts +10 -0
  58. package/styled-system/jsx/stack.mjs +14 -0
  59. package/styled-system/jsx/visually-hidden.d.ts +10 -0
  60. package/styled-system/jsx/visually-hidden.mjs +14 -0
  61. package/styled-system/jsx/vstack.d.ts +10 -0
  62. package/styled-system/jsx/vstack.mjs +14 -0
  63. package/styled-system/jsx/wrap.d.ts +10 -0
  64. package/styled-system/jsx/wrap.mjs +14 -0
  65. package/styled-system/patterns/aspect-ratio.d.ts +20 -0
  66. package/styled-system/patterns/aspect-ratio.mjs +38 -0
  67. package/styled-system/patterns/bleed.d.ts +21 -0
  68. package/styled-system/patterns/bleed.mjs +24 -0
  69. package/styled-system/patterns/box.d.ts +20 -0
  70. package/styled-system/patterns/box.mjs +15 -0
  71. package/styled-system/patterns/center.d.ts +20 -0
  72. package/styled-system/patterns/center.mjs +21 -0
  73. package/styled-system/patterns/circle.d.ts +20 -0
  74. package/styled-system/patterns/circle.mjs +25 -0
  75. package/styled-system/patterns/container.d.ts +20 -0
  76. package/styled-system/patterns/container.mjs +21 -0
  77. package/styled-system/patterns/cq.d.ts +21 -0
  78. package/styled-system/patterns/cq.mjs +21 -0
  79. package/styled-system/patterns/divider.d.ts +22 -0
  80. package/styled-system/patterns/divider.mjs +25 -0
  81. package/styled-system/patterns/flex.d.ts +26 -0
  82. package/styled-system/patterns/flex.mjs +26 -0
  83. package/styled-system/patterns/float.d.ts +23 -0
  84. package/styled-system/patterns/float.mjs +52 -0
  85. package/styled-system/patterns/grid-item.d.ts +25 -0
  86. package/styled-system/patterns/grid-item.mjs +25 -0
  87. package/styled-system/patterns/grid.d.ts +24 -0
  88. package/styled-system/patterns/grid.mjs +27 -0
  89. package/styled-system/patterns/hstack.d.ts +21 -0
  90. package/styled-system/patterns/hstack.mjs +24 -0
  91. package/styled-system/patterns/index.d.ts +21 -0
  92. package/styled-system/patterns/index.mjs +20 -0
  93. package/styled-system/patterns/link-overlay.d.ts +20 -0
  94. package/styled-system/patterns/link-overlay.mjs +24 -0
  95. package/styled-system/patterns/spacer.d.ts +20 -0
  96. package/styled-system/patterns/spacer.mjs +21 -0
  97. package/styled-system/patterns/square.d.ts +20 -0
  98. package/styled-system/patterns/square.mjs +24 -0
  99. package/styled-system/patterns/stack.d.ts +23 -0
  100. package/styled-system/patterns/stack.mjs +24 -0
  101. package/styled-system/patterns/visually-hidden.d.ts +20 -0
  102. package/styled-system/patterns/visually-hidden.mjs +18 -0
  103. package/styled-system/patterns/vstack.d.ts +21 -0
  104. package/styled-system/patterns/vstack.mjs +24 -0
  105. package/styled-system/patterns/wrap.d.ts +24 -0
  106. package/styled-system/patterns/wrap.mjs +25 -0
  107. package/styled-system/styles.css +1749 -0
  108. package/styled-system/tokens/index.d.ts +9 -0
  109. package/styled-system/tokens/index.mjs +1976 -0
  110. package/styled-system/tokens/tokens.d.ts +60 -0
  111. package/styled-system/types/composition.d.ts +224 -0
  112. package/styled-system/types/conditions.d.ts +348 -0
  113. package/styled-system/types/csstype.d.ts +21298 -0
  114. package/styled-system/types/global.d.ts +20 -0
  115. package/styled-system/types/index.d.ts +8 -0
  116. package/styled-system/types/jsx.d.ts +67 -0
  117. package/styled-system/types/parts.d.ts +8 -0
  118. package/styled-system/types/pattern.d.ts +78 -0
  119. package/styled-system/types/prop-type.d.ts +277 -0
  120. package/styled-system/types/recipe.d.ts +181 -0
  121. package/styled-system/types/selectors.d.ts +59 -0
  122. package/styled-system/types/static-css.d.ts +56 -0
  123. package/styled-system/types/style-props.d.ts +7639 -0
  124. package/styled-system/types/system-types.d.ts +269 -0
@@ -0,0 +1,1976 @@
1
+ const tokens = {
2
+ "aspectRatios.square": {
3
+ "value": "1 / 1",
4
+ "variable": "var(--aspect-ratios-square)"
5
+ },
6
+ "aspectRatios.landscape": {
7
+ "value": "4 / 3",
8
+ "variable": "var(--aspect-ratios-landscape)"
9
+ },
10
+ "aspectRatios.portrait": {
11
+ "value": "3 / 4",
12
+ "variable": "var(--aspect-ratios-portrait)"
13
+ },
14
+ "aspectRatios.wide": {
15
+ "value": "16 / 9",
16
+ "variable": "var(--aspect-ratios-wide)"
17
+ },
18
+ "aspectRatios.ultrawide": {
19
+ "value": "18 / 5",
20
+ "variable": "var(--aspect-ratios-ultrawide)"
21
+ },
22
+ "aspectRatios.golden": {
23
+ "value": "1.618 / 1",
24
+ "variable": "var(--aspect-ratios-golden)"
25
+ },
26
+ "borders.none": {
27
+ "value": "none",
28
+ "variable": "var(--borders-none)"
29
+ },
30
+ "easings.default": {
31
+ "value": "cubic-bezier(0.4, 0, 0.2, 1)",
32
+ "variable": "var(--easings-default)"
33
+ },
34
+ "easings.linear": {
35
+ "value": "linear",
36
+ "variable": "var(--easings-linear)"
37
+ },
38
+ "easings.in": {
39
+ "value": "cubic-bezier(0.4, 0, 1, 1)",
40
+ "variable": "var(--easings-in)"
41
+ },
42
+ "easings.out": {
43
+ "value": "cubic-bezier(0, 0, 0.2, 1)",
44
+ "variable": "var(--easings-out)"
45
+ },
46
+ "easings.in-out": {
47
+ "value": "cubic-bezier(0.4, 0, 0.2, 1)",
48
+ "variable": "var(--easings-in-out)"
49
+ },
50
+ "durations.fastest": {
51
+ "value": "50ms",
52
+ "variable": "var(--durations-fastest)"
53
+ },
54
+ "durations.faster": {
55
+ "value": "100ms",
56
+ "variable": "var(--durations-faster)"
57
+ },
58
+ "durations.fast": {
59
+ "value": "150ms",
60
+ "variable": "var(--durations-fast)"
61
+ },
62
+ "durations.normal": {
63
+ "value": "200ms",
64
+ "variable": "var(--durations-normal)"
65
+ },
66
+ "durations.slow": {
67
+ "value": "300ms",
68
+ "variable": "var(--durations-slow)"
69
+ },
70
+ "durations.slower": {
71
+ "value": "400ms",
72
+ "variable": "var(--durations-slower)"
73
+ },
74
+ "durations.slowest": {
75
+ "value": "500ms",
76
+ "variable": "var(--durations-slowest)"
77
+ },
78
+ "radii.xs": {
79
+ "value": "0.125rem",
80
+ "variable": "var(--radii-xs)"
81
+ },
82
+ "radii.sm": {
83
+ "value": "0.25rem",
84
+ "variable": "var(--radii-sm)"
85
+ },
86
+ "radii.md": {
87
+ "value": "0.375rem",
88
+ "variable": "var(--radii-md)"
89
+ },
90
+ "radii.lg": {
91
+ "value": "0.5rem",
92
+ "variable": "var(--radii-lg)"
93
+ },
94
+ "radii.xl": {
95
+ "value": "0.75rem",
96
+ "variable": "var(--radii-xl)"
97
+ },
98
+ "radii.2xl": {
99
+ "value": "1rem",
100
+ "variable": "var(--radii-2xl)"
101
+ },
102
+ "radii.3xl": {
103
+ "value": "1.5rem",
104
+ "variable": "var(--radii-3xl)"
105
+ },
106
+ "radii.4xl": {
107
+ "value": "2rem",
108
+ "variable": "var(--radii-4xl)"
109
+ },
110
+ "radii.full": {
111
+ "value": "9999px",
112
+ "variable": "var(--radii-full)"
113
+ },
114
+ "fontWeights.thin": {
115
+ "value": "100",
116
+ "variable": "var(--font-weights-thin)"
117
+ },
118
+ "fontWeights.extralight": {
119
+ "value": "200",
120
+ "variable": "var(--font-weights-extralight)"
121
+ },
122
+ "fontWeights.light": {
123
+ "value": "300",
124
+ "variable": "var(--font-weights-light)"
125
+ },
126
+ "fontWeights.normal": {
127
+ "value": "400",
128
+ "variable": "var(--font-weights-normal)"
129
+ },
130
+ "fontWeights.medium": {
131
+ "value": "500",
132
+ "variable": "var(--font-weights-medium)"
133
+ },
134
+ "fontWeights.semibold": {
135
+ "value": "600",
136
+ "variable": "var(--font-weights-semibold)"
137
+ },
138
+ "fontWeights.bold": {
139
+ "value": "700",
140
+ "variable": "var(--font-weights-bold)"
141
+ },
142
+ "fontWeights.extrabold": {
143
+ "value": "800",
144
+ "variable": "var(--font-weights-extrabold)"
145
+ },
146
+ "fontWeights.black": {
147
+ "value": "900",
148
+ "variable": "var(--font-weights-black)"
149
+ },
150
+ "lineHeights.none": {
151
+ "value": "1",
152
+ "variable": "var(--line-heights-none)"
153
+ },
154
+ "lineHeights.tight": {
155
+ "value": "1.25",
156
+ "variable": "var(--line-heights-tight)"
157
+ },
158
+ "lineHeights.snug": {
159
+ "value": "1.375",
160
+ "variable": "var(--line-heights-snug)"
161
+ },
162
+ "lineHeights.normal": {
163
+ "value": "1.5",
164
+ "variable": "var(--line-heights-normal)"
165
+ },
166
+ "lineHeights.relaxed": {
167
+ "value": "1.625",
168
+ "variable": "var(--line-heights-relaxed)"
169
+ },
170
+ "lineHeights.loose": {
171
+ "value": "2",
172
+ "variable": "var(--line-heights-loose)"
173
+ },
174
+ "fonts.sans": {
175
+ "value": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"",
176
+ "variable": "var(--fonts-sans)"
177
+ },
178
+ "fonts.serif": {
179
+ "value": "ui-serif, Georgia, Cambria, \"Times New Roman\", Times, serif",
180
+ "variable": "var(--fonts-serif)"
181
+ },
182
+ "fonts.mono": {
183
+ "value": "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace",
184
+ "variable": "var(--fonts-mono)"
185
+ },
186
+ "letterSpacings.tighter": {
187
+ "value": "-0.05em",
188
+ "variable": "var(--letter-spacings-tighter)"
189
+ },
190
+ "letterSpacings.tight": {
191
+ "value": "-0.025em",
192
+ "variable": "var(--letter-spacings-tight)"
193
+ },
194
+ "letterSpacings.normal": {
195
+ "value": "0em",
196
+ "variable": "var(--letter-spacings-normal)"
197
+ },
198
+ "letterSpacings.wide": {
199
+ "value": "0.025em",
200
+ "variable": "var(--letter-spacings-wide)"
201
+ },
202
+ "letterSpacings.wider": {
203
+ "value": "0.05em",
204
+ "variable": "var(--letter-spacings-wider)"
205
+ },
206
+ "letterSpacings.widest": {
207
+ "value": "0.1em",
208
+ "variable": "var(--letter-spacings-widest)"
209
+ },
210
+ "fontSizes.2xs": {
211
+ "value": "0.5rem",
212
+ "variable": "var(--font-sizes-2xs)"
213
+ },
214
+ "fontSizes.xs": {
215
+ "value": "0.75rem",
216
+ "variable": "var(--font-sizes-xs)"
217
+ },
218
+ "fontSizes.sm": {
219
+ "value": "0.875rem",
220
+ "variable": "var(--font-sizes-sm)"
221
+ },
222
+ "fontSizes.md": {
223
+ "value": "1rem",
224
+ "variable": "var(--font-sizes-md)"
225
+ },
226
+ "fontSizes.lg": {
227
+ "value": "1.125rem",
228
+ "variable": "var(--font-sizes-lg)"
229
+ },
230
+ "fontSizes.xl": {
231
+ "value": "1.25rem",
232
+ "variable": "var(--font-sizes-xl)"
233
+ },
234
+ "fontSizes.2xl": {
235
+ "value": "1.5rem",
236
+ "variable": "var(--font-sizes-2xl)"
237
+ },
238
+ "fontSizes.3xl": {
239
+ "value": "1.875rem",
240
+ "variable": "var(--font-sizes-3xl)"
241
+ },
242
+ "fontSizes.4xl": {
243
+ "value": "2.25rem",
244
+ "variable": "var(--font-sizes-4xl)"
245
+ },
246
+ "fontSizes.5xl": {
247
+ "value": "3rem",
248
+ "variable": "var(--font-sizes-5xl)"
249
+ },
250
+ "fontSizes.6xl": {
251
+ "value": "3.75rem",
252
+ "variable": "var(--font-sizes-6xl)"
253
+ },
254
+ "fontSizes.7xl": {
255
+ "value": "4.5rem",
256
+ "variable": "var(--font-sizes-7xl)"
257
+ },
258
+ "fontSizes.8xl": {
259
+ "value": "6rem",
260
+ "variable": "var(--font-sizes-8xl)"
261
+ },
262
+ "fontSizes.9xl": {
263
+ "value": "8rem",
264
+ "variable": "var(--font-sizes-9xl)"
265
+ },
266
+ "shadows.2xs": {
267
+ "value": "0 1px rgb(0 0 0 / 0.05)",
268
+ "variable": "var(--shadows-2xs)"
269
+ },
270
+ "shadows.xs": {
271
+ "value": "0 1px 2px 0 rgb(0 0 0 / 0.05)",
272
+ "variable": "var(--shadows-xs)"
273
+ },
274
+ "shadows.sm": {
275
+ "value": "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
276
+ "variable": "var(--shadows-sm)"
277
+ },
278
+ "shadows.md": {
279
+ "value": "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
280
+ "variable": "var(--shadows-md)"
281
+ },
282
+ "shadows.lg": {
283
+ "value": "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
284
+ "variable": "var(--shadows-lg)"
285
+ },
286
+ "shadows.xl": {
287
+ "value": "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
288
+ "variable": "var(--shadows-xl)"
289
+ },
290
+ "shadows.2xl": {
291
+ "value": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
292
+ "variable": "var(--shadows-2xl)"
293
+ },
294
+ "shadows.inset-2xs": {
295
+ "value": "inset 0 1px rgb(0 0 0 / 0.05)",
296
+ "variable": "var(--shadows-inset-2xs)"
297
+ },
298
+ "shadows.inset-xs": {
299
+ "value": "inset 0 1px 1px rgb(0 0 0 / 0.05)",
300
+ "variable": "var(--shadows-inset-xs)"
301
+ },
302
+ "shadows.inset-sm": {
303
+ "value": "inset 0 2px 4px rgb(0 0 0 / 0.05)",
304
+ "variable": "var(--shadows-inset-sm)"
305
+ },
306
+ "colors.current": {
307
+ "value": "currentColor",
308
+ "variable": "var(--colors-current)"
309
+ },
310
+ "colors.black": {
311
+ "value": "#000",
312
+ "variable": "var(--colors-black)"
313
+ },
314
+ "colors.white": {
315
+ "value": "#fff",
316
+ "variable": "var(--colors-white)"
317
+ },
318
+ "colors.transparent": {
319
+ "value": "rgb(0 0 0 / 0)",
320
+ "variable": "var(--colors-transparent)"
321
+ },
322
+ "colors.rose.50": {
323
+ "value": "#fff1f2",
324
+ "variable": "var(--colors-rose-50)"
325
+ },
326
+ "colors.rose.100": {
327
+ "value": "#ffe4e6",
328
+ "variable": "var(--colors-rose-100)"
329
+ },
330
+ "colors.rose.200": {
331
+ "value": "#fecdd3",
332
+ "variable": "var(--colors-rose-200)"
333
+ },
334
+ "colors.rose.300": {
335
+ "value": "#fda4af",
336
+ "variable": "var(--colors-rose-300)"
337
+ },
338
+ "colors.rose.400": {
339
+ "value": "#fb7185",
340
+ "variable": "var(--colors-rose-400)"
341
+ },
342
+ "colors.rose.500": {
343
+ "value": "#f43f5e",
344
+ "variable": "var(--colors-rose-500)"
345
+ },
346
+ "colors.rose.600": {
347
+ "value": "#e11d48",
348
+ "variable": "var(--colors-rose-600)"
349
+ },
350
+ "colors.rose.700": {
351
+ "value": "#be123c",
352
+ "variable": "var(--colors-rose-700)"
353
+ },
354
+ "colors.rose.800": {
355
+ "value": "#9f1239",
356
+ "variable": "var(--colors-rose-800)"
357
+ },
358
+ "colors.rose.900": {
359
+ "value": "#881337",
360
+ "variable": "var(--colors-rose-900)"
361
+ },
362
+ "colors.rose.950": {
363
+ "value": "#4c0519",
364
+ "variable": "var(--colors-rose-950)"
365
+ },
366
+ "colors.pink.50": {
367
+ "value": "#fdf2f8",
368
+ "variable": "var(--colors-pink-50)"
369
+ },
370
+ "colors.pink.100": {
371
+ "value": "#fce7f3",
372
+ "variable": "var(--colors-pink-100)"
373
+ },
374
+ "colors.pink.200": {
375
+ "value": "#fbcfe8",
376
+ "variable": "var(--colors-pink-200)"
377
+ },
378
+ "colors.pink.300": {
379
+ "value": "#f9a8d4",
380
+ "variable": "var(--colors-pink-300)"
381
+ },
382
+ "colors.pink.400": {
383
+ "value": "#f472b6",
384
+ "variable": "var(--colors-pink-400)"
385
+ },
386
+ "colors.pink.500": {
387
+ "value": "#ec4899",
388
+ "variable": "var(--colors-pink-500)"
389
+ },
390
+ "colors.pink.600": {
391
+ "value": "#db2777",
392
+ "variable": "var(--colors-pink-600)"
393
+ },
394
+ "colors.pink.700": {
395
+ "value": "#be185d",
396
+ "variable": "var(--colors-pink-700)"
397
+ },
398
+ "colors.pink.800": {
399
+ "value": "#9d174d",
400
+ "variable": "var(--colors-pink-800)"
401
+ },
402
+ "colors.pink.900": {
403
+ "value": "#831843",
404
+ "variable": "var(--colors-pink-900)"
405
+ },
406
+ "colors.pink.950": {
407
+ "value": "#500724",
408
+ "variable": "var(--colors-pink-950)"
409
+ },
410
+ "colors.fuchsia.50": {
411
+ "value": "#fdf4ff",
412
+ "variable": "var(--colors-fuchsia-50)"
413
+ },
414
+ "colors.fuchsia.100": {
415
+ "value": "#fae8ff",
416
+ "variable": "var(--colors-fuchsia-100)"
417
+ },
418
+ "colors.fuchsia.200": {
419
+ "value": "#f5d0fe",
420
+ "variable": "var(--colors-fuchsia-200)"
421
+ },
422
+ "colors.fuchsia.300": {
423
+ "value": "#f0abfc",
424
+ "variable": "var(--colors-fuchsia-300)"
425
+ },
426
+ "colors.fuchsia.400": {
427
+ "value": "#e879f9",
428
+ "variable": "var(--colors-fuchsia-400)"
429
+ },
430
+ "colors.fuchsia.500": {
431
+ "value": "#d946ef",
432
+ "variable": "var(--colors-fuchsia-500)"
433
+ },
434
+ "colors.fuchsia.600": {
435
+ "value": "#c026d3",
436
+ "variable": "var(--colors-fuchsia-600)"
437
+ },
438
+ "colors.fuchsia.700": {
439
+ "value": "#a21caf",
440
+ "variable": "var(--colors-fuchsia-700)"
441
+ },
442
+ "colors.fuchsia.800": {
443
+ "value": "#86198f",
444
+ "variable": "var(--colors-fuchsia-800)"
445
+ },
446
+ "colors.fuchsia.900": {
447
+ "value": "#701a75",
448
+ "variable": "var(--colors-fuchsia-900)"
449
+ },
450
+ "colors.fuchsia.950": {
451
+ "value": "#4a044e",
452
+ "variable": "var(--colors-fuchsia-950)"
453
+ },
454
+ "colors.purple.50": {
455
+ "value": "#faf5ff",
456
+ "variable": "var(--colors-purple-50)"
457
+ },
458
+ "colors.purple.100": {
459
+ "value": "#f3e8ff",
460
+ "variable": "var(--colors-purple-100)"
461
+ },
462
+ "colors.purple.200": {
463
+ "value": "#e9d5ff",
464
+ "variable": "var(--colors-purple-200)"
465
+ },
466
+ "colors.purple.300": {
467
+ "value": "#d8b4fe",
468
+ "variable": "var(--colors-purple-300)"
469
+ },
470
+ "colors.purple.400": {
471
+ "value": "#c084fc",
472
+ "variable": "var(--colors-purple-400)"
473
+ },
474
+ "colors.purple.500": {
475
+ "value": "#a855f7",
476
+ "variable": "var(--colors-purple-500)"
477
+ },
478
+ "colors.purple.600": {
479
+ "value": "#9333ea",
480
+ "variable": "var(--colors-purple-600)"
481
+ },
482
+ "colors.purple.700": {
483
+ "value": "#7e22ce",
484
+ "variable": "var(--colors-purple-700)"
485
+ },
486
+ "colors.purple.800": {
487
+ "value": "#6b21a8",
488
+ "variable": "var(--colors-purple-800)"
489
+ },
490
+ "colors.purple.900": {
491
+ "value": "#581c87",
492
+ "variable": "var(--colors-purple-900)"
493
+ },
494
+ "colors.purple.950": {
495
+ "value": "#3b0764",
496
+ "variable": "var(--colors-purple-950)"
497
+ },
498
+ "colors.violet.50": {
499
+ "value": "#f5f3ff",
500
+ "variable": "var(--colors-violet-50)"
501
+ },
502
+ "colors.violet.100": {
503
+ "value": "#ede9fe",
504
+ "variable": "var(--colors-violet-100)"
505
+ },
506
+ "colors.violet.200": {
507
+ "value": "#ddd6fe",
508
+ "variable": "var(--colors-violet-200)"
509
+ },
510
+ "colors.violet.300": {
511
+ "value": "#c4b5fd",
512
+ "variable": "var(--colors-violet-300)"
513
+ },
514
+ "colors.violet.400": {
515
+ "value": "#a78bfa",
516
+ "variable": "var(--colors-violet-400)"
517
+ },
518
+ "colors.violet.500": {
519
+ "value": "#8b5cf6",
520
+ "variable": "var(--colors-violet-500)"
521
+ },
522
+ "colors.violet.600": {
523
+ "value": "#7c3aed",
524
+ "variable": "var(--colors-violet-600)"
525
+ },
526
+ "colors.violet.700": {
527
+ "value": "#6d28d9",
528
+ "variable": "var(--colors-violet-700)"
529
+ },
530
+ "colors.violet.800": {
531
+ "value": "#5b21b6",
532
+ "variable": "var(--colors-violet-800)"
533
+ },
534
+ "colors.violet.900": {
535
+ "value": "#4c1d95",
536
+ "variable": "var(--colors-violet-900)"
537
+ },
538
+ "colors.violet.950": {
539
+ "value": "#2e1065",
540
+ "variable": "var(--colors-violet-950)"
541
+ },
542
+ "colors.indigo.50": {
543
+ "value": "#eef2ff",
544
+ "variable": "var(--colors-indigo-50)"
545
+ },
546
+ "colors.indigo.100": {
547
+ "value": "#e0e7ff",
548
+ "variable": "var(--colors-indigo-100)"
549
+ },
550
+ "colors.indigo.200": {
551
+ "value": "#c7d2fe",
552
+ "variable": "var(--colors-indigo-200)"
553
+ },
554
+ "colors.indigo.300": {
555
+ "value": "#a5b4fc",
556
+ "variable": "var(--colors-indigo-300)"
557
+ },
558
+ "colors.indigo.400": {
559
+ "value": "#818cf8",
560
+ "variable": "var(--colors-indigo-400)"
561
+ },
562
+ "colors.indigo.500": {
563
+ "value": "#6366f1",
564
+ "variable": "var(--colors-indigo-500)"
565
+ },
566
+ "colors.indigo.600": {
567
+ "value": "#4f46e5",
568
+ "variable": "var(--colors-indigo-600)"
569
+ },
570
+ "colors.indigo.700": {
571
+ "value": "#4338ca",
572
+ "variable": "var(--colors-indigo-700)"
573
+ },
574
+ "colors.indigo.800": {
575
+ "value": "#3730a3",
576
+ "variable": "var(--colors-indigo-800)"
577
+ },
578
+ "colors.indigo.900": {
579
+ "value": "#312e81",
580
+ "variable": "var(--colors-indigo-900)"
581
+ },
582
+ "colors.indigo.950": {
583
+ "value": "#1e1b4b",
584
+ "variable": "var(--colors-indigo-950)"
585
+ },
586
+ "colors.blue.50": {
587
+ "value": "#eff6ff",
588
+ "variable": "var(--colors-blue-50)"
589
+ },
590
+ "colors.blue.100": {
591
+ "value": "#dbeafe",
592
+ "variable": "var(--colors-blue-100)"
593
+ },
594
+ "colors.blue.200": {
595
+ "value": "#bfdbfe",
596
+ "variable": "var(--colors-blue-200)"
597
+ },
598
+ "colors.blue.300": {
599
+ "value": "#93c5fd",
600
+ "variable": "var(--colors-blue-300)"
601
+ },
602
+ "colors.blue.400": {
603
+ "value": "#60a5fa",
604
+ "variable": "var(--colors-blue-400)"
605
+ },
606
+ "colors.blue.500": {
607
+ "value": "#3b82f6",
608
+ "variable": "var(--colors-blue-500)"
609
+ },
610
+ "colors.blue.600": {
611
+ "value": "#2563eb",
612
+ "variable": "var(--colors-blue-600)"
613
+ },
614
+ "colors.blue.700": {
615
+ "value": "#1d4ed8",
616
+ "variable": "var(--colors-blue-700)"
617
+ },
618
+ "colors.blue.800": {
619
+ "value": "#1e40af",
620
+ "variable": "var(--colors-blue-800)"
621
+ },
622
+ "colors.blue.900": {
623
+ "value": "#1e3a8a",
624
+ "variable": "var(--colors-blue-900)"
625
+ },
626
+ "colors.blue.950": {
627
+ "value": "#172554",
628
+ "variable": "var(--colors-blue-950)"
629
+ },
630
+ "colors.sky.50": {
631
+ "value": "#f0f9ff",
632
+ "variable": "var(--colors-sky-50)"
633
+ },
634
+ "colors.sky.100": {
635
+ "value": "#e0f2fe",
636
+ "variable": "var(--colors-sky-100)"
637
+ },
638
+ "colors.sky.200": {
639
+ "value": "#bae6fd",
640
+ "variable": "var(--colors-sky-200)"
641
+ },
642
+ "colors.sky.300": {
643
+ "value": "#7dd3fc",
644
+ "variable": "var(--colors-sky-300)"
645
+ },
646
+ "colors.sky.400": {
647
+ "value": "#38bdf8",
648
+ "variable": "var(--colors-sky-400)"
649
+ },
650
+ "colors.sky.500": {
651
+ "value": "#0ea5e9",
652
+ "variable": "var(--colors-sky-500)"
653
+ },
654
+ "colors.sky.600": {
655
+ "value": "#0284c7",
656
+ "variable": "var(--colors-sky-600)"
657
+ },
658
+ "colors.sky.700": {
659
+ "value": "#0369a1",
660
+ "variable": "var(--colors-sky-700)"
661
+ },
662
+ "colors.sky.800": {
663
+ "value": "#075985",
664
+ "variable": "var(--colors-sky-800)"
665
+ },
666
+ "colors.sky.900": {
667
+ "value": "#0c4a6e",
668
+ "variable": "var(--colors-sky-900)"
669
+ },
670
+ "colors.sky.950": {
671
+ "value": "#082f49",
672
+ "variable": "var(--colors-sky-950)"
673
+ },
674
+ "colors.cyan.50": {
675
+ "value": "#ecfeff",
676
+ "variable": "var(--colors-cyan-50)"
677
+ },
678
+ "colors.cyan.100": {
679
+ "value": "#cffafe",
680
+ "variable": "var(--colors-cyan-100)"
681
+ },
682
+ "colors.cyan.200": {
683
+ "value": "#a5f3fc",
684
+ "variable": "var(--colors-cyan-200)"
685
+ },
686
+ "colors.cyan.300": {
687
+ "value": "#67e8f9",
688
+ "variable": "var(--colors-cyan-300)"
689
+ },
690
+ "colors.cyan.400": {
691
+ "value": "#22d3ee",
692
+ "variable": "var(--colors-cyan-400)"
693
+ },
694
+ "colors.cyan.500": {
695
+ "value": "#06b6d4",
696
+ "variable": "var(--colors-cyan-500)"
697
+ },
698
+ "colors.cyan.600": {
699
+ "value": "#0891b2",
700
+ "variable": "var(--colors-cyan-600)"
701
+ },
702
+ "colors.cyan.700": {
703
+ "value": "#0e7490",
704
+ "variable": "var(--colors-cyan-700)"
705
+ },
706
+ "colors.cyan.800": {
707
+ "value": "#155e75",
708
+ "variable": "var(--colors-cyan-800)"
709
+ },
710
+ "colors.cyan.900": {
711
+ "value": "#164e63",
712
+ "variable": "var(--colors-cyan-900)"
713
+ },
714
+ "colors.cyan.950": {
715
+ "value": "#083344",
716
+ "variable": "var(--colors-cyan-950)"
717
+ },
718
+ "colors.teal.50": {
719
+ "value": "#f0fdfa",
720
+ "variable": "var(--colors-teal-50)"
721
+ },
722
+ "colors.teal.100": {
723
+ "value": "#ccfbf1",
724
+ "variable": "var(--colors-teal-100)"
725
+ },
726
+ "colors.teal.200": {
727
+ "value": "#99f6e4",
728
+ "variable": "var(--colors-teal-200)"
729
+ },
730
+ "colors.teal.300": {
731
+ "value": "#5eead4",
732
+ "variable": "var(--colors-teal-300)"
733
+ },
734
+ "colors.teal.400": {
735
+ "value": "#2dd4bf",
736
+ "variable": "var(--colors-teal-400)"
737
+ },
738
+ "colors.teal.500": {
739
+ "value": "#14b8a6",
740
+ "variable": "var(--colors-teal-500)"
741
+ },
742
+ "colors.teal.600": {
743
+ "value": "#0d9488",
744
+ "variable": "var(--colors-teal-600)"
745
+ },
746
+ "colors.teal.700": {
747
+ "value": "#0f766e",
748
+ "variable": "var(--colors-teal-700)"
749
+ },
750
+ "colors.teal.800": {
751
+ "value": "#115e59",
752
+ "variable": "var(--colors-teal-800)"
753
+ },
754
+ "colors.teal.900": {
755
+ "value": "#134e4a",
756
+ "variable": "var(--colors-teal-900)"
757
+ },
758
+ "colors.teal.950": {
759
+ "value": "#042f2e",
760
+ "variable": "var(--colors-teal-950)"
761
+ },
762
+ "colors.emerald.50": {
763
+ "value": "#ecfdf5",
764
+ "variable": "var(--colors-emerald-50)"
765
+ },
766
+ "colors.emerald.100": {
767
+ "value": "#d1fae5",
768
+ "variable": "var(--colors-emerald-100)"
769
+ },
770
+ "colors.emerald.200": {
771
+ "value": "#a7f3d0",
772
+ "variable": "var(--colors-emerald-200)"
773
+ },
774
+ "colors.emerald.300": {
775
+ "value": "#6ee7b7",
776
+ "variable": "var(--colors-emerald-300)"
777
+ },
778
+ "colors.emerald.400": {
779
+ "value": "#34d399",
780
+ "variable": "var(--colors-emerald-400)"
781
+ },
782
+ "colors.emerald.500": {
783
+ "value": "#10b981",
784
+ "variable": "var(--colors-emerald-500)"
785
+ },
786
+ "colors.emerald.600": {
787
+ "value": "#059669",
788
+ "variable": "var(--colors-emerald-600)"
789
+ },
790
+ "colors.emerald.700": {
791
+ "value": "#047857",
792
+ "variable": "var(--colors-emerald-700)"
793
+ },
794
+ "colors.emerald.800": {
795
+ "value": "#065f46",
796
+ "variable": "var(--colors-emerald-800)"
797
+ },
798
+ "colors.emerald.900": {
799
+ "value": "#064e3b",
800
+ "variable": "var(--colors-emerald-900)"
801
+ },
802
+ "colors.emerald.950": {
803
+ "value": "#022c22",
804
+ "variable": "var(--colors-emerald-950)"
805
+ },
806
+ "colors.green.50": {
807
+ "value": "#f0fdf4",
808
+ "variable": "var(--colors-green-50)"
809
+ },
810
+ "colors.green.100": {
811
+ "value": "#dcfce7",
812
+ "variable": "var(--colors-green-100)"
813
+ },
814
+ "colors.green.200": {
815
+ "value": "#bbf7d0",
816
+ "variable": "var(--colors-green-200)"
817
+ },
818
+ "colors.green.300": {
819
+ "value": "#86efac",
820
+ "variable": "var(--colors-green-300)"
821
+ },
822
+ "colors.green.400": {
823
+ "value": "#4ade80",
824
+ "variable": "var(--colors-green-400)"
825
+ },
826
+ "colors.green.500": {
827
+ "value": "#22c55e",
828
+ "variable": "var(--colors-green-500)"
829
+ },
830
+ "colors.green.600": {
831
+ "value": "#16a34a",
832
+ "variable": "var(--colors-green-600)"
833
+ },
834
+ "colors.green.700": {
835
+ "value": "#15803d",
836
+ "variable": "var(--colors-green-700)"
837
+ },
838
+ "colors.green.800": {
839
+ "value": "#166534",
840
+ "variable": "var(--colors-green-800)"
841
+ },
842
+ "colors.green.900": {
843
+ "value": "#14532d",
844
+ "variable": "var(--colors-green-900)"
845
+ },
846
+ "colors.green.950": {
847
+ "value": "#052e16",
848
+ "variable": "var(--colors-green-950)"
849
+ },
850
+ "colors.lime.50": {
851
+ "value": "#f7fee7",
852
+ "variable": "var(--colors-lime-50)"
853
+ },
854
+ "colors.lime.100": {
855
+ "value": "#ecfccb",
856
+ "variable": "var(--colors-lime-100)"
857
+ },
858
+ "colors.lime.200": {
859
+ "value": "#d9f99d",
860
+ "variable": "var(--colors-lime-200)"
861
+ },
862
+ "colors.lime.300": {
863
+ "value": "#bef264",
864
+ "variable": "var(--colors-lime-300)"
865
+ },
866
+ "colors.lime.400": {
867
+ "value": "#a3e635",
868
+ "variable": "var(--colors-lime-400)"
869
+ },
870
+ "colors.lime.500": {
871
+ "value": "#84cc16",
872
+ "variable": "var(--colors-lime-500)"
873
+ },
874
+ "colors.lime.600": {
875
+ "value": "#65a30d",
876
+ "variable": "var(--colors-lime-600)"
877
+ },
878
+ "colors.lime.700": {
879
+ "value": "#4d7c0f",
880
+ "variable": "var(--colors-lime-700)"
881
+ },
882
+ "colors.lime.800": {
883
+ "value": "#3f6212",
884
+ "variable": "var(--colors-lime-800)"
885
+ },
886
+ "colors.lime.900": {
887
+ "value": "#365314",
888
+ "variable": "var(--colors-lime-900)"
889
+ },
890
+ "colors.lime.950": {
891
+ "value": "#1a2e05",
892
+ "variable": "var(--colors-lime-950)"
893
+ },
894
+ "colors.yellow.50": {
895
+ "value": "#fefce8",
896
+ "variable": "var(--colors-yellow-50)"
897
+ },
898
+ "colors.yellow.100": {
899
+ "value": "#fef9c3",
900
+ "variable": "var(--colors-yellow-100)"
901
+ },
902
+ "colors.yellow.200": {
903
+ "value": "#fef08a",
904
+ "variable": "var(--colors-yellow-200)"
905
+ },
906
+ "colors.yellow.300": {
907
+ "value": "#fde047",
908
+ "variable": "var(--colors-yellow-300)"
909
+ },
910
+ "colors.yellow.400": {
911
+ "value": "#facc15",
912
+ "variable": "var(--colors-yellow-400)"
913
+ },
914
+ "colors.yellow.500": {
915
+ "value": "#eab308",
916
+ "variable": "var(--colors-yellow-500)"
917
+ },
918
+ "colors.yellow.600": {
919
+ "value": "#ca8a04",
920
+ "variable": "var(--colors-yellow-600)"
921
+ },
922
+ "colors.yellow.700": {
923
+ "value": "#a16207",
924
+ "variable": "var(--colors-yellow-700)"
925
+ },
926
+ "colors.yellow.800": {
927
+ "value": "#854d0e",
928
+ "variable": "var(--colors-yellow-800)"
929
+ },
930
+ "colors.yellow.900": {
931
+ "value": "#713f12",
932
+ "variable": "var(--colors-yellow-900)"
933
+ },
934
+ "colors.yellow.950": {
935
+ "value": "#422006",
936
+ "variable": "var(--colors-yellow-950)"
937
+ },
938
+ "colors.amber.50": {
939
+ "value": "#fffbeb",
940
+ "variable": "var(--colors-amber-50)"
941
+ },
942
+ "colors.amber.100": {
943
+ "value": "#fef3c7",
944
+ "variable": "var(--colors-amber-100)"
945
+ },
946
+ "colors.amber.200": {
947
+ "value": "#fde68a",
948
+ "variable": "var(--colors-amber-200)"
949
+ },
950
+ "colors.amber.300": {
951
+ "value": "#fcd34d",
952
+ "variable": "var(--colors-amber-300)"
953
+ },
954
+ "colors.amber.400": {
955
+ "value": "#fbbf24",
956
+ "variable": "var(--colors-amber-400)"
957
+ },
958
+ "colors.amber.500": {
959
+ "value": "#f59e0b",
960
+ "variable": "var(--colors-amber-500)"
961
+ },
962
+ "colors.amber.600": {
963
+ "value": "#d97706",
964
+ "variable": "var(--colors-amber-600)"
965
+ },
966
+ "colors.amber.700": {
967
+ "value": "#b45309",
968
+ "variable": "var(--colors-amber-700)"
969
+ },
970
+ "colors.amber.800": {
971
+ "value": "#92400e",
972
+ "variable": "var(--colors-amber-800)"
973
+ },
974
+ "colors.amber.900": {
975
+ "value": "#78350f",
976
+ "variable": "var(--colors-amber-900)"
977
+ },
978
+ "colors.amber.950": {
979
+ "value": "#451a03",
980
+ "variable": "var(--colors-amber-950)"
981
+ },
982
+ "colors.orange.50": {
983
+ "value": "#fff7ed",
984
+ "variable": "var(--colors-orange-50)"
985
+ },
986
+ "colors.orange.100": {
987
+ "value": "#ffedd5",
988
+ "variable": "var(--colors-orange-100)"
989
+ },
990
+ "colors.orange.200": {
991
+ "value": "#fed7aa",
992
+ "variable": "var(--colors-orange-200)"
993
+ },
994
+ "colors.orange.300": {
995
+ "value": "#fdba74",
996
+ "variable": "var(--colors-orange-300)"
997
+ },
998
+ "colors.orange.400": {
999
+ "value": "#fb923c",
1000
+ "variable": "var(--colors-orange-400)"
1001
+ },
1002
+ "colors.orange.500": {
1003
+ "value": "#f97316",
1004
+ "variable": "var(--colors-orange-500)"
1005
+ },
1006
+ "colors.orange.600": {
1007
+ "value": "#ea580c",
1008
+ "variable": "var(--colors-orange-600)"
1009
+ },
1010
+ "colors.orange.700": {
1011
+ "value": "#c2410c",
1012
+ "variable": "var(--colors-orange-700)"
1013
+ },
1014
+ "colors.orange.800": {
1015
+ "value": "#9a3412",
1016
+ "variable": "var(--colors-orange-800)"
1017
+ },
1018
+ "colors.orange.900": {
1019
+ "value": "#7c2d12",
1020
+ "variable": "var(--colors-orange-900)"
1021
+ },
1022
+ "colors.orange.950": {
1023
+ "value": "#431407",
1024
+ "variable": "var(--colors-orange-950)"
1025
+ },
1026
+ "colors.red.50": {
1027
+ "value": "#fef2f2",
1028
+ "variable": "var(--colors-red-50)"
1029
+ },
1030
+ "colors.red.100": {
1031
+ "value": "#fee2e2",
1032
+ "variable": "var(--colors-red-100)"
1033
+ },
1034
+ "colors.red.200": {
1035
+ "value": "#fecaca",
1036
+ "variable": "var(--colors-red-200)"
1037
+ },
1038
+ "colors.red.300": {
1039
+ "value": "#fca5a5",
1040
+ "variable": "var(--colors-red-300)"
1041
+ },
1042
+ "colors.red.400": {
1043
+ "value": "#f87171",
1044
+ "variable": "var(--colors-red-400)"
1045
+ },
1046
+ "colors.red.500": {
1047
+ "value": "#ef4444",
1048
+ "variable": "var(--colors-red-500)"
1049
+ },
1050
+ "colors.red.600": {
1051
+ "value": "#dc2626",
1052
+ "variable": "var(--colors-red-600)"
1053
+ },
1054
+ "colors.red.700": {
1055
+ "value": "#b91c1c",
1056
+ "variable": "var(--colors-red-700)"
1057
+ },
1058
+ "colors.red.800": {
1059
+ "value": "#991b1b",
1060
+ "variable": "var(--colors-red-800)"
1061
+ },
1062
+ "colors.red.900": {
1063
+ "value": "#7f1d1d",
1064
+ "variable": "var(--colors-red-900)"
1065
+ },
1066
+ "colors.red.950": {
1067
+ "value": "#450a0a",
1068
+ "variable": "var(--colors-red-950)"
1069
+ },
1070
+ "colors.neutral.50": {
1071
+ "value": "#fafafa",
1072
+ "variable": "var(--colors-neutral-50)"
1073
+ },
1074
+ "colors.neutral.100": {
1075
+ "value": "#f5f5f5",
1076
+ "variable": "var(--colors-neutral-100)"
1077
+ },
1078
+ "colors.neutral.200": {
1079
+ "value": "#e5e5e5",
1080
+ "variable": "var(--colors-neutral-200)"
1081
+ },
1082
+ "colors.neutral.300": {
1083
+ "value": "#d4d4d4",
1084
+ "variable": "var(--colors-neutral-300)"
1085
+ },
1086
+ "colors.neutral.400": {
1087
+ "value": "#a3a3a3",
1088
+ "variable": "var(--colors-neutral-400)"
1089
+ },
1090
+ "colors.neutral.500": {
1091
+ "value": "#737373",
1092
+ "variable": "var(--colors-neutral-500)"
1093
+ },
1094
+ "colors.neutral.600": {
1095
+ "value": "#525252",
1096
+ "variable": "var(--colors-neutral-600)"
1097
+ },
1098
+ "colors.neutral.700": {
1099
+ "value": "#404040",
1100
+ "variable": "var(--colors-neutral-700)"
1101
+ },
1102
+ "colors.neutral.800": {
1103
+ "value": "#262626",
1104
+ "variable": "var(--colors-neutral-800)"
1105
+ },
1106
+ "colors.neutral.900": {
1107
+ "value": "#171717",
1108
+ "variable": "var(--colors-neutral-900)"
1109
+ },
1110
+ "colors.neutral.950": {
1111
+ "value": "#0a0a0a",
1112
+ "variable": "var(--colors-neutral-950)"
1113
+ },
1114
+ "colors.stone.50": {
1115
+ "value": "#fafaf9",
1116
+ "variable": "var(--colors-stone-50)"
1117
+ },
1118
+ "colors.stone.100": {
1119
+ "value": "#f5f5f4",
1120
+ "variable": "var(--colors-stone-100)"
1121
+ },
1122
+ "colors.stone.200": {
1123
+ "value": "#e7e5e4",
1124
+ "variable": "var(--colors-stone-200)"
1125
+ },
1126
+ "colors.stone.300": {
1127
+ "value": "#d6d3d1",
1128
+ "variable": "var(--colors-stone-300)"
1129
+ },
1130
+ "colors.stone.400": {
1131
+ "value": "#a8a29e",
1132
+ "variable": "var(--colors-stone-400)"
1133
+ },
1134
+ "colors.stone.500": {
1135
+ "value": "#78716c",
1136
+ "variable": "var(--colors-stone-500)"
1137
+ },
1138
+ "colors.stone.600": {
1139
+ "value": "#57534e",
1140
+ "variable": "var(--colors-stone-600)"
1141
+ },
1142
+ "colors.stone.700": {
1143
+ "value": "#44403c",
1144
+ "variable": "var(--colors-stone-700)"
1145
+ },
1146
+ "colors.stone.800": {
1147
+ "value": "#292524",
1148
+ "variable": "var(--colors-stone-800)"
1149
+ },
1150
+ "colors.stone.900": {
1151
+ "value": "#1c1917",
1152
+ "variable": "var(--colors-stone-900)"
1153
+ },
1154
+ "colors.stone.950": {
1155
+ "value": "#0c0a09",
1156
+ "variable": "var(--colors-stone-950)"
1157
+ },
1158
+ "colors.zinc.50": {
1159
+ "value": "#fafafa",
1160
+ "variable": "var(--colors-zinc-50)"
1161
+ },
1162
+ "colors.zinc.100": {
1163
+ "value": "#f4f4f5",
1164
+ "variable": "var(--colors-zinc-100)"
1165
+ },
1166
+ "colors.zinc.200": {
1167
+ "value": "#e4e4e7",
1168
+ "variable": "var(--colors-zinc-200)"
1169
+ },
1170
+ "colors.zinc.300": {
1171
+ "value": "#d4d4d8",
1172
+ "variable": "var(--colors-zinc-300)"
1173
+ },
1174
+ "colors.zinc.400": {
1175
+ "value": "#a1a1aa",
1176
+ "variable": "var(--colors-zinc-400)"
1177
+ },
1178
+ "colors.zinc.500": {
1179
+ "value": "#71717a",
1180
+ "variable": "var(--colors-zinc-500)"
1181
+ },
1182
+ "colors.zinc.600": {
1183
+ "value": "#52525b",
1184
+ "variable": "var(--colors-zinc-600)"
1185
+ },
1186
+ "colors.zinc.700": {
1187
+ "value": "#3f3f46",
1188
+ "variable": "var(--colors-zinc-700)"
1189
+ },
1190
+ "colors.zinc.800": {
1191
+ "value": "#27272a",
1192
+ "variable": "var(--colors-zinc-800)"
1193
+ },
1194
+ "colors.zinc.900": {
1195
+ "value": "#18181b",
1196
+ "variable": "var(--colors-zinc-900)"
1197
+ },
1198
+ "colors.zinc.950": {
1199
+ "value": "#09090b",
1200
+ "variable": "var(--colors-zinc-950)"
1201
+ },
1202
+ "colors.gray.50": {
1203
+ "value": "#f9fafb",
1204
+ "variable": "var(--colors-gray-50)"
1205
+ },
1206
+ "colors.gray.100": {
1207
+ "value": "#f3f4f6",
1208
+ "variable": "var(--colors-gray-100)"
1209
+ },
1210
+ "colors.gray.200": {
1211
+ "value": "#e5e7eb",
1212
+ "variable": "var(--colors-gray-200)"
1213
+ },
1214
+ "colors.gray.300": {
1215
+ "value": "#d1d5db",
1216
+ "variable": "var(--colors-gray-300)"
1217
+ },
1218
+ "colors.gray.400": {
1219
+ "value": "#9ca3af",
1220
+ "variable": "var(--colors-gray-400)"
1221
+ },
1222
+ "colors.gray.500": {
1223
+ "value": "#6b7280",
1224
+ "variable": "var(--colors-gray-500)"
1225
+ },
1226
+ "colors.gray.600": {
1227
+ "value": "#4b5563",
1228
+ "variable": "var(--colors-gray-600)"
1229
+ },
1230
+ "colors.gray.700": {
1231
+ "value": "#374151",
1232
+ "variable": "var(--colors-gray-700)"
1233
+ },
1234
+ "colors.gray.800": {
1235
+ "value": "#1f2937",
1236
+ "variable": "var(--colors-gray-800)"
1237
+ },
1238
+ "colors.gray.900": {
1239
+ "value": "#111827",
1240
+ "variable": "var(--colors-gray-900)"
1241
+ },
1242
+ "colors.gray.950": {
1243
+ "value": "#030712",
1244
+ "variable": "var(--colors-gray-950)"
1245
+ },
1246
+ "colors.slate.50": {
1247
+ "value": "#f8fafc",
1248
+ "variable": "var(--colors-slate-50)"
1249
+ },
1250
+ "colors.slate.100": {
1251
+ "value": "#f1f5f9",
1252
+ "variable": "var(--colors-slate-100)"
1253
+ },
1254
+ "colors.slate.200": {
1255
+ "value": "#e2e8f0",
1256
+ "variable": "var(--colors-slate-200)"
1257
+ },
1258
+ "colors.slate.300": {
1259
+ "value": "#cbd5e1",
1260
+ "variable": "var(--colors-slate-300)"
1261
+ },
1262
+ "colors.slate.400": {
1263
+ "value": "#94a3b8",
1264
+ "variable": "var(--colors-slate-400)"
1265
+ },
1266
+ "colors.slate.500": {
1267
+ "value": "#64748b",
1268
+ "variable": "var(--colors-slate-500)"
1269
+ },
1270
+ "colors.slate.600": {
1271
+ "value": "#475569",
1272
+ "variable": "var(--colors-slate-600)"
1273
+ },
1274
+ "colors.slate.700": {
1275
+ "value": "#334155",
1276
+ "variable": "var(--colors-slate-700)"
1277
+ },
1278
+ "colors.slate.800": {
1279
+ "value": "#1e293b",
1280
+ "variable": "var(--colors-slate-800)"
1281
+ },
1282
+ "colors.slate.900": {
1283
+ "value": "#0f172a",
1284
+ "variable": "var(--colors-slate-900)"
1285
+ },
1286
+ "colors.slate.950": {
1287
+ "value": "#020617",
1288
+ "variable": "var(--colors-slate-950)"
1289
+ },
1290
+ "blurs.xs": {
1291
+ "value": "4px",
1292
+ "variable": "var(--blurs-xs)"
1293
+ },
1294
+ "blurs.sm": {
1295
+ "value": "8px",
1296
+ "variable": "var(--blurs-sm)"
1297
+ },
1298
+ "blurs.md": {
1299
+ "value": "12px",
1300
+ "variable": "var(--blurs-md)"
1301
+ },
1302
+ "blurs.lg": {
1303
+ "value": "16px",
1304
+ "variable": "var(--blurs-lg)"
1305
+ },
1306
+ "blurs.xl": {
1307
+ "value": "24px",
1308
+ "variable": "var(--blurs-xl)"
1309
+ },
1310
+ "blurs.2xl": {
1311
+ "value": "40px",
1312
+ "variable": "var(--blurs-2xl)"
1313
+ },
1314
+ "blurs.3xl": {
1315
+ "value": "64px",
1316
+ "variable": "var(--blurs-3xl)"
1317
+ },
1318
+ "spacing.0": {
1319
+ "value": "0rem",
1320
+ "variable": "var(--spacing-0)"
1321
+ },
1322
+ "spacing.1": {
1323
+ "value": "0.25rem",
1324
+ "variable": "var(--spacing-1)"
1325
+ },
1326
+ "spacing.2": {
1327
+ "value": "0.5rem",
1328
+ "variable": "var(--spacing-2)"
1329
+ },
1330
+ "spacing.3": {
1331
+ "value": "0.75rem",
1332
+ "variable": "var(--spacing-3)"
1333
+ },
1334
+ "spacing.4": {
1335
+ "value": "1rem",
1336
+ "variable": "var(--spacing-4)"
1337
+ },
1338
+ "spacing.5": {
1339
+ "value": "1.25rem",
1340
+ "variable": "var(--spacing-5)"
1341
+ },
1342
+ "spacing.6": {
1343
+ "value": "1.5rem",
1344
+ "variable": "var(--spacing-6)"
1345
+ },
1346
+ "spacing.7": {
1347
+ "value": "1.75rem",
1348
+ "variable": "var(--spacing-7)"
1349
+ },
1350
+ "spacing.8": {
1351
+ "value": "2rem",
1352
+ "variable": "var(--spacing-8)"
1353
+ },
1354
+ "spacing.9": {
1355
+ "value": "2.25rem",
1356
+ "variable": "var(--spacing-9)"
1357
+ },
1358
+ "spacing.10": {
1359
+ "value": "2.5rem",
1360
+ "variable": "var(--spacing-10)"
1361
+ },
1362
+ "spacing.11": {
1363
+ "value": "2.75rem",
1364
+ "variable": "var(--spacing-11)"
1365
+ },
1366
+ "spacing.12": {
1367
+ "value": "3rem",
1368
+ "variable": "var(--spacing-12)"
1369
+ },
1370
+ "spacing.14": {
1371
+ "value": "3.5rem",
1372
+ "variable": "var(--spacing-14)"
1373
+ },
1374
+ "spacing.16": {
1375
+ "value": "4rem",
1376
+ "variable": "var(--spacing-16)"
1377
+ },
1378
+ "spacing.20": {
1379
+ "value": "5rem",
1380
+ "variable": "var(--spacing-20)"
1381
+ },
1382
+ "spacing.24": {
1383
+ "value": "6rem",
1384
+ "variable": "var(--spacing-24)"
1385
+ },
1386
+ "spacing.28": {
1387
+ "value": "7rem",
1388
+ "variable": "var(--spacing-28)"
1389
+ },
1390
+ "spacing.32": {
1391
+ "value": "8rem",
1392
+ "variable": "var(--spacing-32)"
1393
+ },
1394
+ "spacing.36": {
1395
+ "value": "9rem",
1396
+ "variable": "var(--spacing-36)"
1397
+ },
1398
+ "spacing.40": {
1399
+ "value": "10rem",
1400
+ "variable": "var(--spacing-40)"
1401
+ },
1402
+ "spacing.44": {
1403
+ "value": "11rem",
1404
+ "variable": "var(--spacing-44)"
1405
+ },
1406
+ "spacing.48": {
1407
+ "value": "12rem",
1408
+ "variable": "var(--spacing-48)"
1409
+ },
1410
+ "spacing.52": {
1411
+ "value": "13rem",
1412
+ "variable": "var(--spacing-52)"
1413
+ },
1414
+ "spacing.56": {
1415
+ "value": "14rem",
1416
+ "variable": "var(--spacing-56)"
1417
+ },
1418
+ "spacing.60": {
1419
+ "value": "15rem",
1420
+ "variable": "var(--spacing-60)"
1421
+ },
1422
+ "spacing.64": {
1423
+ "value": "16rem",
1424
+ "variable": "var(--spacing-64)"
1425
+ },
1426
+ "spacing.72": {
1427
+ "value": "18rem",
1428
+ "variable": "var(--spacing-72)"
1429
+ },
1430
+ "spacing.80": {
1431
+ "value": "20rem",
1432
+ "variable": "var(--spacing-80)"
1433
+ },
1434
+ "spacing.96": {
1435
+ "value": "24rem",
1436
+ "variable": "var(--spacing-96)"
1437
+ },
1438
+ "spacing.0.5": {
1439
+ "value": "0.125rem",
1440
+ "variable": "var(--spacing-0\\.5)"
1441
+ },
1442
+ "spacing.1.5": {
1443
+ "value": "0.375rem",
1444
+ "variable": "var(--spacing-1\\.5)"
1445
+ },
1446
+ "spacing.2.5": {
1447
+ "value": "0.625rem",
1448
+ "variable": "var(--spacing-2\\.5)"
1449
+ },
1450
+ "spacing.3.5": {
1451
+ "value": "0.875rem",
1452
+ "variable": "var(--spacing-3\\.5)"
1453
+ },
1454
+ "spacing.4.5": {
1455
+ "value": "1.125rem",
1456
+ "variable": "var(--spacing-4\\.5)"
1457
+ },
1458
+ "spacing.5.5": {
1459
+ "value": "1.375rem",
1460
+ "variable": "var(--spacing-5\\.5)"
1461
+ },
1462
+ "sizes.0": {
1463
+ "value": "0rem",
1464
+ "variable": "var(--sizes-0)"
1465
+ },
1466
+ "sizes.1": {
1467
+ "value": "0.25rem",
1468
+ "variable": "var(--sizes-1)"
1469
+ },
1470
+ "sizes.2": {
1471
+ "value": "0.5rem",
1472
+ "variable": "var(--sizes-2)"
1473
+ },
1474
+ "sizes.3": {
1475
+ "value": "0.75rem",
1476
+ "variable": "var(--sizes-3)"
1477
+ },
1478
+ "sizes.4": {
1479
+ "value": "1rem",
1480
+ "variable": "var(--sizes-4)"
1481
+ },
1482
+ "sizes.5": {
1483
+ "value": "1.25rem",
1484
+ "variable": "var(--sizes-5)"
1485
+ },
1486
+ "sizes.6": {
1487
+ "value": "1.5rem",
1488
+ "variable": "var(--sizes-6)"
1489
+ },
1490
+ "sizes.7": {
1491
+ "value": "1.75rem",
1492
+ "variable": "var(--sizes-7)"
1493
+ },
1494
+ "sizes.8": {
1495
+ "value": "2rem",
1496
+ "variable": "var(--sizes-8)"
1497
+ },
1498
+ "sizes.9": {
1499
+ "value": "2.25rem",
1500
+ "variable": "var(--sizes-9)"
1501
+ },
1502
+ "sizes.10": {
1503
+ "value": "2.5rem",
1504
+ "variable": "var(--sizes-10)"
1505
+ },
1506
+ "sizes.11": {
1507
+ "value": "2.75rem",
1508
+ "variable": "var(--sizes-11)"
1509
+ },
1510
+ "sizes.12": {
1511
+ "value": "3rem",
1512
+ "variable": "var(--sizes-12)"
1513
+ },
1514
+ "sizes.14": {
1515
+ "value": "3.5rem",
1516
+ "variable": "var(--sizes-14)"
1517
+ },
1518
+ "sizes.16": {
1519
+ "value": "4rem",
1520
+ "variable": "var(--sizes-16)"
1521
+ },
1522
+ "sizes.20": {
1523
+ "value": "5rem",
1524
+ "variable": "var(--sizes-20)"
1525
+ },
1526
+ "sizes.24": {
1527
+ "value": "6rem",
1528
+ "variable": "var(--sizes-24)"
1529
+ },
1530
+ "sizes.28": {
1531
+ "value": "7rem",
1532
+ "variable": "var(--sizes-28)"
1533
+ },
1534
+ "sizes.32": {
1535
+ "value": "8rem",
1536
+ "variable": "var(--sizes-32)"
1537
+ },
1538
+ "sizes.36": {
1539
+ "value": "9rem",
1540
+ "variable": "var(--sizes-36)"
1541
+ },
1542
+ "sizes.40": {
1543
+ "value": "10rem",
1544
+ "variable": "var(--sizes-40)"
1545
+ },
1546
+ "sizes.44": {
1547
+ "value": "11rem",
1548
+ "variable": "var(--sizes-44)"
1549
+ },
1550
+ "sizes.48": {
1551
+ "value": "12rem",
1552
+ "variable": "var(--sizes-48)"
1553
+ },
1554
+ "sizes.52": {
1555
+ "value": "13rem",
1556
+ "variable": "var(--sizes-52)"
1557
+ },
1558
+ "sizes.56": {
1559
+ "value": "14rem",
1560
+ "variable": "var(--sizes-56)"
1561
+ },
1562
+ "sizes.60": {
1563
+ "value": "15rem",
1564
+ "variable": "var(--sizes-60)"
1565
+ },
1566
+ "sizes.64": {
1567
+ "value": "16rem",
1568
+ "variable": "var(--sizes-64)"
1569
+ },
1570
+ "sizes.72": {
1571
+ "value": "18rem",
1572
+ "variable": "var(--sizes-72)"
1573
+ },
1574
+ "sizes.80": {
1575
+ "value": "20rem",
1576
+ "variable": "var(--sizes-80)"
1577
+ },
1578
+ "sizes.96": {
1579
+ "value": "24rem",
1580
+ "variable": "var(--sizes-96)"
1581
+ },
1582
+ "sizes.0.5": {
1583
+ "value": "0.125rem",
1584
+ "variable": "var(--sizes-0\\.5)"
1585
+ },
1586
+ "sizes.1.5": {
1587
+ "value": "0.375rem",
1588
+ "variable": "var(--sizes-1\\.5)"
1589
+ },
1590
+ "sizes.2.5": {
1591
+ "value": "0.625rem",
1592
+ "variable": "var(--sizes-2\\.5)"
1593
+ },
1594
+ "sizes.3.5": {
1595
+ "value": "0.875rem",
1596
+ "variable": "var(--sizes-3\\.5)"
1597
+ },
1598
+ "sizes.4.5": {
1599
+ "value": "1.125rem",
1600
+ "variable": "var(--sizes-4\\.5)"
1601
+ },
1602
+ "sizes.5.5": {
1603
+ "value": "1.375rem",
1604
+ "variable": "var(--sizes-5\\.5)"
1605
+ },
1606
+ "sizes.xs": {
1607
+ "value": "20rem",
1608
+ "variable": "var(--sizes-xs)"
1609
+ },
1610
+ "sizes.sm": {
1611
+ "value": "24rem",
1612
+ "variable": "var(--sizes-sm)"
1613
+ },
1614
+ "sizes.md": {
1615
+ "value": "28rem",
1616
+ "variable": "var(--sizes-md)"
1617
+ },
1618
+ "sizes.lg": {
1619
+ "value": "32rem",
1620
+ "variable": "var(--sizes-lg)"
1621
+ },
1622
+ "sizes.xl": {
1623
+ "value": "36rem",
1624
+ "variable": "var(--sizes-xl)"
1625
+ },
1626
+ "sizes.2xl": {
1627
+ "value": "42rem",
1628
+ "variable": "var(--sizes-2xl)"
1629
+ },
1630
+ "sizes.3xl": {
1631
+ "value": "48rem",
1632
+ "variable": "var(--sizes-3xl)"
1633
+ },
1634
+ "sizes.4xl": {
1635
+ "value": "56rem",
1636
+ "variable": "var(--sizes-4xl)"
1637
+ },
1638
+ "sizes.5xl": {
1639
+ "value": "64rem",
1640
+ "variable": "var(--sizes-5xl)"
1641
+ },
1642
+ "sizes.6xl": {
1643
+ "value": "72rem",
1644
+ "variable": "var(--sizes-6xl)"
1645
+ },
1646
+ "sizes.7xl": {
1647
+ "value": "80rem",
1648
+ "variable": "var(--sizes-7xl)"
1649
+ },
1650
+ "sizes.8xl": {
1651
+ "value": "90rem",
1652
+ "variable": "var(--sizes-8xl)"
1653
+ },
1654
+ "sizes.prose": {
1655
+ "value": "65ch",
1656
+ "variable": "var(--sizes-prose)"
1657
+ },
1658
+ "sizes.full": {
1659
+ "value": "100%",
1660
+ "variable": "var(--sizes-full)"
1661
+ },
1662
+ "sizes.min": {
1663
+ "value": "min-content",
1664
+ "variable": "var(--sizes-min)"
1665
+ },
1666
+ "sizes.max": {
1667
+ "value": "max-content",
1668
+ "variable": "var(--sizes-max)"
1669
+ },
1670
+ "sizes.fit": {
1671
+ "value": "fit-content",
1672
+ "variable": "var(--sizes-fit)"
1673
+ },
1674
+ "sizes.breakpoint-sm": {
1675
+ "value": "640px",
1676
+ "variable": "var(--sizes-breakpoint-sm)"
1677
+ },
1678
+ "sizes.breakpoint-md": {
1679
+ "value": "768px",
1680
+ "variable": "var(--sizes-breakpoint-md)"
1681
+ },
1682
+ "sizes.breakpoint-lg": {
1683
+ "value": "1024px",
1684
+ "variable": "var(--sizes-breakpoint-lg)"
1685
+ },
1686
+ "sizes.breakpoint-xl": {
1687
+ "value": "1280px",
1688
+ "variable": "var(--sizes-breakpoint-xl)"
1689
+ },
1690
+ "sizes.breakpoint-2xl": {
1691
+ "value": "1536px",
1692
+ "variable": "var(--sizes-breakpoint-2xl)"
1693
+ },
1694
+ "sizes.breakpoint-xs": {
1695
+ "value": "600px",
1696
+ "variable": "var(--sizes-breakpoint-xs)"
1697
+ },
1698
+ "animations.spin": {
1699
+ "value": "spin 1s linear infinite",
1700
+ "variable": "var(--animations-spin)"
1701
+ },
1702
+ "animations.ping": {
1703
+ "value": "ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",
1704
+ "variable": "var(--animations-ping)"
1705
+ },
1706
+ "animations.pulse": {
1707
+ "value": "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",
1708
+ "variable": "var(--animations-pulse)"
1709
+ },
1710
+ "animations.bounce": {
1711
+ "value": "bounce 1s infinite",
1712
+ "variable": "var(--animations-bounce)"
1713
+ },
1714
+ "breakpoints.sm": {
1715
+ "value": "640px",
1716
+ "variable": "var(--breakpoints-sm)"
1717
+ },
1718
+ "breakpoints.md": {
1719
+ "value": "768px",
1720
+ "variable": "var(--breakpoints-md)"
1721
+ },
1722
+ "breakpoints.lg": {
1723
+ "value": "1024px",
1724
+ "variable": "var(--breakpoints-lg)"
1725
+ },
1726
+ "breakpoints.xl": {
1727
+ "value": "1280px",
1728
+ "variable": "var(--breakpoints-xl)"
1729
+ },
1730
+ "breakpoints.2xl": {
1731
+ "value": "1536px",
1732
+ "variable": "var(--breakpoints-2xl)"
1733
+ },
1734
+ "breakpoints.xs": {
1735
+ "value": "600px",
1736
+ "variable": "var(--breakpoints-xs)"
1737
+ },
1738
+ "colors.text-primary": {
1739
+ "value": "var(--colors-text-primary)",
1740
+ "variable": "var(--colors-text-primary)"
1741
+ },
1742
+ "colors.text-secondary": {
1743
+ "value": "var(--colors-text-secondary)",
1744
+ "variable": "var(--colors-text-secondary)"
1745
+ },
1746
+ "colors.text-inverted": {
1747
+ "value": "var(--colors-text-inverted)",
1748
+ "variable": "var(--colors-text-inverted)"
1749
+ },
1750
+ "colors.text-alert": {
1751
+ "value": "var(--colors-text-alert)",
1752
+ "variable": "var(--colors-text-alert)"
1753
+ },
1754
+ "colors.input-border-color": {
1755
+ "value": "var(--colors-input-border-color)",
1756
+ "variable": "var(--colors-input-border-color)"
1757
+ },
1758
+ "colors.input-border-color-error": {
1759
+ "value": "var(--colors-input-border-color-error)",
1760
+ "variable": "var(--colors-input-border-color-error)"
1761
+ },
1762
+ "colors.input-outline-color-error": {
1763
+ "value": "var(--colors-input-outline-color-error)",
1764
+ "variable": "var(--colors-input-outline-color-error)"
1765
+ },
1766
+ "colors.input-label-color": {
1767
+ "value": "var(--colors-input-label-color)",
1768
+ "variable": "var(--colors-input-label-color)"
1769
+ },
1770
+ "colors.input-label-color-lifted": {
1771
+ "value": "var(--colors-input-label-color-lifted)",
1772
+ "variable": "var(--colors-input-label-color-lifted)"
1773
+ },
1774
+ "colors.input-label-bg": {
1775
+ "value": "var(--colors-input-label-bg)",
1776
+ "variable": "var(--colors-input-label-bg)"
1777
+ },
1778
+ "spacing.-1": {
1779
+ "value": "calc(var(--spacing-1) * -1)",
1780
+ "variable": "var(--spacing-1)"
1781
+ },
1782
+ "spacing.-2": {
1783
+ "value": "calc(var(--spacing-2) * -1)",
1784
+ "variable": "var(--spacing-2)"
1785
+ },
1786
+ "spacing.-3": {
1787
+ "value": "calc(var(--spacing-3) * -1)",
1788
+ "variable": "var(--spacing-3)"
1789
+ },
1790
+ "spacing.-4": {
1791
+ "value": "calc(var(--spacing-4) * -1)",
1792
+ "variable": "var(--spacing-4)"
1793
+ },
1794
+ "spacing.-5": {
1795
+ "value": "calc(var(--spacing-5) * -1)",
1796
+ "variable": "var(--spacing-5)"
1797
+ },
1798
+ "spacing.-6": {
1799
+ "value": "calc(var(--spacing-6) * -1)",
1800
+ "variable": "var(--spacing-6)"
1801
+ },
1802
+ "spacing.-7": {
1803
+ "value": "calc(var(--spacing-7) * -1)",
1804
+ "variable": "var(--spacing-7)"
1805
+ },
1806
+ "spacing.-8": {
1807
+ "value": "calc(var(--spacing-8) * -1)",
1808
+ "variable": "var(--spacing-8)"
1809
+ },
1810
+ "spacing.-9": {
1811
+ "value": "calc(var(--spacing-9) * -1)",
1812
+ "variable": "var(--spacing-9)"
1813
+ },
1814
+ "spacing.-10": {
1815
+ "value": "calc(var(--spacing-10) * -1)",
1816
+ "variable": "var(--spacing-10)"
1817
+ },
1818
+ "spacing.-11": {
1819
+ "value": "calc(var(--spacing-11) * -1)",
1820
+ "variable": "var(--spacing-11)"
1821
+ },
1822
+ "spacing.-12": {
1823
+ "value": "calc(var(--spacing-12) * -1)",
1824
+ "variable": "var(--spacing-12)"
1825
+ },
1826
+ "spacing.-14": {
1827
+ "value": "calc(var(--spacing-14) * -1)",
1828
+ "variable": "var(--spacing-14)"
1829
+ },
1830
+ "spacing.-16": {
1831
+ "value": "calc(var(--spacing-16) * -1)",
1832
+ "variable": "var(--spacing-16)"
1833
+ },
1834
+ "spacing.-20": {
1835
+ "value": "calc(var(--spacing-20) * -1)",
1836
+ "variable": "var(--spacing-20)"
1837
+ },
1838
+ "spacing.-24": {
1839
+ "value": "calc(var(--spacing-24) * -1)",
1840
+ "variable": "var(--spacing-24)"
1841
+ },
1842
+ "spacing.-28": {
1843
+ "value": "calc(var(--spacing-28) * -1)",
1844
+ "variable": "var(--spacing-28)"
1845
+ },
1846
+ "spacing.-32": {
1847
+ "value": "calc(var(--spacing-32) * -1)",
1848
+ "variable": "var(--spacing-32)"
1849
+ },
1850
+ "spacing.-36": {
1851
+ "value": "calc(var(--spacing-36) * -1)",
1852
+ "variable": "var(--spacing-36)"
1853
+ },
1854
+ "spacing.-40": {
1855
+ "value": "calc(var(--spacing-40) * -1)",
1856
+ "variable": "var(--spacing-40)"
1857
+ },
1858
+ "spacing.-44": {
1859
+ "value": "calc(var(--spacing-44) * -1)",
1860
+ "variable": "var(--spacing-44)"
1861
+ },
1862
+ "spacing.-48": {
1863
+ "value": "calc(var(--spacing-48) * -1)",
1864
+ "variable": "var(--spacing-48)"
1865
+ },
1866
+ "spacing.-52": {
1867
+ "value": "calc(var(--spacing-52) * -1)",
1868
+ "variable": "var(--spacing-52)"
1869
+ },
1870
+ "spacing.-56": {
1871
+ "value": "calc(var(--spacing-56) * -1)",
1872
+ "variable": "var(--spacing-56)"
1873
+ },
1874
+ "spacing.-60": {
1875
+ "value": "calc(var(--spacing-60) * -1)",
1876
+ "variable": "var(--spacing-60)"
1877
+ },
1878
+ "spacing.-64": {
1879
+ "value": "calc(var(--spacing-64) * -1)",
1880
+ "variable": "var(--spacing-64)"
1881
+ },
1882
+ "spacing.-72": {
1883
+ "value": "calc(var(--spacing-72) * -1)",
1884
+ "variable": "var(--spacing-72)"
1885
+ },
1886
+ "spacing.-80": {
1887
+ "value": "calc(var(--spacing-80) * -1)",
1888
+ "variable": "var(--spacing-80)"
1889
+ },
1890
+ "spacing.-96": {
1891
+ "value": "calc(var(--spacing-96) * -1)",
1892
+ "variable": "var(--spacing-96)"
1893
+ },
1894
+ "spacing.-0.5": {
1895
+ "value": "calc(var(--spacing-0\\.5) * -1)",
1896
+ "variable": "var(--spacing-0\\.5)"
1897
+ },
1898
+ "spacing.-1.5": {
1899
+ "value": "calc(var(--spacing-1\\.5) * -1)",
1900
+ "variable": "var(--spacing-1\\.5)"
1901
+ },
1902
+ "spacing.-2.5": {
1903
+ "value": "calc(var(--spacing-2\\.5) * -1)",
1904
+ "variable": "var(--spacing-2\\.5)"
1905
+ },
1906
+ "spacing.-3.5": {
1907
+ "value": "calc(var(--spacing-3\\.5) * -1)",
1908
+ "variable": "var(--spacing-3\\.5)"
1909
+ },
1910
+ "spacing.-4.5": {
1911
+ "value": "calc(var(--spacing-4\\.5) * -1)",
1912
+ "variable": "var(--spacing-4\\.5)"
1913
+ },
1914
+ "spacing.-5.5": {
1915
+ "value": "calc(var(--spacing-5\\.5) * -1)",
1916
+ "variable": "var(--spacing-5\\.5)"
1917
+ },
1918
+ "colors.colorPalette": {
1919
+ "value": "var(--colors-color-palette)",
1920
+ "variable": "var(--colors-color-palette)"
1921
+ },
1922
+ "colors.colorPalette.50": {
1923
+ "value": "var(--colors-color-palette-50)",
1924
+ "variable": "var(--colors-color-palette-50)"
1925
+ },
1926
+ "colors.colorPalette.100": {
1927
+ "value": "var(--colors-color-palette-100)",
1928
+ "variable": "var(--colors-color-palette-100)"
1929
+ },
1930
+ "colors.colorPalette.200": {
1931
+ "value": "var(--colors-color-palette-200)",
1932
+ "variable": "var(--colors-color-palette-200)"
1933
+ },
1934
+ "colors.colorPalette.300": {
1935
+ "value": "var(--colors-color-palette-300)",
1936
+ "variable": "var(--colors-color-palette-300)"
1937
+ },
1938
+ "colors.colorPalette.400": {
1939
+ "value": "var(--colors-color-palette-400)",
1940
+ "variable": "var(--colors-color-palette-400)"
1941
+ },
1942
+ "colors.colorPalette.500": {
1943
+ "value": "var(--colors-color-palette-500)",
1944
+ "variable": "var(--colors-color-palette-500)"
1945
+ },
1946
+ "colors.colorPalette.600": {
1947
+ "value": "var(--colors-color-palette-600)",
1948
+ "variable": "var(--colors-color-palette-600)"
1949
+ },
1950
+ "colors.colorPalette.700": {
1951
+ "value": "var(--colors-color-palette-700)",
1952
+ "variable": "var(--colors-color-palette-700)"
1953
+ },
1954
+ "colors.colorPalette.800": {
1955
+ "value": "var(--colors-color-palette-800)",
1956
+ "variable": "var(--colors-color-palette-800)"
1957
+ },
1958
+ "colors.colorPalette.900": {
1959
+ "value": "var(--colors-color-palette-900)",
1960
+ "variable": "var(--colors-color-palette-900)"
1961
+ },
1962
+ "colors.colorPalette.950": {
1963
+ "value": "var(--colors-color-palette-950)",
1964
+ "variable": "var(--colors-color-palette-950)"
1965
+ }
1966
+ }
1967
+
1968
+ export function token(path, fallback) {
1969
+ return tokens[path]?.value || fallback
1970
+ }
1971
+
1972
+ function tokenVar(path, fallback) {
1973
+ return tokens[path]?.variable || fallback
1974
+ }
1975
+
1976
+ token.var = tokenVar