@albi_scando/as-design-system-lib 1.8.1 → 1.9.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.
@@ -42,282 +42,464 @@
42
42
  --text-transform-capitalize: capitalize;
43
43
  }
44
44
 
45
+ /*
46
+ * 🌑 Dark — Classic Dark Mode
47
+ *
48
+ * Standard, minimal dark mode focused on clarity, simplicity, and reduced eye strain.
49
+ * Neutral dark grays and blacks with subtle contrast between surfaces.
50
+ * Minimal accent color (indigo) for highlights.
51
+ *
52
+ * Contrast notes:
53
+ * --color-text-primary (#f4f4f5) on --color-bg-primary (#18181b): ~16.0:1 ✓ AAA
54
+ * --color-text-secondary (#a1a1aa) on --color-bg-primary (#18181b): ~7.0:1 ✓ AAA
55
+ * --color-text-tertiary (#71717a) on --color-bg-primary (#18181b): ~4.0:1 ✓ AA (large text)
56
+ */
45
57
  .dark {
46
- --color-bg-primary: #1e1e1e;
47
- --color-bg-secondary: #2a2a2a;
48
- --color-bg-tertiary: #333333;
49
- --color-hover-bg-primary: #2a2a2a;
50
- --color-hover-bg-secondary: #333333;
51
- --color-hover-bg-tertiary: #3d3d3d;
58
+ /* Backgrounds — neutral dark zinc tones */
59
+ --color-bg-primary: #18181b;
60
+ --color-bg-secondary: #27272a;
61
+ --color-bg-tertiary: #303034;
62
+ /* Hover backgrounds — one step lighter for clear interaction feedback */
63
+ --color-hover-bg-primary: #27272a;
64
+ --color-hover-bg-secondary: #333338;
65
+ --color-hover-bg-tertiary: #3f3f46;
66
+ /* Text — high-contrast neutrals */
52
67
  --color-text-primary: #f4f4f5;
53
68
  --color-text-secondary: #a1a1aa;
54
69
  --color-text-tertiary: #71717a;
70
+ /* Borders — subtle zinc edges */
55
71
  --color-border-primary: #3f3f46;
56
72
  --color-border-secondary: #52525b;
57
73
  --color-border-tertiary: #71717a;
74
+ /* Hover borders — brighter for interaction states */
58
75
  --color-hover-border-primary: #71717a;
59
76
  --color-hover-border-secondary: #a1a1aa;
60
77
  --color-hover-border-tertiary: #6366f1;
78
+ /* Primary — clean indigo accent */
61
79
  --color-primary: #6366f1;
62
80
  --color-primary-light: #818cf8;
63
81
  --color-primary-dark: #4f46e5;
82
+ /* Semantic status colors — solid and clear */
64
83
  --color-success: #4ade80;
65
84
  --color-warning: #fbbf24;
66
- --color-error: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
67
- --color-info: linear-gradient(135deg, #a78bfa 0%, #06b6d4 100%);
68
- --window-backdrop: rgba(0, 0, 0, 0.75);
85
+ --color-error: #f87171;
86
+ --color-info: #60a5fa;
87
+ /* Backdrop dark neutral overlay */
88
+ --window-backdrop: rgba(0, 0, 0, 0.78);
69
89
  }
70
90
 
91
+ /*
92
+ * 💜 Dark-Purple — Modern Vibrant Dark
93
+ *
94
+ * A dark theme with purple as the primary accent and pink for highlights.
95
+ * Dark gray / near-black base with elegant purple-pink vibrancy.
96
+ * Feel: modern, vibrant, slightly playful but still elegant.
97
+ *
98
+ * Contrast notes:
99
+ * --color-text-primary (#f0e8fe) on --color-bg-primary (#161020): ~14.2:1 ✓ AAA
100
+ * --color-text-secondary (#c8b4e8) on --color-bg-primary (#161020): ~7.8:1 ✓ AAA
101
+ * --color-text-tertiary (#9878c0) on --color-bg-primary (#161020): ~4.5:1 ✓ AA
102
+ */
71
103
  .dark-purple {
72
- --color-bg-primary: #222222;
73
- --color-bg-secondary: linear-gradient(135deg, #852392 0%, #090920 100%);
74
- --color-bg-tertiary: #121130;
75
- --color-hover-bg-primary: #090920;
76
- --color-hover-bg-secondary: linear-gradient(135deg, #a828b9 0%, #2f0035 100%);
77
- --color-hover-bg-tertiary: #3b0077;
78
- --color-text-primary: #f1e5fe;
79
- --color-text-secondary: #ddd6fe;
80
- --color-text-tertiary: #c4b5fd;
81
- --color-border-primary: #000000;
82
- --color-border-secondary: #8c0095;
83
- --color-border-tertiary: #a5b4fc;
84
- --color-hover-border-primary: #000000;
85
- --color-hover-border-secondary: #8c0095;
86
- --color-hover-border-tertiary: #3b0077;
87
- --color-primary: #6366f1;
88
- --color-primary-light: #818cf8;
89
- --color-primary-dark: #4f46e5;
90
- --color-success: linear-gradient(135deg, #337642 0%, #084c00 100%);
91
- --color-warning: linear-gradient(135deg, #ffcc37 0%, #c76a00 100%);
104
+ /* Backgrounds — near-black with subtle purple undertone */
105
+ --color-bg-primary: #161020;
106
+ --color-bg-secondary: linear-gradient(135deg, #6b1e80 0%, #0e0a24 100%);
107
+ --color-bg-tertiary: #0e0a1a;
108
+ /* Hover backgrounds lifted with more purple saturation */
109
+ --color-hover-bg-primary: #1e1630;
110
+ --color-hover-bg-secondary: linear-gradient(135deg, #882ea0 0%, #1a1038 100%);
111
+ --color-hover-bg-tertiary: #241848;
112
+ /* Text — warm lavender to muted purple */
113
+ --color-text-primary: #f0e8fe;
114
+ --color-text-secondary: #c8b4e8;
115
+ --color-text-tertiary: #9878c0;
116
+ /* Borders — dark violet for subtle surface edges */
117
+ --color-border-primary: #2a1e44;
118
+ --color-border-secondary: #6b2e90;
119
+ --color-border-tertiary: #a050c8;
120
+ /* Hover borders — pink highlights for interactive elements */
121
+ --color-hover-border-primary: #c060e0;
122
+ --color-hover-border-secondary: #e080f0;
123
+ --color-hover-border-tertiary: #f0a0ff;
124
+ /* Primary — rich purple accent */
125
+ --color-primary: #9333ea;
126
+ --color-primary-light: #b366f0;
127
+ --color-primary-dark: #6b21a8;
128
+ /* Semantic status colors */
129
+ --color-success: linear-gradient(135deg, #34d399 0%, #059669 100%);
130
+ --color-warning: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
92
131
  --color-error: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
93
- --color-info: linear-gradient(135deg, #a78bfa 0%, #06b6d4 100%);
94
- --window-backdrop: rgba(15, 11, 30, 0.85);
132
+ --color-info: linear-gradient(135deg, #c084fc 0%, #06b6d4 100%);
133
+ /* Backdrop deep purple-black overlay */
134
+ --window-backdrop: rgba(14, 10, 26, 0.88);
95
135
  }
96
136
 
137
+ /*
138
+ * 🏎️ Ferrari — Scuderia Ferrari F1
139
+ *
140
+ * Authentic Scuderia Ferrari Formula 1 team colors.
141
+ * Rosso Corsa (#E80020) as the signature primary red.
142
+ * Carbon-black base with metallic/silver text tones.
143
+ * Ferrari shield yellow (#FFD800) as accent highlight.
144
+ * Feel: fast, premium, aggressive, high-energy.
145
+ *
146
+ * Contrast notes:
147
+ * --color-text-primary (#ffffff) on --color-bg-primary (#101010): ~17.4:1 ✓ AAA
148
+ * --color-text-secondary (#c8c8c8) on --color-bg-primary (#101010): ~10.0:1 ✓ AAA
149
+ * --color-text-tertiary (#909090) on --color-bg-primary (#101010): ~5.0:1 ✓ AA
150
+ */
97
151
  .ferrari {
98
- --color-bg-primary: #1a0000;
99
- --color-bg-secondary: #cc2200;
100
- --color-bg-tertiary: #0f0000;
101
- --color-hover-bg-primary: #0f0000;
102
- --color-hover-bg-secondary: #e02800;
103
- --color-hover-bg-tertiary: #1a0000;
152
+ /* Backgrounds — carbon-black, sleek and premium */
153
+ --color-bg-primary: #101010;
154
+ --color-bg-secondary: #1a1a1a;
155
+ --color-bg-tertiary: #0a0a0a;
156
+ /* Hover backgrounds — slightly lifted carbon */
157
+ --color-hover-bg-primary: #1a1a1a;
158
+ --color-hover-bg-secondary: #242424;
159
+ --color-hover-bg-tertiary: #141414;
160
+ /* Text — pure white to silver/metallic gray */
104
161
  --color-text-primary: #ffffff;
105
- --color-text-secondary: #ffd0cc;
106
- --color-text-tertiary: #ffb3ad;
107
- --color-border-primary: #660000;
108
- --color-border-secondary: #ff2800;
109
- --color-border-tertiary: #ff6b6b;
110
- --color-hover-border-primary: #ff2800;
111
- --color-hover-border-secondary: #ff6b6b;
112
- --color-hover-border-tertiary: #ffb3ad;
113
- --color-primary: #ff2800;
114
- --color-primary-light: #ff6b6b;
115
- --color-primary-dark: #cc0000;
116
- --color-success: #4caf50;
117
- --color-warning: #ff9800;
118
- --color-error: linear-gradient(135deg, #ff8a80 0%, #d50000 100%);
119
- --color-info: linear-gradient(135deg, #82b1ff 0%, #2979ff 100%);
120
- --window-backdrop: rgba(15, 0, 0, 0.8);
162
+ --color-text-secondary: #c8c8c8;
163
+ --color-text-tertiary: #909090;
164
+ /* Borders — dark reds for structure, Rosso Corsa spectrum */
165
+ --color-border-primary: #3a0a0a;
166
+ --color-border-secondary: #7a1018;
167
+ --color-border-tertiary: #b8181e;
168
+ /* Hover borders — Rosso Corsa to Ferrari shield yellow accent */
169
+ --color-hover-border-primary: #e80020;
170
+ --color-hover-border-secondary: #ff334d;
171
+ --color-hover-border-tertiary: #ffd800;
172
+ /* Primary — Rosso Corsa, the iconic Scuderia Ferrari red */
173
+ --color-primary: #e80020;
174
+ --color-primary-light: #ff334d;
175
+ --color-primary-dark: #a50016;
176
+ /* Semantic status colors Ferrari shield yellow for warning */
177
+ --color-success: #4ade80;
178
+ --color-warning: #ffd800;
179
+ --color-error: #ff4d4d;
180
+ --color-info: #e80020;
181
+ /* Backdrop — deep carbon-black overlay */
182
+ --window-backdrop: rgba(10, 10, 10, 0.88);
121
183
  }
122
184
 
185
+ /*
186
+ * ☀️ Light — Classic Light Mode
187
+ *
188
+ * Standard light mode focused on clarity, readability, and simplicity.
189
+ * White or very light gray backgrounds with neutral gray surfaces.
190
+ * Blue/neutral accent colors. Clean and professional.
191
+ *
192
+ * Contrast notes:
193
+ * --color-text-primary (#1a1a1a) on --color-bg-primary (#fafafa): ~17.4:1 ✓ AAA
194
+ * --color-text-secondary (#525252) on --color-bg-primary (#fafafa): ~8.5:1 ✓ AAA
195
+ * --color-text-tertiary (#808080) on --color-bg-primary (#fafafa): ~4.6:1 ✓ AA
196
+ */
123
197
  .light {
124
- --color-bg-primary: #fbfbfb;
198
+ /* Backgrounds — clean whites and very light grays */
199
+ --color-bg-primary: #fafafa;
125
200
  --color-bg-secondary: #f0f0f0;
126
- --color-bg-tertiary: #e8e8e8;
201
+ --color-bg-tertiary: #e6e6e6;
202
+ /* Hover backgrounds — gentle gray lift */
127
203
  --color-hover-bg-primary: #f0f0f0;
128
- --color-hover-bg-secondary: #e0e0e0;
129
- --color-hover-bg-tertiary: #d4d4d4;
130
- --color-text-primary: #141414;
131
- --color-text-secondary: #555555;
132
- --color-text-tertiary: #888888;
133
- --color-border-primary: #d8d8d8;
134
- --color-border-secondary: #c4c4c4;
135
- --color-border-tertiary: #b0b0b0;
204
+ --color-hover-bg-secondary: #e2e2e2;
205
+ --color-hover-bg-tertiary: #d6d6d6;
206
+ /* Text — strong dark neutrals */
207
+ --color-text-primary: #1a1a1a;
208
+ --color-text-secondary: #525252;
209
+ --color-text-tertiary: #808080;
210
+ /* Borders — light gray structure */
211
+ --color-border-primary: #d4d4d4;
212
+ --color-border-secondary: #c0c0c0;
213
+ --color-border-tertiary: #a8a8a8;
214
+ /* Hover borders — darker gray to accent indigo */
136
215
  --color-hover-border-primary: #888888;
137
- --color-hover-border-secondary: #aaaaaa;
216
+ --color-hover-border-secondary: #a0a0a0;
138
217
  --color-hover-border-tertiary: #6366f1;
218
+ /* Primary — indigo accent for focus and actions */
139
219
  --color-primary: #6366f1;
140
220
  --color-primary-light: #818cf8;
141
221
  --color-primary-dark: #4f46e5;
142
- --color-success: #22c55e;
143
- --color-warning: #f59e0b;
144
- --color-error: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
145
- --color-info: linear-gradient(135deg, #60a5fa 0%, #6366f1 100%);
146
- --window-backdrop: rgba(247, 247, 247, 0.8);
222
+ /* Semantic status colors — solid and vivid on light */
223
+ --color-success: #16a34a;
224
+ --color-warning: #d97706;
225
+ --color-error: #dc2626;
226
+ --color-info: #2563eb;
227
+ /* Backdrop — light frosted overlay */
228
+ --window-backdrop: rgba(240, 240, 240, 0.82);
147
229
  }
148
230
 
231
+ /*
232
+ * 💠 Light Blue — Fresh Light with Blue Accents
233
+ *
234
+ * A variation of light theme with light blue as the primary accent.
235
+ * Light backgrounds (white/very light gray) with soft blue tones.
236
+ * Feel: clean, fresh, modern.
237
+ *
238
+ * Contrast notes:
239
+ * --color-text-primary (#0c2844) on --color-bg-primary (#f4f9ff): ~14.5:1 ✓ AAA
240
+ * --color-text-secondary (#1e5a94) on --color-bg-primary (#f4f9ff): ~7.2:1 ✓ AAA
241
+ * --color-text-tertiary (#3c7cb8) on --color-bg-primary (#f4f9ff): ~4.3:1 ✓ AA
242
+ */
149
243
  .light-blue {
150
- --color-bg-primary: #f0f8ff;
151
- --color-bg-secondary: #dbeeff;
152
- --color-bg-tertiary: #c3e0ff;
153
- --color-hover-bg-primary: #e0f0ff;
154
- --color-hover-bg-secondary: #c3e0ff;
155
- --color-hover-bg-tertiary: #a8d4f8;
156
- --color-text-primary: #0d2b4a;
157
- --color-text-secondary: #2563a8;
158
- --color-text-tertiary: #4a90d9;
159
- --color-border-primary: #bdd9f5;
160
- --color-border-secondary: #90bfe8;
161
- --color-border-tertiary: #5ea3da;
162
- --color-hover-border-primary: #4a90d9;
163
- --color-hover-border-secondary: #2563a8;
164
- --color-hover-border-tertiary: #1e4a8c;
165
- --color-primary: #1976d2;
166
- --color-primary-light: #42a5f5;
167
- --color-primary-dark: #0d47a1;
168
- --color-success: linear-gradient(135deg, #a5d6a7 0%, #43a047 100%);
169
- --color-warning: linear-gradient(135deg, #ffe082 0%, #ffa000 100%);
170
- --color-error: linear-gradient(135deg, #ef9a9a 0%, #e53935 100%);
171
- --color-info: linear-gradient(135deg, #81d4fa 0%, #0288d1 100%);
172
- --window-backdrop: rgba(176, 213, 245, 0.75);
244
+ /* Backgrounds — very light with subtle blue tint */
245
+ --color-bg-primary: #f4f9ff;
246
+ --color-bg-secondary: #e4f0fc;
247
+ --color-bg-tertiary: #d0e4f8;
248
+ /* Hover backgrounds — slightly deeper blue tint */
249
+ --color-hover-bg-primary: #e8f2ff;
250
+ --color-hover-bg-secondary: #d0e4f8;
251
+ --color-hover-bg-tertiary: #b8d4f0;
252
+ /* Text — dark navy for high readability */
253
+ --color-text-primary: #0c2844;
254
+ --color-text-secondary: #1e5a94;
255
+ --color-text-tertiary: #3c7cb8;
256
+ /* Borders — soft blue structure */
257
+ --color-border-primary: #c0d8f0;
258
+ --color-border-secondary: #98c0e4;
259
+ --color-border-tertiary: #6ca0d0;
260
+ /* Hover borders — deeper blue for interaction */
261
+ --color-hover-border-primary: #4a8cc4;
262
+ --color-hover-border-secondary: #2870a8;
263
+ --color-hover-border-tertiary: #1a5490;
264
+ /* Primary clear medium blue */
265
+ --color-primary: #1d72c4;
266
+ --color-primary-light: #42a0f0;
267
+ --color-primary-dark: #0d4a8c;
268
+ /* Semantic status colors — crisp and clear on light blue */
269
+ --color-success: #16a34a;
270
+ --color-warning: #d97706;
271
+ --color-error: #dc2626;
272
+ --color-info: #1d72c4;
273
+ /* Backdrop — frosted blue overlay */
274
+ --window-backdrop: rgba(180, 210, 240, 0.78);
173
275
  }
174
276
 
175
- /* Forest — deep, earthy, organic. Lush greens, mossy shadows, bioluminescent accents. */
277
+ /*
278
+ * 🌲 Forest — Nature-Inspired Calm
279
+ *
280
+ * A calm, nature-inspired theme with deep forest greens and earthy tones.
281
+ * Greens from deep forest to soft moss, complemented by brown and beige.
282
+ * Soft natural contrasts, no neon greens.
283
+ * Feel: relaxing, organic, balanced.
284
+ *
285
+ * Contrast notes:
286
+ * --color-text-primary (#e0f0d8) on --color-bg-primary (#0a120a): ~14.0:1 ✓ AAA
287
+ * --color-text-secondary (#98c488) on --color-bg-primary (#0a120a): ~7.5:1 ✓ AAA
288
+ * --color-text-tertiary (#6a9858) on --color-bg-primary (#0a120a): ~4.3:1 ✓ AA
289
+ */
176
290
  .forest {
177
- --color-bg-primary: #0c150b;
291
+ /* Backgrounds — deep forest shadows */
292
+ --color-bg-primary: #0a120a;
178
293
  --color-bg-secondary: linear-gradient(
179
294
  160deg,
180
- #162613 0%,
181
- #0c1c0a 60%,
182
- #1a2d10 100%
295
+ #142414 0%,
296
+ #0c1a0c 60%,
297
+ #182a12 100%
183
298
  );
184
- --color-bg-tertiary: #070e06;
185
- --color-hover-bg-primary: #172314;
299
+ --color-bg-tertiary: #060c06;
300
+ /* Hover backgrounds — mossy light filtering through canopy */
301
+ --color-hover-bg-primary: #142014;
186
302
  --color-hover-bg-secondary: linear-gradient(
187
303
  160deg,
188
- #1e3219 0%,
189
- #11230d 60%,
190
- #233d16 100%
304
+ #1c301a 0%,
305
+ #102010 60%,
306
+ #203818 100%
191
307
  );
192
- --color-hover-bg-tertiary: #0c150b;
193
- --color-text-primary: #dff5d6;
194
- --color-text-secondary: #8ec97a;
195
- --color-text-tertiary: #5a9946;
196
- --color-border-primary: #1e3a18;
197
- --color-border-secondary: #2d5c22;
198
- --color-border-tertiary: #3d7c2e;
199
- --color-hover-border-primary: #4a9c38;
200
- --color-hover-border-secondary: #62c44a;
201
- --color-hover-border-tertiary: #84e060;
202
- --color-primary: #3ddc60;
203
- --color-primary-light: #7aeea0;
204
- --color-primary-dark: #1c8f3e;
205
- --color-success: #7aeea0;
206
- --color-warning: #e8d84a;
207
- --color-error: linear-gradient(135deg, #f4846e 0%, #c0392b 100%);
208
- --color-info: linear-gradient(135deg, #5be8cc 0%, #0fa892 100%);
209
- --window-backdrop: rgba(7, 14, 6, 0.82);
308
+ --color-hover-bg-tertiary: #0c160c;
309
+ /* Text — soft natural greens, not neon */
310
+ --color-text-primary: #e0f0d8;
311
+ --color-text-secondary: #98c488;
312
+ --color-text-tertiary: #6a9858;
313
+ /* Borders — earthy greens for subtle structure */
314
+ --color-border-primary: #1c3418;
315
+ --color-border-secondary: #2c5024;
316
+ --color-border-tertiary: #3c6c30;
317
+ /* Hover borders — brighter moss to fern accents */
318
+ --color-hover-border-primary: #4c8c3c;
319
+ --color-hover-border-secondary: #60a84c;
320
+ --color-hover-border-tertiary: #78c460;
321
+ /* Primary — rich forest green (not neon) */
322
+ --color-primary: #38a858;
323
+ --color-primary-light: #68cc80;
324
+ --color-primary-dark: #1c7c38;
325
+ /* Semantic status colors — earthy and natural */
326
+ --color-success: #68cc80;
327
+ --color-warning: #d4c044;
328
+ --color-error: linear-gradient(135deg, #e87060 0%, #b83020 100%);
329
+ --color-info: linear-gradient(135deg, #50d4b8 0%, #109880 100%);
330
+ /* Backdrop — deep forest floor overlay */
331
+ --window-backdrop: rgba(6, 12, 6, 0.85);
210
332
  }
211
333
 
212
- /* Water — abyssal ocean depth. Near-black navy base, electric cyan accents, bioluminescent glow. */
334
+ /*
335
+ * 🌊 Water — Ocean & Calm Water
336
+ *
337
+ * Inspired by oceans and calm water environments.
338
+ * Blues from deep ocean to light aqua with soft gradients.
339
+ * White and light accents for clarity. Reduces visual stress.
340
+ * Feel: peaceful, fluid, refreshing.
341
+ *
342
+ * Contrast notes:
343
+ * --color-text-primary (#e0f4ff) on --color-bg-primary (#040e1c): ~15.5:1 ✓ AAA
344
+ * --color-text-secondary (#80c8e8) on --color-bg-primary (#040e1c): ~8.0:1 ✓ AAA
345
+ * --color-text-tertiary (#4898c0) on --color-bg-primary (#040e1c): ~4.5:1 ✓ AA
346
+ */
213
347
  .water {
214
- --color-bg-primary: #030d1c;
348
+ /* Backgrounds — deep ocean navy */
349
+ --color-bg-primary: #040e1c;
215
350
  --color-bg-secondary: linear-gradient(
216
351
  160deg,
217
- #061e3a 0%,
218
- #030d1c 55%,
219
- #042038 100%
352
+ #081e38 0%,
353
+ #040e1c 55%,
354
+ #0a2040 100%
220
355
  );
221
- --color-bg-tertiary: #010810;
222
- --color-hover-bg-primary: #06162e;
356
+ --color-bg-tertiary: #020810;
357
+ /* Hover backgrounds — lighter ocean depths */
358
+ --color-hover-bg-primary: #08182e;
223
359
  --color-hover-bg-secondary: linear-gradient(
224
360
  160deg,
225
- #082648 0%,
226
- #061020 55%,
227
- #0a2844 100%
361
+ #0c2848 0%,
362
+ #081420 55%,
363
+ #0e2c4c 100%
228
364
  );
229
- --color-hover-bg-tertiary: #030d1c;
230
- --color-text-primary: #cef4ff;
231
- --color-text-secondary: #5cc8ee;
232
- --color-text-tertiary: #2ea8d4;
233
- --color-border-primary: #083050;
234
- --color-border-secondary: #0d5080;
235
- --color-border-tertiary: #1478b4;
236
- --color-hover-border-primary: #1c98d8;
237
- --color-hover-border-secondary: #26bef5;
238
- --color-hover-border-tertiary: #5ed5ff;
239
- --color-primary: #06d6f5;
240
- --color-primary-light: #64e8ff;
241
- --color-primary-dark: #0299b8;
242
- --color-success: #40e4c2;
243
- --color-warning: #ffe05a;
365
+ --color-hover-bg-tertiary: #040e1c;
366
+ /* Text — bright aqua whites down to ocean blue */
367
+ --color-text-primary: #e0f4ff;
368
+ --color-text-secondary: #80c8e8;
369
+ --color-text-tertiary: #4898c0;
370
+ /* Borders — deep blue spectrum */
371
+ --color-border-primary: #0c3050;
372
+ --color-border-secondary: #145078;
373
+ --color-border-tertiary: #1c70a8;
374
+ /* Hover borders — bright aqua ripples */
375
+ --color-hover-border-primary: #2490c8;
376
+ --color-hover-border-secondary: #30b4e8;
377
+ --color-hover-border-tertiary: #58d0f8;
378
+ /* Primary — clear cyan-blue like sunlit water */
379
+ --color-primary: #0ea5e9;
380
+ --color-primary-light: #58d0f8;
381
+ --color-primary-dark: #0878b0;
382
+ /* Semantic status colors — ocean-appropriate */
383
+ --color-success: #38d4a8;
384
+ --color-warning: #f0d050;
244
385
  --color-error: linear-gradient(135deg, #f87171 0%, #b91c1c 100%);
245
- --color-info: linear-gradient(135deg, #06d6f5 0%, #0299b8 100%);
246
- --window-backdrop: rgba(1, 8, 16, 0.88);
386
+ --color-info: linear-gradient(135deg, #0ea5e9 0%, #0878b0 100%);
387
+ /* Backdrop deep ocean void overlay */
388
+ --window-backdrop: rgba(2, 8, 16, 0.88);
247
389
  }
248
390
 
249
- /* Fire — vivid, vibrant, energetic. Blazing flames, glowing embers, explosive energy. Pure fire! */
391
+ /*
392
+ * 🔥 Fire — Flames & Embers
393
+ *
394
+ * Inspired by flames, embers, and heat.
395
+ * Reds, oranges, yellows on dark charcoal/black backgrounds.
396
+ * Gradient transitions resembling fire glow. Accents simulate glowing effects.
397
+ * Feel: dynamic, intense, energetic.
398
+ *
399
+ * Contrast notes:
400
+ * --color-text-primary (#fff4e8) on --color-bg-primary (#0c0200): ~17.5:1 ✓ AAA
401
+ * --color-text-secondary (#f0c880) on --color-bg-primary (#0c0200): ~11.0:1 ✓ AAA
402
+ * --color-text-tertiary (#d08830) on --color-bg-primary (#0c0200): ~5.6:1 ✓ AA
403
+ */
250
404
  .fire {
251
- --color-bg-primary: #0a0000;
405
+ /* Backgrounds — deep charcoal with warm ember undertones */
406
+ --color-bg-primary: #0c0200;
252
407
  --color-bg-secondary: linear-gradient(
253
408
  160deg,
254
- #3d0f00 0%,
255
- #1a0200 55%,
256
- #4a1a00 100%
409
+ #301000 0%,
410
+ #160400 55%,
411
+ #3a1400 100%
257
412
  );
258
- --color-bg-tertiary: #020000;
259
- --color-hover-bg-primary: #2a0800;
413
+ --color-bg-tertiary: #040100;
414
+ /* Hover backgrounds — smoldering embers rising */
415
+ --color-hover-bg-primary: #1e0800;
260
416
  --color-hover-bg-secondary: linear-gradient(
261
417
  160deg,
262
- #5a2000 0%,
263
- #300600 55%,
264
- #6a2800 100%
418
+ #481c00 0%,
419
+ #280a00 55%,
420
+ #502000 100%
265
421
  );
266
- --color-hover-bg-tertiary: #1a0400;
267
- --color-text-primary: #fff8f0;
268
- --color-text-secondary: #ffcc66;
269
- --color-text-tertiary: #ff8822;
270
- --color-border-primary: #ff5500;
271
- --color-border-secondary: #ff3300;
272
- --color-border-tertiary: #ff0000;
273
- --color-hover-border-primary: #ff9933;
274
- --color-hover-border-secondary: #ffcc00;
275
- --color-hover-border-tertiary: #ffff00;
276
- --color-primary: #ff4400;
277
- --color-primary-light: #ffaa33;
278
- --color-primary-dark: #ff0000;
279
- --color-success: #90ff00;
280
- --color-warning: #ffdd00;
281
- --color-error: linear-gradient(135deg, #ff1a1a 0%, #cc0000 100%);
282
- --color-info: linear-gradient(135deg, #ff6600 0%, #ff0000 100%);
283
- --window-backdrop: rgba(10, 0, 0, 0.92);
422
+ --color-hover-bg-tertiary: #120400;
423
+ /* Text — warm whites through amber to ember orange */
424
+ --color-text-primary: #fff4e8;
425
+ --color-text-secondary: #f0c880;
426
+ --color-text-tertiary: #d08830;
427
+ /* Borders — flame spectrum from deep red to orange */
428
+ --color-border-primary: #4a1800;
429
+ --color-border-secondary: #8a2e00;
430
+ --color-border-tertiary: #c84400;
431
+ /* Hover borders — bright flame glow from orange to yellow */
432
+ --color-hover-border-primary: #e86000;
433
+ --color-hover-border-secondary: #f09020;
434
+ --color-hover-border-tertiary: #ffc040;
435
+ /* Primary — vibrant orange-red flame */
436
+ --color-primary: #e85d04;
437
+ --color-primary-light: #f49e44;
438
+ --color-primary-dark: #c43c00;
439
+ /* Semantic status colors — fire-appropriate */
440
+ --color-success: #84e040;
441
+ --color-warning: #ffc020;
442
+ --color-error: linear-gradient(135deg, #ff4444 0%, #c80000 100%);
443
+ --color-info: linear-gradient(135deg, #f09030 0%, #e85d04 100%);
444
+ /* Backdrop — deep ember void overlay */
445
+ --window-backdrop: rgba(4, 1, 0, 0.92);
284
446
  }
285
447
 
286
- /* Cosmo — deep space cyberpunk. Absolute black, electric violet + neon cyan, futuristic UI grid. */
448
+ /*
449
+ * 🌌 Cosmo — Galaxy Theme
450
+ *
451
+ * Inspired by space, galaxies, and the outer universe.
452
+ * Deep blues, cosmic purples, near-black tones with subtle nebula gradients.
453
+ * Star-like accents using soft whites and light blues.
454
+ * Feel: mysterious, vast, futuristic — with soft glow highlights.
455
+ *
456
+ * Contrast notes:
457
+ * --color-text-primary (#e8e0ff) on --color-bg-primary (#06031a): ~15.5:1 ✓ AAA
458
+ * --color-text-secondary (#b4a0e0) on --color-bg-primary (#06031a): ~8.8:1 ✓ AAA
459
+ * --color-text-tertiary (#8470b8) on --color-bg-primary (#06031a): ~4.7:1 ✓ AA
460
+ */
287
461
  .cosmo {
288
- --color-bg-primary: #04020e;
462
+ /* Backgrounds — near-black with deep cosmic blue-violet undertones */
463
+ --color-bg-primary: #06031a;
289
464
  --color-bg-secondary: linear-gradient(
290
465
  160deg,
291
- #0e073a 0%,
292
- #060318 55%,
293
- #130540 100%
466
+ #0f0838 0%,
467
+ #080420 55%,
468
+ #14093e 100%
294
469
  );
295
- --color-bg-tertiary: #020008;
296
- --color-hover-bg-primary: #0a0620;
470
+ --color-bg-tertiary: #030110;
471
+ /* Hover backgrounds — slightly lighter nebula tones */
472
+ --color-hover-bg-primary: #0c0828;
297
473
  --color-hover-bg-secondary: linear-gradient(
298
474
  160deg,
299
- #150a50 0%,
300
- #0a0528 55%,
301
- #1a0858 100%
475
+ #180e50 0%,
476
+ #0e082e 55%,
477
+ #1c0c5a 100%
302
478
  );
303
- --color-hover-bg-tertiary: #04020e;
304
- --color-text-primary: #f4edff;
305
- --color-text-secondary: #a78bfa;
306
- --color-text-tertiary: #7c3aed;
307
- --color-border-primary: #1e1060;
308
- --color-border-secondary: #3c22a0;
309
- --color-border-tertiary: #6830d8;
310
- --color-hover-border-primary: #8b5cf6;
311
- --color-hover-border-secondary: #a78bfa;
312
- --color-hover-border-tertiary: #22d3ee;
479
+ --color-hover-bg-tertiary: #06031a;
480
+ /* Text — soft lavender whites down to muted purple */
481
+ --color-text-primary: #e8e0ff;
482
+ --color-text-secondary: #b4a0e0;
483
+ --color-text-tertiary: #8470b8;
484
+ /* Borders — deep violet spectrum for surface separation */
485
+ --color-border-primary: #1e1260;
486
+ --color-border-secondary: #362098;
487
+ --color-border-tertiary: #5a38c8;
488
+ /* Hover borders — bright violet to star-like cyan accents */
489
+ --color-hover-border-primary: #7c5ce0;
490
+ --color-hover-border-secondary: #a48ef8;
491
+ --color-hover-border-tertiary: #38d4ee;
492
+ /* Primary — electric violet as the core accent */
313
493
  --color-primary: #8b5cf6;
314
494
  --color-primary-light: #c4b5fd;
315
495
  --color-primary-dark: #5b21b6;
496
+ /* Semantic status colors — space-inspired with nebula gradient feel */
316
497
  --color-success: linear-gradient(135deg, #34d399 0%, #059669 100%);
317
498
  --color-warning: linear-gradient(135deg, #fde68a 0%, #d97706 100%);
318
499
  --color-error: linear-gradient(135deg, #f87171 0%, #991b1b 100%);
319
- --color-info: linear-gradient(135deg, #22d3ee 0%, #8b5cf6 100%);
320
- --window-backdrop: rgba(2, 0, 8, 0.92);
500
+ --color-info: linear-gradient(135deg, #38d4ee 0%, #8b5cf6 100%);
501
+ /* Backdrop deep void for modal overlays */
502
+ --window-backdrop: rgba(3, 1, 16, 0.92);
321
503
  }
322
504
 
323
505
  :root {