tailwindcss 4.0.0-alpha.31 → 4.0.0-alpha.32
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/dist/chunk-WPVXUVJA.mjs +1 -0
- package/dist/default-theme.d.mts +1 -1
- package/dist/default-theme.mjs +1 -1
- package/dist/lib.d.mts +2 -2
- package/dist/lib.js +17 -17
- package/dist/lib.mjs +17 -17
- package/dist/plugin.d.mts +2 -2
- package/dist/plugin.d.ts +1 -0
- package/dist/{resolve-config-CCprQPpk.d.mts → resolve-config-Oupdq5Vo.d.mts} +0 -2
- package/dist/{types-BW7iKs0i.d.mts → types-1Gt9iRen.d.mts} +2 -1
- package/index.css +239 -261
- package/package.json +2 -2
- package/preflight.css +42 -19
- package/theme.css +188 -232
- package/dist/chunk-YMSQGVYX.mjs +0 -1
package/preflight.css
CHANGED
@@ -175,8 +175,7 @@ table {
|
|
175
175
|
}
|
176
176
|
|
177
177
|
/*
|
178
|
-
|
179
|
-
2. Remove the default background color.
|
178
|
+
Inherit font styles in all browsers.
|
180
179
|
*/
|
181
180
|
|
182
181
|
button,
|
@@ -185,31 +184,23 @@ optgroup,
|
|
185
184
|
select,
|
186
185
|
textarea,
|
187
186
|
::file-selector-button {
|
188
|
-
font: inherit;
|
189
|
-
font-feature-settings: inherit;
|
190
|
-
font-variation-settings: inherit;
|
191
|
-
letter-spacing: inherit;
|
192
|
-
color: inherit;
|
193
|
-
background: transparent; /* 2 */
|
187
|
+
font: inherit;
|
188
|
+
font-feature-settings: inherit;
|
189
|
+
font-variation-settings: inherit;
|
190
|
+
letter-spacing: inherit;
|
191
|
+
color: inherit;
|
194
192
|
}
|
195
193
|
|
196
194
|
/*
|
197
|
-
|
195
|
+
1. Remove the default background color of buttons by default.
|
196
|
+
2. Correct the inability to style the border radius in iOS Safari.
|
198
197
|
*/
|
199
198
|
|
200
|
-
input:where(:not([type='button'], [type='reset'], [type='submit'])),
|
201
|
-
select,
|
202
|
-
textarea {
|
203
|
-
border-width: 1px;
|
204
|
-
}
|
205
|
-
|
206
|
-
/*
|
207
|
-
Correct the inability to style the border radius in iOS Safari.
|
208
|
-
*/
|
209
199
|
button,
|
210
200
|
input:where([type='button'], [type='reset'], [type='submit']),
|
211
201
|
::file-selector-button {
|
212
|
-
|
202
|
+
background: transparent; /* 1 */
|
203
|
+
appearance: button; /* 2 */
|
213
204
|
}
|
214
205
|
|
215
206
|
/*
|
@@ -253,6 +244,38 @@ progress {
|
|
253
244
|
-webkit-appearance: none;
|
254
245
|
}
|
255
246
|
|
247
|
+
/*
|
248
|
+
1. Ensure date/time inputs have the same height when empty in iOS Safari.
|
249
|
+
2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
|
250
|
+
*/
|
251
|
+
::-webkit-date-and-time-value {
|
252
|
+
min-height: 1lh; /* 1 */
|
253
|
+
text-align: inherit; /* 2 */
|
254
|
+
}
|
255
|
+
|
256
|
+
/*
|
257
|
+
Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
|
258
|
+
*/
|
259
|
+
::-webkit-datetime-edit {
|
260
|
+
display: inline-flex;
|
261
|
+
}
|
262
|
+
|
263
|
+
/*
|
264
|
+
Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
|
265
|
+
*/
|
266
|
+
::-webkit-datetime-edit,
|
267
|
+
::-webkit-datetime-edit-year-field,
|
268
|
+
::-webkit-datetime-edit-month-field,
|
269
|
+
::-webkit-datetime-edit-day-field,
|
270
|
+
::-webkit-datetime-edit-hour-field,
|
271
|
+
::-webkit-datetime-edit-minute-field,
|
272
|
+
::-webkit-datetime-edit-second-field,
|
273
|
+
::-webkit-datetime-edit-millisecond-field,
|
274
|
+
::-webkit-datetime-edit-meridiem-field,
|
275
|
+
::-webkit-datetime-edit-fields-wrapper {
|
276
|
+
padding: 0;
|
277
|
+
}
|
278
|
+
|
256
279
|
/*
|
257
280
|
Add the correct display in Chrome and Safari.
|
258
281
|
*/
|
package/theme.css
CHANGED
@@ -1,84 +1,9 @@
|
|
1
1
|
@theme default {
|
2
|
-
|
3
|
-
|
4
|
-
--
|
5
|
-
--
|
6
|
-
|
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: 40rem;
|
14
|
-
--breakpoint-md: 48rem;
|
15
|
-
--breakpoint-lg: 64rem;
|
16
|
-
--breakpoint-xl: 80rem;
|
17
|
-
--breakpoint-2xl: 96rem;
|
18
|
-
|
19
|
-
/* Colors */
|
20
|
-
--color-black: #000;
|
21
|
-
--color-white: #fff;
|
22
|
-
|
23
|
-
--color-slate-50: oklch(0.984 0.003 247.858);
|
24
|
-
--color-slate-100: oklch(0.968 0.007 247.896);
|
25
|
-
--color-slate-200: oklch(0.929 0.013 255.508);
|
26
|
-
--color-slate-300: oklch(0.869 0.022 252.894);
|
27
|
-
--color-slate-400: oklch(0.704 0.04 256.788);
|
28
|
-
--color-slate-500: oklch(0.554 0.046 257.417);
|
29
|
-
--color-slate-600: oklch(0.446 0.043 257.281);
|
30
|
-
--color-slate-700: oklch(0.372 0.044 257.287);
|
31
|
-
--color-slate-800: oklch(0.279 0.041 260.031);
|
32
|
-
--color-slate-900: oklch(0.208 0.042 265.755);
|
33
|
-
--color-slate-950: oklch(0.129 0.042 264.695);
|
34
|
-
|
35
|
-
--color-gray-50: oklch(0.985 0.002 247.839);
|
36
|
-
--color-gray-100: oklch(0.967 0.003 264.542);
|
37
|
-
--color-gray-200: oklch(0.928 0.006 264.531);
|
38
|
-
--color-gray-300: oklch(0.872 0.01 258.338);
|
39
|
-
--color-gray-400: oklch(0.707 0.022 261.325);
|
40
|
-
--color-gray-500: oklch(0.551 0.027 264.364);
|
41
|
-
--color-gray-600: oklch(0.446 0.03 256.802);
|
42
|
-
--color-gray-700: oklch(0.373 0.034 259.733);
|
43
|
-
--color-gray-800: oklch(0.278 0.033 256.848);
|
44
|
-
--color-gray-900: oklch(0.21 0.034 264.665);
|
45
|
-
--color-gray-950: oklch(0.13 0.028 261.692);
|
46
|
-
|
47
|
-
--color-zinc-50: oklch(0.985 0 0);
|
48
|
-
--color-zinc-100: oklch(0.967 0.001 286.375);
|
49
|
-
--color-zinc-200: oklch(0.92 0.004 286.32);
|
50
|
-
--color-zinc-300: oklch(0.871 0.006 286.286);
|
51
|
-
--color-zinc-400: oklch(0.705 0.015 286.067);
|
52
|
-
--color-zinc-500: oklch(0.552 0.016 285.938);
|
53
|
-
--color-zinc-600: oklch(0.442 0.017 285.786);
|
54
|
-
--color-zinc-700: oklch(0.37 0.013 285.805);
|
55
|
-
--color-zinc-800: oklch(0.274 0.006 286.033);
|
56
|
-
--color-zinc-900: oklch(0.21 0.006 285.885);
|
57
|
-
--color-zinc-950: oklch(0.141 0.005 285.823);
|
58
|
-
|
59
|
-
--color-neutral-50: oklch(0.985 0 0);
|
60
|
-
--color-neutral-100: oklch(0.97 0 0);
|
61
|
-
--color-neutral-200: oklch(0.922 0 0);
|
62
|
-
--color-neutral-300: oklch(0.87 0 0);
|
63
|
-
--color-neutral-400: oklch(0.708 0 0);
|
64
|
-
--color-neutral-500: oklch(0.556 0 0);
|
65
|
-
--color-neutral-600: oklch(0.439 0 0);
|
66
|
-
--color-neutral-700: oklch(0.371 0 0);
|
67
|
-
--color-neutral-800: oklch(0.269 0 0);
|
68
|
-
--color-neutral-900: oklch(0.205 0 0);
|
69
|
-
--color-neutral-950: oklch(0.145 0 0);
|
70
|
-
|
71
|
-
--color-stone-50: oklch(0.985 0.001 106.423);
|
72
|
-
--color-stone-100: oklch(0.97 0.001 106.424);
|
73
|
-
--color-stone-200: oklch(0.923 0.003 48.717);
|
74
|
-
--color-stone-300: oklch(0.869 0.005 56.366);
|
75
|
-
--color-stone-400: oklch(0.709 0.01 56.259);
|
76
|
-
--color-stone-500: oklch(0.553 0.013 58.071);
|
77
|
-
--color-stone-600: oklch(0.444 0.011 73.639);
|
78
|
-
--color-stone-700: oklch(0.374 0.01 67.558);
|
79
|
-
--color-stone-800: oklch(0.268 0.007 34.298);
|
80
|
-
--color-stone-900: oklch(0.216 0.006 56.043);
|
81
|
-
--color-stone-950: oklch(0.147 0.004 49.25);
|
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;
|
82
7
|
|
83
8
|
--color-red-50: oklch(0.971 0.013 17.38);
|
84
9
|
--color-red-100: oklch(0.936 0.032 17.717);
|
@@ -284,24 +209,144 @@
|
|
284
209
|
--color-rose-900: oklch(0.41 0.159 10.272);
|
285
210
|
--color-rose-950: oklch(0.271 0.105 12.094);
|
286
211
|
|
287
|
-
|
288
|
-
--
|
289
|
-
--
|
290
|
-
--
|
291
|
-
--
|
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);
|
292
223
|
|
293
|
-
|
294
|
-
--
|
295
|
-
--
|
296
|
-
--
|
297
|
-
--
|
298
|
-
--
|
299
|
-
--
|
300
|
-
--
|
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);
|
301
235
|
|
302
|
-
|
303
|
-
--
|
304
|
-
--
|
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
|
+
|
272
|
+
--color-black: #000;
|
273
|
+
--color-white: #fff;
|
274
|
+
|
275
|
+
--spacing: 0.25rem;
|
276
|
+
|
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;
|
305
350
|
--radius-md: 0.375rem;
|
306
351
|
--radius-lg: 0.5rem;
|
307
352
|
--radius-xl: 0.75rem;
|
@@ -309,154 +354,33 @@
|
|
309
354
|
--radius-3xl: 1.5rem;
|
310
355
|
--radius-4xl: 2rem;
|
311
356
|
|
312
|
-
|
313
|
-
--shadow: 0 1px
|
314
|
-
--shadow-
|
315
|
-
--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);
|
316
360
|
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
317
361
|
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
318
362
|
--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
319
363
|
--shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
320
|
-
--shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
|
321
364
|
|
322
|
-
|
323
|
-
--inset-shadow-xs: inset 0 1px rgb(0 0 0 / 0.05);
|
324
|
-
--inset-shadow-sm: inset 0
|
325
|
-
--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);
|
326
368
|
|
327
|
-
|
328
|
-
--drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06);
|
329
|
-
--drop-shadow-sm: 0 1px 1px rgb(0 0 0 / 0.05);
|
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.1), 0 1px 1px rgb(0 0 0 / 0.06);
|
330
371
|
--drop-shadow-md: 0 4px 3px rgb(0 0 0 / 0.07), 0 2px 2px rgb(0 0 0 / 0.06);
|
331
372
|
--drop-shadow-lg: 0 10px 8px rgb(0 0 0 / 0.04), 0 4px 3px rgb(0 0 0 / 0.1);
|
332
373
|
--drop-shadow-xl: 0 20px 13px rgb(0 0 0 / 0.03), 0 8px 5px rgb(0 0 0 / 0.08);
|
333
374
|
--drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / 0.15);
|
334
|
-
--drop-shadow-none: 0 0 #0000;
|
335
|
-
|
336
|
-
/* Spacing */
|
337
|
-
--spacing-px: 1px;
|
338
|
-
--spacing-0: 0px;
|
339
|
-
--spacing-0_5: 0.125rem;
|
340
|
-
--spacing-1: 0.25rem;
|
341
|
-
--spacing-1_5: 0.375rem;
|
342
|
-
--spacing-2: 0.5rem;
|
343
|
-
--spacing-2_5: 0.625rem;
|
344
|
-
--spacing-3: 0.75rem;
|
345
|
-
--spacing-3_5: 0.875rem;
|
346
|
-
--spacing-4: 1rem;
|
347
|
-
--spacing-5: 1.25rem;
|
348
|
-
--spacing-6: 1.5rem;
|
349
|
-
--spacing-7: 1.75rem;
|
350
|
-
--spacing-8: 2rem;
|
351
|
-
--spacing-9: 2.25rem;
|
352
|
-
--spacing-10: 2.5rem;
|
353
|
-
--spacing-11: 2.75rem;
|
354
|
-
--spacing-12: 3rem;
|
355
|
-
--spacing-14: 3.5rem;
|
356
|
-
--spacing-16: 4rem;
|
357
|
-
--spacing-20: 5rem;
|
358
|
-
--spacing-24: 6rem;
|
359
|
-
--spacing-28: 7rem;
|
360
|
-
--spacing-32: 8rem;
|
361
|
-
--spacing-36: 9rem;
|
362
|
-
--spacing-40: 10rem;
|
363
|
-
--spacing-44: 11rem;
|
364
|
-
--spacing-48: 12rem;
|
365
|
-
--spacing-52: 13rem;
|
366
|
-
--spacing-56: 14rem;
|
367
|
-
--spacing-60: 15rem;
|
368
|
-
--spacing-64: 16rem;
|
369
|
-
--spacing-72: 18rem;
|
370
|
-
--spacing-80: 20rem;
|
371
|
-
--spacing-96: 24rem;
|
372
|
-
|
373
|
-
/* Widths */
|
374
|
-
--width-3xs: 16rem;
|
375
|
-
--width-2xs: 18rem;
|
376
|
-
--width-xs: 20rem;
|
377
|
-
--width-sm: 24rem;
|
378
|
-
--width-md: 28rem;
|
379
|
-
--width-lg: 32rem;
|
380
|
-
--width-xl: 36rem;
|
381
|
-
--width-2xl: 42rem;
|
382
|
-
--width-3xl: 48rem;
|
383
|
-
--width-4xl: 56rem;
|
384
|
-
--width-5xl: 64rem;
|
385
|
-
--width-6xl: 72rem;
|
386
|
-
--width-7xl: 80rem;
|
387
|
-
--width-prose: 65ch;
|
388
|
-
|
389
|
-
/* Fonts */
|
390
|
-
--font-family-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
|
391
|
-
'Segoe UI Symbol', 'Noto Color Emoji';
|
392
|
-
--font-family-serif: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
|
393
|
-
--font-family-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
|
394
|
-
'Courier New', monospace;
|
395
375
|
|
396
|
-
|
397
|
-
--
|
398
|
-
--
|
399
|
-
--font-size-sm: 0.875rem;
|
400
|
-
--font-size-sm--line-height: 1.25rem;
|
401
|
-
--font-size-base: 1rem;
|
402
|
-
--font-size-base--line-height: 1.5rem;
|
403
|
-
--font-size-lg: 1.125rem;
|
404
|
-
--font-size-lg--line-height: 1.75rem;
|
405
|
-
--font-size-xl: 1.25rem;
|
406
|
-
--font-size-xl--line-height: 1.75rem;
|
407
|
-
--font-size-2xl: 1.5rem;
|
408
|
-
--font-size-2xl--line-height: 2rem;
|
409
|
-
--font-size-3xl: 1.875rem;
|
410
|
-
--font-size-3xl--line-height: 2.25rem;
|
411
|
-
--font-size-4xl: 2.25rem;
|
412
|
-
--font-size-4xl--line-height: 2.5rem;
|
413
|
-
--font-size-5xl: 3rem;
|
414
|
-
--font-size-5xl--line-height: 1;
|
415
|
-
--font-size-6xl: 3.75rem;
|
416
|
-
--font-size-6xl--line-height: 1;
|
417
|
-
--font-size-7xl: 4.5rem;
|
418
|
-
--font-size-7xl--line-height: 1;
|
419
|
-
--font-size-8xl: 6rem;
|
420
|
-
--font-size-8xl--line-height: 1;
|
421
|
-
--font-size-9xl: 8rem;
|
422
|
-
--font-size-9xl--line-height: 1;
|
423
|
-
|
424
|
-
/* Letter spacing */
|
425
|
-
--letter-spacing-tighter: -0.05em;
|
426
|
-
--letter-spacing-tight: -0.025em;
|
427
|
-
--letter-spacing-normal: 0em;
|
428
|
-
--letter-spacing-wide: 0.025em;
|
429
|
-
--letter-spacing-wider: 0.05em;
|
430
|
-
--letter-spacing-widest: 0.1em;
|
431
|
-
|
432
|
-
/* Line-height */
|
433
|
-
--line-height-none: 1;
|
434
|
-
--line-height-tight: 1.25;
|
435
|
-
--line-height-snug: 1.375;
|
436
|
-
--line-height-normal: 1.5;
|
437
|
-
--line-height-relaxed: 1.625;
|
438
|
-
--line-height-loose: 2;
|
439
|
-
--line-height-3: 0.75rem;
|
440
|
-
--line-height-4: 1rem;
|
441
|
-
--line-height-5: 1.25rem;
|
442
|
-
--line-height-6: 1.5rem;
|
443
|
-
--line-height-7: 1.75rem;
|
444
|
-
--line-height-8: 2rem;
|
445
|
-
--line-height-9: 2.25rem;
|
446
|
-
--line-height-10: 2.5rem;
|
447
|
-
|
448
|
-
/* 3D perspectives */
|
449
|
-
--perspective-dramatic: 100px;
|
450
|
-
--perspective-near: 300px;
|
451
|
-
--perspective-normal: 500px;
|
452
|
-
--perspective-midrange: 800px;
|
453
|
-
--perspective-distant: 1200px;
|
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);
|
454
379
|
|
455
|
-
|
456
|
-
--
|
457
|
-
--
|
458
|
-
--
|
459
|
-
--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;
|
460
384
|
|
461
385
|
@keyframes spin {
|
462
386
|
to {
|
@@ -490,4 +414,36 @@
|
|
490
414
|
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
491
415
|
}
|
492
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;
|
493
449
|
}
|
package/dist/chunk-YMSQGVYX.mjs
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
import{a as C}from"./chunk-AZANAYY2.mjs";var N=new Set(["black","silver","gray","white","maroon","red","purple","fuchsia","green","lime","olive","yellow","navy","blue","teal","aqua","aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkgrey","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","green","greenyellow","grey","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightgrey","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen","transparent","currentcolor","canvas","canvastext","linktext","visitedtext","activetext","buttonface","buttontext","buttonborder","field","fieldtext","highlight","highlighttext","selecteditem","selecteditemtext","mark","marktext","graytext","accentcolor","accentcolortext"]),U=/^(rgba?|hsla?|hwb|color|(ok)?(lab|lch)|light-dark|color-mix)\(/i;function S(e){return e.charCodeAt(0)===35||U.test(e)||N.has(e.toLowerCase())}var k=["calc","min","max","clamp","mod","rem","sin","cos","tan","asin","acos","atan","atan2","pow","sqrt","hypot","log","exp","round"],h=["anchor-size"],A=new RegExp(`(${h.join("|")})\\(`,"g");function b(e){return e.indexOf("(")!==-1&&k.some(r=>e.includes(`${r}(`))}function re(e){if(!k.some(n=>e.includes(n)))return e;let r=!1;h.some(n=>e.includes(n))&&(A.lastIndex=0,e=e.replace(A,(n,o)=>(r=!0,`$${h.indexOf(o)}$(`)));let t="",i=[];for(let n=0;n<e.length;n++){let o=e[n];if(o==="("){t+=o;let m=n;for(let c=n-1;c>=0;c--){let u=e.charCodeAt(c);if(u>=48&&u<=57)m=c;else if(u>=97&&u<=122)m=c;else break}let a=e.slice(m,n);if(k.includes(a)){i.unshift(!0);continue}else if(i[0]&&a===""){i.unshift(!0);continue}i.unshift(!1);continue}else if(o===")")t+=o,i.shift();else if(o===","&&i[0]){t+=", ";continue}else{if(o===" "&&i[0]&&t[t.length-1]===" ")continue;if((o==="+"||o==="*"||o==="/"||o==="-")&&i[0]){let m=t.trimEnd(),a=m[m.length-1];if(a==="+"||a==="*"||a==="/"||a==="-"){t+=o;continue}else if(a==="("||a===","){t+=o;continue}else e[n-1]===" "?t+=`${o} `:t+=` ${o} `}else if(i[0]&&e.startsWith("to-zero",n)){let m=n;n+=7,t+=e.slice(m,n+1)}else t+=o}}return r?t.replace(/\$(\d+)\$/g,(n,o)=>h[o]??n):t}var y=new Uint8Array(256);function g(e,r){let t=0,i=[],n=0,o=e.length,m=r.charCodeAt(0);for(let a=0;a<o;a++){let c=e.charCodeAt(a);if(t===0&&c===m){i.push(e.slice(n,a)),n=a+1;continue}switch(c){case 92:a+=1;break;case 39:case 34:for(;++a<o;){let u=e.charCodeAt(a);if(u===92){a+=1;continue}if(u===c)break}break;case 40:y[t]=41,t++;break;case 91:y[t]=93,t++;break;case 123:y[t]=125,t++;break;case 93:case 125:case 41:t>0&&c===y[t-1]&&t--;break}}return i.push(e.slice(n)),i}var R={color:S,length:v,percentage:E,number:W,url:z,position:j,"bg-size":K,"line-width":_,image:I,"family-name":$,"generic-name":H,"absolute-size":P,"relative-size":q,angle:X,vector:Z};function le(e,r){if(e.startsWith("var("))return null;for(let t of r)if(R[t]?.(e))return t;return null}var O=/^url\(.*\)$/;function z(e){return O.test(e)}function _(e){return e==="thin"||e==="medium"||e==="thick"}var D=/^(?:element|image|cross-fade|image-set)\(/,F=/^(repeating-)?(conic|linear|radial)-gradient\(/;function I(e){let r=0;for(let t of g(e,","))if(!t.startsWith("var(")){if(z(t)){r+=1;continue}if(F.test(t)){r+=1;continue}if(D.test(t)){r+=1;continue}return!1}return r>0}function H(e){return e==="serif"||e==="sans-serif"||e==="monospace"||e==="cursive"||e==="fantasy"||e==="system-ui"||e==="ui-serif"||e==="ui-sans-serif"||e==="ui-monospace"||e==="ui-rounded"||e==="math"||e==="emoji"||e==="fangsong"}function $(e){let r=0;for(let t of g(e,",")){let i=t.charCodeAt(0);if(i>=48&&i<=57)return!1;t.startsWith("var(")||(r+=1)}return r>0}function P(e){return e==="xx-small"||e==="x-small"||e==="small"||e==="medium"||e==="large"||e==="x-large"||e==="xx-large"||e==="xxx-large"}function q(e){return e==="larger"||e==="smaller"}var x=/[+-]?\d*\.?\d+(?:[eE][+-]?\d+)?/,B=new RegExp(`^${x.source}$`);function W(e){return B.test(e)||b(e)}var G=new RegExp(`^${x.source}%$`);function E(e){return G.test(e)||b(e)}var M=["cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh","cqw","cqh","cqi","cqb","cqmin","cqmax"],V=new RegExp(`^${x.source}(${M.join("|")})$`);function v(e){return V.test(e)||b(e)}function j(e){let r=0;for(let t of g(e," ")){if(t==="center"||t==="top"||t==="right"||t==="bottom"||t==="left"){r+=1;continue}if(!t.startsWith("var(")){if(v(t)||E(t)){r+=1;continue}return!1}}return r>0}function K(e){let r=0;for(let t of g(e,",")){if(t==="cover"||t==="contain"){r+=1;continue}let i=g(t," ");if(i.length!==1&&i.length!==2)return!1;if(i.every(n=>n==="auto"||v(n)||E(n))){r+=1;continue}}return r>0}var Y=["deg","rad","grad","turn"],Q=new RegExp(`^${x.source}(${Y.join("|")})$`);function X(e){return Q.test(e)}var J=new RegExp(`^${x.source} +${x.source} +${x.source}$`);function Z(e){return J.test(e)}function p(e){let r=Number(e);return Number.isInteger(r)&&r>=0&&String(r)===String(e)}function f(e){return{__BARE_VALUE__:e}}var l=f(e=>{if(p(e.value))return e.value}),s=f(e=>{if(p(e.value))return`${e.value}%`}),d=f(e=>{if(p(e.value))return`${e.value}px`}),T=f(e=>{if(p(e.value))return`${e.value}ms`}),w=f(e=>{if(p(e.value))return`${e.value}deg`}),ee=f(e=>{if(e.fraction===null)return;let[r,t]=g(e.fraction,"/");if(!(!p(r)||!p(t)))return e.fraction}),L=f(e=>{if(p(Number(e.value)))return`repeat(${e.value}, minmax(0, 1fr))`}),de={accentColor:({theme:e})=>e("colors"),animation:{none:"none",spin:"spin 1s linear infinite",ping:"ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",pulse:"pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",bounce:"bounce 1s infinite"},aria:{busy:'busy="true"',checked:'checked="true"',disabled:'disabled="true"',expanded:'expanded="true"',hidden:'hidden="true"',pressed:'pressed="true"',readonly:'readonly="true"',required:'required="true"',selected:'selected="true"'},aspectRatio:{auto:"auto",square:"1 / 1",video:"16 / 9",...ee},backdropBlur:({theme:e})=>e("blur"),backdropBrightness:({theme:e})=>({...e("brightness"),...s}),backdropContrast:({theme:e})=>({...e("contrast"),...s}),backdropGrayscale:({theme:e})=>({...e("grayscale"),...s}),backdropHueRotate:({theme:e})=>({...e("hueRotate"),...w}),backdropInvert:({theme:e})=>({...e("invert"),...s}),backdropOpacity:({theme:e})=>({...e("opacity"),...s}),backdropSaturate:({theme:e})=>({...e("saturate"),...s}),backdropSepia:({theme:e})=>({...e("sepia"),...s}),backgroundColor:({theme:e})=>e("colors"),backgroundImage:{none:"none","gradient-to-t":"linear-gradient(to top, var(--tw-gradient-stops))","gradient-to-tr":"linear-gradient(to top right, var(--tw-gradient-stops))","gradient-to-r":"linear-gradient(to right, var(--tw-gradient-stops))","gradient-to-br":"linear-gradient(to bottom right, var(--tw-gradient-stops))","gradient-to-b":"linear-gradient(to bottom, var(--tw-gradient-stops))","gradient-to-bl":"linear-gradient(to bottom left, var(--tw-gradient-stops))","gradient-to-l":"linear-gradient(to left, var(--tw-gradient-stops))","gradient-to-tl":"linear-gradient(to top left, var(--tw-gradient-stops))"},backgroundOpacity:({theme:e})=>e("opacity"),backgroundPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},backgroundSize:{auto:"auto",cover:"cover",contain:"contain"},blur:{0:"0",none:"",sm:"4px",DEFAULT:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},borderColor:({theme:e})=>({DEFAULT:"currentColor",...e("colors")}),borderOpacity:({theme:e})=>e("opacity"),borderRadius:{none:"0px",sm:"0.125rem",DEFAULT:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},borderSpacing:({theme:e})=>e("spacing"),borderWidth:{DEFAULT:"1px",0:"0px",2:"2px",4:"4px",8:"8px",...d},boxShadow:{sm:"0 1px 2px 0 rgb(0 0 0 / 0.05)",DEFAULT:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)",inner:"inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",none:"none"},boxShadowColor:({theme:e})=>e("colors"),brightness:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",200:"2",...s},caretColor:({theme:e})=>e("colors"),colors:()=>({...C}),columns:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12","3xs":"16rem","2xs":"18rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",...l},container:{},content:{none:"none"},contrast:{0:"0",50:".5",75:".75",100:"1",125:"1.25",150:"1.5",200:"2",...s},cursor:{auto:"auto",default:"default",pointer:"pointer",wait:"wait",text:"text",move:"move",help:"help","not-allowed":"not-allowed",none:"none","context-menu":"context-menu",progress:"progress",cell:"cell",crosshair:"crosshair","vertical-text":"vertical-text",alias:"alias",copy:"copy","no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","sw-resize":"sw-resize","ew-resize":"ew-resize","ns-resize":"ns-resize","nesw-resize":"nesw-resize","nwse-resize":"nwse-resize","zoom-in":"zoom-in","zoom-out":"zoom-out"},divideColor:({theme:e})=>e("borderColor"),divideOpacity:({theme:e})=>e("borderOpacity"),divideWidth:({theme:e})=>({...e("borderWidth"),...d}),dropShadow:{sm:"0 1px 1px rgb(0 0 0 / 0.05)",DEFAULT:["0 1px 2px rgb(0 0 0 / 0.1)","0 1px 1px rgb(0 0 0 / 0.06)"],md:["0 4px 3px rgb(0 0 0 / 0.07)","0 2px 2px rgb(0 0 0 / 0.06)"],lg:["0 10px 8px rgb(0 0 0 / 0.04)","0 4px 3px rgb(0 0 0 / 0.1)"],xl:["0 20px 13px rgb(0 0 0 / 0.03)","0 8px 5px rgb(0 0 0 / 0.08)"],"2xl":"0 25px 25px rgb(0 0 0 / 0.15)",none:"0 0 #0000"},fill:({theme:e})=>e("colors"),flex:{1:"1 1 0%",auto:"1 1 auto",initial:"0 1 auto",none:"none"},flexBasis:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",...e("spacing")}),flexGrow:{0:"0",DEFAULT:"1",...l},flexShrink:{0:"0",DEFAULT:"1",...l},fontFamily:{sans:["ui-sans-serif","system-ui","sans-serif",'"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"'],serif:["ui-serif","Georgia","Cambria",'"Times New Roman"',"Times","serif"],mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas",'"Liberation Mono"','"Courier New"',"monospace"]},fontSize:{xs:["0.75rem",{lineHeight:"1rem"}],sm:["0.875rem",{lineHeight:"1.25rem"}],base:["1rem",{lineHeight:"1.5rem"}],lg:["1.125rem",{lineHeight:"1.75rem"}],xl:["1.25rem",{lineHeight:"1.75rem"}],"2xl":["1.5rem",{lineHeight:"2rem"}],"3xl":["1.875rem",{lineHeight:"2.25rem"}],"4xl":["2.25rem",{lineHeight:"2.5rem"}],"5xl":["3rem",{lineHeight:"1"}],"6xl":["3.75rem",{lineHeight:"1"}],"7xl":["4.5rem",{lineHeight:"1"}],"8xl":["6rem",{lineHeight:"1"}],"9xl":["8rem",{lineHeight:"1"}]},fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},gap:({theme:e})=>e("spacing"),gradientColorStops:({theme:e})=>e("colors"),gradientColorStopPositions:{"0%":"0%","5%":"5%","10%":"10%","15%":"15%","20%":"20%","25%":"25%","30%":"30%","35%":"35%","40%":"40%","45%":"45%","50%":"50%","55%":"55%","60%":"60%","65%":"65%","70%":"70%","75%":"75%","80%":"80%","85%":"85%","90%":"90%","95%":"95%","100%":"100%",...s},grayscale:{0:"0",DEFAULT:"100%",...s},gridAutoColumns:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridAutoRows:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridColumn:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridColumnEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...l},gridColumnStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...l},gridRow:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridRowEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...l},gridRowStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...l},gridTemplateColumns:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...L},gridTemplateRows:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...L},height:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),hueRotate:{0:"0deg",15:"15deg",30:"30deg",60:"60deg",90:"90deg",180:"180deg",...w},inset:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),invert:{0:"0",DEFAULT:"100%",...s},keyframes:{spin:{to:{transform:"rotate(360deg)"}},ping:{"75%, 100%":{transform:"scale(2)",opacity:"0"}},pulse:{"50%":{opacity:".5"}},bounce:{"0%, 100%":{transform:"translateY(-25%)",animationTimingFunction:"cubic-bezier(0.8,0,1,1)"},"50%":{transform:"none",animationTimingFunction:"cubic-bezier(0,0,0.2,1)"}}},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},listStyleType:{none:"none",disc:"disc",decimal:"decimal"},listStyleImage:{none:"none"},margin:({theme:e})=>({auto:"auto",...e("spacing")}),lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",...l},maxHeight:({theme:e})=>({none:"none",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),maxWidth:({theme:e})=>({none:"none",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",prose:"65ch",...e("spacing")}),minHeight:({theme:e})=>({full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),minWidth:({theme:e})=>({full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),objectPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},opacity:{0:"0",5:"0.05",10:"0.1",15:"0.15",20:"0.2",25:"0.25",30:"0.3",35:"0.35",40:"0.4",45:"0.45",50:"0.5",55:"0.55",60:"0.6",65:"0.65",70:"0.7",75:"0.75",80:"0.8",85:"0.85",90:"0.9",95:"0.95",100:"1",...s},order:{first:"-9999",last:"9999",none:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",...l},outlineColor:({theme:e})=>e("colors"),outlineOffset:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},outlineWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},padding:({theme:e})=>e("spacing"),placeholderColor:({theme:e})=>e("colors"),placeholderOpacity:({theme:e})=>e("opacity"),ringColor:({theme:e})=>({DEFAULT:"currentColor",...e("colors")}),ringOffsetColor:({theme:e})=>e("colors"),ringOffsetWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},ringOpacity:({theme:e})=>({DEFAULT:"0.5",...e("opacity")}),ringWidth:{DEFAULT:"3px",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},rotate:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",45:"45deg",90:"90deg",180:"180deg",...w},saturate:{0:"0",50:".5",100:"1",150:"1.5",200:"2",...s},scale:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",...s},screens:{sm:"40rem",md:"48rem",lg:"64rem",xl:"80rem","2xl":"96rem"},scrollMargin:({theme:e})=>e("spacing"),scrollPadding:({theme:e})=>e("spacing"),sepia:{0:"0",DEFAULT:"100%",...s},skew:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",...w},space:({theme:e})=>e("spacing"),spacing:{px:"1px",0:"0px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",11:"2.75rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},stroke:({theme:e})=>({none:"none",...e("colors")}),strokeWidth:{0:"0",1:"1",2:"2",...l},supports:{},data:{},textColor:({theme:e})=>e("colors"),textDecorationColor:({theme:e})=>e("colors"),textDecorationThickness:{auto:"auto","from-font":"from-font",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},textIndent:({theme:e})=>e("spacing"),textOpacity:({theme:e})=>e("opacity"),textUnderlineOffset:{auto:"auto",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},transformOrigin:{center:"center",top:"top","top-right":"top right",right:"right","bottom-right":"bottom right",bottom:"bottom","bottom-left":"bottom left",left:"left","top-left":"top left"},transitionDelay:{0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...T},transitionDuration:{DEFAULT:"150ms",0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...T},transitionProperty:{none:"none",all:"all",DEFAULT:"color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",colors:"color, background-color, border-color, text-decoration-color, fill, stroke",opacity:"opacity",shadow:"box-shadow",transform:"transform"},transitionTimingFunction:{DEFAULT:"cubic-bezier(0.4, 0, 0.2, 1)",linear:"linear",in:"cubic-bezier(0.4, 0, 1, 1)",out:"cubic-bezier(0, 0, 0.2, 1)","in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},translate:({theme:e})=>({"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),size:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),width:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",screen:"100vw",svw:"100svw",lvw:"100lvw",dvw:"100dvw",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),willChange:{auto:"auto",scroll:"scroll-position",contents:"contents",transform:"transform"},zIndex:{auto:"auto",0:"0",10:"10",20:"20",30:"30",40:"40",50:"50",...l}};export{re as a,g as b,le as c,p as d,de as e};
|