tailwindcss 4.0.0-alpha.9 → 4.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/theme.css CHANGED
@@ -1,431 +1,386 @@
1
- @theme {
2
- /* Defaults */
3
- --default-transition-duration: 150ms;
4
- --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
5
- --default-font-family: var(--font-family-sans);
6
- --default-font-feature-settings: var(--font-family-sans--font-feature-settings);
7
- --default-font-variation-settings: var(--font-family-sans--font-variation-settings);
8
- --default-mono-font-family: var(--font-family-mono);
9
- --default-mono-font-feature-settings: var(--font-family-mono--font-feature-settings);
10
- --default-mono-font-variation-settings: var(--font-family-mono--font-variation-settings);
11
-
12
- /* Breakpoints */
13
- --breakpoint-sm: 640px;
14
- --breakpoint-md: 768px;
15
- --breakpoint-lg: 1024px;
16
- --breakpoint-xl: 1280px;
17
- --breakpoint-2xl: 1536px;
18
-
19
- /* Colors */
1
+ @theme default {
2
+ --font-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
3
+ 'Segoe UI Symbol', 'Noto Color Emoji';
4
+ --font-serif: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
5
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
6
+ 'Courier New', monospace;
7
+
8
+ --color-red-50: oklch(0.971 0.013 17.38);
9
+ --color-red-100: oklch(0.936 0.032 17.717);
10
+ --color-red-200: oklch(0.885 0.062 18.334);
11
+ --color-red-300: oklch(0.808 0.114 19.571);
12
+ --color-red-400: oklch(0.704 0.191 22.216);
13
+ --color-red-500: oklch(0.637 0.237 25.331);
14
+ --color-red-600: oklch(0.577 0.245 27.325);
15
+ --color-red-700: oklch(0.505 0.213 27.518);
16
+ --color-red-800: oklch(0.444 0.177 26.899);
17
+ --color-red-900: oklch(0.396 0.141 25.723);
18
+ --color-red-950: oklch(0.258 0.092 26.042);
19
+
20
+ --color-orange-50: oklch(0.98 0.016 73.684);
21
+ --color-orange-100: oklch(0.954 0.038 75.164);
22
+ --color-orange-200: oklch(0.901 0.076 70.697);
23
+ --color-orange-300: oklch(0.837 0.128 66.29);
24
+ --color-orange-400: oklch(0.75 0.183 55.934);
25
+ --color-orange-500: oklch(0.705 0.213 47.604);
26
+ --color-orange-600: oklch(0.646 0.222 41.116);
27
+ --color-orange-700: oklch(0.553 0.195 38.402);
28
+ --color-orange-800: oklch(0.47 0.157 37.304);
29
+ --color-orange-900: oklch(0.408 0.123 38.172);
30
+ --color-orange-950: oklch(0.266 0.079 36.259);
31
+
32
+ --color-amber-50: oklch(0.987 0.022 95.277);
33
+ --color-amber-100: oklch(0.962 0.059 95.617);
34
+ --color-amber-200: oklch(0.924 0.12 95.746);
35
+ --color-amber-300: oklch(0.879 0.169 91.605);
36
+ --color-amber-400: oklch(0.828 0.189 84.429);
37
+ --color-amber-500: oklch(0.769 0.188 70.08);
38
+ --color-amber-600: oklch(0.666 0.179 58.318);
39
+ --color-amber-700: oklch(0.555 0.163 48.998);
40
+ --color-amber-800: oklch(0.473 0.137 46.201);
41
+ --color-amber-900: oklch(0.414 0.112 45.904);
42
+ --color-amber-950: oklch(0.279 0.077 45.635);
43
+
44
+ --color-yellow-50: oklch(0.987 0.026 102.212);
45
+ --color-yellow-100: oklch(0.973 0.071 103.193);
46
+ --color-yellow-200: oklch(0.945 0.129 101.54);
47
+ --color-yellow-300: oklch(0.905 0.182 98.111);
48
+ --color-yellow-400: oklch(0.852 0.199 91.936);
49
+ --color-yellow-500: oklch(0.795 0.184 86.047);
50
+ --color-yellow-600: oklch(0.681 0.162 75.834);
51
+ --color-yellow-700: oklch(0.554 0.135 66.442);
52
+ --color-yellow-800: oklch(0.476 0.114 61.907);
53
+ --color-yellow-900: oklch(0.421 0.095 57.708);
54
+ --color-yellow-950: oklch(0.286 0.066 53.813);
55
+
56
+ --color-lime-50: oklch(0.986 0.031 120.757);
57
+ --color-lime-100: oklch(0.967 0.067 122.328);
58
+ --color-lime-200: oklch(0.938 0.127 124.321);
59
+ --color-lime-300: oklch(0.897 0.196 126.665);
60
+ --color-lime-400: oklch(0.841 0.238 128.85);
61
+ --color-lime-500: oklch(0.768 0.233 130.85);
62
+ --color-lime-600: oklch(0.648 0.2 131.684);
63
+ --color-lime-700: oklch(0.532 0.157 131.589);
64
+ --color-lime-800: oklch(0.453 0.124 130.933);
65
+ --color-lime-900: oklch(0.405 0.101 131.063);
66
+ --color-lime-950: oklch(0.274 0.072 132.109);
67
+
68
+ --color-green-50: oklch(0.982 0.018 155.826);
69
+ --color-green-100: oklch(0.962 0.044 156.743);
70
+ --color-green-200: oklch(0.925 0.084 155.995);
71
+ --color-green-300: oklch(0.871 0.15 154.449);
72
+ --color-green-400: oklch(0.792 0.209 151.711);
73
+ --color-green-500: oklch(0.723 0.219 149.579);
74
+ --color-green-600: oklch(0.627 0.194 149.214);
75
+ --color-green-700: oklch(0.527 0.154 150.069);
76
+ --color-green-800: oklch(0.448 0.119 151.328);
77
+ --color-green-900: oklch(0.393 0.095 152.535);
78
+ --color-green-950: oklch(0.266 0.065 152.934);
79
+
80
+ --color-emerald-50: oklch(0.979 0.021 166.113);
81
+ --color-emerald-100: oklch(0.95 0.052 163.051);
82
+ --color-emerald-200: oklch(0.905 0.093 164.15);
83
+ --color-emerald-300: oklch(0.845 0.143 164.978);
84
+ --color-emerald-400: oklch(0.765 0.177 163.223);
85
+ --color-emerald-500: oklch(0.696 0.17 162.48);
86
+ --color-emerald-600: oklch(0.596 0.145 163.225);
87
+ --color-emerald-700: oklch(0.508 0.118 165.612);
88
+ --color-emerald-800: oklch(0.432 0.095 166.913);
89
+ --color-emerald-900: oklch(0.378 0.077 168.94);
90
+ --color-emerald-950: oklch(0.262 0.051 172.552);
91
+
92
+ --color-teal-50: oklch(0.984 0.014 180.72);
93
+ --color-teal-100: oklch(0.953 0.051 180.801);
94
+ --color-teal-200: oklch(0.91 0.096 180.426);
95
+ --color-teal-300: oklch(0.855 0.138 181.071);
96
+ --color-teal-400: oklch(0.777 0.152 181.912);
97
+ --color-teal-500: oklch(0.704 0.14 182.503);
98
+ --color-teal-600: oklch(0.6 0.118 184.704);
99
+ --color-teal-700: oklch(0.511 0.096 186.391);
100
+ --color-teal-800: oklch(0.437 0.078 188.216);
101
+ --color-teal-900: oklch(0.386 0.063 188.416);
102
+ --color-teal-950: oklch(0.277 0.046 192.524);
103
+
104
+ --color-cyan-50: oklch(0.984 0.019 200.873);
105
+ --color-cyan-100: oklch(0.956 0.045 203.388);
106
+ --color-cyan-200: oklch(0.917 0.08 205.041);
107
+ --color-cyan-300: oklch(0.865 0.127 207.078);
108
+ --color-cyan-400: oklch(0.789 0.154 211.53);
109
+ --color-cyan-500: oklch(0.715 0.143 215.221);
110
+ --color-cyan-600: oklch(0.609 0.126 221.723);
111
+ --color-cyan-700: oklch(0.52 0.105 223.128);
112
+ --color-cyan-800: oklch(0.45 0.085 224.283);
113
+ --color-cyan-900: oklch(0.398 0.07 227.392);
114
+ --color-cyan-950: oklch(0.302 0.056 229.695);
115
+
116
+ --color-sky-50: oklch(0.977 0.013 236.62);
117
+ --color-sky-100: oklch(0.951 0.026 236.824);
118
+ --color-sky-200: oklch(0.901 0.058 230.902);
119
+ --color-sky-300: oklch(0.828 0.111 230.318);
120
+ --color-sky-400: oklch(0.746 0.16 232.661);
121
+ --color-sky-500: oklch(0.685 0.169 237.323);
122
+ --color-sky-600: oklch(0.588 0.158 241.966);
123
+ --color-sky-700: oklch(0.5 0.134 242.749);
124
+ --color-sky-800: oklch(0.443 0.11 240.79);
125
+ --color-sky-900: oklch(0.391 0.09 240.876);
126
+ --color-sky-950: oklch(0.293 0.066 243.157);
127
+
128
+ --color-blue-50: oklch(0.97 0.014 254.604);
129
+ --color-blue-100: oklch(0.932 0.032 255.585);
130
+ --color-blue-200: oklch(0.882 0.059 254.128);
131
+ --color-blue-300: oklch(0.809 0.105 251.813);
132
+ --color-blue-400: oklch(0.707 0.165 254.624);
133
+ --color-blue-500: oklch(0.623 0.214 259.815);
134
+ --color-blue-600: oklch(0.546 0.245 262.881);
135
+ --color-blue-700: oklch(0.488 0.243 264.376);
136
+ --color-blue-800: oklch(0.424 0.199 265.638);
137
+ --color-blue-900: oklch(0.379 0.146 265.522);
138
+ --color-blue-950: oklch(0.282 0.091 267.935);
139
+
140
+ --color-indigo-50: oklch(0.962 0.018 272.314);
141
+ --color-indigo-100: oklch(0.93 0.034 272.788);
142
+ --color-indigo-200: oklch(0.87 0.065 274.039);
143
+ --color-indigo-300: oklch(0.785 0.115 274.713);
144
+ --color-indigo-400: oklch(0.673 0.182 276.935);
145
+ --color-indigo-500: oklch(0.585 0.233 277.117);
146
+ --color-indigo-600: oklch(0.511 0.262 276.966);
147
+ --color-indigo-700: oklch(0.457 0.24 277.023);
148
+ --color-indigo-800: oklch(0.398 0.195 277.366);
149
+ --color-indigo-900: oklch(0.359 0.144 278.697);
150
+ --color-indigo-950: oklch(0.257 0.09 281.288);
151
+
152
+ --color-violet-50: oklch(0.969 0.016 293.756);
153
+ --color-violet-100: oklch(0.943 0.029 294.588);
154
+ --color-violet-200: oklch(0.894 0.057 293.283);
155
+ --color-violet-300: oklch(0.811 0.111 293.571);
156
+ --color-violet-400: oklch(0.702 0.183 293.541);
157
+ --color-violet-500: oklch(0.606 0.25 292.717);
158
+ --color-violet-600: oklch(0.541 0.281 293.009);
159
+ --color-violet-700: oklch(0.491 0.27 292.581);
160
+ --color-violet-800: oklch(0.432 0.232 292.759);
161
+ --color-violet-900: oklch(0.38 0.189 293.745);
162
+ --color-violet-950: oklch(0.283 0.141 291.089);
163
+
164
+ --color-purple-50: oklch(0.977 0.014 308.299);
165
+ --color-purple-100: oklch(0.946 0.033 307.174);
166
+ --color-purple-200: oklch(0.902 0.063 306.703);
167
+ --color-purple-300: oklch(0.827 0.119 306.383);
168
+ --color-purple-400: oklch(0.714 0.203 305.504);
169
+ --color-purple-500: oklch(0.627 0.265 303.9);
170
+ --color-purple-600: oklch(0.558 0.288 302.321);
171
+ --color-purple-700: oklch(0.496 0.265 301.924);
172
+ --color-purple-800: oklch(0.438 0.218 303.724);
173
+ --color-purple-900: oklch(0.381 0.176 304.987);
174
+ --color-purple-950: oklch(0.291 0.149 302.717);
175
+
176
+ --color-fuchsia-50: oklch(0.977 0.017 320.058);
177
+ --color-fuchsia-100: oklch(0.952 0.037 318.852);
178
+ --color-fuchsia-200: oklch(0.903 0.076 319.62);
179
+ --color-fuchsia-300: oklch(0.833 0.145 321.434);
180
+ --color-fuchsia-400: oklch(0.74 0.238 322.16);
181
+ --color-fuchsia-500: oklch(0.667 0.295 322.15);
182
+ --color-fuchsia-600: oklch(0.591 0.293 322.896);
183
+ --color-fuchsia-700: oklch(0.518 0.253 323.949);
184
+ --color-fuchsia-800: oklch(0.452 0.211 324.591);
185
+ --color-fuchsia-900: oklch(0.401 0.17 325.612);
186
+ --color-fuchsia-950: oklch(0.293 0.136 325.661);
187
+
188
+ --color-pink-50: oklch(0.971 0.014 343.198);
189
+ --color-pink-100: oklch(0.948 0.028 342.258);
190
+ --color-pink-200: oklch(0.899 0.061 343.231);
191
+ --color-pink-300: oklch(0.823 0.12 346.018);
192
+ --color-pink-400: oklch(0.718 0.202 349.761);
193
+ --color-pink-500: oklch(0.656 0.241 354.308);
194
+ --color-pink-600: oklch(0.592 0.249 0.584);
195
+ --color-pink-700: oklch(0.525 0.223 3.958);
196
+ --color-pink-800: oklch(0.459 0.187 3.815);
197
+ --color-pink-900: oklch(0.408 0.153 2.432);
198
+ --color-pink-950: oklch(0.284 0.109 3.907);
199
+
200
+ --color-rose-50: oklch(0.969 0.015 12.422);
201
+ --color-rose-100: oklch(0.941 0.03 12.58);
202
+ --color-rose-200: oklch(0.892 0.058 10.001);
203
+ --color-rose-300: oklch(0.81 0.117 11.638);
204
+ --color-rose-400: oklch(0.712 0.194 13.428);
205
+ --color-rose-500: oklch(0.645 0.246 16.439);
206
+ --color-rose-600: oklch(0.586 0.253 17.585);
207
+ --color-rose-700: oklch(0.514 0.222 16.935);
208
+ --color-rose-800: oklch(0.455 0.188 13.697);
209
+ --color-rose-900: oklch(0.41 0.159 10.272);
210
+ --color-rose-950: oklch(0.271 0.105 12.094);
211
+
212
+ --color-slate-50: oklch(0.984 0.003 247.858);
213
+ --color-slate-100: oklch(0.968 0.007 247.896);
214
+ --color-slate-200: oklch(0.929 0.013 255.508);
215
+ --color-slate-300: oklch(0.869 0.022 252.894);
216
+ --color-slate-400: oklch(0.704 0.04 256.788);
217
+ --color-slate-500: oklch(0.554 0.046 257.417);
218
+ --color-slate-600: oklch(0.446 0.043 257.281);
219
+ --color-slate-700: oklch(0.372 0.044 257.287);
220
+ --color-slate-800: oklch(0.279 0.041 260.031);
221
+ --color-slate-900: oklch(0.208 0.042 265.755);
222
+ --color-slate-950: oklch(0.129 0.042 264.695);
223
+
224
+ --color-gray-50: oklch(0.985 0.002 247.839);
225
+ --color-gray-100: oklch(0.967 0.003 264.542);
226
+ --color-gray-200: oklch(0.928 0.006 264.531);
227
+ --color-gray-300: oklch(0.872 0.01 258.338);
228
+ --color-gray-400: oklch(0.707 0.022 261.325);
229
+ --color-gray-500: oklch(0.551 0.027 264.364);
230
+ --color-gray-600: oklch(0.446 0.03 256.802);
231
+ --color-gray-700: oklch(0.373 0.034 259.733);
232
+ --color-gray-800: oklch(0.278 0.033 256.848);
233
+ --color-gray-900: oklch(0.21 0.034 264.665);
234
+ --color-gray-950: oklch(0.13 0.028 261.692);
235
+
236
+ --color-zinc-50: oklch(0.985 0 0);
237
+ --color-zinc-100: oklch(0.967 0.001 286.375);
238
+ --color-zinc-200: oklch(0.92 0.004 286.32);
239
+ --color-zinc-300: oklch(0.871 0.006 286.286);
240
+ --color-zinc-400: oklch(0.705 0.015 286.067);
241
+ --color-zinc-500: oklch(0.552 0.016 285.938);
242
+ --color-zinc-600: oklch(0.442 0.017 285.786);
243
+ --color-zinc-700: oklch(0.37 0.013 285.805);
244
+ --color-zinc-800: oklch(0.274 0.006 286.033);
245
+ --color-zinc-900: oklch(0.21 0.006 285.885);
246
+ --color-zinc-950: oklch(0.141 0.005 285.823);
247
+
248
+ --color-neutral-50: oklch(0.985 0 0);
249
+ --color-neutral-100: oklch(0.97 0 0);
250
+ --color-neutral-200: oklch(0.922 0 0);
251
+ --color-neutral-300: oklch(0.87 0 0);
252
+ --color-neutral-400: oklch(0.708 0 0);
253
+ --color-neutral-500: oklch(0.556 0 0);
254
+ --color-neutral-600: oklch(0.439 0 0);
255
+ --color-neutral-700: oklch(0.371 0 0);
256
+ --color-neutral-800: oklch(0.269 0 0);
257
+ --color-neutral-900: oklch(0.205 0 0);
258
+ --color-neutral-950: oklch(0.145 0 0);
259
+
260
+ --color-stone-50: oklch(0.985 0.001 106.423);
261
+ --color-stone-100: oklch(0.97 0.001 106.424);
262
+ --color-stone-200: oklch(0.923 0.003 48.717);
263
+ --color-stone-300: oklch(0.869 0.005 56.366);
264
+ --color-stone-400: oklch(0.709 0.01 56.259);
265
+ --color-stone-500: oklch(0.553 0.013 58.071);
266
+ --color-stone-600: oklch(0.444 0.011 73.639);
267
+ --color-stone-700: oklch(0.374 0.01 67.558);
268
+ --color-stone-800: oklch(0.268 0.007 34.298);
269
+ --color-stone-900: oklch(0.216 0.006 56.043);
270
+ --color-stone-950: oklch(0.147 0.004 49.25);
271
+
20
272
  --color-black: #000;
21
273
  --color-white: #fff;
22
- --color-slate-50: #f8fafc;
23
- --color-slate-100: #f1f5f9;
24
- --color-slate-200: #e2e8f0;
25
- --color-slate-300: #cbd5e1;
26
- --color-slate-400: #94a3b8;
27
- --color-slate-500: #64748b;
28
- --color-slate-600: #475569;
29
- --color-slate-700: #334155;
30
- --color-slate-800: #1e293b;
31
- --color-slate-900: #0f172a;
32
- --color-slate-950: #020617;
33
- --color-gray-50: #f9fafb;
34
- --color-gray-100: #f3f4f6;
35
- --color-gray-200: #e5e7eb;
36
- --color-gray-300: #d1d5db;
37
- --color-gray-400: #9ca3af;
38
- --color-gray-500: #6b7280;
39
- --color-gray-600: #4b5563;
40
- --color-gray-700: #374151;
41
- --color-gray-800: #1f2937;
42
- --color-gray-900: #111827;
43
- --color-gray-950: #030712;
44
- --color-zinc-50: #fafafa;
45
- --color-zinc-100: #f4f4f5;
46
- --color-zinc-200: #e4e4e7;
47
- --color-zinc-300: #d4d4d8;
48
- --color-zinc-400: #a1a1aa;
49
- --color-zinc-500: #71717a;
50
- --color-zinc-600: #52525b;
51
- --color-zinc-700: #3f3f46;
52
- --color-zinc-800: #27272a;
53
- --color-zinc-900: #18181b;
54
- --color-zinc-950: #09090b;
55
- --color-neutral-50: #fafafa;
56
- --color-neutral-100: #f5f5f5;
57
- --color-neutral-200: #e5e5e5;
58
- --color-neutral-300: #d4d4d4;
59
- --color-neutral-400: #a3a3a3;
60
- --color-neutral-500: #737373;
61
- --color-neutral-600: #525252;
62
- --color-neutral-700: #404040;
63
- --color-neutral-800: #262626;
64
- --color-neutral-900: #171717;
65
- --color-neutral-950: #0a0a0a;
66
- --color-stone-50: #fafaf9;
67
- --color-stone-100: #f5f5f4;
68
- --color-stone-200: #e7e5e4;
69
- --color-stone-300: #d6d3d1;
70
- --color-stone-400: #a8a29e;
71
- --color-stone-500: #78716c;
72
- --color-stone-600: #57534e;
73
- --color-stone-700: #44403c;
74
- --color-stone-800: #292524;
75
- --color-stone-900: #1c1917;
76
- --color-stone-950: #0c0a09;
77
- --color-red-50: #fef2f2;
78
- --color-red-100: #fee2e2;
79
- --color-red-200: #fecaca;
80
- --color-red-300: #fca5a5;
81
- --color-red-400: #f87171;
82
- --color-red-500: #ef4444;
83
- --color-red-600: #dc2626;
84
- --color-red-700: #b91c1c;
85
- --color-red-800: #991b1b;
86
- --color-red-900: #7f1d1d;
87
- --color-red-950: #450a0a;
88
- --color-orange-50: #fff7ed;
89
- --color-orange-100: #ffedd5;
90
- --color-orange-200: #fed7aa;
91
- --color-orange-300: #fdba74;
92
- --color-orange-400: #fb923c;
93
- --color-orange-500: #f97316;
94
- --color-orange-600: #ea580c;
95
- --color-orange-700: #c2410c;
96
- --color-orange-800: #9a3412;
97
- --color-orange-900: #7c2d12;
98
- --color-orange-950: #431407;
99
- --color-amber-50: #fffbeb;
100
- --color-amber-100: #fef3c7;
101
- --color-amber-200: #fde68a;
102
- --color-amber-300: #fcd34d;
103
- --color-amber-400: #fbbf24;
104
- --color-amber-500: #f59e0b;
105
- --color-amber-600: #d97706;
106
- --color-amber-700: #b45309;
107
- --color-amber-800: #92400e;
108
- --color-amber-900: #78350f;
109
- --color-amber-950: #451a03;
110
- --color-yellow-50: #fefce8;
111
- --color-yellow-100: #fef9c3;
112
- --color-yellow-200: #fef08a;
113
- --color-yellow-300: #fde047;
114
- --color-yellow-400: #facc15;
115
- --color-yellow-500: #eab308;
116
- --color-yellow-600: #ca8a04;
117
- --color-yellow-700: #a16207;
118
- --color-yellow-800: #854d0e;
119
- --color-yellow-900: #713f12;
120
- --color-yellow-950: #422006;
121
- --color-lime-50: #f7fee7;
122
- --color-lime-100: #ecfccb;
123
- --color-lime-200: #d9f99d;
124
- --color-lime-300: #bef264;
125
- --color-lime-400: #a3e635;
126
- --color-lime-500: #84cc16;
127
- --color-lime-600: #65a30d;
128
- --color-lime-700: #4d7c0f;
129
- --color-lime-800: #3f6212;
130
- --color-lime-900: #365314;
131
- --color-lime-950: #1a2e05;
132
- --color-green-50: #f0fdf4;
133
- --color-green-100: #dcfce7;
134
- --color-green-200: #bbf7d0;
135
- --color-green-300: #86efac;
136
- --color-green-400: #4ade80;
137
- --color-green-500: #22c55e;
138
- --color-green-600: #16a34a;
139
- --color-green-700: #15803d;
140
- --color-green-800: #166534;
141
- --color-green-900: #14532d;
142
- --color-green-950: #052e16;
143
- --color-emerald-50: #ecfdf5;
144
- --color-emerald-100: #d1fae5;
145
- --color-emerald-200: #a7f3d0;
146
- --color-emerald-300: #6ee7b7;
147
- --color-emerald-400: #34d399;
148
- --color-emerald-500: #10b981;
149
- --color-emerald-600: #059669;
150
- --color-emerald-700: #047857;
151
- --color-emerald-800: #065f46;
152
- --color-emerald-900: #064e3b;
153
- --color-emerald-950: #022c22;
154
- --color-teal-50: #f0fdfa;
155
- --color-teal-100: #ccfbf1;
156
- --color-teal-200: #99f6e4;
157
- --color-teal-300: #5eead4;
158
- --color-teal-400: #2dd4bf;
159
- --color-teal-500: #14b8a6;
160
- --color-teal-600: #0d9488;
161
- --color-teal-700: #0f766e;
162
- --color-teal-800: #115e59;
163
- --color-teal-900: #134e4a;
164
- --color-teal-950: #042f2e;
165
- --color-cyan-50: #ecfeff;
166
- --color-cyan-100: #cffafe;
167
- --color-cyan-200: #a5f3fc;
168
- --color-cyan-300: #67e8f9;
169
- --color-cyan-400: #22d3ee;
170
- --color-cyan-500: #06b6d4;
171
- --color-cyan-600: #0891b2;
172
- --color-cyan-700: #0e7490;
173
- --color-cyan-800: #155e75;
174
- --color-cyan-900: #164e63;
175
- --color-cyan-950: #083344;
176
- --color-sky-50: #f0f9ff;
177
- --color-sky-100: #e0f2fe;
178
- --color-sky-200: #bae6fd;
179
- --color-sky-300: #7dd3fc;
180
- --color-sky-400: #38bdf8;
181
- --color-sky-500: #0ea5e9;
182
- --color-sky-600: #0284c7;
183
- --color-sky-700: #0369a1;
184
- --color-sky-800: #075985;
185
- --color-sky-900: #0c4a6e;
186
- --color-sky-950: #082f49;
187
- --color-blue-50: #eff6ff;
188
- --color-blue-100: #dbeafe;
189
- --color-blue-200: #bfdbfe;
190
- --color-blue-300: #93c5fd;
191
- --color-blue-400: #60a5fa;
192
- --color-blue-500: #3b82f6;
193
- --color-blue-600: #2563eb;
194
- --color-blue-700: #1d4ed8;
195
- --color-blue-800: #1e40af;
196
- --color-blue-900: #1e3a8a;
197
- --color-blue-950: #172554;
198
- --color-indigo-50: #eef2ff;
199
- --color-indigo-100: #e0e7ff;
200
- --color-indigo-200: #c7d2fe;
201
- --color-indigo-300: #a5b4fc;
202
- --color-indigo-400: #818cf8;
203
- --color-indigo-500: #6366f1;
204
- --color-indigo-600: #4f46e5;
205
- --color-indigo-700: #4338ca;
206
- --color-indigo-800: #3730a3;
207
- --color-indigo-900: #312e81;
208
- --color-indigo-950: #1e1b4b;
209
- --color-violet-50: #f5f3ff;
210
- --color-violet-100: #ede9fe;
211
- --color-violet-200: #ddd6fe;
212
- --color-violet-300: #c4b5fd;
213
- --color-violet-400: #a78bfa;
214
- --color-violet-500: #8b5cf6;
215
- --color-violet-600: #7c3aed;
216
- --color-violet-700: #6d28d9;
217
- --color-violet-800: #5b21b6;
218
- --color-violet-900: #4c1d95;
219
- --color-violet-950: #2e1065;
220
- --color-purple-50: #faf5ff;
221
- --color-purple-100: #f3e8ff;
222
- --color-purple-200: #e9d5ff;
223
- --color-purple-300: #d8b4fe;
224
- --color-purple-400: #c084fc;
225
- --color-purple-500: #a855f7;
226
- --color-purple-600: #9333ea;
227
- --color-purple-700: #7e22ce;
228
- --color-purple-800: #6b21a8;
229
- --color-purple-900: #581c87;
230
- --color-purple-950: #3b0764;
231
- --color-fuchsia-50: #fdf4ff;
232
- --color-fuchsia-100: #fae8ff;
233
- --color-fuchsia-200: #f5d0fe;
234
- --color-fuchsia-300: #f0abfc;
235
- --color-fuchsia-400: #e879f9;
236
- --color-fuchsia-500: #d946ef;
237
- --color-fuchsia-600: #c026d3;
238
- --color-fuchsia-700: #a21caf;
239
- --color-fuchsia-800: #86198f;
240
- --color-fuchsia-900: #701a75;
241
- --color-fuchsia-950: #4a044e;
242
- --color-pink-50: #fdf2f8;
243
- --color-pink-100: #fce7f3;
244
- --color-pink-200: #fbcfe8;
245
- --color-pink-300: #f9a8d4;
246
- --color-pink-400: #f472b6;
247
- --color-pink-500: #ec4899;
248
- --color-pink-600: #db2777;
249
- --color-pink-700: #be185d;
250
- --color-pink-800: #9d174d;
251
- --color-pink-900: #831843;
252
- --color-pink-950: #500724;
253
- --color-rose-50: #fff1f2;
254
- --color-rose-100: #ffe4e6;
255
- --color-rose-200: #fecdd3;
256
- --color-rose-300: #fda4af;
257
- --color-rose-400: #fb7185;
258
- --color-rose-500: #f43f5e;
259
- --color-rose-600: #e11d48;
260
- --color-rose-700: #be123c;
261
- --color-rose-800: #9f1239;
262
- --color-rose-900: #881337;
263
- --color-rose-950: #4c0519;
264
-
265
- /* Animations */
266
- --animate-spin: spin 1s linear infinite;
267
- --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
268
- --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
269
- --animate-bounce: bounce 1s infinite;
270
274
 
271
- /* Blurs */
272
- --blur: 8px;
273
- --blur-sm: 4px;
274
- --blur-md: 12px;
275
- --blur-lg: 16px;
276
- --blur-xl: 24px;
277
- --blur-2xl: 40px;
278
- --blur-3xl: 64px;
275
+ --spacing: 0.25rem;
279
276
 
280
- /* Radii */
281
- --radius: 0.25rem;
282
- --radius-sm: 0.125rem;
277
+ --breakpoint-sm: 40rem;
278
+ --breakpoint-md: 48rem;
279
+ --breakpoint-lg: 64rem;
280
+ --breakpoint-xl: 80rem;
281
+ --breakpoint-2xl: 96rem;
282
+
283
+ --container-3xs: 16rem;
284
+ --container-2xs: 18rem;
285
+ --container-xs: 20rem;
286
+ --container-sm: 24rem;
287
+ --container-md: 28rem;
288
+ --container-lg: 32rem;
289
+ --container-xl: 36rem;
290
+ --container-2xl: 42rem;
291
+ --container-3xl: 48rem;
292
+ --container-4xl: 56rem;
293
+ --container-5xl: 64rem;
294
+ --container-6xl: 72rem;
295
+ --container-7xl: 80rem;
296
+ --container-prose: 65ch;
297
+
298
+ --text-xs: 0.75rem;
299
+ --text-xs--line-height: 1rem;
300
+ --text-sm: 0.875rem;
301
+ --text-sm--line-height: 1.25rem;
302
+ --text-base: 1rem;
303
+ --text-base--line-height: 1.5rem;
304
+ --text-lg: 1.125rem;
305
+ --text-lg--line-height: 1.75rem;
306
+ --text-xl: 1.25rem;
307
+ --text-xl--line-height: 1.75rem;
308
+ --text-2xl: 1.5rem;
309
+ --text-2xl--line-height: 2rem;
310
+ --text-3xl: 1.875rem;
311
+ --text-3xl--line-height: 2.25rem;
312
+ --text-4xl: 2.25rem;
313
+ --text-4xl--line-height: 2.5rem;
314
+ --text-5xl: 3rem;
315
+ --text-5xl--line-height: 1;
316
+ --text-6xl: 3.75rem;
317
+ --text-6xl--line-height: 1;
318
+ --text-7xl: 4.5rem;
319
+ --text-7xl--line-height: 1;
320
+ --text-8xl: 6rem;
321
+ --text-8xl--line-height: 1;
322
+ --text-9xl: 8rem;
323
+ --text-9xl--line-height: 1;
324
+
325
+ --font-weight-thin: 100;
326
+ --font-weight-extralight: 200;
327
+ --font-weight-light: 300;
328
+ --font-weight-normal: 400;
329
+ --font-weight-medium: 500;
330
+ --font-weight-semibold: 600;
331
+ --font-weight-bold: 700;
332
+ --font-weight-extrabold: 800;
333
+ --font-weight-black: 900;
334
+
335
+ --tracking-tighter: -0.05em;
336
+ --tracking-tight: -0.025em;
337
+ --tracking-normal: 0em;
338
+ --tracking-wide: 0.025em;
339
+ --tracking-wider: 0.05em;
340
+ --tracking-widest: 0.1em;
341
+
342
+ --leading-tight: 1.25;
343
+ --leading-snug: 1.375;
344
+ --leading-normal: 1.5;
345
+ --leading-relaxed: 1.625;
346
+ --leading-loose: 2;
347
+
348
+ --radius-xs: 0.125rem;
349
+ --radius-sm: 0.25rem;
283
350
  --radius-md: 0.375rem;
284
351
  --radius-lg: 0.5rem;
285
352
  --radius-xl: 0.75rem;
286
353
  --radius-2xl: 1rem;
287
354
  --radius-3xl: 1.5rem;
355
+ --radius-4xl: 2rem;
288
356
 
289
- /* Shadows */
290
- --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
291
- --shadow-xs: 0 1px rgb(0 0 0 / 0.05);
292
- --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
357
+ --shadow-2xs: 0 1px rgb(0 0 0 / 0.05);
358
+ --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
359
+ --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
293
360
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
294
361
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
295
362
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
296
363
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
297
- --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
298
364
 
299
- /* Inset shadows */
300
- --inset-shadow-xs: inset 0 1px rgb(0 0 0 / 0.05);
301
- --inset-shadow-sm: inset 0 1px 1px rgb(0 0 0 / 0.05);
302
- --inset-shadow: inset 0 2px 4px rgb(0 0 0 / 0.05);
365
+ --inset-shadow-2xs: inset 0 1px rgb(0 0 0 / 0.05);
366
+ --inset-shadow-xs: inset 0 1px 1px rgb(0 0 0 / 0.05);
367
+ --inset-shadow-sm: inset 0 2px 4px rgb(0 0 0 / 0.05);
303
368
 
304
- /* Drop shadows */
305
- --drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06);
306
- --drop-shadow-sm: 0 1px 1px rgb(0 0 0 / 0.05);
307
- --drop-shadow-md: 0 4px 3px rgb(0 0 0 / 0.07), 0 2px 2px rgb(0 0 0 / 0.06);
308
- --drop-shadow-lg: 0 10px 8px rgb(0 0 0 / 0.04), 0 4px 3px rgb(0 0 0 / 0.1);
309
- --drop-shadow-xl: 0 20px 13px rgb(0 0 0 / 0.03), 0 8px 5px rgb(0 0 0 / 0.08);
369
+ --drop-shadow-xs: 0 1px 1px rgb(0 0 0 / 0.05);
370
+ --drop-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.15);
371
+ --drop-shadow-md: 0 3px 3px rgb(0 0 0 / 0.12);
372
+ --drop-shadow-lg: 0 4px 4px rgb(0 0 0 / 0.15);
373
+ --drop-shadow-xl: 0 9px 7px rgb(0 0 0 / 0.1);
310
374
  --drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / 0.15);
311
375
 
312
- /* Spacing */
313
- --spacing-px: 1px;
314
- --spacing-0: 0px;
315
- --spacing-0_5: 0.125rem;
316
- --spacing-1: 0.25rem;
317
- --spacing-1_5: 0.375rem;
318
- --spacing-2: 0.5rem;
319
- --spacing-2_5: 0.625rem;
320
- --spacing-3: 0.75rem;
321
- --spacing-3_5: 0.875rem;
322
- --spacing-4: 1rem;
323
- --spacing-5: 1.25rem;
324
- --spacing-6: 1.5rem;
325
- --spacing-7: 1.75rem;
326
- --spacing-8: 2rem;
327
- --spacing-9: 2.25rem;
328
- --spacing-10: 2.5rem;
329
- --spacing-11: 2.75rem;
330
- --spacing-12: 3rem;
331
- --spacing-14: 3.5rem;
332
- --spacing-16: 4rem;
333
- --spacing-20: 5rem;
334
- --spacing-24: 6rem;
335
- --spacing-28: 7rem;
336
- --spacing-32: 8rem;
337
- --spacing-36: 9rem;
338
- --spacing-40: 10rem;
339
- --spacing-44: 11rem;
340
- --spacing-48: 12rem;
341
- --spacing-52: 13rem;
342
- --spacing-56: 14rem;
343
- --spacing-60: 15rem;
344
- --spacing-64: 16rem;
345
- --spacing-72: 18rem;
346
- --spacing-80: 20rem;
347
- --spacing-96: 24rem;
348
-
349
- /* Widths */
350
- --width-3xs: 16rem;
351
- --width-2xs: 18rem;
352
- --width-xs: 20rem;
353
- --width-sm: 24rem;
354
- --width-md: 28rem;
355
- --width-lg: 32rem;
356
- --width-xl: 36rem;
357
- --width-2xl: 42rem;
358
- --width-3xl: 48rem;
359
- --width-4xl: 56rem;
360
- --width-5xl: 64rem;
361
- --width-6xl: 72rem;
362
- --width-7xl: 80rem;
363
- --width-prose: 65ch;
364
-
365
- /* Fonts */
366
- --font-family-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
367
- 'Segoe UI Symbol', 'Noto Color Emoji';
368
- --font-family-serif: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
369
- --font-family-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
370
- 'Courier New', monospace;
376
+ --ease-in: cubic-bezier(0.4, 0, 1, 1);
377
+ --ease-out: cubic-bezier(0, 0, 0.2, 1);
378
+ --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
371
379
 
372
- /* Type scale */
373
- --font-size-xs: 0.75rem;
374
- --font-size-xs--line-height: 1rem;
375
- --font-size-sm: 0.875rem;
376
- --font-size-sm--line-height: 1.25rem;
377
- --font-size-base: 1rem;
378
- --font-size-base--line-height: 1.5rem;
379
- --font-size-lg: 1.125rem;
380
- --font-size-lg--line-height: 1.75rem;
381
- --font-size-xl: 1.25rem;
382
- --font-size-xl--line-height: 1.75rem;
383
- --font-size-2xl: 1.5rem;
384
- --font-size-2xl--line-height: 2rem;
385
- --font-size-3xl: 1.875rem;
386
- --font-size-3xl--line-height: 2.25rem;
387
- --font-size-4xl: 2.25rem;
388
- --font-size-4xl--line-height: 2.5rem;
389
- --font-size-5xl: 3rem;
390
- --font-size-5xl--line-height: 1;
391
- --font-size-6xl: 3.75rem;
392
- --font-size-6xl--line-height: 1;
393
- --font-size-7xl: 4.5rem;
394
- --font-size-7xl--line-height: 1;
395
- --font-size-8xl: 6rem;
396
- --font-size-8xl--line-height: 1;
397
- --font-size-9xl: 8rem;
398
- --font-size-9xl--line-height: 1;
399
-
400
- /* Letter spacing */
401
- --letter-spacing-tighter: -0.05em;
402
- --letter-spacing-tight: -0.025em;
403
- --letter-spacing-normal: 0em;
404
- --letter-spacing-wide: 0.025em;
405
- --letter-spacing-wider: 0.05em;
406
- --letter-spacing-widest: 0.1em;
407
-
408
- /* Line-height */
409
- --line-height-none: 1;
410
- --line-height-tight: 1.25;
411
- --line-height-snug: 1.375;
412
- --line-height-normal: 1.5;
413
- --line-height-relaxed: 1.625;
414
- --line-height-loose: 2;
415
- --line-height-3: 0.75rem;
416
- --line-height-4: 1rem;
417
- --line-height-5: 1.25rem;
418
- --line-height-6: 1.5rem;
419
- --line-height-7: 1.75rem;
420
- --line-height-8: 2rem;
421
- --line-height-9: 2.25rem;
422
- --line-height-10: 2.5rem;
423
-
424
- /* Transition timing functions */
425
- --transition-timing-function-linear: linear;
426
- --transition-timing-function-in: cubic-bezier(0.4, 0, 1, 1);
427
- --transition-timing-function-out: cubic-bezier(0, 0, 0.2, 1);
428
- --transition-timing-function-in-out: cubic-bezier(0.4, 0, 0.2, 1);
380
+ --animate-spin: spin 1s linear infinite;
381
+ --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
382
+ --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
383
+ --animate-bounce: bounce 1s infinite;
429
384
 
430
385
  @keyframes spin {
431
386
  to {
@@ -459,4 +414,36 @@
459
414
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
460
415
  }
461
416
  }
417
+
418
+ --blur-xs: 4px;
419
+ --blur-sm: 8px;
420
+ --blur-md: 12px;
421
+ --blur-lg: 16px;
422
+ --blur-xl: 24px;
423
+ --blur-2xl: 40px;
424
+ --blur-3xl: 64px;
425
+
426
+ --perspective-dramatic: 100px;
427
+ --perspective-near: 300px;
428
+ --perspective-normal: 500px;
429
+ --perspective-midrange: 800px;
430
+ --perspective-distant: 1200px;
431
+
432
+ --default-transition-duration: 150ms;
433
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
434
+ --default-font-family: var(--font-sans);
435
+ --default-font-feature-settings: var(--font-sans--font-feature-settings);
436
+ --default-font-variation-settings: var(--font-sans--font-variation-settings);
437
+ --default-mono-font-family: var(--font-mono);
438
+ --default-mono-font-feature-settings: var(--font-mono--font-feature-settings);
439
+ --default-mono-font-variation-settings: var(--font-mono--font-variation-settings);
440
+ }
441
+
442
+ /* Deprecated */
443
+ @theme default inline reference {
444
+ --blur: 8px;
445
+ --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
446
+ --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
447
+ --drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06);
448
+ --radius: 0.25rem;
462
449
  }