@mekari/pixel3-theme 0.2.2-dev.4 → 0.2.2-dev.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/dist/index.js +285 -71
  2. package/dist/index.mjs +237 -23
  3. package/dist/recipes/index.d.mts +1 -0
  4. package/dist/recipes/index.d.ts +1 -0
  5. package/dist/recipes/textlink.d.mts +5 -0
  6. package/dist/recipes/textlink.d.ts +5 -0
  7. package/dist/semanticTokens/colors.d.mts +7 -0
  8. package/dist/semanticTokens/colors.d.ts +7 -0
  9. package/dist/semanticTokens/index.d.mts +7 -0
  10. package/dist/semanticTokens/index.d.ts +7 -0
  11. package/package.json +1 -1
  12. package/src/conditions.ts +3 -2
  13. package/src/fonts.ts +4 -4
  14. package/src/global-css.ts +3 -3
  15. package/src/index.ts +1 -1
  16. package/src/recipes/airene-button.ts +1 -1
  17. package/src/recipes/autocomplete.ts +23 -9
  18. package/src/recipes/avatar.ts +28 -20
  19. package/src/recipes/badge.ts +7 -7
  20. package/src/recipes/banner.ts +7 -7
  21. package/src/recipes/broadcast.ts +45 -19
  22. package/src/recipes/button.ts +7 -4
  23. package/src/recipes/carousel.ts +2 -6
  24. package/src/recipes/color-picker.ts +1 -1
  25. package/src/recipes/date-picker.ts +1 -1
  26. package/src/recipes/divider.ts +3 -3
  27. package/src/recipes/form-control.ts +3 -3
  28. package/src/recipes/index.ts +3 -1
  29. package/src/recipes/input.ts +23 -23
  30. package/src/recipes/modal.ts +3 -3
  31. package/src/recipes/popover.ts +4 -3
  32. package/src/recipes/rich-text-editor.ts +2 -2
  33. package/src/recipes/segmented-control.ts +14 -13
  34. package/src/recipes/select.ts +9 -9
  35. package/src/recipes/slider.ts +16 -11
  36. package/src/recipes/table.ts +5 -5
  37. package/src/recipes/tabs.ts +2 -2
  38. package/src/recipes/tag.ts +2 -1
  39. package/src/recipes/textarea.ts +1 -1
  40. package/src/recipes/textlink.ts +105 -0
  41. package/src/recipes/timeline.ts +31 -4
  42. package/src/recipes/toast.ts +29 -9
  43. package/src/recipes/toggle.ts +1 -1
  44. package/src/semanticTokens/colors.ts +8 -1
  45. package/src/semanticTokens/index.ts +1 -1
  46. package/src/semanticTokens/spacing.ts +12 -12
  47. package/src/tokens/colors.ts +2 -2
  48. package/src/tokens/spacing.ts +2 -2
  49. package/src/tokens/typography.ts +1 -1
  50. package/src/tokens-next/radii.ts +1 -1
  51. package/src/tokens-next/shadows.ts +16 -4
  52. package/src/tokens-next/spacing.ts +1 -1
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_dev64 = require("@pandacss/dev");
28
+ var import_dev65 = require("@pandacss/dev");
29
29
 
30
30
  // src/breakpoints.ts
31
31
  var breakpoints = {
@@ -239,7 +239,8 @@ var tagSlotRecipe = (0, import_dev3.defineSlotRecipe)({
239
239
  defaultVariants: {
240
240
  size: "md",
241
241
  variant: "gray"
242
- }
242
+ },
243
+ staticCss: ["*"]
243
244
  });
244
245
 
245
246
  // src/recipes/avatar.ts
@@ -522,7 +523,7 @@ var aireneButtonSlotRecipe = (0, import_dev5.defineSlotRecipe)({
522
523
  color: "blue.400!",
523
524
  borderRadius: "25px!",
524
525
  fontSize: "md",
525
- fontWeight: "semiBold",
526
+ fontWeight: "semiBold!",
526
527
  paddingLeft: "0.625rem!",
527
528
  paddingRight: "0.625rem!",
528
529
  overflow: "hidden",
@@ -647,6 +648,9 @@ var buttonRecipe = (0, import_dev6.defineRecipe)({
647
648
  transitionDuration: "250ms",
648
649
  transitionProperty: "background, border-color, color, box-shadow",
649
650
  transitionTimingFunction: "linear",
651
+ _isFullWidth: {
652
+ width: "full"
653
+ },
650
654
  _loading: {
651
655
  cursor: "wait",
652
656
  position: "absolute",
@@ -1845,7 +1849,8 @@ var popoverContentRecipe = (0, import_dev13.defineRecipe)({
1845
1849
  defaultVariants: {
1846
1850
  isDark: false,
1847
1851
  isUnstyled: false
1848
- }
1852
+ },
1853
+ staticCss: ["*"]
1849
1854
  });
1850
1855
  var popoverListRecipe = (0, import_dev13.defineRecipe)({
1851
1856
  className: "popover-list",
@@ -1892,7 +1897,7 @@ var popoverListItemRecipe = (0, import_dev13.defineRecipe)({
1892
1897
  color: "text.default"
1893
1898
  }
1894
1899
  },
1895
- _active: {
1900
+ '&[data-active="true"]': {
1896
1901
  background: "ice.50",
1897
1902
  color: "dark",
1898
1903
  outline: 0,
@@ -1924,8 +1929,8 @@ var badgeRecipe = (0, import_dev14.defineRecipe)({
1924
1929
  color: "white"
1925
1930
  },
1926
1931
  subtle: {},
1927
- "additionalInformation": {},
1928
- "tableStatus": {},
1932
+ additionalInformation: {},
1933
+ tableStatus: {},
1929
1934
  indicator: {}
1930
1935
  },
1931
1936
  variantColor: {
@@ -4038,7 +4043,8 @@ var toastSlotRecipe = (0, import_dev31.defineSlotRecipe)({
4038
4043
  variants: {
4039
4044
  variant: {
4040
4045
  success: {},
4041
- error: {}
4046
+ error: {},
4047
+ greeting: {}
4042
4048
  }
4043
4049
  },
4044
4050
  compoundVariants: [
@@ -4063,6 +4069,25 @@ var toastSlotRecipe = (0, import_dev31.defineSlotRecipe)({
4063
4069
  }
4064
4070
  }
4065
4071
  }
4072
+ },
4073
+ {
4074
+ variant: "greeting",
4075
+ css: {
4076
+ root: {
4077
+ borderRadius: "999px",
4078
+ border: "none",
4079
+ backgroundColor: "overlay",
4080
+ _nextTheme: {
4081
+ backgroundColor: "background.overlay"
4082
+ }
4083
+ },
4084
+ label: {
4085
+ color: "white",
4086
+ _nextTheme: {
4087
+ color: "text.inverse-static"
4088
+ }
4089
+ }
4090
+ }
4066
4091
  }
4067
4092
  ],
4068
4093
  defaultVariants: {
@@ -4198,6 +4223,32 @@ var broadcastSlotRecipe = (0, import_dev32.defineSlotRecipe)({
4198
4223
  color: "text.warning.inverse"
4199
4224
  }
4200
4225
  }
4226
+ },
4227
+ critical: {
4228
+ container: {
4229
+ backgroundColor: "rose.400",
4230
+ _nextTheme: {
4231
+ backgroundColor: "background.danger.bold"
4232
+ }
4233
+ },
4234
+ icon: {
4235
+ color: "white",
4236
+ _nextTheme: {
4237
+ color: "icon.inverse"
4238
+ }
4239
+ },
4240
+ label: {
4241
+ color: "white",
4242
+ _nextTheme: {
4243
+ color: "text.inverse"
4244
+ }
4245
+ },
4246
+ textLink: {
4247
+ color: "white",
4248
+ _nextTheme: {
4249
+ color: "text.inverse"
4250
+ }
4251
+ }
4201
4252
  }
4202
4253
  }
4203
4254
  },
@@ -4921,11 +4972,7 @@ var import_dev35 = require("@pandacss/dev");
4921
4972
  var carouselSlotRecipe = (0, import_dev35.defineSlotRecipe)({
4922
4973
  className: "carousel",
4923
4974
  jsx: ["MpCarousel", "mp-carousel"],
4924
- slots: [
4925
- "root",
4926
- "buttonRight",
4927
- "buttonLeft"
4928
- ],
4975
+ slots: ["root", "buttonRight", "buttonLeft"],
4929
4976
  base: {
4930
4977
  root: {
4931
4978
  display: "block",
@@ -5081,7 +5128,15 @@ var import_dev37 = require("@pandacss/dev");
5081
5128
  var autocompleteSlotRecipe = (0, import_dev37.defineSlotRecipe)({
5082
5129
  className: "autocomplete",
5083
5130
  jsx: ["MpAutocomplete", "mp-autocomplete"],
5084
- slots: ["groupText", "popoverContent", "buttonAction", "emptyText", "contentLoading", "input"],
5131
+ slots: [
5132
+ "groupText",
5133
+ "popoverContent",
5134
+ "buttonAction",
5135
+ "emptyText",
5136
+ "contentLoading",
5137
+ "input",
5138
+ "infinityScroll"
5139
+ ],
5085
5140
  base: {
5086
5141
  groupText: {
5087
5142
  px: 3,
@@ -5127,6 +5182,11 @@ var autocompleteSlotRecipe = (0, import_dev37.defineSlotRecipe)({
5127
5182
  },
5128
5183
  input: {
5129
5184
  cursor: "pointer"
5185
+ },
5186
+ infinityScroll: {
5187
+ height: "1px",
5188
+ width: "100%",
5189
+ marginTop: "-1px"
5130
5190
  }
5131
5191
  }
5132
5192
  });
@@ -5240,11 +5300,13 @@ var timelineLogSlotRecipe = (0, import_dev38.defineSlotRecipe)({
5240
5300
  base: {
5241
5301
  root: {
5242
5302
  display: "flex",
5243
- flexDirection: "column"
5303
+ flexDirection: "column",
5304
+ gap: "1"
5244
5305
  },
5245
5306
  log: {
5246
5307
  display: "flex",
5247
- cursor: "pointer"
5308
+ cursor: "pointer",
5309
+ gap: "1"
5248
5310
  },
5249
5311
  logText: {
5250
5312
  color: "gray.400",
@@ -5273,7 +5335,11 @@ var timelineSeparatorSlotRecipe = (0, import_dev38.defineSlotRecipe)({
5273
5335
  root: {
5274
5336
  display: "flex",
5275
5337
  flexDirection: "column",
5276
- alignItems: "center"
5338
+ alignItems: "center",
5339
+ "&[data-accordion-child=true]": {
5340
+ alignItems: "start",
5341
+ marginLeft: "9px"
5342
+ }
5277
5343
  },
5278
5344
  topConnector: {
5279
5345
  height: "6px",
@@ -5283,8 +5349,20 @@ var timelineSeparatorSlotRecipe = (0, import_dev38.defineSlotRecipe)({
5283
5349
  "&[data-position=first]": {
5284
5350
  backgroundColor: "transparent"
5285
5351
  },
5352
+ "&[data-hide=true]": {
5353
+ backgroundColor: "transparent"
5354
+ },
5355
+ "&[data-accordion-child=true]": {
5356
+ roundedBottom: ""
5357
+ },
5286
5358
  _nextTheme: {
5287
- backgroundColor: "border.default"
5359
+ backgroundColor: "border.default",
5360
+ "&[data-position=first]": {
5361
+ backgroundColor: "transparent"
5362
+ },
5363
+ "&[data-hide=true]": {
5364
+ backgroundColor: "transparent"
5365
+ }
5288
5366
  }
5289
5367
  },
5290
5368
  bottomConnector: {
@@ -5296,10 +5374,19 @@ var timelineSeparatorSlotRecipe = (0, import_dev38.defineSlotRecipe)({
5296
5374
  "&[data-position=last]": {
5297
5375
  backgroundColor: "transparent"
5298
5376
  },
5377
+ "&[data-hide=true]": {
5378
+ backgroundColor: "transparent"
5379
+ },
5380
+ "&[data-accordion-child=true]": {
5381
+ roundedTop: ""
5382
+ },
5299
5383
  _nextTheme: {
5300
5384
  backgroundColor: "border.default",
5301
5385
  "&[data-position=last]": {
5302
5386
  backgroundColor: "transparent"
5387
+ },
5388
+ "&[data-hide=true]": {
5389
+ backgroundColor: "transparent"
5303
5390
  }
5304
5391
  }
5305
5392
  }
@@ -5831,6 +5918,110 @@ var tourSlotRecipe = (0, import_dev42.defineSlotRecipe)({
5831
5918
  defaultVariants: {}
5832
5919
  });
5833
5920
 
5921
+ // src/recipes/textlink.ts
5922
+ var import_dev43 = require("@pandacss/dev");
5923
+ var textlinkRecipe = (0, import_dev43.defineRecipe)({
5924
+ className: "textlink",
5925
+ jsx: ["MpTextlink", "mp-textlink"],
5926
+ base: {
5927
+ display: "inline-flex !important",
5928
+ gap: "1",
5929
+ py: "0 !important",
5930
+ px: "2px !important",
5931
+ backgroundColor: "transparent !important",
5932
+ textStyle: "label.md !important",
5933
+ _hover: {
5934
+ textDecoration: "underline"
5935
+ },
5936
+ _loading: {
5937
+ background: "white"
5938
+ }
5939
+ },
5940
+ variants: {
5941
+ variant: {
5942
+ primary: {
5943
+ color: "blue.400",
5944
+ _hover: {
5945
+ color: "blue.400"
5946
+ },
5947
+ _active: {
5948
+ color: "blue.700"
5949
+ },
5950
+ _nextTheme: {
5951
+ color: "text.link",
5952
+ _hover: {
5953
+ color: "text.link"
5954
+ },
5955
+ _active: {
5956
+ color: "text.link.pressed"
5957
+ }
5958
+ }
5959
+ },
5960
+ secondary: {
5961
+ color: "gray.400",
5962
+ _hover: {
5963
+ color: "gray.400"
5964
+ },
5965
+ _active: {
5966
+ color: "gray.700"
5967
+ },
5968
+ _nextTheme: {
5969
+ color: "text.secondary",
5970
+ _hover: {
5971
+ color: "text.secondary"
5972
+ },
5973
+ _active: {
5974
+ color: "text.secondary.pressed"
5975
+ }
5976
+ }
5977
+ },
5978
+ danger: {
5979
+ color: "red.400",
5980
+ _hover: {
5981
+ color: "red.400"
5982
+ },
5983
+ _active: {
5984
+ color: "red.700"
5985
+ },
5986
+ _nextTheme: {
5987
+ color: "text.danger",
5988
+ _hover: {
5989
+ color: "text.danger"
5990
+ },
5991
+ _active: {
5992
+ color: "text.danger.pressed"
5993
+ }
5994
+ }
5995
+ }
5996
+ }
5997
+ },
5998
+ compoundVariants: [
5999
+ {
6000
+ variant: ["primary", "secondary", "danger"],
6001
+ css: {
6002
+ _disabled: {
6003
+ cursor: "not-allowed",
6004
+ color: "gray.100",
6005
+ _hover: {
6006
+ color: "gray.100",
6007
+ textDecoration: "none"
6008
+ },
6009
+ _nextTheme: {
6010
+ color: "text.disabled",
6011
+ _hover: {
6012
+ color: "text.disabled",
6013
+ textDecoration: "none"
6014
+ }
6015
+ }
6016
+ },
6017
+ _focusVisible: {
6018
+ boxShadow: "focus"
6019
+ }
6020
+ }
6021
+ }
6022
+ ]
6023
+ });
6024
+
5834
6025
  // src/recipes/index.ts
5835
6026
  var recipes = {
5836
6027
  buttonRecipe,
@@ -5858,7 +6049,8 @@ var recipes = {
5858
6049
  dateItemRecipe,
5859
6050
  monthItemRecipe,
5860
6051
  yearItemRecipe,
5861
- timeItemRecipe
6052
+ timeItemRecipe,
6053
+ textlinkRecipe
5862
6054
  };
5863
6055
  var slotRecipes = {
5864
6056
  accordionSlotRecipe,
@@ -5909,8 +6101,8 @@ var slotRecipes = {
5909
6101
  };
5910
6102
 
5911
6103
  // src/text-styles.ts
5912
- var import_dev43 = require("@pandacss/dev");
5913
- var textStyles = (0, import_dev43.defineTextStyles)({
6104
+ var import_dev44 = require("@pandacss/dev");
6105
+ var textStyles = (0, import_dev44.defineTextStyles)({
5914
6106
  overline: {
5915
6107
  value: {
5916
6108
  fontFamily: "var(--font-inter)",
@@ -5953,11 +6145,11 @@ var textStyles = (0, import_dev43.defineTextStyles)({
5953
6145
  });
5954
6146
 
5955
6147
  // src/tokens/index.ts
5956
- var import_dev54 = require("@pandacss/dev");
6148
+ var import_dev55 = require("@pandacss/dev");
5957
6149
 
5958
6150
  // src/tokens/borders.ts
5959
- var import_dev44 = require("@pandacss/dev");
5960
- var borderWidths = import_dev44.defineTokens.borderWidths({
6151
+ var import_dev45 = require("@pandacss/dev");
6152
+ var borderWidths = import_dev45.defineTokens.borderWidths({
5961
6153
  none: { value: "none" },
5962
6154
  sm: { value: "1px" },
5963
6155
  md: { value: "1.5px" },
@@ -5965,8 +6157,8 @@ var borderWidths = import_dev44.defineTokens.borderWidths({
5965
6157
  });
5966
6158
 
5967
6159
  // src/tokens/colors.ts
5968
- var import_dev45 = require("@pandacss/dev");
5969
- var colors = import_dev45.defineTokens.colors({
6160
+ var import_dev46 = require("@pandacss/dev");
6161
+ var colors = import_dev46.defineTokens.colors({
5970
6162
  debug: { value: "blue" },
5971
6163
  currentcolor: { value: "currentcolor" },
5972
6164
  dark: { value: "#232933" },
@@ -6108,16 +6300,16 @@ var colors = import_dev45.defineTokens.colors({
6108
6300
  });
6109
6301
 
6110
6302
  // src/tokens/durations.ts
6111
- var import_dev46 = require("@pandacss/dev");
6112
- var durations = import_dev46.defineTokens.durations({
6303
+ var import_dev47 = require("@pandacss/dev");
6304
+ var durations = import_dev47.defineTokens.durations({
6113
6305
  slow: { value: "100ms" },
6114
6306
  normal: { value: "250ms" },
6115
6307
  fast: { value: "300ms" }
6116
6308
  });
6117
6309
 
6118
6310
  // src/tokens/opacity.ts
6119
- var import_dev47 = require("@pandacss/dev");
6120
- var opacity = import_dev47.defineTokens.opacity({
6311
+ var import_dev48 = require("@pandacss/dev");
6312
+ var opacity = import_dev48.defineTokens.opacity({
6121
6313
  0: { value: 0 },
6122
6314
  40: { value: 0.4 },
6123
6315
  60: { value: 0.6 },
@@ -6125,8 +6317,8 @@ var opacity = import_dev47.defineTokens.opacity({
6125
6317
  });
6126
6318
 
6127
6319
  // src/tokens/radii.ts
6128
- var import_dev48 = require("@pandacss/dev");
6129
- var radii = import_dev48.defineTokens.radii({
6320
+ var import_dev49 = require("@pandacss/dev");
6321
+ var radii = import_dev49.defineTokens.radii({
6130
6322
  none: { value: "0" },
6131
6323
  xs: { value: "0.125rem", description: "2px" },
6132
6324
  sm: { value: "0.25rem", description: "4px" },
@@ -6137,8 +6329,8 @@ var radii = import_dev48.defineTokens.radii({
6137
6329
  });
6138
6330
 
6139
6331
  // src/tokens/shadows.ts
6140
- var import_dev49 = require("@pandacss/dev");
6141
- var shadows = import_dev49.defineTokens.shadows({
6332
+ var import_dev50 = require("@pandacss/dev");
6333
+ var shadows = import_dev50.defineTokens.shadows({
6142
6334
  xs: {
6143
6335
  value: ["0px 0px 2px 0px rgba(0, 0, 0, 0.12)", "0px 2px 4px 0px rgba(0, 0, 0, 0.14)"]
6144
6336
  },
@@ -6178,8 +6370,8 @@ var shadows = import_dev49.defineTokens.shadows({
6178
6370
  });
6179
6371
 
6180
6372
  // src/tokens/sizes.ts
6181
- var import_dev50 = require("@pandacss/dev");
6182
- var sizes = import_dev50.defineTokens.sizes({
6373
+ var import_dev51 = require("@pandacss/dev");
6374
+ var sizes = import_dev51.defineTokens.sizes({
6183
6375
  0: { value: "0" },
6184
6376
  0.25: { value: "0.0625rem" },
6185
6377
  0.5: { value: "0.125rem" },
@@ -6208,8 +6400,8 @@ var sizes = import_dev50.defineTokens.sizes({
6208
6400
  });
6209
6401
 
6210
6402
  // src/tokens/spacing.ts
6211
- var import_dev51 = require("@pandacss/dev");
6212
- var spacing = import_dev51.defineTokens.spacing({
6403
+ var import_dev52 = require("@pandacss/dev");
6404
+ var spacing = import_dev52.defineTokens.spacing({
6213
6405
  0: { value: "0" },
6214
6406
  0.5: { value: "0.125rem", description: "2px" },
6215
6407
  1: { value: "0.25rem", description: "4px" },
@@ -6230,8 +6422,8 @@ var spacing = import_dev51.defineTokens.spacing({
6230
6422
  });
6231
6423
 
6232
6424
  // src/tokens/z-index.ts
6233
- var import_dev52 = require("@pandacss/dev");
6234
- var zIndex = import_dev52.defineTokens.zIndex({
6425
+ var import_dev53 = require("@pandacss/dev");
6426
+ var zIndex = import_dev53.defineTokens.zIndex({
6235
6427
  hide: { value: -1 },
6236
6428
  base: { value: 0 },
6237
6429
  docked: { value: 10 },
@@ -6243,8 +6435,8 @@ var zIndex = import_dev52.defineTokens.zIndex({
6243
6435
  });
6244
6436
 
6245
6437
  // src/tokens/typography.ts
6246
- var import_dev53 = require("@pandacss/dev");
6247
- var fonts = import_dev53.defineTokens.fonts({
6438
+ var import_dev54 = require("@pandacss/dev");
6439
+ var fonts = import_dev54.defineTokens.fonts({
6248
6440
  body: {
6249
6441
  value: '"Inter", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif, Segoe UI, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"'
6250
6442
  },
@@ -6252,7 +6444,7 @@ var fonts = import_dev53.defineTokens.fonts({
6252
6444
  value: 'SFMono-Regular, Menlo, Monaco,Consolas, "Liberation Mono", "Courier New", monospace'
6253
6445
  }
6254
6446
  });
6255
- var fontSizes = import_dev53.defineTokens.fontSizes({
6447
+ var fontSizes = import_dev54.defineTokens.fontSizes({
6256
6448
  xs: { value: "0.625rem" },
6257
6449
  sm: { value: "0.75rem" },
6258
6450
  md: { value: "0.875rem" },
@@ -6260,21 +6452,21 @@ var fontSizes = import_dev53.defineTokens.fontSizes({
6260
6452
  xl: { value: "1.25rem" },
6261
6453
  "2xl": { value: "1.5rem" }
6262
6454
  });
6263
- var fontWeights = import_dev53.defineTokens.fontWeights({
6455
+ var fontWeights = import_dev54.defineTokens.fontWeights({
6264
6456
  regular: { value: "400" },
6265
6457
  semiBold: { value: "600" },
6266
6458
  bold: { value: "800" }
6267
6459
  });
6268
- var lineHeights = import_dev53.defineTokens.lineHeights({
6460
+ var lineHeights = import_dev54.defineTokens.lineHeights({
6269
6461
  xs: { value: 1.2 },
6270
6462
  sm: { value: 1.34 },
6271
- md: { value: 1.4 },
6463
+ md: { value: 1.43 },
6272
6464
  lg: { value: 1.429 },
6273
6465
  xl: { value: 1.5 },
6274
6466
  "2xl": { value: 1.67 },
6275
6467
  "3xl": { value: 1.71 }
6276
6468
  });
6277
- var letterSpacings = import_dev53.defineTokens.letterSpacings({
6469
+ var letterSpacings = import_dev54.defineTokens.letterSpacings({
6278
6470
  tighter: { value: "-0.05em" },
6279
6471
  tight: { value: "-0.025em" },
6280
6472
  normal: { value: "0" },
@@ -6284,7 +6476,7 @@ var letterSpacings = import_dev53.defineTokens.letterSpacings({
6284
6476
  });
6285
6477
 
6286
6478
  // src/tokens/index.ts
6287
- var tokens = (0, import_dev54.defineTokens)({
6479
+ var tokens = (0, import_dev55.defineTokens)({
6288
6480
  borderWidths,
6289
6481
  colors,
6290
6482
  durations,
@@ -6302,11 +6494,11 @@ var tokens = (0, import_dev54.defineTokens)({
6302
6494
  });
6303
6495
 
6304
6496
  // src/tokens-next/index.ts
6305
- var import_dev60 = require("@pandacss/dev");
6497
+ var import_dev61 = require("@pandacss/dev");
6306
6498
 
6307
6499
  // src/tokens-next/borders.ts
6308
- var import_dev55 = require("@pandacss/dev");
6309
- var borderWidths2 = import_dev55.defineTokens.borderWidths({
6500
+ var import_dev56 = require("@pandacss/dev");
6501
+ var borderWidths2 = import_dev56.defineTokens.borderWidths({
6310
6502
  none: { value: "none" },
6311
6503
  sm: { value: "1px" },
6312
6504
  md: { value: "1.5px" },
@@ -6316,8 +6508,8 @@ var borderWidths2 = import_dev55.defineTokens.borderWidths({
6316
6508
  });
6317
6509
 
6318
6510
  // src/tokens-next/colors.ts
6319
- var import_dev56 = require("@pandacss/dev");
6320
- var colors2 = import_dev56.defineTokens.colors({
6511
+ var import_dev57 = require("@pandacss/dev");
6512
+ var colors2 = import_dev57.defineTokens.colors({
6321
6513
  debug: { value: "red" },
6322
6514
  currentcolor: { value: "currentcolor" },
6323
6515
  white: { value: "#FFFFFF" },
@@ -6489,8 +6681,8 @@ var colors2 = import_dev56.defineTokens.colors({
6489
6681
  });
6490
6682
 
6491
6683
  // src/tokens-next/radii.ts
6492
- var import_dev57 = require("@pandacss/dev");
6493
- var radii2 = import_dev57.defineTokens.radii({
6684
+ var import_dev58 = require("@pandacss/dev");
6685
+ var radii2 = import_dev58.defineTokens.radii({
6494
6686
  none: { value: "0" },
6495
6687
  sm: { value: "0.25rem", description: "4px" },
6496
6688
  md: { value: "0.375rem", description: "6px" },
@@ -6500,8 +6692,8 @@ var radii2 = import_dev57.defineTokens.radii({
6500
6692
  });
6501
6693
 
6502
6694
  // src/tokens-next/spacing.ts
6503
- var import_dev58 = require("@pandacss/dev");
6504
- var spacing2 = import_dev58.defineTokens.spacing({
6695
+ var import_dev59 = require("@pandacss/dev");
6696
+ var spacing2 = import_dev59.defineTokens.spacing({
6505
6697
  0: { value: "0" },
6506
6698
  0.5: { value: "0.125rem", description: "2px" },
6507
6699
  1: { value: "0.25rem", description: "4px" },
@@ -6517,19 +6709,31 @@ var spacing2 = import_dev58.defineTokens.spacing({
6517
6709
  });
6518
6710
 
6519
6711
  // src/tokens-next/shadows.ts
6520
- var import_dev59 = require("@pandacss/dev");
6521
- var shadows2 = import_dev59.defineTokens.shadows({
6712
+ var import_dev60 = require("@pandacss/dev");
6713
+ var shadows2 = import_dev60.defineTokens.shadows({
6522
6714
  xs: {
6523
- value: ["0px 2px 4px 0px {colors.background.shadow}", "0px 0px 2px 0px {colors.background.shadow}"]
6715
+ value: [
6716
+ "0px 2px 4px 0px {colors.background.shadow}",
6717
+ "0px 0px 2px 0px {colors.background.shadow}"
6718
+ ]
6524
6719
  },
6525
6720
  sm: {
6526
- value: ["0px 10px 15px -3px {colors.background.shadow}", "0px 4px 6px -2px {colors.background.shadow}"]
6721
+ value: [
6722
+ "0px 10px 15px -3px {colors.background.shadow}",
6723
+ "0px 4px 6px -2px {colors.background.shadow}"
6724
+ ]
6527
6725
  },
6528
6726
  md: {
6529
- value: ["0px 20px 25px -5px {colors.background.shadow}", "0px 10px 10px -5px {colors.background.shadow}"]
6727
+ value: [
6728
+ "0px 20px 25px -5px {colors.background.shadow}",
6729
+ "0px 10px 10px -5px {colors.background.shadow}"
6730
+ ]
6530
6731
  },
6531
6732
  lg: {
6532
- value: ["0px 25px 30px -10px {colors.background.shadow}", "0px 15px 15px -10px {colors.background.shadow}"]
6733
+ value: [
6734
+ "0px 25px 30px -10px {colors.background.shadow}",
6735
+ "0px 15px 15px -10px {colors.background.shadow}"
6736
+ ]
6533
6737
  },
6534
6738
  focus: {
6535
6739
  value: "0 0 0 1px {colors.border.focused}"
@@ -6546,7 +6750,7 @@ var shadows2 = import_dev59.defineTokens.shadows({
6546
6750
  });
6547
6751
 
6548
6752
  // src/tokens-next/index.ts
6549
- var tokensNext = (0, import_dev60.defineTokens)({
6753
+ var tokensNext = (0, import_dev61.defineTokens)({
6550
6754
  borderWidths: borderWidths2,
6551
6755
  colors: colors2,
6552
6756
  durations,
@@ -6564,11 +6768,11 @@ var tokensNext = (0, import_dev60.defineTokens)({
6564
6768
  });
6565
6769
 
6566
6770
  // src/semanticTokens/index.ts
6567
- var import_dev63 = require("@pandacss/dev");
6771
+ var import_dev64 = require("@pandacss/dev");
6568
6772
 
6569
6773
  // src/semanticTokens/colors.ts
6570
- var import_dev61 = require("@pandacss/dev");
6571
- var colors3 = import_dev61.defineSemanticTokens.colors({
6774
+ var import_dev62 = require("@pandacss/dev");
6775
+ var colors3 = import_dev62.defineSemanticTokens.colors({
6572
6776
  background: {
6573
6777
  surface: {
6574
6778
  value: {
@@ -6958,6 +7162,16 @@ var colors3 = import_dev61.defineSemanticTokens.colors({
6958
7162
  }
6959
7163
  }
6960
7164
  }
7165
+ },
7166
+ airene: {
7167
+ value: {
7168
+ base: "radial-gradient(108.28% 139.29% at 0% 0%, #EEF0FC 0%, #F3F1FC 100%)",
7169
+ // Doens't have raw token
7170
+ _light: "radial-gradient(108.28% 139.29% at 0% 0%, #EEF0FC 0%, #F3F1FC 100%)",
7171
+ // Doesn't have raw token
7172
+ _dark: "radial-gradient(108.28% 139.29% at 0% 0%, #1D2656 0%, #2B2549 100%)"
7173
+ // Doesn't have raw token
7174
+ }
6961
7175
  }
6962
7176
  },
6963
7177
  nav: {
@@ -7484,8 +7698,8 @@ var colors3 = import_dev61.defineSemanticTokens.colors({
7484
7698
  });
7485
7699
 
7486
7700
  // src/semanticTokens/spacing.ts
7487
- var import_dev62 = require("@pandacss/dev");
7488
- var spacing3 = import_dev62.defineSemanticTokens.spacing({
7701
+ var import_dev63 = require("@pandacss/dev");
7702
+ var spacing3 = import_dev63.defineSemanticTokens.spacing({
7489
7703
  "4xs": {
7490
7704
  value: {
7491
7705
  base: "0.125rem"
@@ -7544,7 +7758,7 @@ var spacing3 = import_dev62.defineSemanticTokens.spacing({
7544
7758
  });
7545
7759
 
7546
7760
  // src/semanticTokens/index.ts
7547
- var semanticTokens = (0, import_dev63.defineSemanticTokens)({
7761
+ var semanticTokens = (0, import_dev64.defineSemanticTokens)({
7548
7762
  colors: colors3,
7549
7763
  spacing: spacing3
7550
7764
  });
@@ -7583,7 +7797,7 @@ var globalFontface = {
7583
7797
  };
7584
7798
 
7585
7799
  // src/index.ts
7586
- var preset = (0, import_dev64.definePreset)({
7800
+ var preset = (0, import_dev65.definePreset)({
7587
7801
  name: "@mekari/pixel3-theme",
7588
7802
  // Main Theme
7589
7803
  theme: {