phoenix_duskmoon 6.0.6 → 6.0.7
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/CHANGELOG.md +7 -0
- package/assets/css/theme.css +70 -0
- package/package.json +2 -1
- package/priv/static/phoenix_duskmoon.css +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [6.0.7](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v6.0.6...v6.0.7) (2025-02-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Fix theme. ([f9175ec](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/f9175ec02a49d9e7f98fea0645f8db066892fb7c))
|
|
7
|
+
|
|
1
8
|
## [6.0.6](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v6.0.5...v6.0.6) (2025-02-06)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
|
|
2
|
+
@plugin "daisyui/theme" {
|
|
3
|
+
name: "sunshine";
|
|
4
|
+
default: true;
|
|
5
|
+
prefersdark: false;
|
|
6
|
+
color-scheme: "light";
|
|
7
|
+
--color-base-100: oklch(100% 0.1 255);
|
|
8
|
+
--color-base-200: oklch(85% 0.1 255);
|
|
9
|
+
--color-base-300: oklch(70% 0.1 255);
|
|
10
|
+
--color-base-content: oklch(10% 0 255);
|
|
11
|
+
--color-primary: oklch(95.86% 0.0693 95.91);
|
|
12
|
+
--color-primary-content: oklch(20% 0 0);
|
|
13
|
+
--color-secondary: oklch(87.42% 0.143 87.01);
|
|
14
|
+
--color-secondary-content: oklch(27.42% 0.143 87.01);
|
|
15
|
+
--color-accent: oklch(85.23% 0.14 327);
|
|
16
|
+
--color-accent-content: oklch(41% 0.112 45.904);
|
|
17
|
+
--color-neutral: oklch(0% 0 0);
|
|
18
|
+
--color-neutral-content: oklch(80% 0.1 50);
|
|
19
|
+
--color-info: oklch(41.94% 0.114 254.39);
|
|
20
|
+
--color-info-content: oklch(91.94% 0.114 254.39);
|
|
21
|
+
--color-success: oklch(67.21% 0.19 133.55);
|
|
22
|
+
--color-success-content: oklch(27.21% 0.19 133.55);
|
|
23
|
+
--color-warning: oklch(68.19% 0.203 42.44);
|
|
24
|
+
--color-warning-content: oklch(18.19% 0.6 42);
|
|
25
|
+
--color-error: oklch(61.17% 0.237 28.15);
|
|
26
|
+
--color-error-content: oklch(90.01% 0.153 84.78);
|
|
27
|
+
--radius-selector: 0rem;
|
|
28
|
+
--radius-field: 0.5rem;
|
|
29
|
+
--radius-box: 2rem;
|
|
30
|
+
--size-selector: 0.1875rem;
|
|
31
|
+
--size-field: 0.1875rem;
|
|
32
|
+
--border: 0.5px;
|
|
33
|
+
--depth: 1;
|
|
34
|
+
--noise: 1;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@plugin "daisyui/theme" {
|
|
38
|
+
name: "moonlight";
|
|
39
|
+
default: false;
|
|
40
|
+
prefersdark: true;
|
|
41
|
+
color-scheme: "dark";
|
|
42
|
+
--color-base-100: oklch(22% 0.019 237.69);
|
|
43
|
+
--color-base-200: oklch(20% 0.019 237.69);
|
|
44
|
+
--color-base-300: oklch(18% 0.019 237.69);
|
|
45
|
+
--color-base-content: oklch(77.383% 0.043 245.096);
|
|
46
|
+
--color-primary: oklch(85.45% 0 0);
|
|
47
|
+
--color-primary-content: oklch(14.94% 0.031 39.947);
|
|
48
|
+
--color-secondary: oklch(83.33% 0.0981 73.78);
|
|
49
|
+
--color-secondary-content: oklch(14.507% 0.035 2.72);
|
|
50
|
+
--color-accent: oklch(75.65% 0.1303 335.51);
|
|
51
|
+
--color-accent-content: oklch(14.258% 0.033 299.844);
|
|
52
|
+
--color-neutral: oklch(23% 0 0);
|
|
53
|
+
--color-neutral-content: oklch(52.43% 0 0);
|
|
54
|
+
--color-info: oklch(82.42% 0.09757279812867503 240.7677443360475);
|
|
55
|
+
--color-info-content: oklch(17.111% 0.017 206.015);
|
|
56
|
+
--color-success: oklch(82.19% 0.0621 133.3);
|
|
57
|
+
--color-success-content: oklch(17.112% 0.017 144.778);
|
|
58
|
+
--color-warning: oklch(76.36% 0.1752731353930708 61.96388739129725);
|
|
59
|
+
--color-warning-content: oklch(17.113% 0.016 74.427);
|
|
60
|
+
--color-error: oklch(46.38% 0.1898 29.17);
|
|
61
|
+
--color-error-content: oklch(86.38% 0.298 39.17);
|
|
62
|
+
--radius-selector: 0rem;
|
|
63
|
+
--radius-field: 0.5rem;
|
|
64
|
+
--radius-box: 2rem;
|
|
65
|
+
--size-selector: 0.1875rem;
|
|
66
|
+
--size-field: 0.1875rem;
|
|
67
|
+
--border: 0.5px;
|
|
68
|
+
--depth: 1;
|
|
69
|
+
--noise: 1;
|
|
70
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "phoenix_duskmoon",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./priv/static/phoenix_duskmoon.js",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"CHANGELOG.md",
|
|
19
19
|
"LICENSE",
|
|
20
20
|
"package.json",
|
|
21
|
+
"assets/css/theme.css",
|
|
21
22
|
"assets/css/components.css",
|
|
22
23
|
"assets/css/components/",
|
|
23
24
|
"priv/static/",
|
|
@@ -4543,22 +4543,22 @@ video {
|
|
|
4543
4543
|
--color-base-200: oklch(85% 0.1 255);
|
|
4544
4544
|
--color-base-300: oklch(70% 0.1 255);
|
|
4545
4545
|
--color-base-content: oklch(10% 0 255);
|
|
4546
|
-
--color-primary: oklch(
|
|
4546
|
+
--color-primary: oklch(95.86% 0.0693 95.91);
|
|
4547
4547
|
--color-primary-content: oklch(20% 0 0);
|
|
4548
|
-
--color-secondary: oklch(87.42% 0.
|
|
4549
|
-
--color-secondary-content: oklch(27.42% 0.
|
|
4548
|
+
--color-secondary: oklch(87.42% 0.143 87.01);
|
|
4549
|
+
--color-secondary-content: oklch(27.42% 0.143 87.01);
|
|
4550
4550
|
--color-accent: oklch(85.23% 0.14 327);
|
|
4551
4551
|
--color-accent-content: oklch(41% 0.112 45.904);
|
|
4552
4552
|
--color-neutral: oklch(0% 0 0);
|
|
4553
4553
|
--color-neutral-content: oklch(80% 0.1 50);
|
|
4554
|
-
--color-info: oklch(41.94% 0.
|
|
4555
|
-
--color-info-content: oklch(91.94% 0.
|
|
4556
|
-
--color-success: oklch(67.21% 0.
|
|
4557
|
-
--color-success-content: oklch(27.21% 0.
|
|
4558
|
-
--color-warning: oklch(68.19% 0.
|
|
4554
|
+
--color-info: oklch(41.94% 0.114 254.39);
|
|
4555
|
+
--color-info-content: oklch(91.94% 0.114 254.39);
|
|
4556
|
+
--color-success: oklch(67.21% 0.19 133.55);
|
|
4557
|
+
--color-success-content: oklch(27.21% 0.19 133.55);
|
|
4558
|
+
--color-warning: oklch(68.19% 0.203 42.44);
|
|
4559
4559
|
--color-warning-content: oklch(18.19% 0.6 42);
|
|
4560
|
-
--color-error: oklch(61.17% 0.
|
|
4561
|
-
--color-error-content: oklch(90.01% 0.
|
|
4560
|
+
--color-error: oklch(61.17% 0.237 28.15);
|
|
4561
|
+
--color-error-content: oklch(90.01% 0.153 84.78);
|
|
4562
4562
|
--radius-selector: 0rem;
|
|
4563
4563
|
--radius-field: 0.5rem;
|
|
4564
4564
|
--radius-box: 2rem;
|