@almadar/ui 5.123.0 → 5.124.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.
Files changed (57) hide show
  1. package/dist/{TraitProvider-YkK6tXDw.d.cts → TraitProvider-Ch79cUcb.d.cts} +6 -1
  2. package/dist/{TraitProvider-YkK6tXDw.d.ts → TraitProvider-Ch79cUcb.d.ts} +6 -1
  3. package/dist/{UserContext-bziZwgFL.d.cts → UserContext-BKckAUv7.d.cts} +5 -5
  4. package/dist/{UserContext-bziZwgFL.d.ts → UserContext-BKckAUv7.d.ts} +5 -5
  5. package/dist/avl/index.cjs +265 -227
  6. package/dist/avl/index.js +267 -229
  7. package/dist/components/index.cjs +208 -200
  8. package/dist/components/index.d.cts +4 -3
  9. package/dist/components/index.d.ts +4 -3
  10. package/dist/components/index.js +208 -200
  11. package/dist/context/index.cjs +25 -66
  12. package/dist/context/index.d.cts +1 -1
  13. package/dist/context/index.d.ts +1 -1
  14. package/dist/context/index.js +25 -66
  15. package/dist/providers/index.cjs +286 -219
  16. package/dist/providers/index.d.cts +4 -4
  17. package/dist/providers/index.d.ts +4 -4
  18. package/dist/providers/index.js +286 -219
  19. package/dist/runtime/index.cjs +258 -220
  20. package/dist/runtime/index.d.cts +4 -2
  21. package/dist/runtime/index.d.ts +4 -2
  22. package/dist/runtime/index.js +260 -222
  23. package/package.json +8 -7
  24. package/themes/_contract.md +2 -0
  25. package/themes/almadar-website.css +3 -3
  26. package/themes/almadar.css +4 -4
  27. package/themes/bloomberg-dense.css +2 -2
  28. package/themes/clay.css +417 -0
  29. package/themes/corporate.css +411 -0
  30. package/themes/game-adventure.css +3 -3
  31. package/themes/game-rpg.css +2 -2
  32. package/themes/game-sci-fi.css +1 -1
  33. package/themes/game-ui-pack.css +2 -2
  34. package/themes/gazette.css +2 -2
  35. package/themes/glass.css +428 -0
  36. package/themes/index.css +9 -13
  37. package/themes/kiosk.css +5 -5
  38. package/themes/linear-clean.css +1 -1
  39. package/themes/minimalist.css +2 -2
  40. package/themes/neon.css +3 -3
  41. package/themes/notion-editorial.css +1 -1
  42. package/themes/prism.css +3 -3
  43. package/themes/retro.css +410 -0
  44. package/themes/terminal.css +1 -1
  45. package/themes/trait-wars.css +8 -8
  46. package/themes/wireframe.css +2 -2
  47. package/themes/arctic.css +0 -235
  48. package/themes/copper.css +0 -235
  49. package/themes/ember.css +0 -238
  50. package/themes/forest.css +0 -238
  51. package/themes/lavender.css +0 -233
  52. package/themes/midnight.css +0 -234
  53. package/themes/ocean.css +0 -238
  54. package/themes/rose.css +0 -233
  55. package/themes/sand.css +0 -234
  56. package/themes/slate.css +0 -233
  57. package/themes/sunset.css +0 -238
@@ -0,0 +1,410 @@
1
+ /**
2
+ * Retro Theme — "80s/90s Vaporwave Arcade"
3
+ *
4
+ * CRT-terminal energy: pixel display type (VT323) over deep indigo-purple,
5
+ * hot magenta primary against electric cyan accents, hard offset shadows in
6
+ * solid contrasting colors like a screen-printed arcade cabinet, razor-sharp
7
+ * corners, and snappy linear micro-transitions that feel like a button press
8
+ * on an 8-bit machine. Dark mode is the native habitat; light mode is a
9
+ * lavender day-shift.
10
+ */
11
+
12
+ /* ==========================================================================
13
+ * LIGHT MODE
14
+ * ========================================================================== */
15
+ [data-theme="retro-light"] {
16
+ /* Shadows - Hard offset, solid contrasting colors (arcade print) */
17
+ --shadow-main: 4px 4px 0 0 rgba(255, 46, 136, 0.55);
18
+ --shadow-sm: 2px 2px 0 0 rgba(255, 46, 136, 0.45);
19
+ --shadow-lg:
20
+ 6px 6px 0 0 rgba(255, 46, 136, 0.55);
21
+ --shadow-inner: inset 2px 2px 0 0 rgba(109, 40, 217, 0.12);
22
+ --shadow-none: none;
23
+ --shadow-hover:
24
+ 6px 6px 0 0 rgba(0, 188, 212, 0.7);
25
+ --shadow-active: 1px 1px 0 0 rgba(255, 46, 136, 0.55);
26
+
27
+ /* Border radius - Sharp arcade corners */
28
+ --radius-none: 0px;
29
+ --radius-sm: 2px;
30
+ --radius-md: 4px;
31
+ --radius-lg: 4px;
32
+ --radius-xl: 4px;
33
+ --radius-full: 9999px;
34
+
35
+ /* Border width - Chunky outlined look */
36
+ --border-width: 2px;
37
+ --border-width-thin: 1px;
38
+ --border-width-thick: 3px;
39
+
40
+ /* Colors - Lavender day-shift over deep indigo ink */
41
+ --color-primary: #e01a74;
42
+ --color-primary-hover: #c01563;
43
+ --color-primary-foreground: #ffffff;
44
+
45
+ --color-secondary: #e9d5ff;
46
+ --color-secondary-hover: #d8b4fe;
47
+ --color-secondary-foreground: #3b1a63;
48
+
49
+ --color-accent: #00798c;
50
+ --color-accent-foreground: #ffffff;
51
+
52
+ --color-muted: #e9d5ff;
53
+ --color-muted-foreground: #6b4a9e;
54
+
55
+ --color-background: #f3e8ff;
56
+ --color-foreground: #2a1650;
57
+ --color-card: #ffffff;
58
+ --color-card-foreground: #2a1650;
59
+ --color-surface: #e9d5ff;
60
+ --color-border: rgba(255, 46, 136, 0.45);
61
+ --color-input: rgba(0, 172, 193, 0.45);
62
+ --color-ring: #00acc1;
63
+
64
+ /* Semantic colors */
65
+ --color-error: #dc2626;
66
+ --color-error-foreground: #ffffff;
67
+ --color-success: #15803d;
68
+ --color-success-foreground: #ffffff;
69
+ --color-warning: #d97706;
70
+ --color-warning-foreground: #000000;
71
+ --color-info: #0e7490;
72
+ --color-info-foreground: #ffffff;
73
+
74
+ /* Typography - Mono body, pixel display, wide tracking */
75
+ --font-family:
76
+ "IBM Plex Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
77
+ --font-weight-normal: 400;
78
+ --font-weight-medium: 500;
79
+ --font-weight-bold: 700;
80
+ --letter-spacing: 0.04em;
81
+ --line-height: 1.5;
82
+
83
+ /* Icon styling - Chunky strokes */
84
+ --icon-stroke-width: 2.5;
85
+ --icon-color: #e01a74;
86
+
87
+ /* Transitions - Snappy, mechanical, linear */
88
+ --transition-fast: 50ms;
89
+ --transition-normal: 80ms;
90
+ --transition-slow: 120ms;
91
+ --transition-timing: linear;
92
+
93
+ /* Hover/Active transforms - Button-press feel via shadow shift */
94
+ --hover-scale: 1.0;
95
+ --hover-translate-y: 0;
96
+ --hover-translate-x: 0;
97
+ --active-scale: 0.99;
98
+ --active-translate-y: 2px;
99
+
100
+ /* Focus ring */
101
+ --focus-ring-width: 2px;
102
+ --focus-ring-offset: 2px;
103
+ --focus-ring-color: #00acc1;
104
+
105
+ /* Layer 1 — backfill (preserves current visual output, see themes/_contract.md) */
106
+ /* Density axis — spacing scale */
107
+ --space-0: 0px;
108
+ --space-1: 4px;
109
+ --space-2: 8px;
110
+ --space-3: 12px;
111
+ --space-4: 16px;
112
+ --space-5: 20px;
113
+ --space-6: 24px;
114
+ --space-7: 28px;
115
+ --space-8: 32px;
116
+ --space-9: 36px;
117
+ --space-10: 40px;
118
+ --space-11: 44px;
119
+ --space-12: 48px;
120
+ /* Density axis — per-element heights */
121
+ --button-height-sm: 30px;
122
+ --button-height-md: 38px;
123
+ --button-height-lg: 46px;
124
+ --input-height-sm: 30px;
125
+ --input-height-md: 38px;
126
+ --input-height-lg: 46px;
127
+ --row-height-compact: 32px;
128
+ --row-height-normal: 40px;
129
+ --row-height-spacious: 48px;
130
+ /* Density axis — per-element padding */
131
+ --card-padding-sm: 12px;
132
+ --card-padding-md: 18px;
133
+ --card-padding-lg: 24px;
134
+ --dialog-padding: 24px;
135
+ --section-gap: 32px;
136
+ /* Type axis — family triplet (aliases existing --font-family for backward compat) */
137
+ --font-family-display: "VT323", "Courier New", monospace;
138
+ --font-family-body: var(--font-family);
139
+ --font-family-mono: "IBM Plex Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
140
+ /* Type axis — size scale */
141
+ --text-xs: 12px;
142
+ --leading-xs: 16px;
143
+ --text-sm: 14px;
144
+ --leading-sm: 20px;
145
+ --text-base: 16px;
146
+ --leading-base: 24px;
147
+ --text-lg: 18px;
148
+ --leading-lg: 28px;
149
+ --text-xl: 20px;
150
+ --leading-xl: 28px;
151
+ --text-2xl: 24px;
152
+ --leading-2xl: 32px;
153
+ --text-3xl: 30px;
154
+ --leading-3xl: 36px;
155
+ --text-4xl: 36px;
156
+ --leading-4xl: 40px;
157
+ --text-display-1: 48px;
158
+ --leading-display-1: 52px;
159
+ --text-display-2: 60px;
160
+ --leading-display-2: 64px;
161
+ /* Type axis — intent mapping */
162
+ --intent-heading-major-size: var(--text-2xl);
163
+ --intent-heading-major-weight: var(--font-weight-bold);
164
+ --intent-heading-major-leading: var(--leading-2xl);
165
+ --intent-heading-minor-size: var(--text-lg);
166
+ --intent-heading-minor-weight: var(--font-weight-bold);
167
+ --intent-heading-minor-leading: var(--leading-lg);
168
+ --intent-body-emphasis-size: var(--text-base);
169
+ --intent-body-emphasis-weight: var(--font-weight-medium);
170
+ --intent-body-emphasis-leading: var(--leading-base);
171
+ --intent-body-default-size: var(--text-sm);
172
+ --intent-body-default-weight: var(--font-weight-normal);
173
+ --intent-body-default-leading: var(--leading-sm);
174
+ --intent-body-quiet-size: var(--text-sm);
175
+ --intent-body-quiet-weight: var(--font-weight-normal);
176
+ --intent-body-quiet-leading: var(--leading-sm);
177
+ --intent-caption-size: var(--text-xs);
178
+ --intent-caption-weight: var(--font-weight-normal);
179
+ --intent-caption-leading: var(--leading-xs);
180
+ --intent-numeric-size: var(--text-sm);
181
+ --intent-numeric-weight: var(--font-weight-medium);
182
+ --intent-numeric-leading: var(--leading-sm);
183
+ /* Motion axis — duration palette */
184
+ --duration-instant: 0ms;
185
+ --duration-fast: var(--transition-fast);
186
+ --duration-normal: var(--transition-normal);
187
+ --duration-slow: var(--transition-slow);
188
+ --duration-dramatic: 400ms;
189
+ /* Motion axis — easing palette */
190
+ --easing-linear: linear;
191
+ --easing-standard: var(--transition-timing);
192
+ --easing-emphasized: linear;
193
+ --easing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
194
+ /* Iconography axis */
195
+ --icon-family: lucide;
196
+ --icon-default-size: 16px;
197
+ /* Elevation axis — per-layer mapping */
198
+ --elevation-card: var(--shadow-sm);
199
+ --elevation-popover: var(--shadow-main);
200
+ --elevation-dialog: var(--shadow-lg);
201
+ --elevation-toast: var(--shadow-main);
202
+ /* Geometry axis — radius rhythm with intent */
203
+ --radius-container: var(--radius-sm);
204
+ --radius-interactive: var(--radius-sm);
205
+ --radius-pill: var(--radius-full);
206
+ /* Geometry axis — border-width rhythm */
207
+ --border-hairline: 1px;
208
+ --border-standard: var(--border-width);
209
+ --border-heavy: var(--border-width-thick);
210
+ }
211
+
212
+ /* ==========================================================================
213
+ * DARK MODE
214
+ * ========================================================================== */
215
+ [data-theme="retro-dark"] {
216
+ /* Shadows - Hard offset, solid neon offsets (arcade cabinet) */
217
+ --shadow-main: 4px 4px 0 0 rgba(0, 229, 255, 0.9);
218
+ --shadow-sm: 2px 2px 0 0 rgba(0, 229, 255, 0.7);
219
+ --shadow-lg:
220
+ 6px 6px 0 0 rgba(0, 229, 255, 0.9);
221
+ --shadow-inner: inset 2px 2px 0 0 rgba(255, 46, 136, 0.25);
222
+ --shadow-none: none;
223
+ --shadow-hover:
224
+ 6px 6px 0 0 rgba(255, 46, 136, 0.9);
225
+ --shadow-active: 1px 1px 0 0 rgba(0, 229, 255, 0.9);
226
+
227
+ /* Border radius - Sharp arcade corners */
228
+ --radius-none: 0px;
229
+ --radius-sm: 2px;
230
+ --radius-md: 4px;
231
+ --radius-lg: 4px;
232
+ --radius-xl: 4px;
233
+ --radius-full: 9999px;
234
+
235
+ /* Border width - Chunky outlined look */
236
+ --border-width: 2px;
237
+ --border-width-thin: 1px;
238
+ --border-width-thick: 3px;
239
+
240
+ /* Colors - Deep indigo-purple vaporwave night */
241
+ --color-primary: #ff2e88;
242
+ --color-primary-hover: #ff5aa2;
243
+ --color-primary-foreground: #2b0216;
244
+
245
+ --color-secondary: #2d1b4e;
246
+ --color-secondary-hover: #3b2566;
247
+ --color-secondary-foreground: #efe3ff;
248
+
249
+ --color-accent: #00e5ff;
250
+ --color-accent-foreground: #00252b;
251
+
252
+ --color-muted: #2d1b4e;
253
+ --color-muted-foreground: #9d86d6;
254
+
255
+ --color-background: #1a0b2e;
256
+ --color-foreground: #efe3ff;
257
+ --color-card: #241242;
258
+ --color-card-foreground: #efe3ff;
259
+ --color-surface: #2d1b4e;
260
+ --color-border: rgba(255, 46, 136, 0.5);
261
+ --color-input: rgba(0, 229, 255, 0.5);
262
+ --color-ring: #00e5ff;
263
+
264
+ /* Semantic colors - Neon-bright for dark mode */
265
+ --color-error: #ff5252;
266
+ --color-error-foreground: #1a0000;
267
+ --color-success: #2ee66e;
268
+ --color-success-foreground: #00290f;
269
+ --color-warning: #ffb300;
270
+ --color-warning-foreground: #2a1a00;
271
+ --color-info: #00e5ff;
272
+ --color-info-foreground: #00252b;
273
+
274
+ /* Typography - Mono body, pixel display, wide tracking */
275
+ --font-family:
276
+ "IBM Plex Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
277
+ --font-weight-normal: 400;
278
+ --font-weight-medium: 500;
279
+ --font-weight-bold: 700;
280
+ --letter-spacing: 0.04em;
281
+ --line-height: 1.5;
282
+
283
+ /* Icon styling - Chunky strokes */
284
+ --icon-stroke-width: 2.5;
285
+ --icon-color: #00e5ff;
286
+
287
+ /* Transitions - Snappy, mechanical, linear */
288
+ --transition-fast: 50ms;
289
+ --transition-normal: 80ms;
290
+ --transition-slow: 120ms;
291
+ --transition-timing: linear;
292
+
293
+ /* Hover/Active transforms - Button-press feel via shadow shift */
294
+ --hover-scale: 1.0;
295
+ --hover-translate-y: 0;
296
+ --hover-translate-x: 0;
297
+ --active-scale: 0.99;
298
+ --active-translate-y: 2px;
299
+
300
+ /* Focus ring */
301
+ --focus-ring-width: 2px;
302
+ --focus-ring-offset: 2px;
303
+ --focus-ring-color: #00e5ff;
304
+
305
+ /* Layer 1 — backfill (preserves current visual output, see themes/_contract.md) */
306
+ /* Density axis — spacing scale */
307
+ --space-0: 0px;
308
+ --space-1: 4px;
309
+ --space-2: 8px;
310
+ --space-3: 12px;
311
+ --space-4: 16px;
312
+ --space-5: 20px;
313
+ --space-6: 24px;
314
+ --space-7: 28px;
315
+ --space-8: 32px;
316
+ --space-9: 36px;
317
+ --space-10: 40px;
318
+ --space-11: 44px;
319
+ --space-12: 48px;
320
+ /* Density axis — per-element heights */
321
+ --button-height-sm: 30px;
322
+ --button-height-md: 38px;
323
+ --button-height-lg: 46px;
324
+ --input-height-sm: 30px;
325
+ --input-height-md: 38px;
326
+ --input-height-lg: 46px;
327
+ --row-height-compact: 32px;
328
+ --row-height-normal: 40px;
329
+ --row-height-spacious: 48px;
330
+ /* Density axis — per-element padding */
331
+ --card-padding-sm: 12px;
332
+ --card-padding-md: 18px;
333
+ --card-padding-lg: 24px;
334
+ --dialog-padding: 24px;
335
+ --section-gap: 32px;
336
+ /* Type axis — family triplet (aliases existing --font-family for backward compat) */
337
+ --font-family-display: "VT323", "Courier New", monospace;
338
+ --font-family-body: var(--font-family);
339
+ --font-family-mono: "IBM Plex Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
340
+ /* Type axis — size scale */
341
+ --text-xs: 12px;
342
+ --leading-xs: 16px;
343
+ --text-sm: 14px;
344
+ --leading-sm: 20px;
345
+ --text-base: 16px;
346
+ --leading-base: 24px;
347
+ --text-lg: 18px;
348
+ --leading-lg: 28px;
349
+ --text-xl: 20px;
350
+ --leading-xl: 28px;
351
+ --text-2xl: 24px;
352
+ --leading-2xl: 32px;
353
+ --text-3xl: 30px;
354
+ --leading-3xl: 36px;
355
+ --text-4xl: 36px;
356
+ --leading-4xl: 40px;
357
+ --text-display-1: 48px;
358
+ --leading-display-1: 52px;
359
+ --text-display-2: 60px;
360
+ --leading-display-2: 64px;
361
+ /* Type axis — intent mapping */
362
+ --intent-heading-major-size: var(--text-2xl);
363
+ --intent-heading-major-weight: var(--font-weight-bold);
364
+ --intent-heading-major-leading: var(--leading-2xl);
365
+ --intent-heading-minor-size: var(--text-lg);
366
+ --intent-heading-minor-weight: var(--font-weight-bold);
367
+ --intent-heading-minor-leading: var(--leading-lg);
368
+ --intent-body-emphasis-size: var(--text-base);
369
+ --intent-body-emphasis-weight: var(--font-weight-medium);
370
+ --intent-body-emphasis-leading: var(--leading-base);
371
+ --intent-body-default-size: var(--text-sm);
372
+ --intent-body-default-weight: var(--font-weight-normal);
373
+ --intent-body-default-leading: var(--leading-sm);
374
+ --intent-body-quiet-size: var(--text-sm);
375
+ --intent-body-quiet-weight: var(--font-weight-normal);
376
+ --intent-body-quiet-leading: var(--leading-sm);
377
+ --intent-caption-size: var(--text-xs);
378
+ --intent-caption-weight: var(--font-weight-normal);
379
+ --intent-caption-leading: var(--leading-xs);
380
+ --intent-numeric-size: var(--text-sm);
381
+ --intent-numeric-weight: var(--font-weight-medium);
382
+ --intent-numeric-leading: var(--leading-sm);
383
+ /* Motion axis — duration palette */
384
+ --duration-instant: 0ms;
385
+ --duration-fast: var(--transition-fast);
386
+ --duration-normal: var(--transition-normal);
387
+ --duration-slow: var(--transition-slow);
388
+ --duration-dramatic: 400ms;
389
+ /* Motion axis — easing palette */
390
+ --easing-linear: linear;
391
+ --easing-standard: var(--transition-timing);
392
+ --easing-emphasized: linear;
393
+ --easing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
394
+ /* Iconography axis */
395
+ --icon-family: lucide;
396
+ --icon-default-size: 16px;
397
+ /* Elevation axis — per-layer mapping */
398
+ --elevation-card: var(--shadow-sm);
399
+ --elevation-popover: var(--shadow-main);
400
+ --elevation-dialog: var(--shadow-lg);
401
+ --elevation-toast: var(--shadow-main);
402
+ /* Geometry axis — radius rhythm with intent */
403
+ --radius-container: var(--radius-sm);
404
+ --radius-interactive: var(--radius-sm);
405
+ --radius-pill: var(--radius-full);
406
+ /* Geometry axis — border-width rhythm */
407
+ --border-hairline: 1px;
408
+ --border-standard: var(--border-width);
409
+ --border-heavy: var(--border-width-thick);
410
+ }
@@ -64,7 +64,7 @@
64
64
  --color-placeholder: #777777;
65
65
 
66
66
  /* Semantic colors - flat CRT signal palette */
67
- --color-error: #ff0033;
67
+ --color-error: #e6002e;
68
68
  --color-error-foreground: #ffffff;
69
69
  --color-success: #00cc52;
70
70
  --color-success-foreground: #000000;
@@ -61,7 +61,7 @@
61
61
 
62
62
  /* Muted — Dim parchment (disabled, tertiary) */
63
63
  --color-muted: #3a2f22;
64
- --color-muted-foreground: #7a6a50;
64
+ --color-muted-foreground: #a89878;
65
65
 
66
66
  /* Surfaces */
67
67
  --color-background: #1a1410;
@@ -76,13 +76,13 @@
76
76
  --color-ring: #c9a84c;
77
77
 
78
78
  /* Semantic colors — warmed to match parchment palette */
79
- --color-error: #c04040;
79
+ --color-error: #a03030;
80
80
  --color-error-foreground: #e8dcc8;
81
- --color-success: #4a9e4a;
81
+ --color-success: #2a6a2a;
82
82
  --color-success-foreground: #e8dcc8;
83
83
  --color-warning: #d97706;
84
84
  --color-warning-foreground: #1a1410;
85
- --color-info: #14b8a6;
85
+ --color-info: #0d6a63;
86
86
  --color-info-foreground: #e8dcc8;
87
87
 
88
88
  /* ======================================================================
@@ -317,12 +317,12 @@
317
317
  --color-secondary-foreground: #3a2f22;
318
318
 
319
319
  /* Accent — Teal resonance (same hue, darker for contrast) */
320
- --color-accent: #0d9488;
320
+ --color-accent: #0f766e;
321
321
  --color-accent-foreground: #faf6ee;
322
322
 
323
323
  /* Muted — Faded parchment */
324
324
  --color-muted: #ede4d0;
325
- --color-muted-foreground: #7a6a50;
325
+ --color-muted-foreground: #6e5f46;
326
326
 
327
327
  /* Surfaces — warm parchment hierarchy */
328
328
  --color-background: #faf6ee;
@@ -341,9 +341,9 @@
341
341
  --color-error-foreground: #faf6ee;
342
342
  --color-success: #15803d;
343
343
  --color-success-foreground: #faf6ee;
344
- --color-warning: #b45309;
344
+ --color-warning: #d97706;
345
345
  --color-warning-foreground: #2a1f14;
346
- --color-info: #0d9488;
346
+ --color-info: #0f766e;
347
347
  --color-info-foreground: #faf6ee;
348
348
 
349
349
  /* ======================================================================
@@ -44,7 +44,7 @@
44
44
  --color-accent-foreground: #ffffff;
45
45
 
46
46
  --color-muted: #f5f5f5;
47
- --color-muted-foreground: #737373;
47
+ --color-muted-foreground: #666666;
48
48
 
49
49
  --color-background: #ffffff;
50
50
  --color-foreground: #000000;
@@ -58,7 +58,7 @@
58
58
  /* Semantic colors */
59
59
  --color-error: #dc2626;
60
60
  --color-error-foreground: #ffffff;
61
- --color-success: #16a34a;
61
+ --color-success: #15803d;
62
62
  --color-success-foreground: #ffffff;
63
63
  --color-warning: #ca8a04;
64
64
  --color-warning-foreground: #000000;