@pandacss/studio 0.12.2 → 0.13.1

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