@mekari/pixel3-theme 0.0.3 → 0.0.5-dev.0

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/index.js CHANGED
@@ -25,7 +25,7 @@ __export(theme_exports, {
25
25
  module.exports = __toCommonJS(theme_exports);
26
26
 
27
27
  // src/index.ts
28
- var import_dev42 = require("@pandacss/dev");
28
+ var import_dev44 = require("@pandacss/dev");
29
29
 
30
30
  // src/breakpoints.ts
31
31
  var breakpoints = {
@@ -71,7 +71,9 @@ var globalCss = (0, import_dev.defineGlobalStyles)({
71
71
  background: "var(--mp-colors-white)",
72
72
  color: "var(--mp-colors-dark)",
73
73
  fontFamily: "var(--mp-fonts-body)",
74
- fontSize: "14px",
74
+ fontSize: "var(--mp-font-sizes-md)",
75
+ fontWeight: "var(--mp-font-weights-regular)",
76
+ lineHeight: "var(--mp-line-heights-lg)",
75
77
  _dark: {
76
78
  colorScheme: "dark"
77
79
  }
@@ -123,7 +125,8 @@ var tagSlotRecipe = (0, import_dev3.defineSlotRecipe)({
123
125
  paddingX: "2",
124
126
  whiteSpace: "normal",
125
127
  overflowWrap: "anywhere",
126
- cursor: "var(--mp-tag--cursor)"
128
+ cursor: "var(--mp-tag--cursor)",
129
+ height: "fit-content"
127
130
  },
128
131
  close: {
129
132
  position: "absolute!",
@@ -204,6 +207,35 @@ var tagSlotRecipe = (0, import_dev3.defineSlotRecipe)({
204
207
 
205
208
  // src/recipes/avatar.ts
206
209
  var import_dev4 = require("@pandacss/dev");
210
+ var variantColor = {
211
+ gray: {
212
+ root: { backgroundColor: "gray.50" }
213
+ },
214
+ sky: {
215
+ root: { backgroundColor: "sky.400" }
216
+ },
217
+ teal: {
218
+ root: { backgroundColor: "teal.400" }
219
+ },
220
+ violet: {
221
+ root: { backgroundColor: "violet.400" }
222
+ },
223
+ amber: {
224
+ root: { backgroundColor: "amber.400" }
225
+ },
226
+ rose: {
227
+ root: { backgroundColor: "rose.400" }
228
+ },
229
+ stone: {
230
+ root: { backgroundColor: "stone.400" }
231
+ },
232
+ lime: {
233
+ root: { backgroundColor: "lime.400" }
234
+ },
235
+ pink: {
236
+ root: { backgroundColor: "pink.400" }
237
+ }
238
+ };
207
239
  var avatarSlotRecipe = (0, import_dev4.defineSlotRecipe)({
208
240
  className: "avatar",
209
241
  jsx: ["MpAvatar", "mp-avatar"],
@@ -251,35 +283,8 @@ var avatarSlotRecipe = (0, import_dev4.defineSlotRecipe)({
251
283
  image: { borderRadius: "full" }
252
284
  }
253
285
  },
254
- variantColor: {
255
- gray: {
256
- root: { backgroundColor: "gray.50" }
257
- },
258
- sky: {
259
- root: { backgroundColor: "sky.400" }
260
- },
261
- teal: {
262
- root: { backgroundColor: "teal.400" }
263
- },
264
- violet: {
265
- root: { backgroundColor: "violet.400" }
266
- },
267
- amber: {
268
- root: { backgroundColor: "amber.400" }
269
- },
270
- rose: {
271
- root: { backgroundColor: "rose.400" }
272
- },
273
- stone: {
274
- root: { backgroundColor: "stone.400" }
275
- },
276
- lime: {
277
- root: { backgroundColor: "lime.400" }
278
- },
279
- pink: {
280
- root: { backgroundColor: "pink.400" }
281
- }
282
- },
286
+ "variant-color": variantColor,
287
+ variantColor,
283
288
  size: {
284
289
  sm: {
285
290
  root: { width: "6", height: "6", fontSize: "xs" },
@@ -389,8 +394,8 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
389
394
  display: "inline-flex",
390
395
  justifyContent: "center",
391
396
  alignItems: "center",
392
- alignSelf: "start",
393
397
  gap: "2",
398
+ height: "fit-content",
394
399
  borderWidth: "1px",
395
400
  whiteSpace: "nowrap",
396
401
  userSelect: "none",
@@ -482,7 +487,7 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
482
487
  },
483
488
  textLink: {
484
489
  color: "blue.400",
485
- background: "white",
490
+ background: "transparent",
486
491
  borderColor: "white",
487
492
  _hover: {
488
493
  color: "blue.500"
@@ -492,7 +497,12 @@ var buttonRecipe = (0, import_dev5.defineRecipe)({
492
497
  },
493
498
  _disabled: {
494
499
  cursor: "not-allowed",
495
- color: "gray.400"
500
+ color: "gray.400",
501
+ borderColor: "transparent",
502
+ _hover: {
503
+ borderColor: "transparent",
504
+ color: "gray.400"
505
+ }
496
506
  },
497
507
  _loading: {
498
508
  background: "white"
@@ -927,7 +937,8 @@ var textRecipe = (0, import_dev8.defineRecipe)({
927
937
  textDecoration: "line-through"
928
938
  },
929
939
  "&[data-text-link=true]": {
930
- textDecoration: "underline"
940
+ textDecoration: "underline",
941
+ cursor: "pointer"
931
942
  }
932
943
  },
933
944
  variants: {
@@ -1193,8 +1204,8 @@ var badgeRecipe = (0, import_dev13.defineRecipe)({
1193
1204
  size: {
1194
1205
  sm: {
1195
1206
  fontSize: "xs",
1196
- fontWeight: "semibold",
1197
- lineHeight: "1sm",
1207
+ fontWeight: "semiBold",
1208
+ lineHeight: "sm",
1198
1209
  letterSpacing: "normal",
1199
1210
  height: "4"
1200
1211
  },
@@ -2085,7 +2096,7 @@ var progressSlotRecipe = (0, import_dev22.defineSlotRecipe)({
2085
2096
  width: "22px",
2086
2097
  height: "22px",
2087
2098
  background: "transparent",
2088
- alignSelf: "start"
2099
+ alignSelf: "flex-start"
2089
2100
  }
2090
2101
  }
2091
2102
  }
@@ -2455,7 +2466,7 @@ var uploadListSlotRecipe = (0, import_dev27.defineSlotRecipe)({
2455
2466
  width: "full",
2456
2467
  display: "flex",
2457
2468
  alignItems: "center",
2458
- justifyContent: "start",
2469
+ justifyContent: "flex-start",
2459
2470
  gap: "3",
2460
2471
  py: "2",
2461
2472
  px: "1",
@@ -2647,9 +2658,145 @@ var dropzoneSlotRecipe = (0, import_dev28.defineSlotRecipe)({
2647
2658
  }
2648
2659
  });
2649
2660
 
2650
- // src/recipes/banner.ts
2661
+ // src/recipes/segmented-control.ts
2651
2662
  var import_dev29 = require("@pandacss/dev");
2652
- var bannerSlotRecipe = (0, import_dev29.defineSlotRecipe)({
2663
+ var segmentedControlSlotRecipe = (0, import_dev29.defineSlotRecipe)({
2664
+ className: "segmented-control",
2665
+ jsx: ["MpSegmentedControl", "mp-segmented-control"],
2666
+ slots: ["root", "item", "hidden", "control", "label", "icon"],
2667
+ base: {
2668
+ root: {
2669
+ position: "relative",
2670
+ display: "inline-flex",
2671
+ gap: "1",
2672
+ flexDirection: "row",
2673
+ justifyContent: "var(--mp-segmented-control--justify-content)",
2674
+ alignItems: "center",
2675
+ width: "var(--mp-segmented-control--width)",
2676
+ height: "9.5",
2677
+ borderWidth: "1px",
2678
+ borderColor: "gray.100",
2679
+ borderRadius: "md",
2680
+ outline: "0px solid transparent",
2681
+ padding: "1"
2682
+ },
2683
+ item: {
2684
+ flex: "var(--mp-segmented-control--flex)",
2685
+ cursor: "var(--mp-segmented-control--cursor)"
2686
+ },
2687
+ hidden: {
2688
+ border: "0px",
2689
+ clip: "rect(0px, 0px, 0px, 0px)",
2690
+ margin: "-1px",
2691
+ padding: "0px",
2692
+ overflow: "hidden",
2693
+ whiteSpace: "nowrap",
2694
+ height: "1px",
2695
+ width: "1px",
2696
+ position: "absolute"
2697
+ },
2698
+ control: {
2699
+ display: "flex",
2700
+ alignItems: "center",
2701
+ justifyContent: "var(--mp-segmented-control--justify-content)",
2702
+ height: "7",
2703
+ paddingY: "1",
2704
+ userSelect: "none",
2705
+ borderRadius: "sm",
2706
+ transition: "all 250ms",
2707
+ color: "gray.600",
2708
+ backgroundColor: "white",
2709
+ gap: "var(--mp-segmented-control--gap)",
2710
+ paddingX: "var(--mp-segmented-control--padding-x)",
2711
+ "input[type=radio]:hover:not(:disabled):not(:checked) + &": {
2712
+ color: "blue.700"
2713
+ },
2714
+ "input[type=radio]:checked + &, input[type=radio][aria-checked=mixed] + &": {
2715
+ color: "blue.400",
2716
+ backgroundColor: "blue.50"
2717
+ },
2718
+ "input[type=radio]:disabled + &": {
2719
+ color: "gray.400"
2720
+ },
2721
+ "input[type=radio]:checked:hover:not(:disabled) + &, input[type=radio][aria-checked=mixed]:hover:not(:disabled) + &": {
2722
+ color: "blue.700"
2723
+ },
2724
+ "input[type=radio]:checked:focus + &, input[type=radio][aria-checked=mixed]:focus + &": {
2725
+ color: "blue.700",
2726
+ boxShadow: "outer"
2727
+ },
2728
+ "input[type=radio]:checked:disabled + &, input[type=radio][aria-checked=mixed]:disabled + &": {
2729
+ color: "gray.400",
2730
+ backgroundColor: "gray.50"
2731
+ }
2732
+ },
2733
+ label: {
2734
+ color: "currentColor",
2735
+ fontSize: "md",
2736
+ fontFamily: "body",
2737
+ lineHeight: "md",
2738
+ opacity: "1"
2739
+ },
2740
+ icon: {
2741
+ color: "currentColor"
2742
+ }
2743
+ },
2744
+ variants: {},
2745
+ compoundVariants: [],
2746
+ defaultVariants: {}
2747
+ });
2748
+
2749
+ // src/recipes/toast.ts
2750
+ var import_dev30 = require("@pandacss/dev");
2751
+ var toastSlotRecipe = (0, import_dev30.defineSlotRecipe)({
2752
+ className: "toast",
2753
+ jsx: ["MpToast", "mp-toast"],
2754
+ slots: ["root", "icon", "label"],
2755
+ base: {
2756
+ root: {
2757
+ display: "flex",
2758
+ alignItems: "center",
2759
+ gap: "2",
2760
+ width: "356px",
2761
+ border: "1.5px solid",
2762
+ borderRadius: "md",
2763
+ backgroundColor: "white",
2764
+ padding: "3",
2765
+ boxShadow: "lg",
2766
+ zIndex: "9999"
2767
+ },
2768
+ label: {
2769
+ fontSize: "md"
2770
+ }
2771
+ },
2772
+ variants: {
2773
+ variant: {
2774
+ success: {},
2775
+ error: {}
2776
+ }
2777
+ },
2778
+ compoundVariants: [
2779
+ {
2780
+ variant: "success",
2781
+ css: {
2782
+ root: { borderColor: "green.700" }
2783
+ }
2784
+ },
2785
+ {
2786
+ variant: "error",
2787
+ css: {
2788
+ root: { borderColor: "red.700" }
2789
+ }
2790
+ }
2791
+ ],
2792
+ defaultVariants: {
2793
+ variant: "success"
2794
+ }
2795
+ });
2796
+
2797
+ // src/recipes/banner.ts
2798
+ var import_dev31 = require("@pandacss/dev");
2799
+ var bannerSlotRecipe = (0, import_dev31.defineSlotRecipe)({
2653
2800
  className: "banner",
2654
2801
  jsx: ["MpBanner", "mp-banner"],
2655
2802
  slots: ["root", "body"],
@@ -2690,7 +2837,7 @@ var bannerSlotRecipe = (0, import_dev29.defineSlotRecipe)({
2690
2837
  variant: "info"
2691
2838
  }
2692
2839
  });
2693
- var bannerTitleRecipe = (0, import_dev29.defineRecipe)({
2840
+ var bannerTitleRecipe = (0, import_dev31.defineRecipe)({
2694
2841
  className: "banner-title",
2695
2842
  jsx: ["MpBannerTitle", "mp-banner-title"],
2696
2843
  base: {
@@ -2707,7 +2854,7 @@ var bannerTitleRecipe = (0, import_dev29.defineRecipe)({
2707
2854
  compoundVariants: [],
2708
2855
  defaultVariants: {}
2709
2856
  });
2710
- var bannerDescriptionRecipe = (0, import_dev29.defineRecipe)({
2857
+ var bannerDescriptionRecipe = (0, import_dev31.defineRecipe)({
2711
2858
  className: "banner-description",
2712
2859
  jsx: ["MpBannerDescription", "mp-banner-description"],
2713
2860
  base: {
@@ -2722,7 +2869,7 @@ var bannerDescriptionRecipe = (0, import_dev29.defineRecipe)({
2722
2869
  compoundVariants: [],
2723
2870
  defaultVariants: {}
2724
2871
  });
2725
- var bannerIconSlotRecipe = (0, import_dev29.defineSlotRecipe)({
2872
+ var bannerIconSlotRecipe = (0, import_dev31.defineSlotRecipe)({
2726
2873
  className: "banner-icon",
2727
2874
  jsx: ["MpBannerIcon", "mp-banner-icon"],
2728
2875
  slots: ["root", "custom"],
@@ -2745,7 +2892,7 @@ var bannerIconSlotRecipe = (0, import_dev29.defineSlotRecipe)({
2745
2892
  compoundVariants: [],
2746
2893
  defaultVariants: {}
2747
2894
  });
2748
- var bannerLinkRecipe = (0, import_dev29.defineRecipe)({
2895
+ var bannerLinkRecipe = (0, import_dev31.defineRecipe)({
2749
2896
  className: "banner-link",
2750
2897
  jsx: ["MpBannerLink", "mp-banner-link"],
2751
2898
  base: {
@@ -2758,7 +2905,7 @@ var bannerLinkRecipe = (0, import_dev29.defineRecipe)({
2758
2905
  compoundVariants: [],
2759
2906
  defaultVariants: {}
2760
2907
  });
2761
- var bannerCloseButtonRecipe = (0, import_dev29.defineRecipe)({
2908
+ var bannerCloseButtonRecipe = (0, import_dev31.defineRecipe)({
2762
2909
  className: "banner-close-button",
2763
2910
  jsx: ["MpBannerCloseButton", "mp-banner-close-button"],
2764
2911
  base: {
@@ -2822,12 +2969,14 @@ var slotRecipes = {
2822
2969
  uploadListSlotRecipe,
2823
2970
  dropzoneSlotRecipe,
2824
2971
  bannerSlotRecipe,
2825
- bannerIconSlotRecipe
2972
+ bannerIconSlotRecipe,
2973
+ segmentedControlSlotRecipe,
2974
+ toastSlotRecipe
2826
2975
  };
2827
2976
 
2828
2977
  // src/text-styles.ts
2829
- var import_dev30 = require("@pandacss/dev");
2830
- var textStyles = (0, import_dev30.defineTextStyles)({
2978
+ var import_dev32 = require("@pandacss/dev");
2979
+ var textStyles = (0, import_dev32.defineTextStyles)({
2831
2980
  overline: { value: { fontSize: "xs", lineHeight: "xs" } },
2832
2981
  body: {
2833
2982
  sm: { value: { fontSize: "sm", lineHeight: "2xl" } },
@@ -2861,11 +3010,11 @@ var textStyles = (0, import_dev30.defineTextStyles)({
2861
3010
  });
2862
3011
 
2863
3012
  // src/tokens/index.ts
2864
- var import_dev41 = require("@pandacss/dev");
3013
+ var import_dev43 = require("@pandacss/dev");
2865
3014
 
2866
3015
  // src/tokens/borders.ts
2867
- var import_dev31 = require("@pandacss/dev");
2868
- var borders = import_dev31.defineTokens.borders({
3016
+ var import_dev33 = require("@pandacss/dev");
3017
+ var borders = import_dev33.defineTokens.borders({
2869
3018
  none: { value: "none" },
2870
3019
  sm: { value: "1px" },
2871
3020
  md: { value: "1.5px" },
@@ -2873,8 +3022,8 @@ var borders = import_dev31.defineTokens.borders({
2873
3022
  });
2874
3023
 
2875
3024
  // src/tokens/colors.ts
2876
- var import_dev32 = require("@pandacss/dev");
2877
- var colors = import_dev32.defineTokens.colors({
3025
+ var import_dev34 = require("@pandacss/dev");
3026
+ var colors = import_dev34.defineTokens.colors({
2878
3027
  currentcolor: {
2879
3028
  value: "currentcolor",
2880
3029
  description: "Need to add this for Icon usage"
@@ -2913,7 +3062,7 @@ var colors = import_dev32.defineTokens.colors({
2913
3062
  800: { value: "rgba(255, 255, 255, 0.80)" },
2914
3063
  900: { value: "rgba(255, 255, 255, 0.92)" }
2915
3064
  },
2916
- blackAplpha: {
3065
+ blackAlpha: {
2917
3066
  50: { value: "rgba(0, 0, 0, 0.04)" },
2918
3067
  100: { value: "rgba(0, 0, 0, 0.06)" },
2919
3068
  200: { value: "rgba(0, 0, 0, 0.08)" },
@@ -3027,16 +3176,16 @@ var colors = import_dev32.defineTokens.colors({
3027
3176
  });
3028
3177
 
3029
3178
  // src/tokens/durations.ts
3030
- var import_dev33 = require("@pandacss/dev");
3031
- var durations = import_dev33.defineTokens.durations({
3179
+ var import_dev35 = require("@pandacss/dev");
3180
+ var durations = import_dev35.defineTokens.durations({
3032
3181
  slow: { value: "100ms" },
3033
3182
  normal: { value: "250ms" },
3034
3183
  fast: { value: "300ms" }
3035
3184
  });
3036
3185
 
3037
3186
  // src/tokens/opacity.ts
3038
- var import_dev34 = require("@pandacss/dev");
3039
- var opacity = import_dev34.defineTokens.opacity({
3187
+ var import_dev36 = require("@pandacss/dev");
3188
+ var opacity = import_dev36.defineTokens.opacity({
3040
3189
  0: { value: 0 },
3041
3190
  40: { value: 0.4 },
3042
3191
  60: { value: 0.6 },
@@ -3044,8 +3193,8 @@ var opacity = import_dev34.defineTokens.opacity({
3044
3193
  });
3045
3194
 
3046
3195
  // src/tokens/radii.ts
3047
- var import_dev35 = require("@pandacss/dev");
3048
- var radii = import_dev35.defineTokens.radii({
3196
+ var import_dev37 = require("@pandacss/dev");
3197
+ var radii = import_dev37.defineTokens.radii({
3049
3198
  none: { value: "0" },
3050
3199
  xs: { value: "0.125rem", description: "2px" },
3051
3200
  sm: { value: "0.25rem", description: "4px" },
@@ -3056,8 +3205,8 @@ var radii = import_dev35.defineTokens.radii({
3056
3205
  });
3057
3206
 
3058
3207
  // src/tokens/shadows.ts
3059
- var import_dev36 = require("@pandacss/dev");
3060
- var shadows = import_dev36.defineTokens.shadows({
3208
+ var import_dev38 = require("@pandacss/dev");
3209
+ var shadows = import_dev38.defineTokens.shadows({
3061
3210
  xs: {
3062
3211
  value: ["0px 0px 2px 0px rgba(0, 0, 0, 0.12)", "0px 2px 4px 0px rgba(0, 0, 0, 0.14)"]
3063
3212
  },
@@ -3097,8 +3246,8 @@ var shadows = import_dev36.defineTokens.shadows({
3097
3246
  });
3098
3247
 
3099
3248
  // src/tokens/sizes.ts
3100
- var import_dev37 = require("@pandacss/dev");
3101
- var sizes = import_dev37.defineTokens.sizes({
3249
+ var import_dev39 = require("@pandacss/dev");
3250
+ var sizes = import_dev39.defineTokens.sizes({
3102
3251
  0: { value: "0", description: "0px" },
3103
3252
  0.25: { value: "0.0625rem", description: "1px" },
3104
3253
  0.5: { value: "0.125rem", description: "2px" },
@@ -3127,8 +3276,8 @@ var sizes = import_dev37.defineTokens.sizes({
3127
3276
  });
3128
3277
 
3129
3278
  // src/tokens/spacing.ts
3130
- var import_dev38 = require("@pandacss/dev");
3131
- var spacing = import_dev38.defineTokens.spacing({
3279
+ var import_dev40 = require("@pandacss/dev");
3280
+ var spacing = import_dev40.defineTokens.spacing({
3132
3281
  0: { value: "0", description: "0px" },
3133
3282
  0.5: { value: "0.125rem", description: "2px" },
3134
3283
  1: { value: "0.25rem", description: "4px" },
@@ -3149,8 +3298,8 @@ var spacing = import_dev38.defineTokens.spacing({
3149
3298
  });
3150
3299
 
3151
3300
  // src/tokens/z-index.ts
3152
- var import_dev39 = require("@pandacss/dev");
3153
- var zIndex = import_dev39.defineTokens.zIndex({
3301
+ var import_dev41 = require("@pandacss/dev");
3302
+ var zIndex = import_dev41.defineTokens.zIndex({
3154
3303
  hide: { value: -1 },
3155
3304
  base: { value: 0 },
3156
3305
  docked: { value: 10 },
@@ -3162,16 +3311,16 @@ var zIndex = import_dev39.defineTokens.zIndex({
3162
3311
  });
3163
3312
 
3164
3313
  // src/tokens/typography.ts
3165
- var import_dev40 = require("@pandacss/dev");
3166
- var fonts = import_dev40.defineTokens.fonts({
3314
+ var import_dev42 = require("@pandacss/dev");
3315
+ var fonts = import_dev42.defineTokens.fonts({
3167
3316
  body: {
3168
- value: '"inter", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif, Segoe UI, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"'
3317
+ value: '"Inter", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif, Segoe UI, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"'
3169
3318
  },
3170
3319
  mono: {
3171
3320
  value: 'SFMono-Regular, Menlo, Monaco,Consolas, "Liberation Mono", "Courier New", monospace'
3172
3321
  }
3173
3322
  });
3174
- var fontSizes = import_dev40.defineTokens.fontSizes({
3323
+ var fontSizes = import_dev42.defineTokens.fontSizes({
3175
3324
  xs: { value: "0.625rem", description: "10px" },
3176
3325
  sm: { value: "0.75rem", description: "12px" },
3177
3326
  md: { value: "0.875rem", description: "14px" },
@@ -3179,12 +3328,12 @@ var fontSizes = import_dev40.defineTokens.fontSizes({
3179
3328
  xl: { value: "1.25rem", description: "20px" },
3180
3329
  "2xl": { value: "1.5rem", description: "24px" }
3181
3330
  });
3182
- var fontWeights = import_dev40.defineTokens.fontWeights({
3331
+ var fontWeights = import_dev42.defineTokens.fontWeights({
3183
3332
  regular: { value: "400" },
3184
3333
  semiBold: { value: "600" },
3185
3334
  bold: { value: "800" }
3186
3335
  });
3187
- var lineHeights = import_dev40.defineTokens.lineHeights({
3336
+ var lineHeights = import_dev42.defineTokens.lineHeights({
3188
3337
  xs: { value: 1.2, description: "12px/10px" },
3189
3338
  sm: { value: 1.34, description: "16px/12px or 32px/24px" },
3190
3339
  md: { value: 1.4, description: "28px/20px" },
@@ -3193,7 +3342,7 @@ var lineHeights = import_dev40.defineTokens.lineHeights({
3193
3342
  "2xl": { value: 1.67, description: "20px/12px" },
3194
3343
  "3xl": { value: 1.71, description: "24px/14px" }
3195
3344
  });
3196
- var letterSpacings = import_dev40.defineTokens.letterSpacings({
3345
+ var letterSpacings = import_dev42.defineTokens.letterSpacings({
3197
3346
  tighter: { value: "-0.05em" },
3198
3347
  tight: { value: "-0.025em" },
3199
3348
  normal: { value: "0" },
@@ -3203,7 +3352,7 @@ var letterSpacings = import_dev40.defineTokens.letterSpacings({
3203
3352
  });
3204
3353
 
3205
3354
  // src/tokens/index.ts
3206
- var tokens = (0, import_dev41.defineTokens)({
3355
+ var tokens = (0, import_dev43.defineTokens)({
3207
3356
  borders,
3208
3357
  colors,
3209
3358
  durations,
@@ -3221,7 +3370,7 @@ var tokens = (0, import_dev41.defineTokens)({
3221
3370
  });
3222
3371
 
3223
3372
  // src/index.ts
3224
- var preset = (0, import_dev42.definePreset)({
3373
+ var preset = (0, import_dev44.definePreset)({
3225
3374
  theme: {
3226
3375
  extend: {
3227
3376
  breakpoints,