@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.
- package/dist/{TraitProvider-YkK6tXDw.d.cts → TraitProvider-Ch79cUcb.d.cts} +6 -1
- package/dist/{TraitProvider-YkK6tXDw.d.ts → TraitProvider-Ch79cUcb.d.ts} +6 -1
- package/dist/{UserContext-bziZwgFL.d.cts → UserContext-BKckAUv7.d.cts} +5 -5
- package/dist/{UserContext-bziZwgFL.d.ts → UserContext-BKckAUv7.d.ts} +5 -5
- package/dist/avl/index.cjs +265 -227
- package/dist/avl/index.js +267 -229
- package/dist/components/index.cjs +208 -200
- package/dist/components/index.d.cts +4 -3
- package/dist/components/index.d.ts +4 -3
- package/dist/components/index.js +208 -200
- package/dist/context/index.cjs +25 -66
- package/dist/context/index.d.cts +1 -1
- package/dist/context/index.d.ts +1 -1
- package/dist/context/index.js +25 -66
- package/dist/providers/index.cjs +286 -219
- package/dist/providers/index.d.cts +4 -4
- package/dist/providers/index.d.ts +4 -4
- package/dist/providers/index.js +286 -219
- package/dist/runtime/index.cjs +258 -220
- package/dist/runtime/index.d.cts +4 -2
- package/dist/runtime/index.d.ts +4 -2
- package/dist/runtime/index.js +260 -222
- package/package.json +8 -7
- package/themes/_contract.md +2 -0
- package/themes/almadar-website.css +3 -3
- package/themes/almadar.css +4 -4
- package/themes/bloomberg-dense.css +2 -2
- package/themes/clay.css +417 -0
- package/themes/corporate.css +411 -0
- package/themes/game-adventure.css +3 -3
- package/themes/game-rpg.css +2 -2
- package/themes/game-sci-fi.css +1 -1
- package/themes/game-ui-pack.css +2 -2
- package/themes/gazette.css +2 -2
- package/themes/glass.css +428 -0
- package/themes/index.css +9 -13
- package/themes/kiosk.css +5 -5
- package/themes/linear-clean.css +1 -1
- package/themes/minimalist.css +2 -2
- package/themes/neon.css +3 -3
- package/themes/notion-editorial.css +1 -1
- package/themes/prism.css +3 -3
- package/themes/retro.css +410 -0
- package/themes/terminal.css +1 -1
- package/themes/trait-wars.css +8 -8
- package/themes/wireframe.css +2 -2
- package/themes/arctic.css +0 -235
- package/themes/copper.css +0 -235
- package/themes/ember.css +0 -238
- package/themes/forest.css +0 -238
- package/themes/lavender.css +0 -233
- package/themes/midnight.css +0 -234
- package/themes/ocean.css +0 -238
- package/themes/rose.css +0 -233
- package/themes/sand.css +0 -234
- package/themes/slate.css +0 -233
- package/themes/sunset.css +0 -238
|
@@ -0,0 +1,411 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Corporate Theme — "Enterprise Trust"
|
|
3
|
+
*
|
|
4
|
+
* The conservative B2B palette business clients actually pick: classic
|
|
5
|
+
* corporate blue on crisp white cards over a cool-gray canvas, navy-slate
|
|
6
|
+
* text, and a true enterprise dark mode in deep navy with softened blues.
|
|
7
|
+
* Everything is restrained — hairline 1px borders, 6px radii, small
|
|
8
|
+
* flat shadows with no glow, system fonts at 400/500/600 weights, and
|
|
9
|
+
* short standard-eased transitions with no hover theatrics. Generous
|
|
10
|
+
* whitespace signals confidence, not density.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
/* ==========================================================================
|
|
14
|
+
* LIGHT MODE
|
|
15
|
+
* ========================================================================== */
|
|
16
|
+
[data-theme="corporate-light"] {
|
|
17
|
+
/* Shadows - Small, flat, neutral (no glow, no offset) */
|
|
18
|
+
--shadow-main: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
|
|
19
|
+
--shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
|
|
20
|
+
--shadow-lg:
|
|
21
|
+
0 4px 12px rgba(15, 23, 42, 0.10), 0 2px 4px rgba(15, 23, 42, 0.05);
|
|
22
|
+
--shadow-inner: inset 0 1px 2px rgba(15, 23, 42, 0.05);
|
|
23
|
+
--shadow-none: none;
|
|
24
|
+
--shadow-hover:
|
|
25
|
+
0 4px 10px rgba(15, 23, 42, 0.10), 0 1px 3px rgba(15, 23, 42, 0.06);
|
|
26
|
+
--shadow-active: 0 1px 2px rgba(15, 23, 42, 0.08);
|
|
27
|
+
|
|
28
|
+
/* Border radius - Restrained 6px rhythm */
|
|
29
|
+
--radius-none: 0px;
|
|
30
|
+
--radius-sm: 4px;
|
|
31
|
+
--radius-md: 6px;
|
|
32
|
+
--radius-lg: 8px;
|
|
33
|
+
--radius-xl: 10px;
|
|
34
|
+
--radius-full: 9999px;
|
|
35
|
+
|
|
36
|
+
/* Border width - Hairline */
|
|
37
|
+
--border-width: 1px;
|
|
38
|
+
--border-width-thin: 1px;
|
|
39
|
+
--border-width-thick: 2px;
|
|
40
|
+
|
|
41
|
+
/* Colors - Classic corporate blue on cool gray */
|
|
42
|
+
--color-primary: #1d4ed8;
|
|
43
|
+
--color-primary-hover: #1e40af;
|
|
44
|
+
--color-primary-foreground: #ffffff;
|
|
45
|
+
|
|
46
|
+
--color-secondary: #e2e8f0;
|
|
47
|
+
--color-secondary-hover: #cbd5e1;
|
|
48
|
+
--color-secondary-foreground: #1e293b;
|
|
49
|
+
|
|
50
|
+
--color-accent: #0369a1;
|
|
51
|
+
--color-accent-foreground: #ffffff;
|
|
52
|
+
|
|
53
|
+
--color-muted: #eef1f6;
|
|
54
|
+
--color-muted-foreground: #5b6b80;
|
|
55
|
+
|
|
56
|
+
--color-background: #f4f6f9;
|
|
57
|
+
--color-foreground: #1e293b;
|
|
58
|
+
--color-card: #ffffff;
|
|
59
|
+
--color-card-foreground: #1e293b;
|
|
60
|
+
--color-surface: #e8edf3;
|
|
61
|
+
--color-border: #d7dee8;
|
|
62
|
+
--color-input: #c3cdd9;
|
|
63
|
+
--color-ring: #1d4ed8;
|
|
64
|
+
|
|
65
|
+
/* Semantic colors */
|
|
66
|
+
--color-error: #b91c1c;
|
|
67
|
+
--color-error-foreground: #ffffff;
|
|
68
|
+
--color-success: #15803d;
|
|
69
|
+
--color-success-foreground: #ffffff;
|
|
70
|
+
--color-warning: #b45309;
|
|
71
|
+
--color-warning-foreground: #ffffff;
|
|
72
|
+
--color-info: #1d4ed8;
|
|
73
|
+
--color-info-foreground: #ffffff;
|
|
74
|
+
|
|
75
|
+
/* Typography - System stack, regular/medium/semibold */
|
|
76
|
+
--font-family:
|
|
77
|
+
-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
|
|
78
|
+
--font-weight-normal: 400;
|
|
79
|
+
--font-weight-medium: 500;
|
|
80
|
+
--font-weight-bold: 600;
|
|
81
|
+
--letter-spacing: normal;
|
|
82
|
+
--line-height: 1.5;
|
|
83
|
+
|
|
84
|
+
/* Icon styling - Thin lucide strokes */
|
|
85
|
+
--icon-stroke-width: 1.75;
|
|
86
|
+
--icon-color: #475569;
|
|
87
|
+
|
|
88
|
+
/* Transitions - Short, standard ease */
|
|
89
|
+
--transition-fast: 100ms;
|
|
90
|
+
--transition-normal: 150ms;
|
|
91
|
+
--transition-slow: 200ms;
|
|
92
|
+
--transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
|
|
93
|
+
|
|
94
|
+
/* Hover/Active transforms - None; state shows via color/shadow only */
|
|
95
|
+
--hover-scale: 1.0;
|
|
96
|
+
--hover-translate-y: 0;
|
|
97
|
+
--hover-translate-x: 0;
|
|
98
|
+
--active-scale: 0.99;
|
|
99
|
+
--active-translate-y: 0;
|
|
100
|
+
|
|
101
|
+
/* Focus ring */
|
|
102
|
+
--focus-ring-width: 2px;
|
|
103
|
+
--focus-ring-offset: 2px;
|
|
104
|
+
--focus-ring-color: #1d4ed8;
|
|
105
|
+
|
|
106
|
+
/* Layer 1 — backfill (preserves current visual output, see themes/_contract.md) */
|
|
107
|
+
/* Density axis — spacing scale */
|
|
108
|
+
--space-0: 0px;
|
|
109
|
+
--space-1: 4px;
|
|
110
|
+
--space-2: 8px;
|
|
111
|
+
--space-3: 12px;
|
|
112
|
+
--space-4: 16px;
|
|
113
|
+
--space-5: 20px;
|
|
114
|
+
--space-6: 24px;
|
|
115
|
+
--space-7: 28px;
|
|
116
|
+
--space-8: 32px;
|
|
117
|
+
--space-9: 36px;
|
|
118
|
+
--space-10: 40px;
|
|
119
|
+
--space-11: 44px;
|
|
120
|
+
--space-12: 48px;
|
|
121
|
+
/* Density axis — per-element heights (slightly generous, enterprise comfort) */
|
|
122
|
+
--button-height-sm: 30px;
|
|
123
|
+
--button-height-md: 38px;
|
|
124
|
+
--button-height-lg: 46px;
|
|
125
|
+
--input-height-sm: 30px;
|
|
126
|
+
--input-height-md: 38px;
|
|
127
|
+
--input-height-lg: 46px;
|
|
128
|
+
--row-height-compact: 36px;
|
|
129
|
+
--row-height-normal: 44px;
|
|
130
|
+
--row-height-spacious: 52px;
|
|
131
|
+
/* Density axis — per-element padding */
|
|
132
|
+
--card-padding-sm: 16px;
|
|
133
|
+
--card-padding-md: 20px;
|
|
134
|
+
--card-padding-lg: 28px;
|
|
135
|
+
--dialog-padding: 28px;
|
|
136
|
+
--section-gap: 40px;
|
|
137
|
+
/* Type axis — family triplet (aliases existing --font-family for backward compat) */
|
|
138
|
+
--font-family-display: var(--font-family);
|
|
139
|
+
--font-family-body: var(--font-family);
|
|
140
|
+
--font-family-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
141
|
+
/* Type axis — size scale */
|
|
142
|
+
--text-xs: 12px;
|
|
143
|
+
--leading-xs: 16px;
|
|
144
|
+
--text-sm: 14px;
|
|
145
|
+
--leading-sm: 20px;
|
|
146
|
+
--text-base: 16px;
|
|
147
|
+
--leading-base: 24px;
|
|
148
|
+
--text-lg: 18px;
|
|
149
|
+
--leading-lg: 28px;
|
|
150
|
+
--text-xl: 20px;
|
|
151
|
+
--leading-xl: 28px;
|
|
152
|
+
--text-2xl: 24px;
|
|
153
|
+
--leading-2xl: 32px;
|
|
154
|
+
--text-3xl: 30px;
|
|
155
|
+
--leading-3xl: 36px;
|
|
156
|
+
--text-4xl: 36px;
|
|
157
|
+
--leading-4xl: 40px;
|
|
158
|
+
--text-display-1: 48px;
|
|
159
|
+
--leading-display-1: 52px;
|
|
160
|
+
--text-display-2: 60px;
|
|
161
|
+
--leading-display-2: 64px;
|
|
162
|
+
/* Type axis — intent mapping */
|
|
163
|
+
--intent-heading-major-size: var(--text-2xl);
|
|
164
|
+
--intent-heading-major-weight: var(--font-weight-bold);
|
|
165
|
+
--intent-heading-major-leading: var(--leading-2xl);
|
|
166
|
+
--intent-heading-minor-size: var(--text-lg);
|
|
167
|
+
--intent-heading-minor-weight: var(--font-weight-bold);
|
|
168
|
+
--intent-heading-minor-leading: var(--leading-lg);
|
|
169
|
+
--intent-body-emphasis-size: var(--text-base);
|
|
170
|
+
--intent-body-emphasis-weight: var(--font-weight-medium);
|
|
171
|
+
--intent-body-emphasis-leading: var(--leading-base);
|
|
172
|
+
--intent-body-default-size: var(--text-sm);
|
|
173
|
+
--intent-body-default-weight: var(--font-weight-normal);
|
|
174
|
+
--intent-body-default-leading: var(--leading-sm);
|
|
175
|
+
--intent-body-quiet-size: var(--text-sm);
|
|
176
|
+
--intent-body-quiet-weight: var(--font-weight-normal);
|
|
177
|
+
--intent-body-quiet-leading: var(--leading-sm);
|
|
178
|
+
--intent-caption-size: var(--text-xs);
|
|
179
|
+
--intent-caption-weight: var(--font-weight-normal);
|
|
180
|
+
--intent-caption-leading: var(--leading-xs);
|
|
181
|
+
--intent-numeric-size: var(--text-sm);
|
|
182
|
+
--intent-numeric-weight: var(--font-weight-medium);
|
|
183
|
+
--intent-numeric-leading: var(--leading-sm);
|
|
184
|
+
/* Motion axis — duration palette */
|
|
185
|
+
--duration-instant: 0ms;
|
|
186
|
+
--duration-fast: var(--transition-fast);
|
|
187
|
+
--duration-normal: var(--transition-normal);
|
|
188
|
+
--duration-slow: var(--transition-slow);
|
|
189
|
+
--duration-dramatic: 400ms;
|
|
190
|
+
/* Motion axis — easing palette */
|
|
191
|
+
--easing-linear: linear;
|
|
192
|
+
--easing-standard: var(--transition-timing);
|
|
193
|
+
--easing-emphasized: cubic-bezier(0.2, 0, 0, 1);
|
|
194
|
+
--easing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
195
|
+
/* Iconography axis */
|
|
196
|
+
--icon-family: lucide;
|
|
197
|
+
--icon-default-size: 16px;
|
|
198
|
+
/* Elevation axis — per-layer mapping */
|
|
199
|
+
--elevation-card: var(--shadow-sm);
|
|
200
|
+
--elevation-popover: var(--shadow-main);
|
|
201
|
+
--elevation-dialog: var(--shadow-lg);
|
|
202
|
+
--elevation-toast: var(--shadow-main);
|
|
203
|
+
/* Geometry axis — radius rhythm with intent */
|
|
204
|
+
--radius-container: var(--radius-md);
|
|
205
|
+
--radius-interactive: var(--radius-md);
|
|
206
|
+
--radius-pill: var(--radius-full);
|
|
207
|
+
/* Geometry axis — border-width rhythm */
|
|
208
|
+
--border-hairline: 1px;
|
|
209
|
+
--border-standard: var(--border-width);
|
|
210
|
+
--border-heavy: var(--border-width-thick);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
/* ==========================================================================
|
|
214
|
+
* DARK MODE
|
|
215
|
+
* ========================================================================== */
|
|
216
|
+
[data-theme="corporate-dark"] {
|
|
217
|
+
/* Shadows - Small, flat, deep (no glow, no offset) */
|
|
218
|
+
--shadow-main: 0 1px 3px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
|
|
219
|
+
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
|
|
220
|
+
--shadow-lg:
|
|
221
|
+
0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.35);
|
|
222
|
+
--shadow-inner: inset 0 1px 2px rgba(0, 0, 0, 0.3);
|
|
223
|
+
--shadow-none: none;
|
|
224
|
+
--shadow-hover:
|
|
225
|
+
0 4px 10px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.35);
|
|
226
|
+
--shadow-active: 0 1px 2px rgba(0, 0, 0, 0.4);
|
|
227
|
+
|
|
228
|
+
/* Border radius - Restrained 6px rhythm */
|
|
229
|
+
--radius-none: 0px;
|
|
230
|
+
--radius-sm: 4px;
|
|
231
|
+
--radius-md: 6px;
|
|
232
|
+
--radius-lg: 8px;
|
|
233
|
+
--radius-xl: 10px;
|
|
234
|
+
--radius-full: 9999px;
|
|
235
|
+
|
|
236
|
+
/* Border width - Hairline */
|
|
237
|
+
--border-width: 1px;
|
|
238
|
+
--border-width-thin: 1px;
|
|
239
|
+
--border-width-thick: 2px;
|
|
240
|
+
|
|
241
|
+
/* Colors - Enterprise dark: deep navy, softened blue */
|
|
242
|
+
--color-primary: #5b8def;
|
|
243
|
+
--color-primary-hover: #7aa5f5;
|
|
244
|
+
--color-primary-foreground: #0d1526;
|
|
245
|
+
|
|
246
|
+
--color-secondary: #1c2942;
|
|
247
|
+
--color-secondary-hover: #24344f;
|
|
248
|
+
--color-secondary-foreground: #dbe3f0;
|
|
249
|
+
|
|
250
|
+
--color-accent: #7aa5f5;
|
|
251
|
+
--color-accent-foreground: #0d1526;
|
|
252
|
+
|
|
253
|
+
--color-muted: #1a2438;
|
|
254
|
+
--color-muted-foreground: #8b98ad;
|
|
255
|
+
|
|
256
|
+
--color-background: #0d1526;
|
|
257
|
+
--color-foreground: #dbe3f0;
|
|
258
|
+
--color-card: #14203a;
|
|
259
|
+
--color-card-foreground: #dbe3f0;
|
|
260
|
+
--color-surface: #182742;
|
|
261
|
+
--color-border: #2a3a58;
|
|
262
|
+
--color-input: #35486b;
|
|
263
|
+
--color-ring: #5b8def;
|
|
264
|
+
|
|
265
|
+
/* Semantic colors - Softened for dark mode */
|
|
266
|
+
--color-error: #f87171;
|
|
267
|
+
--color-error-foreground: #0d1526;
|
|
268
|
+
--color-success: #4ade80;
|
|
269
|
+
--color-success-foreground: #0d1526;
|
|
270
|
+
--color-warning: #fbbf24;
|
|
271
|
+
--color-warning-foreground: #0d1526;
|
|
272
|
+
--color-info: #7aa5f5;
|
|
273
|
+
--color-info-foreground: #0d1526;
|
|
274
|
+
|
|
275
|
+
/* Typography - System stack, regular/medium/semibold */
|
|
276
|
+
--font-family:
|
|
277
|
+
-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
|
|
278
|
+
--font-weight-normal: 400;
|
|
279
|
+
--font-weight-medium: 500;
|
|
280
|
+
--font-weight-bold: 600;
|
|
281
|
+
--letter-spacing: normal;
|
|
282
|
+
--line-height: 1.5;
|
|
283
|
+
|
|
284
|
+
/* Icon styling - Thin lucide strokes */
|
|
285
|
+
--icon-stroke-width: 1.75;
|
|
286
|
+
--icon-color: #94a3b8;
|
|
287
|
+
|
|
288
|
+
/* Transitions - Short, standard ease */
|
|
289
|
+
--transition-fast: 100ms;
|
|
290
|
+
--transition-normal: 150ms;
|
|
291
|
+
--transition-slow: 200ms;
|
|
292
|
+
--transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
|
|
293
|
+
|
|
294
|
+
/* Hover/Active transforms - None; state shows via color/shadow only */
|
|
295
|
+
--hover-scale: 1.0;
|
|
296
|
+
--hover-translate-y: 0;
|
|
297
|
+
--hover-translate-x: 0;
|
|
298
|
+
--active-scale: 0.99;
|
|
299
|
+
--active-translate-y: 0;
|
|
300
|
+
|
|
301
|
+
/* Focus ring */
|
|
302
|
+
--focus-ring-width: 2px;
|
|
303
|
+
--focus-ring-offset: 2px;
|
|
304
|
+
--focus-ring-color: #5b8def;
|
|
305
|
+
|
|
306
|
+
/* Layer 1 — backfill (preserves current visual output, see themes/_contract.md) */
|
|
307
|
+
/* Density axis — spacing scale */
|
|
308
|
+
--space-0: 0px;
|
|
309
|
+
--space-1: 4px;
|
|
310
|
+
--space-2: 8px;
|
|
311
|
+
--space-3: 12px;
|
|
312
|
+
--space-4: 16px;
|
|
313
|
+
--space-5: 20px;
|
|
314
|
+
--space-6: 24px;
|
|
315
|
+
--space-7: 28px;
|
|
316
|
+
--space-8: 32px;
|
|
317
|
+
--space-9: 36px;
|
|
318
|
+
--space-10: 40px;
|
|
319
|
+
--space-11: 44px;
|
|
320
|
+
--space-12: 48px;
|
|
321
|
+
/* Density axis — per-element heights (slightly generous, enterprise comfort) */
|
|
322
|
+
--button-height-sm: 30px;
|
|
323
|
+
--button-height-md: 38px;
|
|
324
|
+
--button-height-lg: 46px;
|
|
325
|
+
--input-height-sm: 30px;
|
|
326
|
+
--input-height-md: 38px;
|
|
327
|
+
--input-height-lg: 46px;
|
|
328
|
+
--row-height-compact: 36px;
|
|
329
|
+
--row-height-normal: 44px;
|
|
330
|
+
--row-height-spacious: 52px;
|
|
331
|
+
/* Density axis — per-element padding */
|
|
332
|
+
--card-padding-sm: 16px;
|
|
333
|
+
--card-padding-md: 20px;
|
|
334
|
+
--card-padding-lg: 28px;
|
|
335
|
+
--dialog-padding: 28px;
|
|
336
|
+
--section-gap: 40px;
|
|
337
|
+
/* Type axis — family triplet (aliases existing --font-family for backward compat) */
|
|
338
|
+
--font-family-display: var(--font-family);
|
|
339
|
+
--font-family-body: var(--font-family);
|
|
340
|
+
--font-family-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
341
|
+
/* Type axis — size scale */
|
|
342
|
+
--text-xs: 12px;
|
|
343
|
+
--leading-xs: 16px;
|
|
344
|
+
--text-sm: 14px;
|
|
345
|
+
--leading-sm: 20px;
|
|
346
|
+
--text-base: 16px;
|
|
347
|
+
--leading-base: 24px;
|
|
348
|
+
--text-lg: 18px;
|
|
349
|
+
--leading-lg: 28px;
|
|
350
|
+
--text-xl: 20px;
|
|
351
|
+
--leading-xl: 28px;
|
|
352
|
+
--text-2xl: 24px;
|
|
353
|
+
--leading-2xl: 32px;
|
|
354
|
+
--text-3xl: 30px;
|
|
355
|
+
--leading-3xl: 36px;
|
|
356
|
+
--text-4xl: 36px;
|
|
357
|
+
--leading-4xl: 40px;
|
|
358
|
+
--text-display-1: 48px;
|
|
359
|
+
--leading-display-1: 52px;
|
|
360
|
+
--text-display-2: 60px;
|
|
361
|
+
--leading-display-2: 64px;
|
|
362
|
+
/* Type axis — intent mapping */
|
|
363
|
+
--intent-heading-major-size: var(--text-2xl);
|
|
364
|
+
--intent-heading-major-weight: var(--font-weight-bold);
|
|
365
|
+
--intent-heading-major-leading: var(--leading-2xl);
|
|
366
|
+
--intent-heading-minor-size: var(--text-lg);
|
|
367
|
+
--intent-heading-minor-weight: var(--font-weight-bold);
|
|
368
|
+
--intent-heading-minor-leading: var(--leading-lg);
|
|
369
|
+
--intent-body-emphasis-size: var(--text-base);
|
|
370
|
+
--intent-body-emphasis-weight: var(--font-weight-medium);
|
|
371
|
+
--intent-body-emphasis-leading: var(--leading-base);
|
|
372
|
+
--intent-body-default-size: var(--text-sm);
|
|
373
|
+
--intent-body-default-weight: var(--font-weight-normal);
|
|
374
|
+
--intent-body-default-leading: var(--leading-sm);
|
|
375
|
+
--intent-body-quiet-size: var(--text-sm);
|
|
376
|
+
--intent-body-quiet-weight: var(--font-weight-normal);
|
|
377
|
+
--intent-body-quiet-leading: var(--leading-sm);
|
|
378
|
+
--intent-caption-size: var(--text-xs);
|
|
379
|
+
--intent-caption-weight: var(--font-weight-normal);
|
|
380
|
+
--intent-caption-leading: var(--leading-xs);
|
|
381
|
+
--intent-numeric-size: var(--text-sm);
|
|
382
|
+
--intent-numeric-weight: var(--font-weight-medium);
|
|
383
|
+
--intent-numeric-leading: var(--leading-sm);
|
|
384
|
+
/* Motion axis — duration palette */
|
|
385
|
+
--duration-instant: 0ms;
|
|
386
|
+
--duration-fast: var(--transition-fast);
|
|
387
|
+
--duration-normal: var(--transition-normal);
|
|
388
|
+
--duration-slow: var(--transition-slow);
|
|
389
|
+
--duration-dramatic: 400ms;
|
|
390
|
+
/* Motion axis — easing palette */
|
|
391
|
+
--easing-linear: linear;
|
|
392
|
+
--easing-standard: var(--transition-timing);
|
|
393
|
+
--easing-emphasized: cubic-bezier(0.2, 0, 0, 1);
|
|
394
|
+
--easing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
395
|
+
/* Iconography axis */
|
|
396
|
+
--icon-family: lucide;
|
|
397
|
+
--icon-default-size: 16px;
|
|
398
|
+
/* Elevation axis — per-layer mapping */
|
|
399
|
+
--elevation-card: var(--shadow-sm);
|
|
400
|
+
--elevation-popover: var(--shadow-main);
|
|
401
|
+
--elevation-dialog: var(--shadow-lg);
|
|
402
|
+
--elevation-toast: var(--shadow-main);
|
|
403
|
+
/* Geometry axis — radius rhythm with intent */
|
|
404
|
+
--radius-container: var(--radius-md);
|
|
405
|
+
--radius-interactive: var(--radius-md);
|
|
406
|
+
--radius-pill: var(--radius-full);
|
|
407
|
+
/* Geometry axis — border-width rhythm */
|
|
408
|
+
--border-hairline: 1px;
|
|
409
|
+
--border-standard: var(--border-width);
|
|
410
|
+
--border-heavy: var(--border-width-thick);
|
|
411
|
+
}
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
--color-accent: #e0a52c;
|
|
57
57
|
--color-accent-foreground: #241608;
|
|
58
58
|
|
|
59
|
-
/* Muted */
|
|
60
|
-
--color-muted: #
|
|
61
|
-
--color-muted-foreground: #
|
|
59
|
+
/* Muted — deep parchment inset (light, like the card, so muted text passes on both) */
|
|
60
|
+
--color-muted: #e8d6ae;
|
|
61
|
+
--color-muted-foreground: #6b4f2a;
|
|
62
62
|
|
|
63
63
|
/* Surfaces */
|
|
64
64
|
--color-background: #241608;
|
package/themes/game-rpg.css
CHANGED
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
|
|
56
56
|
/* Muted */
|
|
57
57
|
--color-muted: #3a2a18;
|
|
58
|
-
--color-muted-foreground: #
|
|
58
|
+
--color-muted-foreground: #e0cba8;
|
|
59
59
|
|
|
60
60
|
/* Surfaces */
|
|
61
61
|
--color-background: #1a1108;
|
|
62
62
|
--color-foreground: #f5e6cf;
|
|
63
|
-
--color-card: #
|
|
63
|
+
--color-card: #6e4f30;
|
|
64
64
|
--color-card-foreground: #fff5e0;
|
|
65
65
|
--color-surface: #2a1d10;
|
|
66
66
|
|
package/themes/game-sci-fi.css
CHANGED
package/themes/game-ui-pack.css
CHANGED
package/themes/gazette.css
CHANGED
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
--color-primary-hover: #8c4329;
|
|
41
41
|
--color-primary-foreground: #fdfbf6;
|
|
42
42
|
|
|
43
|
-
--color-secondary: #
|
|
44
|
-
--color-secondary-hover: #
|
|
43
|
+
--color-secondary: #5c7a4d;
|
|
44
|
+
--color-secondary-hover: #4f6c41;
|
|
45
45
|
--color-secondary-foreground: #fdfbf6;
|
|
46
46
|
|
|
47
47
|
--color-accent: #a85436;
|