@duskmoon-dev/core 1.18.1 → 1.18.2
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/README.md +1 -1
- package/dist/cjs/tailwind-plugin.cjs +10 -8
- package/dist/components/alert.css +8 -0
- package/dist/components/chat.css +16 -26
- package/dist/components/chip.css +1 -1
- package/dist/components/collapse.css +1 -1
- package/dist/components/datepicker.css +2 -2
- package/dist/components/form.css +1 -0
- package/dist/components/index.css +49 -41
- package/dist/components/list.css +1 -1
- package/dist/components/multi-select.css +0 -1
- package/dist/components/navigation.css +5 -1
- package/dist/components/nested-menu.css +6 -1
- package/dist/components/stepper.css +2 -2
- package/dist/components/switch.css +4 -4
- package/dist/components/textarea.css +2 -1
- package/dist/esm/components/alert.js +8 -0
- package/dist/esm/components/chat.js +16 -26
- package/dist/esm/components/chip.js +1 -1
- package/dist/esm/components/collapse.js +1 -1
- package/dist/esm/components/datepicker.js +2 -2
- package/dist/esm/components/form.js +1 -0
- package/dist/esm/components/list.js +1 -1
- package/dist/esm/components/multi-select.js +0 -1
- package/dist/esm/components/navigation.js +5 -1
- package/dist/esm/components/nested-menu.js +6 -1
- package/dist/esm/components/stepper.js +2 -2
- package/dist/esm/components/switch.js +4 -4
- package/dist/esm/components/textarea.js +2 -1
- package/dist/esm/tailwind-plugin.js +2 -2
- package/dist/index.css +75 -67
- package/dist/index.min.css +1 -1
- package/dist/themes/generated/sunshine.css +13 -13
- package/package.json +1 -1
|
@@ -9,20 +9,20 @@
|
|
|
9
9
|
--theme-family: "duskmoon";
|
|
10
10
|
--theme-pair: "moonlight";
|
|
11
11
|
--theme-description: "Warm amber/coral";
|
|
12
|
-
--color-primary: oklch(
|
|
13
|
-
--color-primary-content: oklch(
|
|
12
|
+
--color-primary: oklch(52% 0.17 75);
|
|
13
|
+
--color-primary-content: oklch(100% 0 0);
|
|
14
14
|
--color-primary-container: oklch(95% 0.035 95.91);
|
|
15
15
|
--color-on-primary-container: oklch(25% 0.03 95.91);
|
|
16
|
-
--color-secondary: oklch(
|
|
16
|
+
--color-secondary: oklch(55% 0.19 20);
|
|
17
17
|
--color-secondary-content: oklch(100% 0 0);
|
|
18
18
|
--color-secondary-container: oklch(94% 0.05 87.01);
|
|
19
19
|
--color-on-secondary-container: oklch(25% 0.05 87.01);
|
|
20
|
-
--color-tertiary: oklch(
|
|
21
|
-
--color-tertiary-content: oklch(
|
|
20
|
+
--color-tertiary: oklch(52% 0.085 235);
|
|
21
|
+
--color-tertiary-content: oklch(100% 0 0);
|
|
22
22
|
--color-tertiary-container: oklch(95% 0.035 235);
|
|
23
23
|
--color-on-tertiary-container: oklch(22% 0.012 235);
|
|
24
|
-
--color-accent: oklch(
|
|
25
|
-
--color-accent-content: oklch(
|
|
24
|
+
--color-accent: oklch(52% 0.14 327);
|
|
25
|
+
--color-accent-content: oklch(100% 0 0);
|
|
26
26
|
--color-neutral: oklch(0% 0 0);
|
|
27
27
|
--color-neutral-content: oklch(80% 0.015 50);
|
|
28
28
|
--color-neutral-variant: oklch(50% 0.02 260);
|
|
@@ -58,16 +58,16 @@
|
|
|
58
58
|
--color-info-content: oklch(91.94% 0.114 254.39);
|
|
59
59
|
--color-info-container: oklch(95% 0.03 235);
|
|
60
60
|
--color-on-info-container: oklch(35% 0.08 235);
|
|
61
|
-
--color-success: oklch(
|
|
62
|
-
--color-success-content: oklch(
|
|
61
|
+
--color-success: oklch(50% 0.19 133.55);
|
|
62
|
+
--color-success-content: oklch(100% 0 0);
|
|
63
63
|
--color-success-container: oklch(93% 0.04 150);
|
|
64
64
|
--color-on-success-container: oklch(30% 0.08 150);
|
|
65
|
-
--color-warning: oklch(
|
|
66
|
-
--color-warning-content: oklch(
|
|
65
|
+
--color-warning: oklch(52% 0.203 42.44);
|
|
66
|
+
--color-warning-content: oklch(100% 0 0);
|
|
67
67
|
--color-warning-container: oklch(93% 0.05 80);
|
|
68
68
|
--color-on-warning-container: oklch(38% 0.10 80);
|
|
69
|
-
--color-error: oklch(
|
|
70
|
-
--color-error-content: oklch(
|
|
69
|
+
--color-error: oklch(52% 0.237 28.15);
|
|
70
|
+
--color-error-content: oklch(100% 0 0);
|
|
71
71
|
--color-error-container: oklch(93% 0.04 25);
|
|
72
72
|
--color-on-error-container: oklch(32% 0.10 25);
|
|
73
73
|
|
package/package.json
CHANGED