@almadar/ui 6.29.0 → 6.31.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/{EntityBindingContext-UyeCfEBS.d.cts → EntityBindingContext-ChCONv2W.d.cts} +1 -50
- package/dist/{EntityBindingContext-UyeCfEBS.d.ts → EntityBindingContext-ChCONv2W.d.ts} +1 -50
- package/dist/avl/index.cjs +5 -6
- package/dist/avl/index.js +5 -6
- package/dist/components/index.cjs +4 -5
- package/dist/components/index.js +4 -5
- package/dist/context/index.cjs +135 -105
- package/dist/context/index.d.cts +2 -60
- package/dist/context/index.d.ts +2 -60
- package/dist/context/index.js +135 -105
- package/dist/lib/index.cjs +455 -0
- package/dist/lib/index.d.cts +42 -1
- package/dist/lib/index.d.ts +42 -1
- package/dist/lib/index.js +438 -1
- package/dist/marketing/index.cjs +4 -5
- package/dist/marketing/index.js +4 -5
- package/dist/providers/index.cjs +143 -116
- package/dist/providers/index.d.cts +1 -1
- package/dist/providers/index.d.ts +1 -1
- package/dist/providers/index.js +143 -116
- package/dist/runtime/index.cjs +5 -6
- package/dist/runtime/index.d.cts +2 -2
- package/dist/runtime/index.d.ts +2 -2
- package/dist/runtime/index.js +5 -6
- package/dist/themeTokens-DVRwufw8.d.cts +112 -0
- package/dist/themeTokens-DVRwufw8.d.ts +112 -0
- package/package.json +6 -5
- package/scripts/audit-tailwind-safelist.ts +4 -0
- package/tailwind-preset.cjs +155 -28
- package/themes/almadar-website.css +37 -107
- package/themes/almadar.css +37 -108
- package/themes/atelier.css +145 -240
- package/themes/bloomberg-dense.css +145 -252
- package/themes/clay.css +39 -137
- package/themes/comic.css +39 -145
- package/themes/corporate.css +39 -131
- package/themes/game-adventure.css +22 -87
- package/themes/game-rpg.css +22 -84
- package/themes/game-sci-fi.css +22 -88
- package/themes/game-ui-pack.css +22 -85
- package/themes/gazette.css +43 -135
- package/themes/glass.css +39 -148
- package/themes/kiosk.css +51 -146
- package/themes/linear-clean.css +145 -215
- package/themes/minimalist.css +39 -125
- package/themes/neon.css +39 -132
- package/themes/notion-editorial.css +145 -215
- package/themes/prism.css +37 -100
- package/themes/retro.css +39 -130
- package/themes/terminal.css +61 -152
- package/themes/trait-wars.css +121 -285
- package/themes/wireframe.css +41 -128
package/themes/glass.css
CHANGED
|
@@ -1,58 +1,20 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
* and muted fills are translucent rgba layers floating over a softly tinted
|
|
6
|
-
* background, edged by hairline luminous borders and lifted by soft layered
|
|
7
|
-
* shadows with a subtle colored glow. Large radii, light Inter weights, and
|
|
8
|
-
* springy slightly-slow motion give every interaction a glassy settle; the
|
|
9
|
-
* companion backdrop-filter rules at the bottom of the file supply the blur.
|
|
2
|
+
* GENERATED — do not edit by hand.
|
|
3
|
+
* Source: packages/almadar-core/themes/glass.json
|
|
4
|
+
* Regenerate: node tools/almadar-pattern-sync/dist/index.js themes (or `almadar-sync themes`)
|
|
10
5
|
*/
|
|
11
6
|
|
|
12
|
-
/* ==========================================================================
|
|
13
|
-
* LIGHT MODE
|
|
14
|
-
* ========================================================================== */
|
|
15
7
|
[data-theme="glass-light"] {
|
|
16
|
-
/* Shadows - Soft layered with a subtle indigo glow */
|
|
17
|
-
--shadow-main:
|
|
18
|
-
0 4px 16px rgba(99, 102, 241, 0.1), 0 2px 6px rgba(15, 23, 42, 0.05);
|
|
19
|
-
--shadow-sm: 0 1px 6px rgba(99, 102, 241, 0.08);
|
|
20
|
-
--shadow-lg:
|
|
21
|
-
0 12px 32px rgba(99, 102, 241, 0.14), 0 4px 12px rgba(15, 23, 42, 0.06);
|
|
22
|
-
--shadow-inner: inset 0 1px 4px rgba(99, 102, 241, 0.08);
|
|
23
|
-
--shadow-none: none;
|
|
24
|
-
--shadow-hover:
|
|
25
|
-
0 12px 36px rgba(99, 102, 241, 0.2), 0 4px 12px rgba(139, 92, 246, 0.08);
|
|
26
|
-
--shadow-active: 0 2px 8px rgba(99, 102, 241, 0.12);
|
|
27
|
-
|
|
28
|
-
/* Border radius - Large, soft glass panes */
|
|
29
|
-
--radius-none: 0px;
|
|
30
|
-
--radius-sm: 10px;
|
|
31
|
-
--radius-md: 14px;
|
|
32
|
-
--radius-lg: 18px;
|
|
33
|
-
--radius-xl: 20px;
|
|
34
|
-
--radius-full: 9999px;
|
|
35
|
-
|
|
36
|
-
/* Border width - Hairline luminous edges */
|
|
37
|
-
--border-width: 1px;
|
|
38
|
-
--border-width-thin: 1px;
|
|
39
|
-
--border-width-thick: 2px;
|
|
40
|
-
|
|
41
|
-
/* Colors - Cool periwinkle light with translucent panes */
|
|
42
8
|
--color-primary: #5b5df0;
|
|
43
9
|
--color-primary-hover: #4f46e5;
|
|
44
10
|
--color-primary-foreground: #ffffff;
|
|
45
|
-
|
|
46
11
|
--color-secondary: rgba(255, 255, 255, 0.55);
|
|
47
12
|
--color-secondary-hover: rgba(255, 255, 255, 0.7);
|
|
48
13
|
--color-secondary-foreground: #3f3d56;
|
|
49
|
-
|
|
50
14
|
--color-accent: #8347f3;
|
|
51
15
|
--color-accent-foreground: #ffffff;
|
|
52
|
-
|
|
53
16
|
--color-muted: rgba(255, 255, 255, 0.5);
|
|
54
17
|
--color-muted-foreground: #5d6a7f;
|
|
55
|
-
|
|
56
18
|
--color-background: #eef1f8;
|
|
57
19
|
--color-foreground: #1e2235;
|
|
58
20
|
--color-card: rgba(255, 255, 255, 0.62);
|
|
@@ -61,8 +23,6 @@
|
|
|
61
23
|
--color-border: rgba(255, 255, 255, 0.65);
|
|
62
24
|
--color-input: rgba(99, 102, 241, 0.25);
|
|
63
25
|
--color-ring: #6366f1;
|
|
64
|
-
|
|
65
|
-
/* Semantic colors */
|
|
66
26
|
--color-error: #e11d48;
|
|
67
27
|
--color-error-foreground: #ffffff;
|
|
68
28
|
--color-success: #047857;
|
|
@@ -71,40 +31,41 @@
|
|
|
71
31
|
--color-warning-foreground: #000000;
|
|
72
32
|
--color-info: #0270ae;
|
|
73
33
|
--color-info-foreground: #ffffff;
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
--
|
|
77
|
-
|
|
34
|
+
--radius-none: 0px;
|
|
35
|
+
--radius-sm: 10px;
|
|
36
|
+
--radius-md: 14px;
|
|
37
|
+
--radius-lg: 18px;
|
|
38
|
+
--radius-xl: 20px;
|
|
39
|
+
--radius-full: 9999px;
|
|
40
|
+
--border-width: 1px;
|
|
41
|
+
--border-width-thin: 1px;
|
|
42
|
+
--border-width-thick: 2px;
|
|
43
|
+
--font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
78
44
|
--font-weight-normal: 400;
|
|
79
45
|
--font-weight-medium: 500;
|
|
80
46
|
--font-weight-bold: 650;
|
|
81
47
|
--letter-spacing: -0.01em;
|
|
82
48
|
--line-height: 1.6;
|
|
83
|
-
|
|
84
|
-
/* Icon styling */
|
|
85
|
-
--icon-stroke-width: 1.5;
|
|
86
49
|
--icon-color: #6366f1;
|
|
87
|
-
|
|
88
|
-
/* Transitions - Springy, glassy settle */
|
|
89
50
|
--transition-fast: 120ms;
|
|
90
51
|
--transition-normal: 220ms;
|
|
91
52
|
--transition-slow: 320ms;
|
|
92
53
|
--transition-timing: cubic-bezier(0.34, 1.3, 0.64, 1);
|
|
93
|
-
|
|
94
|
-
/* Hover/Active transforms - Gentle lift, like a pane catching light */
|
|
95
54
|
--hover-scale: 1.01;
|
|
96
55
|
--hover-translate-y: -1px;
|
|
97
56
|
--hover-translate-x: 0;
|
|
98
57
|
--active-scale: 0.99;
|
|
99
58
|
--active-translate-y: 0;
|
|
100
|
-
|
|
101
|
-
/* Focus ring */
|
|
102
59
|
--focus-ring-width: 2px;
|
|
103
60
|
--focus-ring-offset: 2px;
|
|
104
61
|
--focus-ring-color: #6366f1;
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
62
|
+
--shadow-main: 0 4px 16px rgba(99, 102, 241, 0.1), 0 2px 6px rgba(15, 23, 42, 0.05);
|
|
63
|
+
--shadow-sm: 0 1px 6px rgba(99, 102, 241, 0.08);
|
|
64
|
+
--shadow-lg: 0 12px 32px rgba(99, 102, 241, 0.14), 0 4px 12px rgba(15, 23, 42, 0.06);
|
|
65
|
+
--shadow-inner: inset 0 1px 4px rgba(99, 102, 241, 0.08);
|
|
66
|
+
--shadow-none: none;
|
|
67
|
+
--shadow-hover: 0 12px 36px rgba(99, 102, 241, 0.2), 0 4px 12px rgba(139, 92, 246, 0.08);
|
|
68
|
+
--shadow-active: 0 2px 8px rgba(99, 102, 241, 0.12);
|
|
108
69
|
--space-0: 0px;
|
|
109
70
|
--space-1: 4px;
|
|
110
71
|
--space-2: 8px;
|
|
@@ -118,7 +79,6 @@
|
|
|
118
79
|
--space-10: 40px;
|
|
119
80
|
--space-11: 44px;
|
|
120
81
|
--space-12: 48px;
|
|
121
|
-
/* Density axis — per-element heights */
|
|
122
82
|
--button-height-sm: 32px;
|
|
123
83
|
--button-height-md: 40px;
|
|
124
84
|
--button-height-lg: 48px;
|
|
@@ -128,17 +88,14 @@
|
|
|
128
88
|
--row-height-compact: 36px;
|
|
129
89
|
--row-height-normal: 44px;
|
|
130
90
|
--row-height-spacious: 52px;
|
|
131
|
-
/* Density axis — per-element padding */
|
|
132
91
|
--card-padding-sm: 16px;
|
|
133
92
|
--card-padding-md: 20px;
|
|
134
93
|
--card-padding-lg: 28px;
|
|
135
94
|
--dialog-padding: 28px;
|
|
136
95
|
--section-gap: 40px;
|
|
137
|
-
/* Type axis — family triplet (aliases existing --font-family for backward compat) */
|
|
138
96
|
--font-family-display: var(--font-family);
|
|
139
97
|
--font-family-body: var(--font-family);
|
|
140
98
|
--font-family-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
141
|
-
/* Type axis — size scale */
|
|
142
99
|
--text-xs: 12px;
|
|
143
100
|
--leading-xs: 16px;
|
|
144
101
|
--text-sm: 14px;
|
|
@@ -159,7 +116,6 @@
|
|
|
159
116
|
--leading-display-1: 52px;
|
|
160
117
|
--text-display-2: 60px;
|
|
161
118
|
--leading-display-2: 64px;
|
|
162
|
-
/* Type axis — intent mapping */
|
|
163
119
|
--intent-heading-major-size: var(--text-2xl);
|
|
164
120
|
--intent-heading-major-weight: var(--font-weight-bold);
|
|
165
121
|
--intent-heading-major-leading: var(--leading-2xl);
|
|
@@ -181,82 +137,41 @@
|
|
|
181
137
|
--intent-numeric-size: var(--text-sm);
|
|
182
138
|
--intent-numeric-weight: var(--font-weight-medium);
|
|
183
139
|
--intent-numeric-leading: var(--leading-sm);
|
|
184
|
-
/* Motion axis — duration palette */
|
|
185
140
|
--duration-instant: 0ms;
|
|
186
141
|
--duration-fast: var(--transition-fast);
|
|
187
142
|
--duration-normal: var(--transition-normal);
|
|
188
143
|
--duration-slow: var(--transition-slow);
|
|
189
144
|
--duration-dramatic: 800ms;
|
|
190
|
-
/* Motion axis — easing palette */
|
|
191
145
|
--easing-linear: linear;
|
|
192
146
|
--easing-standard: var(--transition-timing);
|
|
193
147
|
--easing-emphasized: cubic-bezier(0.22, 1, 0.36, 1);
|
|
194
148
|
--easing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
195
|
-
/* Iconography axis */
|
|
196
149
|
--icon-family: lucide;
|
|
150
|
+
--icon-stroke-width: 1.5;
|
|
197
151
|
--icon-default-size: 16px;
|
|
198
|
-
/* Elevation axis — per-layer mapping */
|
|
199
152
|
--elevation-card: var(--shadow-sm);
|
|
200
153
|
--elevation-popover: var(--shadow-main);
|
|
201
154
|
--elevation-dialog: var(--shadow-lg);
|
|
202
155
|
--elevation-toast: var(--shadow-main);
|
|
203
|
-
/* Geometry axis — radius rhythm with intent */
|
|
204
156
|
--radius-container: var(--radius-lg);
|
|
205
157
|
--radius-interactive: var(--radius-md);
|
|
206
158
|
--radius-pill: var(--radius-full);
|
|
207
|
-
/* Geometry axis — border-width rhythm */
|
|
208
159
|
--border-hairline: 1px;
|
|
209
160
|
--border-standard: var(--border-width);
|
|
210
161
|
--border-heavy: var(--border-width-thick);
|
|
211
162
|
}
|
|
212
163
|
|
|
213
|
-
/* ==========================================================================
|
|
214
|
-
* DARK MODE
|
|
215
|
-
* ========================================================================== */
|
|
216
164
|
[data-theme="glass-dark"] {
|
|
217
|
-
/* Shadows - Deep layered drops with an indigo/violet glow */
|
|
218
|
-
--shadow-main:
|
|
219
|
-
0 4px 18px rgba(0, 0, 0, 0.45), 0 0 14px rgba(129, 140, 248, 0.12);
|
|
220
|
-
--shadow-sm:
|
|
221
|
-
0 1px 6px rgba(0, 0, 0, 0.35), 0 0 8px rgba(129, 140, 248, 0.08);
|
|
222
|
-
--shadow-lg:
|
|
223
|
-
0 14px 40px rgba(0, 0, 0, 0.55), 0 0 28px rgba(129, 140, 248, 0.16);
|
|
224
|
-
--shadow-inner:
|
|
225
|
-
inset 0 1px 4px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(129, 140, 248, 0.06);
|
|
226
|
-
--shadow-none: none;
|
|
227
|
-
--shadow-hover:
|
|
228
|
-
0 14px 44px rgba(0, 0, 0, 0.6), 0 0 32px rgba(167, 139, 250, 0.22);
|
|
229
|
-
--shadow-active:
|
|
230
|
-
0 2px 8px rgba(0, 0, 0, 0.4), 0 0 10px rgba(129, 140, 248, 0.1);
|
|
231
|
-
|
|
232
|
-
/* Border radius - Large, soft glass panes */
|
|
233
|
-
--radius-none: 0px;
|
|
234
|
-
--radius-sm: 10px;
|
|
235
|
-
--radius-md: 14px;
|
|
236
|
-
--radius-lg: 18px;
|
|
237
|
-
--radius-xl: 20px;
|
|
238
|
-
--radius-full: 9999px;
|
|
239
|
-
|
|
240
|
-
/* Border width - Hairline luminous edges */
|
|
241
|
-
--border-width: 1px;
|
|
242
|
-
--border-width-thin: 1px;
|
|
243
|
-
--border-width-thick: 2px;
|
|
244
|
-
|
|
245
|
-
/* Colors - Deep indigo-slate with translucent panes */
|
|
246
165
|
--color-primary: #818cf8;
|
|
247
166
|
--color-primary-hover: #6b72f5;
|
|
248
167
|
--color-primary-foreground: #0b1020;
|
|
249
|
-
|
|
250
168
|
--color-secondary: rgba(30, 36, 66, 0.55);
|
|
251
169
|
--color-secondary-hover: rgba(38, 45, 80, 0.65);
|
|
252
170
|
--color-secondary-foreground: #e2e5f4;
|
|
253
|
-
|
|
254
171
|
--color-accent: #a78bfa;
|
|
255
172
|
--color-accent-foreground: #160b2e;
|
|
256
|
-
|
|
257
173
|
--color-muted: rgba(30, 36, 66, 0.55);
|
|
258
174
|
--color-muted-foreground: #8f96b8;
|
|
259
|
-
|
|
260
175
|
--color-background: #0b1020;
|
|
261
176
|
--color-foreground: #e7e9f5;
|
|
262
177
|
--color-card: rgba(22, 27, 51, 0.58);
|
|
@@ -265,8 +180,6 @@
|
|
|
265
180
|
--color-border: rgba(255, 255, 255, 0.14);
|
|
266
181
|
--color-input: rgba(255, 255, 255, 0.2);
|
|
267
182
|
--color-ring: #818cf8;
|
|
268
|
-
|
|
269
|
-
/* Semantic colors - Soft-bright for dark mode */
|
|
270
183
|
--color-error: #fb7185;
|
|
271
184
|
--color-error-foreground: #000000;
|
|
272
185
|
--color-success: #34d399;
|
|
@@ -275,40 +188,41 @@
|
|
|
275
188
|
--color-warning-foreground: #000000;
|
|
276
189
|
--color-info: #38bdf8;
|
|
277
190
|
--color-info-foreground: #000000;
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
--
|
|
281
|
-
|
|
191
|
+
--radius-none: 0px;
|
|
192
|
+
--radius-sm: 10px;
|
|
193
|
+
--radius-md: 14px;
|
|
194
|
+
--radius-lg: 18px;
|
|
195
|
+
--radius-xl: 20px;
|
|
196
|
+
--radius-full: 9999px;
|
|
197
|
+
--border-width: 1px;
|
|
198
|
+
--border-width-thin: 1px;
|
|
199
|
+
--border-width-thick: 2px;
|
|
200
|
+
--font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
282
201
|
--font-weight-normal: 400;
|
|
283
202
|
--font-weight-medium: 500;
|
|
284
203
|
--font-weight-bold: 650;
|
|
285
204
|
--letter-spacing: -0.01em;
|
|
286
205
|
--line-height: 1.6;
|
|
287
|
-
|
|
288
|
-
/* Icon styling */
|
|
289
|
-
--icon-stroke-width: 1.5;
|
|
290
206
|
--icon-color: #818cf8;
|
|
291
|
-
|
|
292
|
-
/* Transitions - Springy, glassy settle */
|
|
293
207
|
--transition-fast: 120ms;
|
|
294
208
|
--transition-normal: 220ms;
|
|
295
209
|
--transition-slow: 320ms;
|
|
296
210
|
--transition-timing: cubic-bezier(0.34, 1.3, 0.64, 1);
|
|
297
|
-
|
|
298
|
-
/* Hover/Active transforms - Gentle lift, like a pane catching light */
|
|
299
211
|
--hover-scale: 1.01;
|
|
300
212
|
--hover-translate-y: -1px;
|
|
301
213
|
--hover-translate-x: 0;
|
|
302
214
|
--active-scale: 0.99;
|
|
303
215
|
--active-translate-y: 0;
|
|
304
|
-
|
|
305
|
-
/* Focus ring */
|
|
306
216
|
--focus-ring-width: 2px;
|
|
307
217
|
--focus-ring-offset: 2px;
|
|
308
218
|
--focus-ring-color: #818cf8;
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
219
|
+
--shadow-main: 0 4px 18px rgba(0, 0, 0, 0.45), 0 0 14px rgba(129, 140, 248, 0.12);
|
|
220
|
+
--shadow-sm: 0 1px 6px rgba(0, 0, 0, 0.35), 0 0 8px rgba(129, 140, 248, 0.08);
|
|
221
|
+
--shadow-lg: 0 14px 40px rgba(0, 0, 0, 0.55), 0 0 28px rgba(129, 140, 248, 0.16);
|
|
222
|
+
--shadow-inner: inset 0 1px 4px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(129, 140, 248, 0.06);
|
|
223
|
+
--shadow-none: none;
|
|
224
|
+
--shadow-hover: 0 14px 44px rgba(0, 0, 0, 0.6), 0 0 32px rgba(167, 139, 250, 0.22);
|
|
225
|
+
--shadow-active: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 10px rgba(129, 140, 248, 0.1);
|
|
312
226
|
--space-0: 0px;
|
|
313
227
|
--space-1: 4px;
|
|
314
228
|
--space-2: 8px;
|
|
@@ -322,7 +236,6 @@
|
|
|
322
236
|
--space-10: 40px;
|
|
323
237
|
--space-11: 44px;
|
|
324
238
|
--space-12: 48px;
|
|
325
|
-
/* Density axis — per-element heights */
|
|
326
239
|
--button-height-sm: 32px;
|
|
327
240
|
--button-height-md: 40px;
|
|
328
241
|
--button-height-lg: 48px;
|
|
@@ -332,17 +245,14 @@
|
|
|
332
245
|
--row-height-compact: 36px;
|
|
333
246
|
--row-height-normal: 44px;
|
|
334
247
|
--row-height-spacious: 52px;
|
|
335
|
-
/* Density axis — per-element padding */
|
|
336
248
|
--card-padding-sm: 16px;
|
|
337
249
|
--card-padding-md: 20px;
|
|
338
250
|
--card-padding-lg: 28px;
|
|
339
251
|
--dialog-padding: 28px;
|
|
340
252
|
--section-gap: 40px;
|
|
341
|
-
/* Type axis — family triplet (aliases existing --font-family for backward compat) */
|
|
342
253
|
--font-family-display: var(--font-family);
|
|
343
254
|
--font-family-body: var(--font-family);
|
|
344
255
|
--font-family-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
345
|
-
/* Type axis — size scale */
|
|
346
256
|
--text-xs: 12px;
|
|
347
257
|
--leading-xs: 16px;
|
|
348
258
|
--text-sm: 14px;
|
|
@@ -363,7 +273,6 @@
|
|
|
363
273
|
--leading-display-1: 52px;
|
|
364
274
|
--text-display-2: 60px;
|
|
365
275
|
--leading-display-2: 64px;
|
|
366
|
-
/* Type axis — intent mapping */
|
|
367
276
|
--intent-heading-major-size: var(--text-2xl);
|
|
368
277
|
--intent-heading-major-weight: var(--font-weight-bold);
|
|
369
278
|
--intent-heading-major-leading: var(--leading-2xl);
|
|
@@ -385,44 +294,26 @@
|
|
|
385
294
|
--intent-numeric-size: var(--text-sm);
|
|
386
295
|
--intent-numeric-weight: var(--font-weight-medium);
|
|
387
296
|
--intent-numeric-leading: var(--leading-sm);
|
|
388
|
-
/* Motion axis — duration palette */
|
|
389
297
|
--duration-instant: 0ms;
|
|
390
298
|
--duration-fast: var(--transition-fast);
|
|
391
299
|
--duration-normal: var(--transition-normal);
|
|
392
300
|
--duration-slow: var(--transition-slow);
|
|
393
301
|
--duration-dramatic: 800ms;
|
|
394
|
-
/* Motion axis — easing palette */
|
|
395
302
|
--easing-linear: linear;
|
|
396
303
|
--easing-standard: var(--transition-timing);
|
|
397
304
|
--easing-emphasized: cubic-bezier(0.22, 1, 0.36, 1);
|
|
398
305
|
--easing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
399
|
-
/* Iconography axis */
|
|
400
306
|
--icon-family: lucide;
|
|
307
|
+
--icon-stroke-width: 1.5;
|
|
401
308
|
--icon-default-size: 16px;
|
|
402
|
-
/* Elevation axis — per-layer mapping */
|
|
403
309
|
--elevation-card: var(--shadow-sm);
|
|
404
310
|
--elevation-popover: var(--shadow-main);
|
|
405
311
|
--elevation-dialog: var(--shadow-lg);
|
|
406
312
|
--elevation-toast: var(--shadow-main);
|
|
407
|
-
/* Geometry axis — radius rhythm with intent */
|
|
408
313
|
--radius-container: var(--radius-lg);
|
|
409
314
|
--radius-interactive: var(--radius-md);
|
|
410
315
|
--radius-pill: var(--radius-full);
|
|
411
|
-
/* Geometry axis — border-width rhythm */
|
|
412
316
|
--border-hairline: 1px;
|
|
413
317
|
--border-standard: var(--border-width);
|
|
414
318
|
--border-heavy: var(--border-width-thick);
|
|
415
319
|
}
|
|
416
|
-
|
|
417
|
-
/* ==========================================================================
|
|
418
|
-
* SURFACE BLUR
|
|
419
|
-
* ========================================================================== */
|
|
420
|
-
/* Frosted backdrop for painted card/surface utilities */
|
|
421
|
-
[data-theme="glass-light"] .bg-card,
|
|
422
|
-
[data-theme="glass-light"] .bg-surface {
|
|
423
|
-
backdrop-filter: blur(14px) saturate(1.4);
|
|
424
|
-
}
|
|
425
|
-
[data-theme="glass-dark"] .bg-card,
|
|
426
|
-
[data-theme="glass-dark"] .bg-surface {
|
|
427
|
-
backdrop-filter: blur(18px) saturate(1.3);
|
|
428
|
-
}
|