@admin-core/design 0.1.0 → 0.2.1

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 (45) hide show
  1. package/README.en.md +698 -0
  2. package/README.md +588 -285
  3. package/dist/index.cjs +5 -1
  4. package/dist/index.cjs.map +1 -1
  5. package/dist/index.d.ts +1 -0
  6. package/dist/index.d.ts.map +1 -1
  7. package/dist/index.js +2616 -1
  8. package/dist/index.js.map +1 -1
  9. package/dist/index.umd.js +5 -1
  10. package/dist/index.umd.js.map +1 -1
  11. package/dist/style.css +1 -1
  12. package/dist/theme/composables.d.ts +89 -0
  13. package/dist/theme/composables.d.ts.map +1 -0
  14. package/dist/theme/constants.d.ts +56 -0
  15. package/dist/theme/constants.d.ts.map +1 -0
  16. package/dist/theme/i18n/en-US.d.ts +3 -0
  17. package/dist/theme/i18n/en-US.d.ts.map +1 -0
  18. package/dist/theme/i18n/index.d.ts +34 -0
  19. package/dist/theme/i18n/index.d.ts.map +1 -0
  20. package/dist/theme/i18n/zh-CN.d.ts +69 -0
  21. package/dist/theme/i18n/zh-CN.d.ts.map +1 -0
  22. package/dist/theme/index.d.ts +52 -0
  23. package/dist/theme/index.d.ts.map +1 -0
  24. package/dist/theme/integration.d.ts +124 -0
  25. package/dist/theme/integration.d.ts.map +1 -0
  26. package/dist/theme/types.d.ts +135 -0
  27. package/dist/theme/types.d.ts.map +1 -0
  28. package/dist/theme/utils.d.ts +230 -0
  29. package/dist/theme/utils.d.ts.map +1 -0
  30. package/package.json +32 -4
  31. package/src/css/base.css +145 -0
  32. package/src/css/components.css +96 -0
  33. package/src/css/index.css +21 -0
  34. package/src/css/integrations/ant-design-vue.css +64 -0
  35. package/src/css/integrations/arco-design.css +62 -0
  36. package/src/css/integrations/element-plus.css +157 -0
  37. package/src/css/integrations/index.css +17 -0
  38. package/src/css/integrations/naive-ui.css +60 -0
  39. package/src/css/nprogress.css +74 -0
  40. package/src/css/transition.css +256 -0
  41. package/src/css/ui.css +117 -0
  42. package/src/css/utilities.css +138 -0
  43. package/src/tokens/dark.css +406 -0
  44. package/src/tokens/index.ts +6 -0
  45. package/src/tokens/light.css +297 -0
@@ -0,0 +1,406 @@
1
+ /**
2
+ * 暗色主题 CSS 变量定义 - 2026流行色系列
3
+ */
4
+ .dark {
5
+ --background: 222.34deg 10.43% 12.27%;
6
+ --background-deep: 220deg 13.06% 9%;
7
+ --foreground: 0 0% 95%;
8
+ --card: 222.34deg 10.43% 12.27%;
9
+ --card-foreground: 210 40% 98%;
10
+ --popover: 0 0% 14.2%;
11
+ --popover-foreground: 210 40% 98%;
12
+ --muted: 240 3.7% 15.9%;
13
+ --muted-foreground: 240 5% 64.9%;
14
+ --primary: 212 100% 50%;
15
+ --primary-foreground: 0 0% 98%;
16
+ --destructive: 359.21 68.47% 56.47%;
17
+ --destructive-foreground: 0 0% 98%;
18
+ --info: 180 1.54% 12.75%;
19
+ --info-foreground: 220 4% 58%;
20
+ --success: 144 57% 58%;
21
+ --success-foreground: 0 0% 98%;
22
+ --warning: 42 84% 61%;
23
+ --warning-foreground: 0 0% 98%;
24
+ --secondary: 240 5% 17%;
25
+ --secondary-foreground: 0 0% 98%;
26
+ --accent: 216 5% 19%;
27
+ --accent-foreground: 0 0% 98%;
28
+ --border: 240 3.7% 22%;
29
+ --input: 0 0% 100% / 10%;
30
+ --input-placeholder: 218 11% 65%;
31
+ --input-background: 0 0% 100% / 5%;
32
+ --ring: 222.2 84% 4.9%;
33
+ --radius: 0.5rem;
34
+ --overlay: 0 0% 0% / 40%;
35
+ --overlay-content: 0 0% 0% / 40%;
36
+ --font-size-base: 16px;
37
+ --sidebar: 222.34deg 10.43% 12.27%;
38
+ --sidebar-deep: 220deg 13.06% 9%;
39
+ --menu: var(--sidebar);
40
+ --header: 222.34deg 10.43% 12.27%;
41
+ color-scheme: dark;
42
+ }
43
+
44
+ .dark[data-theme='slate'],
45
+ [data-theme='slate'] .dark {
46
+ --background: 215 25% 10%;
47
+ --background-deep: 215 30% 8%;
48
+ --foreground: 215 10% 92%;
49
+ --card: 215 25% 12%;
50
+ --card-foreground: 215 10% 92%;
51
+ --popover: 215 25% 14%;
52
+ --popover-foreground: 215 10% 92%;
53
+ --primary: 215 25% 50%;
54
+ --primary-foreground: 0 0% 98%;
55
+ --secondary: 215 20% 20%;
56
+ --secondary-foreground: 215 10% 92%;
57
+ --muted: 215 20% 20%;
58
+ --muted-foreground: 215 10% 65%;
59
+ --accent: 215 20% 22%;
60
+ --accent-foreground: 215 10% 92%;
61
+ --destructive: 0 68% 56%;
62
+ --border: 215 20% 22%;
63
+ --input: 215 20% 22%;
64
+ --ring: 215 25% 50%;
65
+ --sidebar: 215 25% 10%;
66
+ --sidebar-deep: 215 30% 8%;
67
+ --header: 215 25% 10%;
68
+ }
69
+
70
+ .dark[data-theme='burnished-lilac'],
71
+ [data-theme='burnished-lilac'] .dark {
72
+ --background: 280 25% 10%;
73
+ --background-deep: 280 30% 8%;
74
+ --foreground: 280 10% 92%;
75
+ --card: 280 25% 12%;
76
+ --card-foreground: 280 10% 92%;
77
+ --popover: 280 25% 14%;
78
+ --popover-foreground: 280 10% 92%;
79
+ --primary: 280 40% 65%;
80
+ --primary-foreground: 0 0% 98%;
81
+ --secondary: 280 20% 20%;
82
+ --secondary-foreground: 280 10% 92%;
83
+ --muted: 280 20% 20%;
84
+ --muted-foreground: 280 10% 65%;
85
+ --accent: 280 20% 22%;
86
+ --accent-foreground: 280 10% 92%;
87
+ --destructive: 0 68% 56%;
88
+ --border: 280 20% 22%;
89
+ --input: 280 20% 22%;
90
+ --ring: 280 40% 65%;
91
+ --sidebar: 280 25% 10%;
92
+ --sidebar-deep: 280 30% 8%;
93
+ --header: 280 25% 10%;
94
+ }
95
+
96
+ .dark[data-theme='teaberry'],
97
+ [data-theme='teaberry'] .dark {
98
+ --background: 345 30% 10%;
99
+ --background-deep: 345 35% 8%;
100
+ --foreground: 345 10% 92%;
101
+ --card: 345 30% 12%;
102
+ --card-foreground: 345 10% 92%;
103
+ --popover: 345 30% 14%;
104
+ --popover-foreground: 345 10% 92%;
105
+ --primary: 345 75% 60%;
106
+ --primary-foreground: 0 0% 98%;
107
+ --secondary: 345 25% 20%;
108
+ --secondary-foreground: 345 10% 92%;
109
+ --muted: 345 25% 20%;
110
+ --muted-foreground: 345 10% 65%;
111
+ --accent: 345 25% 22%;
112
+ --accent-foreground: 345 10% 92%;
113
+ --destructive: 0 68% 56%;
114
+ --border: 345 25% 22%;
115
+ --input: 345 25% 22%;
116
+ --ring: 345 75% 60%;
117
+ --sidebar: 345 30% 10%;
118
+ --sidebar-deep: 345 35% 8%;
119
+ --header: 345 30% 10%;
120
+ }
121
+
122
+ .dark[data-theme='amaranth'],
123
+ [data-theme='amaranth'] .dark {
124
+ --background: 310 30% 10%;
125
+ --background-deep: 310 35% 8%;
126
+ --foreground: 310 10% 92%;
127
+ --card: 310 30% 12%;
128
+ --card-foreground: 310 10% 92%;
129
+ --popover: 310 30% 14%;
130
+ --popover-foreground: 310 10% 92%;
131
+ --primary: 310 65% 50%;
132
+ --primary-foreground: 0 0% 98%;
133
+ --secondary: 310 25% 20%;
134
+ --secondary-foreground: 310 10% 92%;
135
+ --muted: 310 25% 20%;
136
+ --muted-foreground: 310 10% 65%;
137
+ --accent: 310 25% 22%;
138
+ --accent-foreground: 310 10% 92%;
139
+ --destructive: 0 68% 56%;
140
+ --border: 310 25% 22%;
141
+ --input: 310 25% 22%;
142
+ --ring: 310 65% 50%;
143
+ --sidebar: 310 30% 10%;
144
+ --sidebar-deep: 310 35% 8%;
145
+ --header: 310 30% 10%;
146
+ }
147
+
148
+ .dark[data-theme='pulse-blue'],
149
+ [data-theme='pulse-blue'] .dark {
150
+ --background: 200 30% 10%;
151
+ --background-deep: 200 35% 8%;
152
+ --foreground: 200 10% 92%;
153
+ --card: 200 30% 12%;
154
+ --card-foreground: 200 10% 92%;
155
+ --popover: 200 30% 14%;
156
+ --popover-foreground: 200 10% 92%;
157
+ --primary: 200 85% 55%;
158
+ --primary-foreground: 0 0% 98%;
159
+ --secondary: 200 25% 20%;
160
+ --secondary-foreground: 200 10% 92%;
161
+ --muted: 200 25% 20%;
162
+ --muted-foreground: 200 10% 65%;
163
+ --accent: 200 25% 22%;
164
+ --accent-foreground: 200 10% 92%;
165
+ --destructive: 0 68% 56%;
166
+ --border: 200 25% 22%;
167
+ --input: 200 25% 22%;
168
+ --ring: 200 85% 55%;
169
+ --sidebar: 200 30% 10%;
170
+ --sidebar-deep: 200 35% 8%;
171
+ --header: 200 30% 10%;
172
+ }
173
+
174
+ .dark[data-theme='deep-teal'],
175
+ [data-theme='deep-teal'] .dark {
176
+ --background: 180 30% 10%;
177
+ --background-deep: 180 35% 8%;
178
+ --foreground: 180 10% 92%;
179
+ --card: 180 30% 12%;
180
+ --card-foreground: 180 10% 92%;
181
+ --popover: 180 30% 14%;
182
+ --popover-foreground: 180 10% 92%;
183
+ --primary: 180 70% 40%;
184
+ --primary-foreground: 0 0% 98%;
185
+ --secondary: 180 25% 20%;
186
+ --secondary-foreground: 180 10% 92%;
187
+ --muted: 180 25% 20%;
188
+ --muted-foreground: 180 10% 65%;
189
+ --accent: 180 25% 22%;
190
+ --accent-foreground: 180 10% 92%;
191
+ --destructive: 0 68% 56%;
192
+ --border: 180 25% 22%;
193
+ --input: 180 25% 22%;
194
+ --ring: 180 70% 40%;
195
+ --sidebar: 180 30% 10%;
196
+ --sidebar-deep: 180 35% 8%;
197
+ --header: 180 30% 10%;
198
+ }
199
+
200
+ .dark[data-theme='mermaid-aqua'],
201
+ [data-theme='mermaid-aqua'] .dark {
202
+ --background: 185 30% 10%;
203
+ --background-deep: 185 35% 8%;
204
+ --foreground: 185 10% 92%;
205
+ --card: 185 30% 12%;
206
+ --card-foreground: 185 10% 92%;
207
+ --popover: 185 30% 14%;
208
+ --popover-foreground: 185 10% 92%;
209
+ --primary: 185 75% 60%;
210
+ --primary-foreground: 0 0% 98%;
211
+ --secondary: 185 25% 20%;
212
+ --secondary-foreground: 185 10% 92%;
213
+ --muted: 185 25% 20%;
214
+ --muted-foreground: 185 10% 65%;
215
+ --accent: 185 25% 22%;
216
+ --accent-foreground: 185 10% 92%;
217
+ --destructive: 0 68% 56%;
218
+ --border: 185 25% 22%;
219
+ --input: 185 25% 22%;
220
+ --ring: 185 75% 60%;
221
+ --sidebar: 185 30% 10%;
222
+ --sidebar-deep: 185 35% 8%;
223
+ --header: 185 30% 10%;
224
+ }
225
+
226
+ .dark[data-theme='pearl-purple'],
227
+ [data-theme='pearl-purple'] .dark {
228
+ --background: 270 25% 10%;
229
+ --background-deep: 270 30% 8%;
230
+ --foreground: 270 10% 92%;
231
+ --card: 270 25% 12%;
232
+ --card-foreground: 270 10% 92%;
233
+ --popover: 270 25% 14%;
234
+ --popover-foreground: 270 10% 92%;
235
+ --primary: 270 50% 70%;
236
+ --primary-foreground: 270 30% 20%;
237
+ --secondary: 270 20% 20%;
238
+ --secondary-foreground: 270 10% 92%;
239
+ --muted: 270 20% 20%;
240
+ --muted-foreground: 270 10% 65%;
241
+ --accent: 270 20% 22%;
242
+ --accent-foreground: 270 10% 92%;
243
+ --destructive: 0 68% 56%;
244
+ --border: 270 20% 22%;
245
+ --input: 270 20% 22%;
246
+ --ring: 270 50% 70%;
247
+ --sidebar: 270 25% 10%;
248
+ --sidebar-deep: 270 30% 8%;
249
+ --header: 270 25% 10%;
250
+ }
251
+
252
+ .dark[data-theme='burgundy'],
253
+ [data-theme='burgundy'] .dark {
254
+ --background: 345 30% 10%;
255
+ --background-deep: 345 35% 8%;
256
+ --foreground: 345 10% 92%;
257
+ --card: 345 30% 12%;
258
+ --card-foreground: 345 10% 92%;
259
+ --popover: 345 30% 14%;
260
+ --popover-foreground: 345 10% 92%;
261
+ --primary: 345 70% 45%;
262
+ --primary-foreground: 0 0% 98%;
263
+ --secondary: 345 25% 20%;
264
+ --secondary-foreground: 345 10% 92%;
265
+ --muted: 345 25% 20%;
266
+ --muted-foreground: 345 10% 65%;
267
+ --accent: 345 25% 22%;
268
+ --accent-foreground: 345 10% 92%;
269
+ --destructive: 0 68% 56%;
270
+ --border: 345 25% 22%;
271
+ --input: 345 25% 22%;
272
+ --ring: 345 70% 45%;
273
+ --sidebar: 345 30% 10%;
274
+ --sidebar-deep: 345 35% 8%;
275
+ --header: 345 30% 10%;
276
+ }
277
+
278
+ .dark[data-theme='burnt-sienna'],
279
+ [data-theme='burnt-sienna'] .dark {
280
+ --background: 15 30% 10%;
281
+ --background-deep: 15 35% 8%;
282
+ --foreground: 15 10% 92%;
283
+ --card: 15 30% 12%;
284
+ --card-foreground: 15 10% 92%;
285
+ --popover: 15 30% 14%;
286
+ --popover-foreground: 15 10% 92%;
287
+ --primary: 15 65% 55%;
288
+ --primary-foreground: 0 0% 98%;
289
+ --secondary: 15 25% 20%;
290
+ --secondary-foreground: 15 10% 92%;
291
+ --muted: 15 25% 20%;
292
+ --muted-foreground: 15 10% 65%;
293
+ --accent: 15 25% 22%;
294
+ --accent-foreground: 15 10% 92%;
295
+ --destructive: 0 68% 56%;
296
+ --border: 15 25% 22%;
297
+ --input: 15 25% 22%;
298
+ --ring: 15 65% 55%;
299
+ --sidebar: 15 30% 10%;
300
+ --sidebar-deep: 15 35% 8%;
301
+ --header: 15 30% 10%;
302
+ }
303
+
304
+ .dark[data-theme='olive-sage'],
305
+ [data-theme='olive-sage'] .dark {
306
+ --background: 80 25% 10%;
307
+ --background-deep: 80 30% 8%;
308
+ --foreground: 80 10% 92%;
309
+ --card: 80 25% 12%;
310
+ --card-foreground: 80 10% 92%;
311
+ --popover: 80 25% 14%;
312
+ --popover-foreground: 80 10% 92%;
313
+ --primary: 80 35% 50%;
314
+ --primary-foreground: 0 0% 98%;
315
+ --secondary: 80 20% 20%;
316
+ --secondary-foreground: 80 10% 92%;
317
+ --muted: 80 20% 20%;
318
+ --muted-foreground: 80 10% 65%;
319
+ --accent: 80 20% 22%;
320
+ --accent-foreground: 80 10% 92%;
321
+ --destructive: 0 68% 56%;
322
+ --border: 80 20% 22%;
323
+ --input: 80 20% 22%;
324
+ --ring: 80 35% 50%;
325
+ --sidebar: 80 25% 10%;
326
+ --sidebar-deep: 80 30% 8%;
327
+ --header: 80 25% 10%;
328
+ }
329
+
330
+ .dark[data-theme='champagne-gold'],
331
+ [data-theme='champagne-gold'] .dark {
332
+ --background: 45 30% 10%;
333
+ --background-deep: 45 35% 8%;
334
+ --foreground: 45 10% 92%;
335
+ --card: 45 30% 12%;
336
+ --card-foreground: 45 10% 92%;
337
+ --popover: 45 30% 14%;
338
+ --popover-foreground: 45 10% 92%;
339
+ --primary: 45 60% 65%;
340
+ --primary-foreground: 45 30% 20%;
341
+ --secondary: 45 25% 20%;
342
+ --secondary-foreground: 45 10% 92%;
343
+ --muted: 45 25% 20%;
344
+ --muted-foreground: 45 10% 65%;
345
+ --accent: 45 25% 22%;
346
+ --accent-foreground: 45 10% 92%;
347
+ --destructive: 0 68% 56%;
348
+ --border: 45 25% 22%;
349
+ --input: 45 25% 22%;
350
+ --ring: 45 60% 65%;
351
+ --sidebar: 45 30% 10%;
352
+ --sidebar-deep: 45 35% 8%;
353
+ --header: 45 30% 10%;
354
+ }
355
+
356
+ .dark[data-theme='dusty-rose'],
357
+ [data-theme='dusty-rose'] .dark {
358
+ --background: 350 25% 10%;
359
+ --background-deep: 350 30% 8%;
360
+ --foreground: 350 10% 92%;
361
+ --card: 350 25% 12%;
362
+ --card-foreground: 350 10% 92%;
363
+ --popover: 350 25% 14%;
364
+ --popover-foreground: 350 10% 92%;
365
+ --primary: 350 45% 70%;
366
+ --primary-foreground: 350 25% 20%;
367
+ --secondary: 350 20% 20%;
368
+ --secondary-foreground: 350 10% 92%;
369
+ --muted: 350 20% 20%;
370
+ --muted-foreground: 350 10% 65%;
371
+ --accent: 350 20% 22%;
372
+ --accent-foreground: 350 10% 92%;
373
+ --destructive: 0 68% 56%;
374
+ --border: 350 20% 22%;
375
+ --input: 350 20% 22%;
376
+ --ring: 350 45% 70%;
377
+ --sidebar: 350 25% 10%;
378
+ --sidebar-deep: 350 30% 8%;
379
+ --header: 350 25% 10%;
380
+ }
381
+
382
+ .dark[data-theme='citrus-green'],
383
+ [data-theme='citrus-green'] .dark {
384
+ --background: 75 30% 10%;
385
+ --background-deep: 75 35% 8%;
386
+ --foreground: 75 10% 92%;
387
+ --card: 75 30% 12%;
388
+ --card-foreground: 75 10% 92%;
389
+ --popover: 75 30% 14%;
390
+ --popover-foreground: 75 10% 92%;
391
+ --primary: 75 75% 55%;
392
+ --primary-foreground: 75 30% 15%;
393
+ --secondary: 75 25% 20%;
394
+ --secondary-foreground: 75 10% 92%;
395
+ --muted: 75 25% 20%;
396
+ --muted-foreground: 75 10% 65%;
397
+ --accent: 75 25% 22%;
398
+ --accent-foreground: 75 10% 92%;
399
+ --destructive: 0 68% 56%;
400
+ --border: 75 25% 22%;
401
+ --input: 75 25% 22%;
402
+ --ring: 75 75% 55%;
403
+ --sidebar: 75 30% 10%;
404
+ --sidebar-deep: 75 35% 8%;
405
+ --header: 75 30% 10%;
406
+ }
@@ -0,0 +1,6 @@
1
+ /**
2
+ * 设计令牌
3
+ * 导入浅色主题和暗色主题的 CSS 变量
4
+ */
5
+ import './light.css';
6
+ import './dark.css';
@@ -0,0 +1,297 @@
1
+ /**
2
+ * 浅色主题 CSS 变量定义 - 2026流行色系列
3
+ */
4
+ :root {
5
+ --popup-z-index: 2000;
6
+ --font-family: -apple-system, blinkmacsystemfont, 'Segoe UI', roboto, 'Helvetica Neue', arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
7
+ --background: 0 0% 100%;
8
+ --background-deep: 216 20.11% 95.47%;
9
+ --foreground: 210 6% 21%;
10
+ --card: 0 0% 100%;
11
+ --card-foreground: 222.2 84% 4.9%;
12
+ --popover: 0 0% 100%;
13
+ --popover-foreground: 222.2 84% 4.9%;
14
+ --muted: 240 4.8% 95.9%;
15
+ --muted-foreground: 240 3.8% 46.1%;
16
+ --primary: 212 100% 48%;
17
+ --primary-foreground: 0 0% 98%;
18
+ --destructive: 359.33 100% 65.1%;
19
+ --destructive-foreground: 0 0% 98%;
20
+ --info: 240 5% 96%;
21
+ --info-foreground: 220 4% 58%;
22
+ --success: 144 57% 58%;
23
+ --success-foreground: 0 0% 98%;
24
+ --warning: 42 84% 61%;
25
+ --warning-foreground: 0 0% 98%;
26
+ --secondary: 240 5% 96%;
27
+ --secondary-foreground: 240 6% 10%;
28
+ --accent: 240 5% 96%;
29
+ --accent-foreground: 240 6% 10%;
30
+ --border: 240 5.9% 90%;
31
+ --input: 240 5.88% 90%;
32
+ --input-placeholder: 217 10.6% 65%;
33
+ --input-background: 0 0% 100%;
34
+ --ring: 222.2 84% 4.9%;
35
+ --radius: 0.5rem;
36
+ --overlay: 0 0% 0% / 45%;
37
+ --overlay-content: 0 0% 95% / 45%;
38
+ --font-size-base: 16px;
39
+ --sidebar: 0 0% 100%;
40
+ --sidebar-deep: 0 0% 100%;
41
+ --menu: var(--sidebar);
42
+ --header: 0 0% 100%;
43
+ accent-color: var(--primary);
44
+ color-scheme: light;
45
+ }
46
+
47
+ [data-theme='slate'] {
48
+ --primary: 215 20% 40%;
49
+ --foreground: 215 25% 15%;
50
+ --card-foreground: 215 25% 15%;
51
+ --popover-foreground: 215 25% 15%;
52
+ --primary-foreground: 0 0% 98%;
53
+ --secondary: 215 15% 92%;
54
+ --secondary-foreground: 215 25% 20%;
55
+ --muted: 215 15% 92%;
56
+ --muted-foreground: 215 10% 45%;
57
+ --accent: 215 15% 88%;
58
+ --accent-foreground: 215 25% 20%;
59
+ --destructive: 0 84.2% 60.2%;
60
+ --border: 215 15% 85%;
61
+ --input: 215 15% 85%;
62
+ --ring: 215 20% 40%;
63
+ }
64
+
65
+ [data-theme='burnished-lilac'] {
66
+ --primary: 280 35% 65%;
67
+ --foreground: 280 20% 15%;
68
+ --card-foreground: 280 20% 15%;
69
+ --popover-foreground: 280 20% 15%;
70
+ --primary-foreground: 0 0% 98%;
71
+ --secondary: 280 25% 92%;
72
+ --secondary-foreground: 280 30% 20%;
73
+ --muted: 280 25% 92%;
74
+ --muted-foreground: 280 15% 45%;
75
+ --accent: 280 25% 88%;
76
+ --accent-foreground: 280 30% 20%;
77
+ --destructive: 0 84.2% 60.2%;
78
+ --border: 280 20% 85%;
79
+ --input: 280 20% 85%;
80
+ --ring: 280 35% 65%;
81
+ }
82
+
83
+ [data-theme='teaberry'] {
84
+ --primary: 345 75% 55%;
85
+ --foreground: 345 30% 15%;
86
+ --card-foreground: 345 30% 15%;
87
+ --popover-foreground: 345 30% 15%;
88
+ --primary-foreground: 0 0% 98%;
89
+ --secondary: 345 40% 92%;
90
+ --secondary-foreground: 345 40% 20%;
91
+ --muted: 345 40% 92%;
92
+ --muted-foreground: 345 20% 45%;
93
+ --accent: 345 40% 88%;
94
+ --accent-foreground: 345 40% 20%;
95
+ --destructive: 0 84.2% 60.2%;
96
+ --border: 345 30% 85%;
97
+ --input: 345 30% 85%;
98
+ --ring: 345 75% 55%;
99
+ }
100
+
101
+ [data-theme='amaranth'] {
102
+ --primary: 310 60% 45%;
103
+ --foreground: 310 25% 15%;
104
+ --card-foreground: 310 25% 15%;
105
+ --popover-foreground: 310 25% 15%;
106
+ --primary-foreground: 0 0% 98%;
107
+ --secondary: 310 35% 92%;
108
+ --secondary-foreground: 310 35% 20%;
109
+ --muted: 310 35% 92%;
110
+ --muted-foreground: 310 20% 45%;
111
+ --accent: 310 35% 88%;
112
+ --accent-foreground: 310 35% 20%;
113
+ --destructive: 0 84.2% 60.2%;
114
+ --border: 310 25% 85%;
115
+ --input: 310 25% 85%;
116
+ --ring: 310 60% 45%;
117
+ }
118
+
119
+ [data-theme='pulse-blue'] {
120
+ --primary: 200 85% 50%;
121
+ --foreground: 200 30% 15%;
122
+ --card-foreground: 200 30% 15%;
123
+ --popover-foreground: 200 30% 15%;
124
+ --primary-foreground: 0 0% 98%;
125
+ --secondary: 200 40% 92%;
126
+ --secondary-foreground: 200 40% 20%;
127
+ --muted: 200 40% 92%;
128
+ --muted-foreground: 200 20% 45%;
129
+ --accent: 200 40% 88%;
130
+ --accent-foreground: 200 40% 20%;
131
+ --destructive: 0 84.2% 60.2%;
132
+ --border: 200 30% 85%;
133
+ --input: 200 30% 85%;
134
+ --ring: 200 85% 50%;
135
+ }
136
+
137
+ [data-theme='deep-teal'] {
138
+ --primary: 180 65% 35%;
139
+ --foreground: 180 25% 15%;
140
+ --card-foreground: 180 25% 15%;
141
+ --popover-foreground: 180 25% 15%;
142
+ --primary-foreground: 0 0% 98%;
143
+ --secondary: 180 30% 92%;
144
+ --secondary-foreground: 180 35% 20%;
145
+ --muted: 180 30% 92%;
146
+ --muted-foreground: 180 15% 45%;
147
+ --accent: 180 30% 88%;
148
+ --accent-foreground: 180 35% 20%;
149
+ --destructive: 0 84.2% 60.2%;
150
+ --border: 180 25% 85%;
151
+ --input: 180 25% 85%;
152
+ --ring: 180 65% 35%;
153
+ }
154
+
155
+ [data-theme='mermaid-aqua'] {
156
+ --primary: 185 70% 55%;
157
+ --foreground: 185 30% 15%;
158
+ --card-foreground: 185 30% 15%;
159
+ --popover-foreground: 185 30% 15%;
160
+ --primary-foreground: 0 0% 98%;
161
+ --secondary: 185 40% 92%;
162
+ --secondary-foreground: 185 40% 20%;
163
+ --muted: 185 40% 92%;
164
+ --muted-foreground: 185 20% 45%;
165
+ --accent: 185 40% 88%;
166
+ --accent-foreground: 185 40% 20%;
167
+ --destructive: 0 84.2% 60.2%;
168
+ --border: 185 30% 85%;
169
+ --input: 185 30% 85%;
170
+ --ring: 185 70% 55%;
171
+ }
172
+
173
+ [data-theme='pearl-purple'] {
174
+ --primary: 270 45% 70%;
175
+ --foreground: 270 20% 15%;
176
+ --card-foreground: 270 20% 15%;
177
+ --popover-foreground: 270 20% 15%;
178
+ --primary-foreground: 270 30% 20%;
179
+ --secondary: 270 30% 92%;
180
+ --secondary-foreground: 270 30% 20%;
181
+ --muted: 270 30% 92%;
182
+ --muted-foreground: 270 15% 45%;
183
+ --accent: 270 30% 88%;
184
+ --accent-foreground: 270 30% 20%;
185
+ --destructive: 0 84.2% 60.2%;
186
+ --border: 270 25% 85%;
187
+ --input: 270 25% 85%;
188
+ --ring: 270 45% 70%;
189
+ }
190
+
191
+ [data-theme='burgundy'] {
192
+ --primary: 345 65% 40%;
193
+ --foreground: 345 25% 15%;
194
+ --card-foreground: 345 25% 15%;
195
+ --popover-foreground: 345 25% 15%;
196
+ --primary-foreground: 0 0% 98%;
197
+ --secondary: 345 30% 92%;
198
+ --secondary-foreground: 345 35% 20%;
199
+ --muted: 345 30% 92%;
200
+ --muted-foreground: 345 15% 45%;
201
+ --accent: 345 30% 88%;
202
+ --accent-foreground: 345 35% 20%;
203
+ --destructive: 0 84.2% 60.2%;
204
+ --border: 345 25% 85%;
205
+ --input: 345 25% 85%;
206
+ --ring: 345 65% 40%;
207
+ }
208
+
209
+ [data-theme='burnt-sienna'] {
210
+ --primary: 15 60% 50%;
211
+ --foreground: 15 25% 15%;
212
+ --card-foreground: 15 25% 15%;
213
+ --popover-foreground: 15 25% 15%;
214
+ --primary-foreground: 0 0% 98%;
215
+ --secondary: 15 30% 92%;
216
+ --secondary-foreground: 15 35% 20%;
217
+ --muted: 15 30% 92%;
218
+ --muted-foreground: 15 15% 45%;
219
+ --accent: 15 30% 88%;
220
+ --accent-foreground: 15 35% 20%;
221
+ --destructive: 0 84.2% 60.2%;
222
+ --border: 15 25% 85%;
223
+ --input: 15 25% 85%;
224
+ --ring: 15 60% 50%;
225
+ }
226
+
227
+ [data-theme='olive-sage'] {
228
+ --primary: 80 30% 45%;
229
+ --foreground: 80 20% 15%;
230
+ --card-foreground: 80 20% 15%;
231
+ --popover-foreground: 80 20% 15%;
232
+ --primary-foreground: 0 0% 98%;
233
+ --secondary: 80 20% 92%;
234
+ --secondary-foreground: 80 25% 20%;
235
+ --muted: 80 20% 92%;
236
+ --muted-foreground: 80 10% 45%;
237
+ --accent: 80 20% 88%;
238
+ --accent-foreground: 80 25% 20%;
239
+ --destructive: 0 84.2% 60.2%;
240
+ --border: 80 15% 85%;
241
+ --input: 80 15% 85%;
242
+ --ring: 80 30% 45%;
243
+ }
244
+
245
+ [data-theme='champagne-gold'] {
246
+ --primary: 45 55% 60%;
247
+ --foreground: 45 25% 15%;
248
+ --card-foreground: 45 25% 15%;
249
+ --popover-foreground: 45 25% 15%;
250
+ --primary-foreground: 45 30% 20%;
251
+ --secondary: 45 35% 92%;
252
+ --secondary-foreground: 45 30% 20%;
253
+ --muted: 45 35% 92%;
254
+ --muted-foreground: 45 15% 45%;
255
+ --accent: 45 35% 88%;
256
+ --accent-foreground: 45 30% 20%;
257
+ --destructive: 0 84.2% 60.2%;
258
+ --border: 45 25% 85%;
259
+ --input: 45 25% 85%;
260
+ --ring: 45 55% 60%;
261
+ }
262
+
263
+ [data-theme='dusty-rose'] {
264
+ --primary: 350 40% 65%;
265
+ --foreground: 350 20% 15%;
266
+ --card-foreground: 350 20% 15%;
267
+ --popover-foreground: 350 20% 15%;
268
+ --primary-foreground: 350 25% 20%;
269
+ --secondary: 350 25% 92%;
270
+ --secondary-foreground: 350 25% 20%;
271
+ --muted: 350 25% 92%;
272
+ --muted-foreground: 350 15% 45%;
273
+ --accent: 350 25% 88%;
274
+ --accent-foreground: 350 25% 20%;
275
+ --destructive: 0 84.2% 60.2%;
276
+ --border: 350 20% 85%;
277
+ --input: 350 20% 85%;
278
+ --ring: 350 40% 65%;
279
+ }
280
+
281
+ [data-theme='citrus-green'] {
282
+ --primary: 75 70% 50%;
283
+ --foreground: 75 25% 15%;
284
+ --card-foreground: 75 25% 15%;
285
+ --popover-foreground: 75 25% 15%;
286
+ --primary-foreground: 75 30% 15%;
287
+ --secondary: 75 40% 92%;
288
+ --secondary-foreground: 75 35% 20%;
289
+ --muted: 75 40% 92%;
290
+ --muted-foreground: 75 20% 45%;
291
+ --accent: 75 40% 88%;
292
+ --accent-foreground: 75 35% 20%;
293
+ --destructive: 0 84.2% 60.2%;
294
+ --border: 75 30% 85%;
295
+ --input: 75 30% 85%;
296
+ --ring: 75 70% 50%;
297
+ }