@nextui-org/theme 0.0.0-dev-v2-20230623225431 → 0.0.0-dev-v2-20230624033637

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 (46) hide show
  1. package/dist/{chunk-CDLGU7OD.mjs → chunk-53FU66TE.mjs} +2 -2
  2. package/dist/{chunk-ZGAYYMFF.mjs → chunk-7ZE4XJWS.mjs} +3 -4
  3. package/dist/{chunk-KPXLNSHI.mjs → chunk-ACERSXMK.mjs} +1 -1
  4. package/dist/{chunk-33WV5XLR.mjs → chunk-BWO5RTQF.mjs} +14 -8
  5. package/dist/{chunk-34DKOA3F.mjs → chunk-DN3YP75Q.mjs} +1 -1
  6. package/dist/{chunk-AUYFXGLC.mjs → chunk-P455YPME.mjs} +2 -3
  7. package/dist/{chunk-DJPVJIVC.mjs → chunk-QJZSBDVH.mjs} +1 -1
  8. package/dist/{chunk-JLTOTD4Y.mjs → chunk-RB2RANUL.mjs} +2 -3
  9. package/dist/{chunk-SDZJAVPQ.mjs → chunk-SFF5YUZA.mjs} +3 -4
  10. package/dist/{chunk-FRXURFBW.mjs → chunk-TFIDBELY.mjs} +1 -1
  11. package/dist/colors/index.d.ts +4 -4
  12. package/dist/colors/index.js +12 -6
  13. package/dist/colors/index.mjs +2 -2
  14. package/dist/colors/semantic.d.ts +6 -6
  15. package/dist/colors/semantic.js +18 -12
  16. package/dist/colors/semantic.mjs +7 -7
  17. package/dist/colors/types.d.ts +3 -2
  18. package/dist/colors.d.ts +1 -1
  19. package/dist/colors.js +12 -6
  20. package/dist/colors.mjs +2 -2
  21. package/dist/components/accordion.d.ts +4 -4
  22. package/dist/components/accordion.js +3 -4
  23. package/dist/components/accordion.mjs +1 -1
  24. package/dist/components/card.js +2 -3
  25. package/dist/components/card.mjs +1 -1
  26. package/dist/components/dropdown.d.ts +2 -2
  27. package/dist/components/dropdown.js +3 -4
  28. package/dist/components/dropdown.mjs +1 -1
  29. package/dist/components/index.js +13 -17
  30. package/dist/components/index.mjs +7 -7
  31. package/dist/components/modal.js +2 -3
  32. package/dist/components/modal.mjs +1 -1
  33. package/dist/components/popover.js +1 -1
  34. package/dist/components/popover.mjs +1 -1
  35. package/dist/components/table.js +1 -1
  36. package/dist/components/table.mjs +1 -1
  37. package/dist/components/tabs.js +1 -1
  38. package/dist/components/tabs.mjs +1 -1
  39. package/dist/index.d.ts +1 -1
  40. package/dist/index.js +25 -23
  41. package/dist/index.mjs +12 -12
  42. package/dist/plugin.js +12 -6
  43. package/dist/plugin.mjs +5 -5
  44. package/dist/utilities/index.mjs +2 -2
  45. package/package.json +1 -1
  46. package/dist/{chunk-OQGOVMIP.mjs → chunk-UNQJ7BRW.mjs} +3 -3
@@ -1,12 +1,12 @@
1
1
  import {
2
2
  utilities
3
- } from "./chunk-OQGOVMIP.mjs";
3
+ } from "./chunk-UNQJ7BRW.mjs";
4
4
  import {
5
5
  baseStyles
6
6
  } from "./chunk-G2ZSNGR5.mjs";
7
7
  import {
8
8
  semanticColors
9
- } from "./chunk-33WV5XLR.mjs";
9
+ } from "./chunk-BWO5RTQF.mjs";
10
10
  import {
11
11
  removeDefaultKeys
12
12
  } from "./chunk-37PIXVP4.mjs";
@@ -9,7 +9,7 @@ var accordion = tv({
9
9
  variants: {
10
10
  variant: {
11
11
  light: "",
12
- shadow: "px-4 shadow-lg rounded-xl bg-background dark:bg-content1 border border-default-100",
12
+ shadow: "px-4 shadow-lg rounded-xl bg-content1 border border-boundary",
13
13
  bordered: "px-4 border border-divider rounded-lg",
14
14
  splitted: "group is-splitted flex flex-col gap-2"
15
15
  },
@@ -28,12 +28,11 @@ var accordionItem = tv({
28
28
  "border-divider",
29
29
  "[&:not(:last-of-type)]:border-b",
30
30
  "group-[.is-splitted]:px-4",
31
- "group-[.is-splitted]:bg-background",
32
- "dark:group-[.is-splitted]:bg-content1",
31
+ "group-[.is-splitted]:bg-content1",
33
32
  "group-[.is-splitted]:shadow-lg",
34
33
  "group-[.is-splitted]:rounded-lg",
35
34
  "group-[.is-splitted]:border",
36
- "group-[.is-splitted]:border-default-100"
35
+ "group-[.is-splitted]:border-boundary"
37
36
  ],
38
37
  heading: "",
39
38
  trigger: [
@@ -14,7 +14,7 @@ var table = tv({
14
14
  "justify-between",
15
15
  "gap-4",
16
16
  "border",
17
- "border-default-100",
17
+ "border-boundary",
18
18
  "overflow-auto"
19
19
  ],
20
20
  table: "min-w-full h-auto",
@@ -20,12 +20,15 @@ var base = {
20
20
  divider: {
21
21
  DEFAULT: "rgba(17, 17, 17, 0.15)"
22
22
  },
23
+ boundary: {
24
+ DEFAULT: twColors.zinc[100]
25
+ },
23
26
  focus: {
24
27
  DEFAULT: commonColors.blue[500]
25
28
  },
26
29
  content1: {
27
- DEFAULT: twColors.zinc[50],
28
- foreground: twColors.zinc[900]
30
+ DEFAULT: "#ffffff",
31
+ foreground: "#11181C"
29
32
  },
30
33
  content2: {
31
34
  DEFAULT: twColors.zinc[100],
@@ -54,6 +57,9 @@ var base = {
54
57
  divider: {
55
58
  DEFAULT: "rgba(255, 255, 255, 0.15)"
56
59
  },
60
+ boundary: {
61
+ DEFAULT: twColors.zinc[800]
62
+ },
57
63
  content1: {
58
64
  DEFAULT: twColors.zinc[900],
59
65
  foreground: twColors.zinc[50]
@@ -72,7 +78,7 @@ var base = {
72
78
  }
73
79
  }
74
80
  };
75
- var semanticColorsLight = {
81
+ var brandColorsLight = {
76
82
  ...base.light,
77
83
  default: {
78
84
  ...twColors.zinc,
@@ -105,7 +111,7 @@ var semanticColorsLight = {
105
111
  DEFAULT: commonColors.red[500]
106
112
  }
107
113
  };
108
- var semanticColorsDark = {
114
+ var brandColorsDark = {
109
115
  ...base.dark,
110
116
  default: {
111
117
  ...swapColorValues(twColors.zinc),
@@ -139,12 +145,12 @@ var semanticColorsDark = {
139
145
  }
140
146
  };
141
147
  var semanticColors = {
142
- light: semanticColorsLight,
143
- dark: semanticColorsDark
148
+ light: brandColorsLight,
149
+ dark: brandColorsDark
144
150
  };
145
151
 
146
152
  export {
147
- semanticColorsLight,
148
- semanticColorsDark,
153
+ brandColorsLight,
154
+ brandColorsDark,
149
155
  semanticColors
150
156
  };
@@ -191,7 +191,7 @@ var tabs = tv({
191
191
  variant: ["solid", "bordered", "light"],
192
192
  color: "default",
193
193
  class: {
194
- cursor: ["bg-background", "dark:bg-default", "border border-default-100 dark:border-none"],
194
+ cursor: ["bg-background", "dark:bg-default", "border border-boundary dark:border-none"],
195
195
  tabContent: "group-data-[selected=true]:text-default-foreground"
196
196
  }
197
197
  },
@@ -15,9 +15,8 @@ var card = tv({
15
15
  "outline-none",
16
16
  "text-foreground",
17
17
  "box-border",
18
- "bg-background",
19
- "dark:bg-content1",
20
- "border border-default-100",
18
+ "bg-content1",
19
+ "border border-boundary",
21
20
  ...dataFocusVisibleClasses
22
21
  ],
23
22
  header: [
@@ -70,7 +70,7 @@ var popover = tv({
70
70
  },
71
71
  color: {
72
72
  default: {
73
- base: "bg-background dark:bg-content1 border border-default-100"
73
+ base: "bg-content1 border border-boundary"
74
74
  },
75
75
  foreground: {
76
76
  base: colorVariants.solid.foreground
@@ -26,9 +26,8 @@ var modal = tv({
26
26
  "z-50",
27
27
  "w-full",
28
28
  "box-border",
29
- "bg-background",
30
- "dark:bg-content1",
31
- "border border-default-100",
29
+ "bg-content1",
30
+ "border border-boundary",
32
31
  "outline-none",
33
32
  "mx-6",
34
33
  "my-16"
@@ -11,10 +11,9 @@ var dropdown = tv({
11
11
  "min-w-[200px]",
12
12
  "shadow",
13
13
  "shadow-lg",
14
- "bg-white",
15
- "dark:bg-content1",
14
+ "bg-content1",
16
15
  "border",
17
- "border-default-100"
16
+ "border-boundary"
18
17
  ]
19
18
  });
20
19
  var dropdownItem = tv({
@@ -369,7 +368,7 @@ var dropdownItem = tv({
369
368
  });
370
369
  var dropdownSection = tv({
371
370
  slots: {
372
- section: "relative mb-2",
371
+ base: "relative mb-2",
373
372
  heading: "pl-1 text-xs text-foreground-500",
374
373
  group: "pt-1"
375
374
  },
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  semanticColors
3
- } from "./chunk-33WV5XLR.mjs";
3
+ } from "./chunk-BWO5RTQF.mjs";
4
4
  import {
5
5
  commonColors
6
6
  } from "./chunk-5LKRUH3Q.mjs";
@@ -1,11 +1,11 @@
1
- import { SemanticColors } from './types.js';
1
+ import { BrandColors } from './types.js';
2
2
  export { BaseColors, ColorScale, SemanticBaseColors } from './types.js';
3
3
  export { commonColors } from './common.js';
4
4
  export { semanticColors } from './semantic.js';
5
5
 
6
6
  declare const colors: {
7
- light: SemanticColors;
8
- dark: SemanticColors;
7
+ light: BrandColors;
8
+ dark: BrandColors;
9
9
  white: string;
10
10
  black: string;
11
11
  blue: {
@@ -94,4 +94,4 @@ declare const colors: {
94
94
  };
95
95
  };
96
96
 
97
- export { SemanticColors, colors };
97
+ export { BrandColors, colors };
@@ -178,12 +178,15 @@ var base = {
178
178
  divider: {
179
179
  DEFAULT: "rgba(17, 17, 17, 0.15)"
180
180
  },
181
+ boundary: {
182
+ DEFAULT: import_colors.default.zinc[100]
183
+ },
181
184
  focus: {
182
185
  DEFAULT: commonColors.blue[500]
183
186
  },
184
187
  content1: {
185
- DEFAULT: import_colors.default.zinc[50],
186
- foreground: import_colors.default.zinc[900]
188
+ DEFAULT: "#ffffff",
189
+ foreground: "#11181C"
187
190
  },
188
191
  content2: {
189
192
  DEFAULT: import_colors.default.zinc[100],
@@ -212,6 +215,9 @@ var base = {
212
215
  divider: {
213
216
  DEFAULT: "rgba(255, 255, 255, 0.15)"
214
217
  },
218
+ boundary: {
219
+ DEFAULT: import_colors.default.zinc[800]
220
+ },
215
221
  content1: {
216
222
  DEFAULT: import_colors.default.zinc[900],
217
223
  foreground: import_colors.default.zinc[50]
@@ -230,7 +236,7 @@ var base = {
230
236
  }
231
237
  }
232
238
  };
233
- var semanticColorsLight = {
239
+ var brandColorsLight = {
234
240
  ...base.light,
235
241
  default: {
236
242
  ...import_colors.default.zinc,
@@ -263,7 +269,7 @@ var semanticColorsLight = {
263
269
  DEFAULT: commonColors.red[500]
264
270
  }
265
271
  };
266
- var semanticColorsDark = {
272
+ var brandColorsDark = {
267
273
  ...base.dark,
268
274
  default: {
269
275
  ...swapColorValues(import_colors.default.zinc),
@@ -297,8 +303,8 @@ var semanticColorsDark = {
297
303
  }
298
304
  };
299
305
  var semanticColors = {
300
- light: semanticColorsLight,
301
- dark: semanticColorsDark
306
+ light: brandColorsLight,
307
+ dark: brandColorsDark
302
308
  };
303
309
 
304
310
  // src/colors/index.ts
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  colors
3
- } from "../chunk-FRXURFBW.mjs";
3
+ } from "../chunk-TFIDBELY.mjs";
4
4
  import {
5
5
  semanticColors
6
- } from "../chunk-33WV5XLR.mjs";
6
+ } from "../chunk-BWO5RTQF.mjs";
7
7
  import "../chunk-37PIXVP4.mjs";
8
8
  import "../chunk-M63AFAHO.mjs";
9
9
  import {
@@ -1,10 +1,10 @@
1
- import { SemanticColors } from './types.js';
1
+ import { BrandColors } from './types.js';
2
2
 
3
- declare const semanticColorsLight: SemanticColors;
4
- declare const semanticColorsDark: SemanticColors;
3
+ declare const brandColorsLight: BrandColors;
4
+ declare const brandColorsDark: BrandColors;
5
5
  declare const semanticColors: {
6
- light: SemanticColors;
7
- dark: SemanticColors;
6
+ light: BrandColors;
7
+ dark: BrandColors;
8
8
  };
9
9
 
10
- export { semanticColors, semanticColorsDark, semanticColorsLight };
10
+ export { brandColorsDark, brandColorsLight, semanticColors };
@@ -26,9 +26,9 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
26
26
  // src/colors/semantic.ts
27
27
  var semantic_exports = {};
28
28
  __export(semantic_exports, {
29
- semanticColors: () => semanticColors,
30
- semanticColorsDark: () => semanticColorsDark,
31
- semanticColorsLight: () => semanticColorsLight
29
+ brandColorsDark: () => brandColorsDark,
30
+ brandColorsLight: () => brandColorsLight,
31
+ semanticColors: () => semanticColors
32
32
  });
33
33
  module.exports = __toCommonJS(semantic_exports);
34
34
  var import_colors = __toESM(require("tailwindcss/colors.js"));
@@ -176,12 +176,15 @@ var base = {
176
176
  divider: {
177
177
  DEFAULT: "rgba(17, 17, 17, 0.15)"
178
178
  },
179
+ boundary: {
180
+ DEFAULT: import_colors.default.zinc[100]
181
+ },
179
182
  focus: {
180
183
  DEFAULT: commonColors.blue[500]
181
184
  },
182
185
  content1: {
183
- DEFAULT: import_colors.default.zinc[50],
184
- foreground: import_colors.default.zinc[900]
186
+ DEFAULT: "#ffffff",
187
+ foreground: "#11181C"
185
188
  },
186
189
  content2: {
187
190
  DEFAULT: import_colors.default.zinc[100],
@@ -210,6 +213,9 @@ var base = {
210
213
  divider: {
211
214
  DEFAULT: "rgba(255, 255, 255, 0.15)"
212
215
  },
216
+ boundary: {
217
+ DEFAULT: import_colors.default.zinc[800]
218
+ },
213
219
  content1: {
214
220
  DEFAULT: import_colors.default.zinc[900],
215
221
  foreground: import_colors.default.zinc[50]
@@ -228,7 +234,7 @@ var base = {
228
234
  }
229
235
  }
230
236
  };
231
- var semanticColorsLight = {
237
+ var brandColorsLight = {
232
238
  ...base.light,
233
239
  default: {
234
240
  ...import_colors.default.zinc,
@@ -261,7 +267,7 @@ var semanticColorsLight = {
261
267
  DEFAULT: commonColors.red[500]
262
268
  }
263
269
  };
264
- var semanticColorsDark = {
270
+ var brandColorsDark = {
265
271
  ...base.dark,
266
272
  default: {
267
273
  ...swapColorValues(import_colors.default.zinc),
@@ -295,12 +301,12 @@ var semanticColorsDark = {
295
301
  }
296
302
  };
297
303
  var semanticColors = {
298
- light: semanticColorsLight,
299
- dark: semanticColorsDark
304
+ light: brandColorsLight,
305
+ dark: brandColorsDark
300
306
  };
301
307
  // Annotate the CommonJS export names for ESM import in node:
302
308
  0 && (module.exports = {
303
- semanticColors,
304
- semanticColorsDark,
305
- semanticColorsLight
309
+ brandColorsDark,
310
+ brandColorsLight,
311
+ semanticColors
306
312
  });
@@ -1,8 +1,8 @@
1
1
  import {
2
- semanticColors,
3
- semanticColorsDark,
4
- semanticColorsLight
5
- } from "../chunk-33WV5XLR.mjs";
2
+ brandColorsDark,
3
+ brandColorsLight,
4
+ semanticColors
5
+ } from "../chunk-BWO5RTQF.mjs";
6
6
  import "../chunk-37PIXVP4.mjs";
7
7
  import "../chunk-5LKRUH3Q.mjs";
8
8
  import "../chunk-DCEG5LGX.mjs";
@@ -13,7 +13,7 @@ import "../chunk-DYAPDM2A.mjs";
13
13
  import "../chunk-T3GWIVAM.mjs";
14
14
  import "../chunk-OR5PUD24.mjs";
15
15
  export {
16
- semanticColors,
17
- semanticColorsDark,
18
- semanticColorsLight
16
+ brandColorsDark,
17
+ brandColorsLight,
18
+ semanticColors
19
19
  };
@@ -16,13 +16,14 @@ type BaseColors = {
16
16
  background: ColorScale;
17
17
  foreground: ColorScale;
18
18
  divider: ColorScale;
19
+ boundary: ColorScale;
19
20
  focus: ColorScale;
20
21
  content1: ColorScale;
21
22
  content2: ColorScale;
22
23
  content3: ColorScale;
23
24
  content4: ColorScale;
24
25
  };
25
- type SemanticColors = BaseColors & {
26
+ type BrandColors = BaseColors & {
26
27
  default: ColorScale;
27
28
  primary: ColorScale;
28
29
  secondary: ColorScale;
@@ -35,4 +36,4 @@ type SemanticBaseColors = {
35
36
  dark: BaseColors;
36
37
  };
37
38
 
38
- export { BaseColors, ColorScale, SemanticBaseColors, SemanticColors };
39
+ export { BaseColors, BrandColors, ColorScale, SemanticBaseColors };
package/dist/colors.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  export { colors } from './colors/index.js';
2
- export { BaseColors, ColorScale, SemanticBaseColors, SemanticColors } from './colors/types.js';
2
+ export { BaseColors, BrandColors, ColorScale, SemanticBaseColors } from './colors/types.js';
3
3
  export { commonColors } from './colors/common.js';
4
4
  export { semanticColors } from './colors/semantic.js';
package/dist/colors.js CHANGED
@@ -178,12 +178,15 @@ var base = {
178
178
  divider: {
179
179
  DEFAULT: "rgba(17, 17, 17, 0.15)"
180
180
  },
181
+ boundary: {
182
+ DEFAULT: import_colors.default.zinc[100]
183
+ },
181
184
  focus: {
182
185
  DEFAULT: commonColors.blue[500]
183
186
  },
184
187
  content1: {
185
- DEFAULT: import_colors.default.zinc[50],
186
- foreground: import_colors.default.zinc[900]
188
+ DEFAULT: "#ffffff",
189
+ foreground: "#11181C"
187
190
  },
188
191
  content2: {
189
192
  DEFAULT: import_colors.default.zinc[100],
@@ -212,6 +215,9 @@ var base = {
212
215
  divider: {
213
216
  DEFAULT: "rgba(255, 255, 255, 0.15)"
214
217
  },
218
+ boundary: {
219
+ DEFAULT: import_colors.default.zinc[800]
220
+ },
215
221
  content1: {
216
222
  DEFAULT: import_colors.default.zinc[900],
217
223
  foreground: import_colors.default.zinc[50]
@@ -230,7 +236,7 @@ var base = {
230
236
  }
231
237
  }
232
238
  };
233
- var semanticColorsLight = {
239
+ var brandColorsLight = {
234
240
  ...base.light,
235
241
  default: {
236
242
  ...import_colors.default.zinc,
@@ -263,7 +269,7 @@ var semanticColorsLight = {
263
269
  DEFAULT: commonColors.red[500]
264
270
  }
265
271
  };
266
- var semanticColorsDark = {
272
+ var brandColorsDark = {
267
273
  ...base.dark,
268
274
  default: {
269
275
  ...swapColorValues(import_colors.default.zinc),
@@ -297,8 +303,8 @@ var semanticColorsDark = {
297
303
  }
298
304
  };
299
305
  var semanticColors = {
300
- light: semanticColorsLight,
301
- dark: semanticColorsDark
306
+ light: brandColorsLight,
307
+ dark: brandColorsDark
302
308
  };
303
309
 
304
310
  // src/colors/index.ts
package/dist/colors.mjs CHANGED
@@ -1,10 +1,10 @@
1
1
  import "./chunk-WQEDQHKX.mjs";
2
2
  import {
3
3
  colors
4
- } from "./chunk-FRXURFBW.mjs";
4
+ } from "./chunk-TFIDBELY.mjs";
5
5
  import {
6
6
  semanticColors
7
- } from "./chunk-33WV5XLR.mjs";
7
+ } from "./chunk-BWO5RTQF.mjs";
8
8
  import "./chunk-37PIXVP4.mjs";
9
9
  import "./chunk-M63AFAHO.mjs";
10
10
  import {
@@ -15,7 +15,7 @@ import * as tailwind_variants_dist_config from 'tailwind-variants/dist/config';
15
15
  declare const accordion: tailwind_variants.TVReturnType<{
16
16
  variant: {
17
17
  light: "";
18
- shadow: "px-4 shadow-lg rounded-xl bg-background dark:bg-content1 border border-default-100";
18
+ shadow: "px-4 shadow-lg rounded-xl bg-content1 border border-boundary";
19
19
  bordered: "px-4 border border-divider rounded-lg";
20
20
  splitted: "group is-splitted flex flex-col gap-2";
21
21
  };
@@ -25,7 +25,7 @@ declare const accordion: tailwind_variants.TVReturnType<{
25
25
  }, undefined, "px-2", tailwind_variants_dist_config.TVConfig<{
26
26
  variant: {
27
27
  light: "";
28
- shadow: "px-4 shadow-lg rounded-xl bg-background dark:bg-content1 border border-default-100";
28
+ shadow: "px-4 shadow-lg rounded-xl bg-content1 border border-boundary";
29
29
  bordered: "px-4 border border-divider rounded-lg";
30
30
  splitted: "group is-splitted flex flex-col gap-2";
31
31
  };
@@ -35,7 +35,7 @@ declare const accordion: tailwind_variants.TVReturnType<{
35
35
  }, {
36
36
  variant: {
37
37
  light: "";
38
- shadow: "px-4 shadow-lg rounded-xl bg-background dark:bg-content1 border border-default-100";
38
+ shadow: "px-4 shadow-lg rounded-xl bg-content1 border border-boundary";
39
39
  bordered: "px-4 border border-divider rounded-lg";
40
40
  splitted: "group is-splitted flex flex-col gap-2";
41
41
  };
@@ -45,7 +45,7 @@ declare const accordion: tailwind_variants.TVReturnType<{
45
45
  }>, {
46
46
  variant: {
47
47
  light: "";
48
- shadow: "px-4 shadow-lg rounded-xl bg-background dark:bg-content1 border border-default-100";
48
+ shadow: "px-4 shadow-lg rounded-xl bg-content1 border border-boundary";
49
49
  bordered: "px-4 border border-divider rounded-lg";
50
50
  splitted: "group is-splitted flex flex-col gap-2";
51
51
  };
@@ -43,7 +43,7 @@ var accordion = (0, import_tailwind_variants.tv)({
43
43
  variants: {
44
44
  variant: {
45
45
  light: "",
46
- shadow: "px-4 shadow-lg rounded-xl bg-background dark:bg-content1 border border-default-100",
46
+ shadow: "px-4 shadow-lg rounded-xl bg-content1 border border-boundary",
47
47
  bordered: "px-4 border border-divider rounded-lg",
48
48
  splitted: "group is-splitted flex flex-col gap-2"
49
49
  },
@@ -62,12 +62,11 @@ var accordionItem = (0, import_tailwind_variants.tv)({
62
62
  "border-divider",
63
63
  "[&:not(:last-of-type)]:border-b",
64
64
  "group-[.is-splitted]:px-4",
65
- "group-[.is-splitted]:bg-background",
66
- "dark:group-[.is-splitted]:bg-content1",
65
+ "group-[.is-splitted]:bg-content1",
67
66
  "group-[.is-splitted]:shadow-lg",
68
67
  "group-[.is-splitted]:rounded-lg",
69
68
  "group-[.is-splitted]:border",
70
- "group-[.is-splitted]:border-default-100"
69
+ "group-[.is-splitted]:border-boundary"
71
70
  ],
72
71
  heading: "",
73
72
  trigger: [
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  accordion,
3
3
  accordionItem
4
- } from "../chunk-ZGAYYMFF.mjs";
4
+ } from "../chunk-7ZE4XJWS.mjs";
5
5
  import "../chunk-CMYR6AOY.mjs";
6
6
  import "../chunk-K7LK7NCE.mjs";
7
7
  import "../chunk-CEW7YOHH.mjs";
@@ -48,9 +48,8 @@ var card = (0, import_tailwind_variants.tv)({
48
48
  "outline-none",
49
49
  "text-foreground",
50
50
  "box-border",
51
- "bg-background",
52
- "dark:bg-content1",
53
- "border border-default-100",
51
+ "bg-content1",
52
+ "border border-boundary",
54
53
  ...dataFocusVisibleClasses
55
54
  ],
56
55
  header: [
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  card
3
- } from "../chunk-AUYFXGLC.mjs";
3
+ } from "../chunk-P455YPME.mjs";
4
4
  import "../chunk-CMYR6AOY.mjs";
5
5
  import "../chunk-K7LK7NCE.mjs";
6
6
  import "../chunk-CEW7YOHH.mjs";
@@ -251,7 +251,7 @@ declare const dropdownSection: tailwind_variants.TVReturnType<{
251
251
  };
252
252
  };
253
253
  }, {
254
- section: string;
254
+ base: string;
255
255
  heading: string;
256
256
  group: string;
257
257
  }, undefined, tailwind_variants_dist_config.TVConfig<{
@@ -273,7 +273,7 @@ declare const dropdownSection: tailwind_variants.TVReturnType<{
273
273
  };
274
274
  };
275
275
  }, {
276
- section: string;
276
+ base: string;
277
277
  heading: string;
278
278
  group: string;
279
279
  }>;
@@ -47,10 +47,9 @@ var dropdown = (0, import_tailwind_variants.tv)({
47
47
  "min-w-[200px]",
48
48
  "shadow",
49
49
  "shadow-lg",
50
- "bg-white",
51
- "dark:bg-content1",
50
+ "bg-content1",
52
51
  "border",
53
- "border-default-100"
52
+ "border-boundary"
54
53
  ]
55
54
  });
56
55
  var dropdownItem = (0, import_tailwind_variants.tv)({
@@ -405,7 +404,7 @@ var dropdownItem = (0, import_tailwind_variants.tv)({
405
404
  });
406
405
  var dropdownSection = (0, import_tailwind_variants.tv)({
407
406
  slots: {
408
- section: "relative mb-2",
407
+ base: "relative mb-2",
409
408
  heading: "pl-1 text-xs text-foreground-500",
410
409
  group: "pt-1"
411
410
  },
@@ -3,7 +3,7 @@ import {
3
3
  dropdownItem,
4
4
  dropdownMenu,
5
5
  dropdownSection
6
- } from "../chunk-SDZJAVPQ.mjs";
6
+ } from "../chunk-SFF5YUZA.mjs";
7
7
  import "../chunk-CMYR6AOY.mjs";
8
8
  import "../chunk-K7LK7NCE.mjs";
9
9
  import "../chunk-CEW7YOHH.mjs";
@@ -379,9 +379,8 @@ var card = (0, import_tailwind_variants2.tv)({
379
379
  "outline-none",
380
380
  "text-foreground",
381
381
  "box-border",
382
- "bg-background",
383
- "dark:bg-content1",
384
- "border border-default-100",
382
+ "bg-content1",
383
+ "border border-boundary",
385
384
  ...dataFocusVisibleClasses
386
385
  ],
387
386
  header: [
@@ -1285,7 +1284,7 @@ var popover = (0, import_tailwind_variants9.tv)({
1285
1284
  },
1286
1285
  color: {
1287
1286
  default: {
1288
- base: "bg-background dark:bg-content1 border border-default-100"
1287
+ base: "bg-content1 border border-boundary"
1289
1288
  },
1290
1289
  foreground: {
1291
1290
  base: colorVariants.solid.foreground
@@ -3412,7 +3411,7 @@ var accordion = (0, import_tailwind_variants17.tv)({
3412
3411
  variants: {
3413
3412
  variant: {
3414
3413
  light: "",
3415
- shadow: "px-4 shadow-lg rounded-xl bg-background dark:bg-content1 border border-default-100",
3414
+ shadow: "px-4 shadow-lg rounded-xl bg-content1 border border-boundary",
3416
3415
  bordered: "px-4 border border-divider rounded-lg",
3417
3416
  splitted: "group is-splitted flex flex-col gap-2"
3418
3417
  },
@@ -3431,12 +3430,11 @@ var accordionItem = (0, import_tailwind_variants17.tv)({
3431
3430
  "border-divider",
3432
3431
  "[&:not(:last-of-type)]:border-b",
3433
3432
  "group-[.is-splitted]:px-4",
3434
- "group-[.is-splitted]:bg-background",
3435
- "dark:group-[.is-splitted]:bg-content1",
3433
+ "group-[.is-splitted]:bg-content1",
3436
3434
  "group-[.is-splitted]:shadow-lg",
3437
3435
  "group-[.is-splitted]:rounded-lg",
3438
3436
  "group-[.is-splitted]:border",
3439
- "group-[.is-splitted]:border-default-100"
3437
+ "group-[.is-splitted]:border-boundary"
3440
3438
  ],
3441
3439
  heading: "",
3442
3440
  trigger: [
@@ -4536,10 +4534,9 @@ var dropdown = (0, import_tailwind_variants21.tv)({
4536
4534
  "min-w-[200px]",
4537
4535
  "shadow",
4538
4536
  "shadow-lg",
4539
- "bg-white",
4540
- "dark:bg-content1",
4537
+ "bg-content1",
4541
4538
  "border",
4542
- "border-default-100"
4539
+ "border-boundary"
4543
4540
  ]
4544
4541
  });
4545
4542
  var dropdownItem = (0, import_tailwind_variants21.tv)({
@@ -4894,7 +4891,7 @@ var dropdownItem = (0, import_tailwind_variants21.tv)({
4894
4891
  });
4895
4892
  var dropdownSection = (0, import_tailwind_variants21.tv)({
4896
4893
  slots: {
4897
- section: "relative mb-2",
4894
+ base: "relative mb-2",
4898
4895
  heading: "pl-1 text-xs text-foreground-500",
4899
4896
  group: "pt-1"
4900
4897
  },
@@ -5111,9 +5108,8 @@ var modal = (0, import_tailwind_variants23.tv)({
5111
5108
  "z-50",
5112
5109
  "w-full",
5113
5110
  "box-border",
5114
- "bg-background",
5115
- "dark:bg-content1",
5116
- "border border-default-100",
5111
+ "bg-content1",
5112
+ "border border-boundary",
5117
5113
  "outline-none",
5118
5114
  "mx-6",
5119
5115
  "my-16"
@@ -5444,7 +5440,7 @@ var table = (0, import_tailwind_variants25.tv)({
5444
5440
  "justify-between",
5445
5441
  "gap-4",
5446
5442
  "border",
5447
- "border-default-100",
5443
+ "border-boundary",
5448
5444
  "overflow-auto"
5449
5445
  ],
5450
5446
  table: "min-w-full h-auto",
@@ -5874,7 +5870,7 @@ var tabs = (0, import_tailwind_variants29.tv)({
5874
5870
  variant: ["solid", "bordered", "light"],
5875
5871
  color: "default",
5876
5872
  class: {
5877
- cursor: ["bg-background", "dark:bg-default", "border border-default-100 dark:border-none"],
5873
+ cursor: ["bg-background", "dark:bg-default", "border border-boundary dark:border-none"],
5878
5874
  tabContent: "group-data-[selected=true]:text-default-foreground"
5879
5875
  }
5880
5876
  },
@@ -7,10 +7,10 @@ import {
7
7
  } from "../chunk-HOQUCE4N.mjs";
8
8
  import {
9
9
  table
10
- } from "../chunk-KPXLNSHI.mjs";
10
+ } from "../chunk-ACERSXMK.mjs";
11
11
  import {
12
12
  tabs
13
- } from "../chunk-34DKOA3F.mjs";
13
+ } from "../chunk-DN3YP75Q.mjs";
14
14
  import {
15
15
  toggle
16
16
  } from "../chunk-C3VRXEKA.mjs";
@@ -19,7 +19,7 @@ import {
19
19
  } from "../chunk-FAR5DJOU.mjs";
20
20
  import {
21
21
  modal
22
- } from "../chunk-JLTOTD4Y.mjs";
22
+ } from "../chunk-RB2RANUL.mjs";
23
23
  import {
24
24
  navbar
25
25
  } from "../chunk-AOWZVYD6.mjs";
@@ -28,7 +28,7 @@ import {
28
28
  } from "../chunk-NIPJ5ETA.mjs";
29
29
  import {
30
30
  popover
31
- } from "../chunk-DJPVJIVC.mjs";
31
+ } from "../chunk-QJZSBDVH.mjs";
32
32
  import {
33
33
  progress
34
34
  } from "../chunk-BHHIVMOY.mjs";
@@ -53,7 +53,7 @@ import {
53
53
  dropdownItem,
54
54
  dropdownMenu,
55
55
  dropdownSection
56
- } from "../chunk-SDZJAVPQ.mjs";
56
+ } from "../chunk-SFF5YUZA.mjs";
57
57
  import {
58
58
  image
59
59
  } from "../chunk-46ZSXBCH.mjs";
@@ -80,7 +80,7 @@ import {
80
80
  } from "../chunk-WNUIORY5.mjs";
81
81
  import {
82
82
  card
83
- } from "../chunk-AUYFXGLC.mjs";
83
+ } from "../chunk-P455YPME.mjs";
84
84
  import {
85
85
  checkbox,
86
86
  checkboxGroup
@@ -97,7 +97,7 @@ import {
97
97
  import {
98
98
  accordion,
99
99
  accordionItem
100
- } from "../chunk-ZGAYYMFF.mjs";
100
+ } from "../chunk-7ZE4XJWS.mjs";
101
101
  import "../chunk-CMYR6AOY.mjs";
102
102
  import "../chunk-K7LK7NCE.mjs";
103
103
  import "../chunk-CEW7YOHH.mjs";
@@ -59,9 +59,8 @@ var modal = (0, import_tailwind_variants.tv)({
59
59
  "z-50",
60
60
  "w-full",
61
61
  "box-border",
62
- "bg-background",
63
- "dark:bg-content1",
64
- "border border-default-100",
62
+ "bg-content1",
63
+ "border border-boundary",
65
64
  "outline-none",
66
65
  "mx-6",
67
66
  "my-16"
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  modal
3
- } from "../chunk-JLTOTD4Y.mjs";
3
+ } from "../chunk-RB2RANUL.mjs";
4
4
  import "../chunk-CMYR6AOY.mjs";
5
5
  import "../chunk-K7LK7NCE.mjs";
6
6
  import "../chunk-CEW7YOHH.mjs";
@@ -174,7 +174,7 @@ var popover = (0, import_tailwind_variants.tv)({
174
174
  },
175
175
  color: {
176
176
  default: {
177
- base: "bg-background dark:bg-content1 border border-default-100"
177
+ base: "bg-content1 border border-boundary"
178
178
  },
179
179
  foreground: {
180
180
  base: colorVariants.solid.foreground
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  popover
3
- } from "../chunk-DJPVJIVC.mjs";
3
+ } from "../chunk-QJZSBDVH.mjs";
4
4
  import "../chunk-CMYR6AOY.mjs";
5
5
  import "../chunk-K7LK7NCE.mjs";
6
6
  import "../chunk-CEW7YOHH.mjs";
@@ -47,7 +47,7 @@ var table = (0, import_tailwind_variants.tv)({
47
47
  "justify-between",
48
48
  "gap-4",
49
49
  "border",
50
- "border-default-100",
50
+ "border-boundary",
51
51
  "overflow-auto"
52
52
  ],
53
53
  table: "min-w-full h-auto",
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  table
3
- } from "../chunk-KPXLNSHI.mjs";
3
+ } from "../chunk-ACERSXMK.mjs";
4
4
  import "../chunk-CMYR6AOY.mjs";
5
5
  import "../chunk-K7LK7NCE.mjs";
6
6
  import "../chunk-CEW7YOHH.mjs";
@@ -295,7 +295,7 @@ var tabs = (0, import_tailwind_variants.tv)({
295
295
  variant: ["solid", "bordered", "light"],
296
296
  color: "default",
297
297
  class: {
298
- cursor: ["bg-background", "dark:bg-default", "border border-default-100 dark:border-none"],
298
+ cursor: ["bg-background", "dark:bg-default", "border border-boundary dark:border-none"],
299
299
  tabContent: "group-data-[selected=true]:text-default-foreground"
300
300
  }
301
301
  },
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  tabs
3
- } from "../chunk-34DKOA3F.mjs";
3
+ } from "../chunk-DN3YP75Q.mjs";
4
4
  import "../chunk-CMYR6AOY.mjs";
5
5
  import "../chunk-K7LK7NCE.mjs";
6
6
  import "../chunk-CEW7YOHH.mjs";
package/dist/index.d.ts CHANGED
@@ -35,7 +35,7 @@ export { SlotsToClasses } from './utils/types.js';
35
35
  export { colorVariants } from './utils/variants.js';
36
36
  export { colors } from './colors/index.js';
37
37
  export { Colors, ColorsWithScheme, ConfigFunction, ConfigObject, DefaultThemeType, NextUIConfig, nextui } from './plugin.js';
38
- export { BaseColors, ColorScale, SemanticBaseColors, SemanticColors } from './colors/types.js';
38
+ export { BaseColors, BrandColors, ColorScale, SemanticBaseColors } from './colors/types.js';
39
39
  export { commonColors } from './colors/common.js';
40
40
  export { semanticColors } from './colors/semantic.js';
41
41
  import 'tailwind-variants/dist/config';
package/dist/index.js CHANGED
@@ -412,9 +412,8 @@ var card = (0, import_tailwind_variants2.tv)({
412
412
  "outline-none",
413
413
  "text-foreground",
414
414
  "box-border",
415
- "bg-background",
416
- "dark:bg-content1",
417
- "border border-default-100",
415
+ "bg-content1",
416
+ "border border-boundary",
418
417
  ...dataFocusVisibleClasses
419
418
  ],
420
419
  header: [
@@ -1318,7 +1317,7 @@ var popover = (0, import_tailwind_variants9.tv)({
1318
1317
  },
1319
1318
  color: {
1320
1319
  default: {
1321
- base: "bg-background dark:bg-content1 border border-default-100"
1320
+ base: "bg-content1 border border-boundary"
1322
1321
  },
1323
1322
  foreground: {
1324
1323
  base: colorVariants.solid.foreground
@@ -3445,7 +3444,7 @@ var accordion = (0, import_tailwind_variants17.tv)({
3445
3444
  variants: {
3446
3445
  variant: {
3447
3446
  light: "",
3448
- shadow: "px-4 shadow-lg rounded-xl bg-background dark:bg-content1 border border-default-100",
3447
+ shadow: "px-4 shadow-lg rounded-xl bg-content1 border border-boundary",
3449
3448
  bordered: "px-4 border border-divider rounded-lg",
3450
3449
  splitted: "group is-splitted flex flex-col gap-2"
3451
3450
  },
@@ -3464,12 +3463,11 @@ var accordionItem = (0, import_tailwind_variants17.tv)({
3464
3463
  "border-divider",
3465
3464
  "[&:not(:last-of-type)]:border-b",
3466
3465
  "group-[.is-splitted]:px-4",
3467
- "group-[.is-splitted]:bg-background",
3468
- "dark:group-[.is-splitted]:bg-content1",
3466
+ "group-[.is-splitted]:bg-content1",
3469
3467
  "group-[.is-splitted]:shadow-lg",
3470
3468
  "group-[.is-splitted]:rounded-lg",
3471
3469
  "group-[.is-splitted]:border",
3472
- "group-[.is-splitted]:border-default-100"
3470
+ "group-[.is-splitted]:border-boundary"
3473
3471
  ],
3474
3472
  heading: "",
3475
3473
  trigger: [
@@ -4569,10 +4567,9 @@ var dropdown = (0, import_tailwind_variants21.tv)({
4569
4567
  "min-w-[200px]",
4570
4568
  "shadow",
4571
4569
  "shadow-lg",
4572
- "bg-white",
4573
- "dark:bg-content1",
4570
+ "bg-content1",
4574
4571
  "border",
4575
- "border-default-100"
4572
+ "border-boundary"
4576
4573
  ]
4577
4574
  });
4578
4575
  var dropdownItem = (0, import_tailwind_variants21.tv)({
@@ -4927,7 +4924,7 @@ var dropdownItem = (0, import_tailwind_variants21.tv)({
4927
4924
  });
4928
4925
  var dropdownSection = (0, import_tailwind_variants21.tv)({
4929
4926
  slots: {
4930
- section: "relative mb-2",
4927
+ base: "relative mb-2",
4931
4928
  heading: "pl-1 text-xs text-foreground-500",
4932
4929
  group: "pt-1"
4933
4930
  },
@@ -5144,9 +5141,8 @@ var modal = (0, import_tailwind_variants23.tv)({
5144
5141
  "z-50",
5145
5142
  "w-full",
5146
5143
  "box-border",
5147
- "bg-background",
5148
- "dark:bg-content1",
5149
- "border border-default-100",
5144
+ "bg-content1",
5145
+ "border border-boundary",
5150
5146
  "outline-none",
5151
5147
  "mx-6",
5152
5148
  "my-16"
@@ -5477,7 +5473,7 @@ var table = (0, import_tailwind_variants25.tv)({
5477
5473
  "justify-between",
5478
5474
  "gap-4",
5479
5475
  "border",
5480
- "border-default-100",
5476
+ "border-boundary",
5481
5477
  "overflow-auto"
5482
5478
  ],
5483
5479
  table: "min-w-full h-auto",
@@ -5907,7 +5903,7 @@ var tabs = (0, import_tailwind_variants29.tv)({
5907
5903
  variant: ["solid", "bordered", "light"],
5908
5904
  color: "default",
5909
5905
  class: {
5910
- cursor: ["bg-background", "dark:bg-default", "border border-default-100 dark:border-none"],
5906
+ cursor: ["bg-background", "dark:bg-default", "border border-boundary dark:border-none"],
5911
5907
  tabContent: "group-data-[selected=true]:text-default-foreground"
5912
5908
  }
5913
5909
  },
@@ -6328,12 +6324,15 @@ var base = {
6328
6324
  divider: {
6329
6325
  DEFAULT: "rgba(17, 17, 17, 0.15)"
6330
6326
  },
6327
+ boundary: {
6328
+ DEFAULT: import_colors.default.zinc[100]
6329
+ },
6331
6330
  focus: {
6332
6331
  DEFAULT: commonColors.blue[500]
6333
6332
  },
6334
6333
  content1: {
6335
- DEFAULT: import_colors.default.zinc[50],
6336
- foreground: import_colors.default.zinc[900]
6334
+ DEFAULT: "#ffffff",
6335
+ foreground: "#11181C"
6337
6336
  },
6338
6337
  content2: {
6339
6338
  DEFAULT: import_colors.default.zinc[100],
@@ -6362,6 +6361,9 @@ var base = {
6362
6361
  divider: {
6363
6362
  DEFAULT: "rgba(255, 255, 255, 0.15)"
6364
6363
  },
6364
+ boundary: {
6365
+ DEFAULT: import_colors.default.zinc[800]
6366
+ },
6365
6367
  content1: {
6366
6368
  DEFAULT: import_colors.default.zinc[900],
6367
6369
  foreground: import_colors.default.zinc[50]
@@ -6380,7 +6382,7 @@ var base = {
6380
6382
  }
6381
6383
  }
6382
6384
  };
6383
- var semanticColorsLight = {
6385
+ var brandColorsLight = {
6384
6386
  ...base.light,
6385
6387
  default: {
6386
6388
  ...import_colors.default.zinc,
@@ -6413,7 +6415,7 @@ var semanticColorsLight = {
6413
6415
  DEFAULT: commonColors.red[500]
6414
6416
  }
6415
6417
  };
6416
- var semanticColorsDark = {
6418
+ var brandColorsDark = {
6417
6419
  ...base.dark,
6418
6420
  default: {
6419
6421
  ...swapColorValues(import_colors.default.zinc),
@@ -6447,8 +6449,8 @@ var semanticColorsDark = {
6447
6449
  }
6448
6450
  };
6449
6451
  var semanticColors = {
6450
- light: semanticColorsLight,
6451
- dark: semanticColorsDark
6452
+ light: brandColorsLight,
6453
+ dark: brandColorsDark
6452
6454
  };
6453
6455
 
6454
6456
  // src/colors/index.ts
package/dist/index.mjs CHANGED
@@ -7,10 +7,10 @@ import {
7
7
  } from "./chunk-HOQUCE4N.mjs";
8
8
  import {
9
9
  table
10
- } from "./chunk-KPXLNSHI.mjs";
10
+ } from "./chunk-ACERSXMK.mjs";
11
11
  import {
12
12
  tabs
13
- } from "./chunk-34DKOA3F.mjs";
13
+ } from "./chunk-DN3YP75Q.mjs";
14
14
  import {
15
15
  toggle
16
16
  } from "./chunk-C3VRXEKA.mjs";
@@ -19,7 +19,7 @@ import {
19
19
  } from "./chunk-FAR5DJOU.mjs";
20
20
  import {
21
21
  modal
22
- } from "./chunk-JLTOTD4Y.mjs";
22
+ } from "./chunk-RB2RANUL.mjs";
23
23
  import {
24
24
  navbar
25
25
  } from "./chunk-AOWZVYD6.mjs";
@@ -28,7 +28,7 @@ import {
28
28
  } from "./chunk-NIPJ5ETA.mjs";
29
29
  import {
30
30
  popover
31
- } from "./chunk-DJPVJIVC.mjs";
31
+ } from "./chunk-QJZSBDVH.mjs";
32
32
  import {
33
33
  progress
34
34
  } from "./chunk-BHHIVMOY.mjs";
@@ -53,7 +53,7 @@ import {
53
53
  dropdownItem,
54
54
  dropdownMenu,
55
55
  dropdownSection
56
- } from "./chunk-SDZJAVPQ.mjs";
56
+ } from "./chunk-SFF5YUZA.mjs";
57
57
  import {
58
58
  image
59
59
  } from "./chunk-46ZSXBCH.mjs";
@@ -80,7 +80,7 @@ import {
80
80
  } from "./chunk-WNUIORY5.mjs";
81
81
  import {
82
82
  card
83
- } from "./chunk-AUYFXGLC.mjs";
83
+ } from "./chunk-P455YPME.mjs";
84
84
  import {
85
85
  checkbox,
86
86
  checkboxGroup
@@ -97,7 +97,7 @@ import {
97
97
  import {
98
98
  accordion,
99
99
  accordionItem
100
- } from "./chunk-ZGAYYMFF.mjs";
100
+ } from "./chunk-7ZE4XJWS.mjs";
101
101
  import "./chunk-CMYR6AOY.mjs";
102
102
  import "./chunk-K7LK7NCE.mjs";
103
103
  import {
@@ -105,11 +105,11 @@ import {
105
105
  } from "./chunk-CEW7YOHH.mjs";
106
106
  import {
107
107
  nextui
108
- } from "./chunk-CDLGU7OD.mjs";
109
- import "./chunk-OQGOVMIP.mjs";
108
+ } from "./chunk-53FU66TE.mjs";
109
+ import "./chunk-UNQJ7BRW.mjs";
110
+ import "./chunk-DI2L75XK.mjs";
110
111
  import "./chunk-4Z22WXZX.mjs";
111
112
  import "./chunk-HJLDXSH7.mjs";
112
- import "./chunk-DI2L75XK.mjs";
113
113
  import {
114
114
  absoluteFullClasses,
115
115
  baseStyles,
@@ -122,10 +122,10 @@ import {
122
122
  import "./chunk-WQEDQHKX.mjs";
123
123
  import {
124
124
  colors
125
- } from "./chunk-FRXURFBW.mjs";
125
+ } from "./chunk-TFIDBELY.mjs";
126
126
  import {
127
127
  semanticColors
128
- } from "./chunk-33WV5XLR.mjs";
128
+ } from "./chunk-BWO5RTQF.mjs";
129
129
  import "./chunk-37PIXVP4.mjs";
130
130
  import "./chunk-M63AFAHO.mjs";
131
131
  import "./chunk-DMASP6FA.mjs";
package/dist/plugin.js CHANGED
@@ -194,12 +194,15 @@ var base = {
194
194
  divider: {
195
195
  DEFAULT: "rgba(17, 17, 17, 0.15)"
196
196
  },
197
+ boundary: {
198
+ DEFAULT: import_colors.default.zinc[100]
199
+ },
197
200
  focus: {
198
201
  DEFAULT: commonColors.blue[500]
199
202
  },
200
203
  content1: {
201
- DEFAULT: import_colors.default.zinc[50],
202
- foreground: import_colors.default.zinc[900]
204
+ DEFAULT: "#ffffff",
205
+ foreground: "#11181C"
203
206
  },
204
207
  content2: {
205
208
  DEFAULT: import_colors.default.zinc[100],
@@ -228,6 +231,9 @@ var base = {
228
231
  divider: {
229
232
  DEFAULT: "rgba(255, 255, 255, 0.15)"
230
233
  },
234
+ boundary: {
235
+ DEFAULT: import_colors.default.zinc[800]
236
+ },
231
237
  content1: {
232
238
  DEFAULT: import_colors.default.zinc[900],
233
239
  foreground: import_colors.default.zinc[50]
@@ -246,7 +252,7 @@ var base = {
246
252
  }
247
253
  }
248
254
  };
249
- var semanticColorsLight = {
255
+ var brandColorsLight = {
250
256
  ...base.light,
251
257
  default: {
252
258
  ...import_colors.default.zinc,
@@ -279,7 +285,7 @@ var semanticColorsLight = {
279
285
  DEFAULT: commonColors.red[500]
280
286
  }
281
287
  };
282
- var semanticColorsDark = {
288
+ var brandColorsDark = {
283
289
  ...base.dark,
284
290
  default: {
285
291
  ...swapColorValues(import_colors.default.zinc),
@@ -313,8 +319,8 @@ var semanticColorsDark = {
313
319
  }
314
320
  };
315
321
  var semanticColors = {
316
- light: semanticColorsLight,
317
- dark: semanticColorsDark
322
+ light: brandColorsLight,
323
+ dark: brandColorsDark
318
324
  };
319
325
 
320
326
  // src/colors/index.ts
package/dist/plugin.mjs CHANGED
@@ -1,14 +1,14 @@
1
1
  import {
2
2
  nextui
3
- } from "./chunk-CDLGU7OD.mjs";
4
- import "./chunk-OQGOVMIP.mjs";
3
+ } from "./chunk-53FU66TE.mjs";
4
+ import "./chunk-UNQJ7BRW.mjs";
5
+ import "./chunk-DI2L75XK.mjs";
5
6
  import "./chunk-4Z22WXZX.mjs";
6
7
  import "./chunk-HJLDXSH7.mjs";
7
- import "./chunk-DI2L75XK.mjs";
8
8
  import "./chunk-G2ZSNGR5.mjs";
9
9
  import "./chunk-WQEDQHKX.mjs";
10
- import "./chunk-FRXURFBW.mjs";
11
- import "./chunk-33WV5XLR.mjs";
10
+ import "./chunk-TFIDBELY.mjs";
11
+ import "./chunk-BWO5RTQF.mjs";
12
12
  import "./chunk-37PIXVP4.mjs";
13
13
  import "./chunk-M63AFAHO.mjs";
14
14
  import "./chunk-DMASP6FA.mjs";
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  utilities
3
- } from "../chunk-OQGOVMIP.mjs";
3
+ } from "../chunk-UNQJ7BRW.mjs";
4
+ import "../chunk-DI2L75XK.mjs";
4
5
  import "../chunk-4Z22WXZX.mjs";
5
6
  import "../chunk-HJLDXSH7.mjs";
6
- import "../chunk-DI2L75XK.mjs";
7
7
  export {
8
8
  utilities
9
9
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextui-org/theme",
3
- "version": "0.0.0-dev-v2-20230623225431",
3
+ "version": "0.0.0-dev-v2-20230624033637",
4
4
  "description": "The default theme for NextUI components",
5
5
  "keywords": [
6
6
  "theme",
@@ -1,12 +1,12 @@
1
+ import {
2
+ custom_default
3
+ } from "./chunk-DI2L75XK.mjs";
1
4
  import {
2
5
  scrollbar_hide_default
3
6
  } from "./chunk-4Z22WXZX.mjs";
4
7
  import {
5
8
  transition_default
6
9
  } from "./chunk-HJLDXSH7.mjs";
7
- import {
8
- custom_default
9
- } from "./chunk-DI2L75XK.mjs";
10
10
 
11
11
  // src/utilities/index.ts
12
12
  var utilities = {