@duskmoon-dev/core 1.2.0 → 1.4.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/components/collapse.css +208 -8
- package/dist/components/index.css +401 -8
- package/dist/components/navigation.css +193 -0
- package/dist/esm/components/collapse.js +208 -8
- package/dist/esm/components/navigation.js +193 -0
- package/dist/index.css +556 -8
- package/dist/themes/moonlight.css +57 -0
- package/dist/themes/sunshine.css +57 -0
- package/package.json +1 -1
package/dist/themes/sunshine.css
CHANGED
|
@@ -93,6 +93,42 @@
|
|
|
93
93
|
|
|
94
94
|
--color-outline: oklch(75% 0.01 260);
|
|
95
95
|
--color-outline-variant: oklch(85% 0.01 260);
|
|
96
|
+
|
|
97
|
+
/* ============================================
|
|
98
|
+
* ACCENT COLORS
|
|
99
|
+
* ============================================ */
|
|
100
|
+
|
|
101
|
+
--color-accent: oklch(65% 0.20 145);
|
|
102
|
+
--color-accent-content: oklch(100% 0 0);
|
|
103
|
+
|
|
104
|
+
/* ============================================
|
|
105
|
+
* NEUTRAL COLORS
|
|
106
|
+
* ============================================ */
|
|
107
|
+
|
|
108
|
+
--color-neutral: oklch(35% 0.02 260);
|
|
109
|
+
--color-neutral-content: oklch(95% 0.01 260);
|
|
110
|
+
--color-neutral-variant: oklch(50% 0.02 260);
|
|
111
|
+
|
|
112
|
+
/* ============================================
|
|
113
|
+
* SURFACE VARIANT
|
|
114
|
+
* ============================================ */
|
|
115
|
+
|
|
116
|
+
--color-surface-variant: oklch(94% 0.02 85);
|
|
117
|
+
|
|
118
|
+
/* ============================================
|
|
119
|
+
* INVERSE COLORS
|
|
120
|
+
* ============================================ */
|
|
121
|
+
|
|
122
|
+
--color-inverse-surface: oklch(25% 0.02 260);
|
|
123
|
+
--color-inverse-on-surface: oklch(95% 0.01 260);
|
|
124
|
+
--color-inverse-primary: oklch(80% 0.14 55);
|
|
125
|
+
|
|
126
|
+
/* ============================================
|
|
127
|
+
* SHADOW & SCRIM
|
|
128
|
+
* ============================================ */
|
|
129
|
+
|
|
130
|
+
--color-shadow: oklch(0% 0 0);
|
|
131
|
+
--color-scrim: oklch(0% 0 0 / 50%);
|
|
96
132
|
}
|
|
97
133
|
|
|
98
134
|
/* Default theme - applies sunshine when no data-theme is set */
|
|
@@ -163,4 +199,25 @@
|
|
|
163
199
|
/* Outline Colors */
|
|
164
200
|
--color-outline: oklch(75% 0.01 260);
|
|
165
201
|
--color-outline-variant: oklch(85% 0.01 260);
|
|
202
|
+
|
|
203
|
+
/* Accent Colors */
|
|
204
|
+
--color-accent: oklch(65% 0.20 145);
|
|
205
|
+
--color-accent-content: oklch(100% 0 0);
|
|
206
|
+
|
|
207
|
+
/* Neutral Colors */
|
|
208
|
+
--color-neutral: oklch(35% 0.02 260);
|
|
209
|
+
--color-neutral-content: oklch(95% 0.01 260);
|
|
210
|
+
--color-neutral-variant: oklch(50% 0.02 260);
|
|
211
|
+
|
|
212
|
+
/* Surface Variant */
|
|
213
|
+
--color-surface-variant: oklch(94% 0.02 85);
|
|
214
|
+
|
|
215
|
+
/* Inverse Colors */
|
|
216
|
+
--color-inverse-surface: oklch(25% 0.02 260);
|
|
217
|
+
--color-inverse-on-surface: oklch(95% 0.01 260);
|
|
218
|
+
--color-inverse-primary: oklch(80% 0.14 55);
|
|
219
|
+
|
|
220
|
+
/* Shadow & Scrim */
|
|
221
|
+
--color-shadow: oklch(0% 0 0);
|
|
222
|
+
--color-scrim: oklch(0% 0 0 / 50%);
|
|
166
223
|
}
|
package/package.json
CHANGED