tailwindcss 4.0.0-beta.1 → 4.0.0-beta.10

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/plugin.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { a as PluginFn, C as Config, b as PluginWithConfig, c as PluginWithOptions } from './types-CAsznCh5.mjs';
1
+ import { a as PluginFn, C as Config, b as PluginWithConfig, c as PluginWithOptions } from './types-BTRmm49E.mjs';
2
2
  import './resolve-config-QUZ9b-Gn.mjs';
3
3
  import './colors.mjs';
4
4
 
package/dist/plugin.d.ts CHANGED
@@ -43,6 +43,8 @@ type PluginFn = (api: PluginAPI) => void;
43
43
  type PluginWithConfig = {
44
44
  handler: PluginFn;
45
45
  config?: UserConfig;
46
+ /** @internal */
47
+ reference?: boolean;
46
48
  };
47
49
  type PluginWithOptions<T> = {
48
50
  (options?: T): PluginWithConfig;
@@ -5,6 +5,8 @@ type PluginFn = (api: PluginAPI) => void;
5
5
  type PluginWithConfig = {
6
6
  handler: PluginFn;
7
7
  config?: UserConfig;
8
+ /** @internal */
9
+ reference?: boolean;
8
10
  };
9
11
  type PluginWithOptions<T> = {
10
12
  (options?: T): PluginWithConfig;
package/index.css CHANGED
@@ -296,24 +296,23 @@
296
296
  --container-5xl: 64rem;
297
297
  --container-6xl: 72rem;
298
298
  --container-7xl: 80rem;
299
- --container-prose: 65ch;
300
299
 
301
300
  --text-xs: 0.75rem;
302
- --text-xs--line-height: 1rem;
301
+ --text-xs--line-height: calc(1 / 0.75);
303
302
  --text-sm: 0.875rem;
304
- --text-sm--line-height: 1.25rem;
303
+ --text-sm--line-height: calc(1.25 / 0.875);
305
304
  --text-base: 1rem;
306
- --text-base--line-height: 1.5rem;
305
+ --text-base--line-height: calc(1.5 / 1);
307
306
  --text-lg: 1.125rem;
308
- --text-lg--line-height: 1.75rem;
307
+ --text-lg--line-height: calc(1.75 / 1.125);
309
308
  --text-xl: 1.25rem;
310
- --text-xl--line-height: 1.75rem;
309
+ --text-xl--line-height: calc(1.75 / 1.25);
311
310
  --text-2xl: 1.5rem;
312
- --text-2xl--line-height: 2rem;
311
+ --text-2xl--line-height: calc(2 / 1.5);
313
312
  --text-3xl: 1.875rem;
314
- --text-3xl--line-height: 2.25rem;
313
+ --text-3xl--line-height: calc(2.25 / 1.875);
315
314
  --text-4xl: 2.25rem;
316
- --text-4xl--line-height: 2.5rem;
315
+ --text-4xl--line-height: calc(2.5 / 2.25);
317
316
  --text-5xl: 3rem;
318
317
  --text-5xl--line-height: 1;
319
318
  --text-6xl: 3.75rem;
@@ -435,6 +434,8 @@
435
434
  --perspective-midrange: 800px;
436
435
  --perspective-distant: 1200px;
437
436
 
437
+ --aspect-video: 16 / 9;
438
+
438
439
  --default-transition-duration: 150ms;
439
440
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
440
441
  --default-font-family: var(--font-sans);
@@ -458,6 +459,7 @@
458
459
  --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
459
460
  --drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06);
460
461
  --radius: 0.25rem;
462
+ --max-width-prose: 65ch;
461
463
  }
462
464
  }
463
465
 
@@ -487,7 +489,6 @@
487
489
  5. Use the user's configured `sans` font-feature-settings by default.
488
490
  6. Use the user's configured `sans` font-variation-settings by default.
489
491
  7. Disable tap highlights on iOS.
490
- 8. Set a default `color-scheme`.
491
492
  */
492
493
 
493
494
  html,
@@ -511,7 +512,6 @@
511
512
  normal
512
513
  ); /* 6 */
513
514
  -webkit-tap-highlight-color: transparent; /* 7 */
514
- color-scheme: light; /* 8 */
515
515
  }
516
516
 
517
517
  /*
@@ -712,7 +712,10 @@
712
712
  }
713
713
 
714
714
  /*
715
- Inherit font styles in all browsers.
715
+ 1. Inherit font styles in all browsers.
716
+ 2. Remove border radius in all browsers.
717
+ 3. Remove background color in all browsers.
718
+ 4. Ensure consistent opacity for disabled states in all browsers.
716
719
  */
717
720
 
718
721
  button,
@@ -721,11 +724,38 @@
721
724
  optgroup,
722
725
  textarea,
723
726
  ::file-selector-button {
724
- font: inherit;
725
- font-feature-settings: inherit;
726
- font-variation-settings: inherit;
727
- letter-spacing: inherit;
728
- color: inherit;
727
+ font: inherit; /* 1 */
728
+ font-feature-settings: inherit; /* 1 */
729
+ font-variation-settings: inherit; /* 1 */
730
+ letter-spacing: inherit; /* 1 */
731
+ color: inherit; /* 1 */
732
+ border-radius: 0; /* 2 */
733
+ background-color: transparent; /* 3 */
734
+ opacity: 1; /* 4 */
735
+ }
736
+
737
+ /*
738
+ Restore default font weight.
739
+ */
740
+
741
+ :where(select:is([multiple], [size])) optgroup {
742
+ font-weight: bolder;
743
+ }
744
+
745
+ /*
746
+ Restore indentation.
747
+ */
748
+
749
+ :where(select:is([multiple], [size])) optgroup option {
750
+ padding-inline-start: 20px;
751
+ }
752
+
753
+ /*
754
+ Restore space after button.
755
+ */
756
+
757
+ ::file-selector-button {
758
+ margin-inline-end: 4px;
729
759
  }
730
760
 
731
761
  /*
@@ -735,7 +765,7 @@
735
765
 
736
766
  ::placeholder {
737
767
  opacity: 1; /* 1 */
738
- color: color-mix(in oklch, currentColor 50%, transparent); /* 2 */
768
+ color: color-mix(in oklab, currentColor 50%, transparent); /* 2 */
739
769
  }
740
770
 
741
771
  /*
@@ -819,115 +849,6 @@
819
849
  height: auto;
820
850
  }
821
851
 
822
- /*
823
- Apply consistent base form control styles across browsers.
824
- */
825
-
826
- select,
827
- textarea,
828
- input:where(
829
- [type="text"],
830
- [type="email"],
831
- [type="password"],
832
- [type="date"],
833
- [type="datetime-local"],
834
- [type="month"],
835
- [type="number"],
836
- [type="search"],
837
- [type="time"],
838
- [type="week"],
839
- [type="tel"],
840
- [type="url"]
841
- ) {
842
- border-radius: 3px;
843
- padding-inline: 4px;
844
- padding-block: 2px;
845
- color: light-dark(black, white);
846
- background-color: light-dark(white, rgb(255 255 255 / 10%));
847
- border: 1px solid light-dark(rgb(0 0 0 / 50%), rgb(255 255 255 / 25%));
848
- }
849
-
850
- :where(select:not([multiple], [size])) option,
851
- :where(select:not([multiple], [size])) optgroup {
852
- color: FieldText;
853
- background-color: Field;
854
- }
855
-
856
- :where(select:is([multiple], [size])) optgroup {
857
- font-weight: bold;
858
- }
859
-
860
- :where(select:is([multiple], [size])) optgroup option {
861
- padding-inline-start: 20px;
862
- }
863
-
864
- select:where(:disabled),
865
- textarea:where(:disabled),
866
- input:where(
867
- [type="text"],
868
- [type="email"],
869
- [type="password"],
870
- [type="date"],
871
- [type="datetime-local"],
872
- [type="month"],
873
- [type="number"],
874
- [type="search"],
875
- [type="time"],
876
- [type="week"],
877
- [type="tel"],
878
- [type="url"]
879
- ):where(:disabled) {
880
- opacity: 1;
881
- color: light-dark(rgb(0 0 0 / 50%), rgb(255 255 255 / 50%));
882
- background-color: light-dark(rgb(0 0 0 / 2.5%), rgb(255 255 255 / 10%));
883
- border-color: light-dark(rgb(0 0 0 / 20%), rgb(255 255 255 / 15%));
884
- }
885
-
886
- /*
887
- Apply consistent base button styles across browsers.
888
- */
889
-
890
- button,
891
- ::file-selector-button,
892
- input:where([type="button"], [type="reset"], [type="submit"]) {
893
- border-radius: 4px;
894
- padding-inline: 4px;
895
- padding-block: 2px;
896
- color: light-dark(#000, #fff);
897
- background-color: light-dark(rgb(0 0 0 / 5%), rgb(255 255 255 / 40%));
898
- border: 1px solid light-dark(rgb(0 0 0 / 50%), rgb(255 255 255 / 10%));
899
- }
900
-
901
- button:where(:hover),
902
- ::file-selector-button:where(:hover),
903
- input:where([type="button"], [type="reset"], [type="submit"]):where(:hover) {
904
- background-color: light-dark(rgb(0 0 0 / 10%), rgb(255 255 255 / 45%));
905
- }
906
-
907
- button:where(:active),
908
- ::file-selector-button:where(:active),
909
- input:where([type="button"], [type="reset"], [type="submit"]):where(:active) {
910
- background-color: light-dark(rgb(0 0 0 / 2.5%), rgb(255 255 255 / 30%));
911
- }
912
-
913
- button:where(:disabled),
914
- :where(input:disabled)::file-selector-button,
915
- input:where([type="button"], [type="reset"], [type="submit"]):where(
916
- :disabled
917
- ) {
918
- opacity: 1;
919
- background-color: light-dark(rgb(0 0 0 / 2.5%), rgb(255 255 255 / 25%));
920
- border-color: light-dark(rgb(0 0 0 / 20%), rgb(255 255 255 / 10%));
921
- }
922
-
923
- input:where([type="file"]:disabled) {
924
- color: light-dark(rgb(0 0 0 / 50%), rgb(255 255 255 / 50%));
925
- }
926
-
927
- ::file-selector-button {
928
- margin-inline-end: 4px;
929
- }
930
-
931
852
  /*
932
853
  Make elements with the HTML hidden attribute stay hidden by default.
933
854
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailwindcss",
3
- "version": "4.0.0-beta.1",
3
+ "version": "4.0.0-beta.10",
4
4
  "description": "A utility-first CSS framework for rapidly building custom user interfaces.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -41,6 +41,10 @@
41
41
  "require": "./dist/colors.js",
42
42
  "import": "./dist/colors.mjs"
43
43
  },
44
+ "./lib/util/flattenColorPalette": {
45
+ "require": "./dist/flatten-color-palette.js",
46
+ "import": "./dist/flatten-color-palette.mjs"
47
+ },
44
48
  "./package.json": "./package.json",
45
49
  "./index.css": "./index.css",
46
50
  "./index": "./index.css",
@@ -65,9 +69,9 @@
65
69
  ],
66
70
  "devDependencies": {
67
71
  "@types/node": "^20.14.8",
68
- "lightningcss": "^1.26.0",
72
+ "lightningcss": "^1.29.1",
69
73
  "dedent": "1.5.3",
70
- "@tailwindcss/oxide": "4.0.0-beta.1"
74
+ "@tailwindcss/oxide": "4.0.0-beta.10"
71
75
  },
72
76
  "scripts": {
73
77
  "lint": "tsc --noEmit",
package/preflight.css CHANGED
@@ -23,7 +23,6 @@
23
23
  5. Use the user's configured `sans` font-feature-settings by default.
24
24
  6. Use the user's configured `sans` font-variation-settings by default.
25
25
  7. Disable tap highlights on iOS.
26
- 8. Set a default `color-scheme`.
27
26
  */
28
27
 
29
28
  html,
@@ -44,7 +43,6 @@ html,
44
43
  font-feature-settings: var(--default-font-feature-settings, normal); /* 5 */
45
44
  font-variation-settings: var(--default-font-variation-settings, normal); /* 6 */
46
45
  -webkit-tap-highlight-color: transparent; /* 7 */
47
- color-scheme: light; /* 8 */
48
46
  }
49
47
 
50
48
  /*
@@ -239,7 +237,10 @@ video {
239
237
  }
240
238
 
241
239
  /*
242
- Inherit font styles in all browsers.
240
+ 1. Inherit font styles in all browsers.
241
+ 2. Remove border radius in all browsers.
242
+ 3. Remove background color in all browsers.
243
+ 4. Ensure consistent opacity for disabled states in all browsers.
243
244
  */
244
245
 
245
246
  button,
@@ -248,11 +249,38 @@ select,
248
249
  optgroup,
249
250
  textarea,
250
251
  ::file-selector-button {
251
- font: inherit;
252
- font-feature-settings: inherit;
253
- font-variation-settings: inherit;
254
- letter-spacing: inherit;
255
- color: inherit;
252
+ font: inherit; /* 1 */
253
+ font-feature-settings: inherit; /* 1 */
254
+ font-variation-settings: inherit; /* 1 */
255
+ letter-spacing: inherit; /* 1 */
256
+ color: inherit; /* 1 */
257
+ border-radius: 0; /* 2 */
258
+ background-color: transparent; /* 3 */
259
+ opacity: 1; /* 4 */
260
+ }
261
+
262
+ /*
263
+ Restore default font weight.
264
+ */
265
+
266
+ :where(select:is([multiple], [size])) optgroup {
267
+ font-weight: bolder;
268
+ }
269
+
270
+ /*
271
+ Restore indentation.
272
+ */
273
+
274
+ :where(select:is([multiple], [size])) optgroup option {
275
+ padding-inline-start: 20px;
276
+ }
277
+
278
+ /*
279
+ Restore space after button.
280
+ */
281
+
282
+ ::file-selector-button {
283
+ margin-inline-end: 4px;
256
284
  }
257
285
 
258
286
  /*
@@ -262,7 +290,7 @@ textarea,
262
290
 
263
291
  ::placeholder {
264
292
  opacity: 1; /* 1 */
265
- color: color-mix(in oklch, currentColor 50%, transparent); /* 2 */
293
+ color: color-mix(in oklab, currentColor 50%, transparent); /* 2 */
266
294
  }
267
295
 
268
296
  /*
@@ -346,113 +374,6 @@ input:where([type='button'], [type='reset'], [type='submit']),
346
374
  height: auto;
347
375
  }
348
376
 
349
- /*
350
- Apply consistent base form control styles across browsers.
351
- */
352
-
353
- select,
354
- textarea,
355
- input:where(
356
- [type='text'],
357
- [type='email'],
358
- [type='password'],
359
- [type='date'],
360
- [type='datetime-local'],
361
- [type='month'],
362
- [type='number'],
363
- [type='search'],
364
- [type='time'],
365
- [type='week'],
366
- [type='tel'],
367
- [type='url']
368
- ) {
369
- border-radius: 3px;
370
- padding-inline: 4px;
371
- padding-block: 2px;
372
- color: light-dark(black, white);
373
- background-color: light-dark(white, rgb(255 255 255 / 10%));
374
- border: 1px solid light-dark(rgb(0 0 0 / 50%), rgb(255 255 255 / 25%));
375
- }
376
-
377
- :where(select:not([multiple], [size])) option,
378
- :where(select:not([multiple], [size])) optgroup {
379
- color: FieldText;
380
- background-color: Field;
381
- }
382
-
383
- :where(select:is([multiple], [size])) optgroup {
384
- font-weight: bold;
385
- }
386
-
387
- :where(select:is([multiple], [size])) optgroup option {
388
- padding-inline-start: 20px;
389
- }
390
-
391
- select:where(:disabled),
392
- textarea:where(:disabled),
393
- input:where(
394
- [type='text'],
395
- [type='email'],
396
- [type='password'],
397
- [type='date'],
398
- [type='datetime-local'],
399
- [type='month'],
400
- [type='number'],
401
- [type='search'],
402
- [type='time'],
403
- [type='week'],
404
- [type='tel'],
405
- [type='url']
406
- ):where(:disabled) {
407
- opacity: 1;
408
- color: light-dark(rgb(0 0 0 / 50%), rgb(255 255 255 / 50%));
409
- background-color: light-dark(rgb(0 0 0 / 2.5%), rgb(255 255 255 / 10%));
410
- border-color: light-dark(rgb(0 0 0 / 20%), rgb(255 255 255 / 15%));
411
- }
412
-
413
- /*
414
- Apply consistent base button styles across browsers.
415
- */
416
-
417
- button,
418
- ::file-selector-button,
419
- input:where([type='button'], [type='reset'], [type='submit']) {
420
- border-radius: 4px;
421
- padding-inline: 4px;
422
- padding-block: 2px;
423
- color: light-dark(#000, #fff);
424
- background-color: light-dark(rgb(0 0 0 / 5%), rgb(255 255 255 / 40%));
425
- border: 1px solid light-dark(rgb(0 0 0 / 50%), rgb(255 255 255 / 10%));
426
- }
427
-
428
- button:where(:hover),
429
- ::file-selector-button:where(:hover),
430
- input:where([type='button'], [type='reset'], [type='submit']):where(:hover) {
431
- background-color: light-dark(rgb(0 0 0 / 10%), rgb(255 255 255 / 45%));
432
- }
433
-
434
- button:where(:active),
435
- ::file-selector-button:where(:active),
436
- input:where([type='button'], [type='reset'], [type='submit']):where(:active) {
437
- background-color: light-dark(rgb(0 0 0 / 2.5%), rgb(255 255 255 / 30%));
438
- }
439
-
440
- button:where(:disabled),
441
- :where(input:disabled)::file-selector-button,
442
- input:where([type='button'], [type='reset'], [type='submit']):where(:disabled) {
443
- opacity: 1;
444
- background-color: light-dark(rgb(0 0 0 / 2.5%), rgb(255 255 255 / 25%));
445
- border-color: light-dark(rgb(0 0 0 / 20%), rgb(255 255 255 / 10%));
446
- }
447
-
448
- input:where([type='file']:disabled) {
449
- color: light-dark(rgb(0 0 0 / 50%), rgb(255 255 255 / 50%));
450
- }
451
-
452
- ::file-selector-button {
453
- margin-inline-end: 4px;
454
- }
455
-
456
377
  /*
457
378
  Make elements with the HTML hidden attribute stay hidden by default.
458
379
  */
package/theme.css CHANGED
@@ -293,24 +293,23 @@
293
293
  --container-5xl: 64rem;
294
294
  --container-6xl: 72rem;
295
295
  --container-7xl: 80rem;
296
- --container-prose: 65ch;
297
296
 
298
297
  --text-xs: 0.75rem;
299
- --text-xs--line-height: 1rem;
298
+ --text-xs--line-height: calc(1 / 0.75);
300
299
  --text-sm: 0.875rem;
301
- --text-sm--line-height: 1.25rem;
300
+ --text-sm--line-height: calc(1.25 / 0.875);
302
301
  --text-base: 1rem;
303
- --text-base--line-height: 1.5rem;
302
+ --text-base--line-height: calc(1.5 / 1);
304
303
  --text-lg: 1.125rem;
305
- --text-lg--line-height: 1.75rem;
304
+ --text-lg--line-height: calc(1.75 / 1.125);
306
305
  --text-xl: 1.25rem;
307
- --text-xl--line-height: 1.75rem;
306
+ --text-xl--line-height: calc(1.75 / 1.25);
308
307
  --text-2xl: 1.5rem;
309
- --text-2xl--line-height: 2rem;
308
+ --text-2xl--line-height: calc(2 / 1.5);
310
309
  --text-3xl: 1.875rem;
311
- --text-3xl--line-height: 2.25rem;
310
+ --text-3xl--line-height: calc(2.25 / 1.875);
312
311
  --text-4xl: 2.25rem;
313
- --text-4xl--line-height: 2.5rem;
312
+ --text-4xl--line-height: calc(2.5 / 2.25);
314
313
  --text-5xl: 3rem;
315
314
  --text-5xl--line-height: 1;
316
315
  --text-6xl: 3.75rem;
@@ -429,6 +428,8 @@
429
428
  --perspective-midrange: 800px;
430
429
  --perspective-distant: 1200px;
431
430
 
431
+ --aspect-video: 16 / 9;
432
+
432
433
  --default-transition-duration: 150ms;
433
434
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
434
435
  --default-font-family: var(--font-sans);
@@ -446,4 +447,5 @@
446
447
  --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
447
448
  --drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06);
448
449
  --radius: 0.25rem;
450
+ --max-width-prose: 65ch;
449
451
  }
@@ -1 +0,0 @@
1
- import{a as C}from"./chunk-AZANAYY2.mjs";var U=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"]),O=/^(rgba?|hsla?|hwb|color|(ok)?(lab|lch)|light-dark|color-mix)\(/i;function S(e){return e.charCodeAt(0)===35||O.test(e)||U.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 ne(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 d=e.charCodeAt(c);if(d>=48&&d<=57)m=c;else if(d>=97&&d<=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 d=e.charCodeAt(a);if(d===92){a+=1;continue}if(d===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:M,url:z,position:K,"bg-size":Y,"line-width":D,image:H,"family-name":P,"generic-name":$,"absolute-size":q,"relative-size":B,angle:J,vector:ee};function me(e,r){if(e.startsWith("var("))return null;for(let t of r)if(R[t]?.(e))return t;return null}var _=/^url\(.*\)$/;function z(e){return _.test(e)}function D(e){return e==="thin"||e==="medium"||e==="thick"}var F=/^(?:element|image|cross-fade|image-set)\(/,I=/^(repeating-)?(conic|linear|radial)-gradient\(/;function H(e){let r=0;for(let t of g(e,","))if(!t.startsWith("var(")){if(z(t)){r+=1;continue}if(I.test(t)){r+=1;continue}if(F.test(t)){r+=1;continue}return!1}return r>0}function $(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 P(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 q(e){return e==="xx-small"||e==="x-small"||e==="small"||e==="medium"||e==="large"||e==="x-large"||e==="xx-large"||e==="xxx-large"}function B(e){return e==="larger"||e==="smaller"}var x=/[+-]?\d*\.?\d+(?:[eE][+-]?\d+)?/,W=new RegExp(`^${x.source}$`);function M(e){return W.test(e)||b(e)}var G=new RegExp(`^${x.source}%$`);function E(e){return G.test(e)||b(e)}var V=["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"],j=new RegExp(`^${x.source}(${V.join("|")})$`);function v(e){return j.test(e)||b(e)}function K(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 Y(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 Q=["deg","rad","grad","turn"],X=new RegExp(`^${x.source}(${Q.join("|")})$`);function J(e){return X.test(e)}var Z=new RegExp(`^${x.source} +${x.source} +${x.source}$`);function ee(e){return Z.test(e)}function p(e){let r=Number(e);return Number.isInteger(r)&&r>=0&&String(r)===String(e)}function ce(e){return N(e,.25)}function pe(e){return N(e,.25)}function N(e,r){let t=Number(e);return t>=0&&t%r===0&&String(t)===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}%`}),u=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`}),te=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))`}),fe={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",...te},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",...u},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"),...u}),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",...u},outlineWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...u},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",...u},ringOpacity:({theme:e})=>({DEFAULT:"0.5",...e("opacity")}),ringWidth:{DEFAULT:"3px",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...u},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",...u},textIndent:({theme:e})=>e("spacing"),textOpacity:({theme:e})=>e("opacity"),textUnderlineOffset:{auto:"auto",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...u},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{ne as a,g as b,me as c,p as d,ce as e,pe as f,fe as g};