@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/clay.css
CHANGED
|
@@ -1,60 +1,20 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
* drop shadows paired with an inner top highlight make cards and buttons
|
|
6
|
-
* bulge gently off the background. Big soft radii, a lavender-pink / mint /
|
|
7
|
-
* cream pastel palette, chubby paddings, rounded Manrope type, and a quick
|
|
8
|
-
* spring bounce on every interaction give it a friendly consumer-SaaS feel.
|
|
2
|
+
* GENERATED — do not edit by hand.
|
|
3
|
+
* Source: packages/almadar-core/themes/clay.json
|
|
4
|
+
* Regenerate: node tools/almadar-pattern-sync/dist/index.js themes (or `almadar-sync themes`)
|
|
9
5
|
*/
|
|
10
6
|
|
|
11
|
-
/* ==========================================================================
|
|
12
|
-
* LIGHT MODE
|
|
13
|
-
* ========================================================================== */
|
|
14
7
|
[data-theme="clay-light"] {
|
|
15
|
-
/* Shadows - Soft diffuse drop + inner top highlight (the clay bulge) */
|
|
16
|
-
--shadow-main:
|
|
17
|
-
0 12px 24px -6px rgba(93, 62, 110, 0.18), inset 0 2px 4px rgba(255, 255, 255, 0.7);
|
|
18
|
-
--shadow-sm:
|
|
19
|
-
0 6px 12px -4px rgba(93, 62, 110, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.6);
|
|
20
|
-
--shadow-lg:
|
|
21
|
-
0 20px 40px -8px rgba(93, 62, 110, 0.22), inset 0 2px 6px rgba(255, 255, 255, 0.7);
|
|
22
|
-
--shadow-inner:
|
|
23
|
-
inset 0 2px 4px rgba(255, 255, 255, 0.7), inset 0 -3px 6px rgba(93, 62, 110, 0.12);
|
|
24
|
-
--shadow-none: none;
|
|
25
|
-
--shadow-hover:
|
|
26
|
-
0 16px 32px -6px rgba(93, 62, 110, 0.24), inset 0 2px 4px rgba(255, 255, 255, 0.8);
|
|
27
|
-
--shadow-active:
|
|
28
|
-
0 4px 8px -2px rgba(93, 62, 110, 0.15), inset 0 3px 6px rgba(93, 62, 110, 0.12);
|
|
29
|
-
|
|
30
|
-
/* Border radius - Big, soft, puffy */
|
|
31
|
-
--radius-none: 0px;
|
|
32
|
-
--radius-sm: 12px;
|
|
33
|
-
--radius-md: 16px;
|
|
34
|
-
--radius-lg: 20px;
|
|
35
|
-
--radius-xl: 24px;
|
|
36
|
-
--radius-full: 9999px;
|
|
37
|
-
|
|
38
|
-
/* Border width - Barely-there, clay edges are soft */
|
|
39
|
-
--border-width: 1px;
|
|
40
|
-
--border-width-thin: 1px;
|
|
41
|
-
--border-width-thick: 2px;
|
|
42
|
-
|
|
43
|
-
/* Colors - Pastel lavender-pink on warm cream */
|
|
44
8
|
--color-primary: #b97fd8;
|
|
45
9
|
--color-primary-hover: #a569c7;
|
|
46
10
|
--color-primary-foreground: #251038;
|
|
47
|
-
|
|
48
11
|
--color-secondary: #c9ecdc;
|
|
49
12
|
--color-secondary-hover: #b2e3cd;
|
|
50
13
|
--color-secondary-foreground: #1f4a38;
|
|
51
|
-
|
|
52
14
|
--color-accent: #f2a172;
|
|
53
15
|
--color-accent-foreground: #4a2410;
|
|
54
|
-
|
|
55
16
|
--color-muted: #f2e9e4;
|
|
56
17
|
--color-muted-foreground: #6a5560;
|
|
57
|
-
|
|
58
18
|
--color-background: #faf5f0;
|
|
59
19
|
--color-foreground: #3d2c3a;
|
|
60
20
|
--color-card: #fffdf9;
|
|
@@ -63,8 +23,6 @@
|
|
|
63
23
|
--color-border: rgba(93, 62, 110, 0.14);
|
|
64
24
|
--color-input: rgba(93, 62, 110, 0.2);
|
|
65
25
|
--color-ring: #b97fd8;
|
|
66
|
-
|
|
67
|
-
/* Semantic colors - Softened pastels, still readable */
|
|
68
26
|
--color-error: #c92847;
|
|
69
27
|
--color-error-foreground: #ffffff;
|
|
70
28
|
--color-success: #20835b;
|
|
@@ -73,40 +31,41 @@
|
|
|
73
31
|
--color-warning-foreground: #3d2a00;
|
|
74
32
|
--color-info: #3f6fd1;
|
|
75
33
|
--color-info-foreground: #ffffff;
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
--
|
|
79
|
-
|
|
34
|
+
--radius-none: 0px;
|
|
35
|
+
--radius-sm: 12px;
|
|
36
|
+
--radius-md: 16px;
|
|
37
|
+
--radius-lg: 20px;
|
|
38
|
+
--radius-xl: 24px;
|
|
39
|
+
--radius-full: 9999px;
|
|
40
|
+
--border-width: 1px;
|
|
41
|
+
--border-width-thin: 1px;
|
|
42
|
+
--border-width-thick: 2px;
|
|
43
|
+
--font-family: "Manrope", "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
80
44
|
--font-weight-normal: 500;
|
|
81
45
|
--font-weight-medium: 600;
|
|
82
46
|
--font-weight-bold: 800;
|
|
83
47
|
--letter-spacing: 0.005em;
|
|
84
48
|
--line-height: 1.55;
|
|
85
|
-
|
|
86
|
-
/* Icon styling - Chubby strokes */
|
|
87
|
-
--icon-stroke-width: 2.25;
|
|
88
49
|
--icon-color: #b97fd8;
|
|
89
|
-
|
|
90
|
-
/* Transitions - Bouncy but quick */
|
|
91
50
|
--transition-fast: 120ms;
|
|
92
51
|
--transition-normal: 180ms;
|
|
93
52
|
--transition-slow: 280ms;
|
|
94
53
|
--transition-timing: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
95
|
-
|
|
96
|
-
/* Hover/Active transforms - Puffy press-and-bounce */
|
|
97
54
|
--hover-scale: 1.03;
|
|
98
55
|
--hover-translate-y: -1px;
|
|
99
56
|
--hover-translate-x: 0;
|
|
100
57
|
--active-scale: 0.97;
|
|
101
58
|
--active-translate-y: 1px;
|
|
102
|
-
|
|
103
|
-
/* Focus ring */
|
|
104
59
|
--focus-ring-width: 3px;
|
|
105
60
|
--focus-ring-offset: 2px;
|
|
106
61
|
--focus-ring-color: rgba(185, 127, 216, 0.5);
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
62
|
+
--shadow-main: 0 12px 24px -6px rgba(93, 62, 110, 0.18), inset 0 2px 4px rgba(255, 255, 255, 0.7);
|
|
63
|
+
--shadow-sm: 0 6px 12px -4px rgba(93, 62, 110, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.6);
|
|
64
|
+
--shadow-lg: 0 20px 40px -8px rgba(93, 62, 110, 0.22), inset 0 2px 6px rgba(255, 255, 255, 0.7);
|
|
65
|
+
--shadow-inner: inset 0 2px 4px rgba(255, 255, 255, 0.7), inset 0 -3px 6px rgba(93, 62, 110, 0.12);
|
|
66
|
+
--shadow-none: none;
|
|
67
|
+
--shadow-hover: 0 16px 32px -6px rgba(93, 62, 110, 0.24), inset 0 2px 4px rgba(255, 255, 255, 0.8);
|
|
68
|
+
--shadow-active: 0 4px 8px -2px rgba(93, 62, 110, 0.15), inset 0 3px 6px rgba(93, 62, 110, 0.12);
|
|
110
69
|
--space-0: 0px;
|
|
111
70
|
--space-1: 4px;
|
|
112
71
|
--space-2: 8px;
|
|
@@ -120,7 +79,6 @@
|
|
|
120
79
|
--space-10: 40px;
|
|
121
80
|
--space-11: 44px;
|
|
122
81
|
--space-12: 48px;
|
|
123
|
-
/* Density axis — per-element heights (slightly taller, chubby) */
|
|
124
82
|
--button-height-sm: 32px;
|
|
125
83
|
--button-height-md: 40px;
|
|
126
84
|
--button-height-lg: 50px;
|
|
@@ -130,17 +88,14 @@
|
|
|
130
88
|
--row-height-compact: 36px;
|
|
131
89
|
--row-height-normal: 44px;
|
|
132
90
|
--row-height-spacious: 56px;
|
|
133
|
-
/* Density axis — per-element padding (generous, pillowy) */
|
|
134
91
|
--card-padding-sm: 16px;
|
|
135
92
|
--card-padding-md: 20px;
|
|
136
93
|
--card-padding-lg: 32px;
|
|
137
94
|
--dialog-padding: 32px;
|
|
138
95
|
--section-gap: 40px;
|
|
139
|
-
/* Type axis — family triplet (aliases existing --font-family for backward compat) */
|
|
140
96
|
--font-family-display: var(--font-family);
|
|
141
97
|
--font-family-body: var(--font-family);
|
|
142
98
|
--font-family-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
143
|
-
/* Type axis — size scale */
|
|
144
99
|
--text-xs: 12px;
|
|
145
100
|
--leading-xs: 16px;
|
|
146
101
|
--text-sm: 14px;
|
|
@@ -161,7 +116,6 @@
|
|
|
161
116
|
--leading-display-1: 52px;
|
|
162
117
|
--text-display-2: 60px;
|
|
163
118
|
--leading-display-2: 64px;
|
|
164
|
-
/* Type axis — intent mapping */
|
|
165
119
|
--intent-heading-major-size: var(--text-2xl);
|
|
166
120
|
--intent-heading-major-weight: var(--font-weight-bold);
|
|
167
121
|
--intent-heading-major-leading: var(--leading-2xl);
|
|
@@ -183,82 +137,41 @@
|
|
|
183
137
|
--intent-numeric-size: var(--text-sm);
|
|
184
138
|
--intent-numeric-weight: var(--font-weight-medium);
|
|
185
139
|
--intent-numeric-leading: var(--leading-sm);
|
|
186
|
-
/* Motion axis — duration palette */
|
|
187
140
|
--duration-instant: 0ms;
|
|
188
141
|
--duration-fast: var(--transition-fast);
|
|
189
142
|
--duration-normal: var(--transition-normal);
|
|
190
143
|
--duration-slow: var(--transition-slow);
|
|
191
144
|
--duration-dramatic: 700ms;
|
|
192
|
-
/* Motion axis — easing palette (spring IS the standard here) */
|
|
193
145
|
--easing-linear: linear;
|
|
194
146
|
--easing-standard: var(--transition-timing);
|
|
195
147
|
--easing-emphasized: cubic-bezier(0.2, 0, 0, 1);
|
|
196
148
|
--easing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
197
|
-
/* Iconography axis */
|
|
198
149
|
--icon-family: lucide;
|
|
150
|
+
--icon-stroke-width: 2.25;
|
|
199
151
|
--icon-default-size: 18px;
|
|
200
|
-
/* Elevation axis — per-layer mapping */
|
|
201
152
|
--elevation-card: var(--shadow-sm);
|
|
202
153
|
--elevation-popover: var(--shadow-main);
|
|
203
154
|
--elevation-dialog: var(--shadow-lg);
|
|
204
155
|
--elevation-toast: var(--shadow-main);
|
|
205
|
-
/* Geometry axis — radius rhythm with intent */
|
|
206
156
|
--radius-container: var(--radius-lg);
|
|
207
157
|
--radius-interactive: var(--radius-md);
|
|
208
158
|
--radius-pill: var(--radius-full);
|
|
209
|
-
/* Geometry axis — border-width rhythm */
|
|
210
159
|
--border-hairline: 1px;
|
|
211
160
|
--border-standard: var(--border-width);
|
|
212
161
|
--border-heavy: var(--border-width-thick);
|
|
213
162
|
}
|
|
214
163
|
|
|
215
|
-
/* ==========================================================================
|
|
216
|
-
* DARK MODE
|
|
217
|
-
* ========================================================================== */
|
|
218
164
|
[data-theme="clay-dark"] {
|
|
219
|
-
/* Shadows - Deep diffuse drop + faint inner top light */
|
|
220
|
-
--shadow-main:
|
|
221
|
-
0 14px 28px -6px rgba(0, 0, 0, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.08);
|
|
222
|
-
--shadow-sm:
|
|
223
|
-
0 8px 16px -4px rgba(0, 0, 0, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.06);
|
|
224
|
-
--shadow-lg:
|
|
225
|
-
0 24px 48px -8px rgba(0, 0, 0, 0.55), inset 0 2px 4px rgba(255, 255, 255, 0.1);
|
|
226
|
-
--shadow-inner:
|
|
227
|
-
inset 0 2px 4px rgba(255, 255, 255, 0.06), inset 0 -4px 8px rgba(0, 0, 0, 0.35);
|
|
228
|
-
--shadow-none: none;
|
|
229
|
-
--shadow-hover:
|
|
230
|
-
0 18px 36px -6px rgba(0, 0, 0, 0.5), inset 0 2px 3px rgba(255, 255, 255, 0.1);
|
|
231
|
-
--shadow-active:
|
|
232
|
-
0 4px 10px -2px rgba(0, 0, 0, 0.4), inset 0 3px 8px rgba(0, 0, 0, 0.4);
|
|
233
|
-
|
|
234
|
-
/* Border radius - Big, soft, puffy */
|
|
235
|
-
--radius-none: 0px;
|
|
236
|
-
--radius-sm: 12px;
|
|
237
|
-
--radius-md: 16px;
|
|
238
|
-
--radius-lg: 20px;
|
|
239
|
-
--radius-xl: 24px;
|
|
240
|
-
--radius-full: 9999px;
|
|
241
|
-
|
|
242
|
-
/* Border width - Barely-there, clay edges are soft */
|
|
243
|
-
--border-width: 1px;
|
|
244
|
-
--border-width-thin: 1px;
|
|
245
|
-
--border-width-thick: 2px;
|
|
246
|
-
|
|
247
|
-
/* Colors - Muted pastels on deep warm plum */
|
|
248
165
|
--color-primary: #cf9ce8;
|
|
249
166
|
--color-primary-hover: #bb84d8;
|
|
250
167
|
--color-primary-foreground: #2a1538;
|
|
251
|
-
|
|
252
168
|
--color-secondary: #35544a;
|
|
253
169
|
--color-secondary-hover: #406457;
|
|
254
170
|
--color-secondary-foreground: #c8ecdc;
|
|
255
|
-
|
|
256
171
|
--color-accent: #f0ab82;
|
|
257
172
|
--color-accent-foreground: #3a1c0a;
|
|
258
|
-
|
|
259
173
|
--color-muted: #3a2d42;
|
|
260
174
|
--color-muted-foreground: #bfa8c4;
|
|
261
|
-
|
|
262
175
|
--color-background: #241c2a;
|
|
263
176
|
--color-foreground: #f3e9f2;
|
|
264
177
|
--color-card: #2f2438;
|
|
@@ -267,8 +180,6 @@
|
|
|
267
180
|
--color-border: rgba(207, 156, 232, 0.16);
|
|
268
181
|
--color-input: rgba(207, 156, 232, 0.22);
|
|
269
182
|
--color-ring: #cf9ce8;
|
|
270
|
-
|
|
271
|
-
/* Semantic colors - Pastel-bright for dark mode, dark text on top */
|
|
272
183
|
--color-error: #f08a9a;
|
|
273
184
|
--color-error-foreground: #3d0f18;
|
|
274
185
|
--color-success: #8fd8b0;
|
|
@@ -277,40 +188,41 @@
|
|
|
277
188
|
--color-warning-foreground: #332400;
|
|
278
189
|
--color-info: #9ab8f0;
|
|
279
190
|
--color-info-foreground: #0f1f3d;
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
--
|
|
283
|
-
|
|
191
|
+
--radius-none: 0px;
|
|
192
|
+
--radius-sm: 12px;
|
|
193
|
+
--radius-md: 16px;
|
|
194
|
+
--radius-lg: 20px;
|
|
195
|
+
--radius-xl: 24px;
|
|
196
|
+
--radius-full: 9999px;
|
|
197
|
+
--border-width: 1px;
|
|
198
|
+
--border-width-thin: 1px;
|
|
199
|
+
--border-width-thick: 2px;
|
|
200
|
+
--font-family: "Manrope", "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
284
201
|
--font-weight-normal: 500;
|
|
285
202
|
--font-weight-medium: 600;
|
|
286
203
|
--font-weight-bold: 800;
|
|
287
204
|
--letter-spacing: 0.005em;
|
|
288
205
|
--line-height: 1.55;
|
|
289
|
-
|
|
290
|
-
/* Icon styling - Chubby strokes */
|
|
291
|
-
--icon-stroke-width: 2.25;
|
|
292
206
|
--icon-color: #cf9ce8;
|
|
293
|
-
|
|
294
|
-
/* Transitions - Bouncy but quick */
|
|
295
207
|
--transition-fast: 120ms;
|
|
296
208
|
--transition-normal: 180ms;
|
|
297
209
|
--transition-slow: 280ms;
|
|
298
210
|
--transition-timing: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
299
|
-
|
|
300
|
-
/* Hover/Active transforms - Puffy press-and-bounce */
|
|
301
211
|
--hover-scale: 1.03;
|
|
302
212
|
--hover-translate-y: -1px;
|
|
303
213
|
--hover-translate-x: 0;
|
|
304
214
|
--active-scale: 0.97;
|
|
305
215
|
--active-translate-y: 1px;
|
|
306
|
-
|
|
307
|
-
/* Focus ring */
|
|
308
216
|
--focus-ring-width: 3px;
|
|
309
217
|
--focus-ring-offset: 2px;
|
|
310
218
|
--focus-ring-color: rgba(207, 156, 232, 0.5);
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
219
|
+
--shadow-main: 0 14px 28px -6px rgba(0, 0, 0, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.08);
|
|
220
|
+
--shadow-sm: 0 8px 16px -4px rgba(0, 0, 0, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.06);
|
|
221
|
+
--shadow-lg: 0 24px 48px -8px rgba(0, 0, 0, 0.55), inset 0 2px 4px rgba(255, 255, 255, 0.1);
|
|
222
|
+
--shadow-inner: inset 0 2px 4px rgba(255, 255, 255, 0.06), inset 0 -4px 8px rgba(0, 0, 0, 0.35);
|
|
223
|
+
--shadow-none: none;
|
|
224
|
+
--shadow-hover: 0 18px 36px -6px rgba(0, 0, 0, 0.5), inset 0 2px 3px rgba(255, 255, 255, 0.1);
|
|
225
|
+
--shadow-active: 0 4px 10px -2px rgba(0, 0, 0, 0.4), inset 0 3px 8px rgba(0, 0, 0, 0.4);
|
|
314
226
|
--space-0: 0px;
|
|
315
227
|
--space-1: 4px;
|
|
316
228
|
--space-2: 8px;
|
|
@@ -324,7 +236,6 @@
|
|
|
324
236
|
--space-10: 40px;
|
|
325
237
|
--space-11: 44px;
|
|
326
238
|
--space-12: 48px;
|
|
327
|
-
/* Density axis — per-element heights (slightly taller, chubby) */
|
|
328
239
|
--button-height-sm: 32px;
|
|
329
240
|
--button-height-md: 40px;
|
|
330
241
|
--button-height-lg: 50px;
|
|
@@ -334,17 +245,14 @@
|
|
|
334
245
|
--row-height-compact: 36px;
|
|
335
246
|
--row-height-normal: 44px;
|
|
336
247
|
--row-height-spacious: 56px;
|
|
337
|
-
/* Density axis — per-element padding (generous, pillowy) */
|
|
338
248
|
--card-padding-sm: 16px;
|
|
339
249
|
--card-padding-md: 20px;
|
|
340
250
|
--card-padding-lg: 32px;
|
|
341
251
|
--dialog-padding: 32px;
|
|
342
252
|
--section-gap: 40px;
|
|
343
|
-
/* Type axis — family triplet (aliases existing --font-family for backward compat) */
|
|
344
253
|
--font-family-display: var(--font-family);
|
|
345
254
|
--font-family-body: var(--font-family);
|
|
346
255
|
--font-family-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
347
|
-
/* Type axis — size scale */
|
|
348
256
|
--text-xs: 12px;
|
|
349
257
|
--leading-xs: 16px;
|
|
350
258
|
--text-sm: 14px;
|
|
@@ -365,7 +273,6 @@
|
|
|
365
273
|
--leading-display-1: 52px;
|
|
366
274
|
--text-display-2: 60px;
|
|
367
275
|
--leading-display-2: 64px;
|
|
368
|
-
/* Type axis — intent mapping */
|
|
369
276
|
--intent-heading-major-size: var(--text-2xl);
|
|
370
277
|
--intent-heading-major-weight: var(--font-weight-bold);
|
|
371
278
|
--intent-heading-major-leading: var(--leading-2xl);
|
|
@@ -387,30 +294,25 @@
|
|
|
387
294
|
--intent-numeric-size: var(--text-sm);
|
|
388
295
|
--intent-numeric-weight: var(--font-weight-medium);
|
|
389
296
|
--intent-numeric-leading: var(--leading-sm);
|
|
390
|
-
/* Motion axis — duration palette */
|
|
391
297
|
--duration-instant: 0ms;
|
|
392
298
|
--duration-fast: var(--transition-fast);
|
|
393
299
|
--duration-normal: var(--transition-normal);
|
|
394
300
|
--duration-slow: var(--transition-slow);
|
|
395
301
|
--duration-dramatic: 700ms;
|
|
396
|
-
/* Motion axis — easing palette (spring IS the standard here) */
|
|
397
302
|
--easing-linear: linear;
|
|
398
303
|
--easing-standard: var(--transition-timing);
|
|
399
304
|
--easing-emphasized: cubic-bezier(0.2, 0, 0, 1);
|
|
400
305
|
--easing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
401
|
-
/* Iconography axis */
|
|
402
306
|
--icon-family: lucide;
|
|
307
|
+
--icon-stroke-width: 2.25;
|
|
403
308
|
--icon-default-size: 18px;
|
|
404
|
-
/* Elevation axis — per-layer mapping */
|
|
405
309
|
--elevation-card: var(--shadow-sm);
|
|
406
310
|
--elevation-popover: var(--shadow-main);
|
|
407
311
|
--elevation-dialog: var(--shadow-lg);
|
|
408
312
|
--elevation-toast: var(--shadow-main);
|
|
409
|
-
/* Geometry axis — radius rhythm with intent */
|
|
410
313
|
--radius-container: var(--radius-lg);
|
|
411
314
|
--radius-interactive: var(--radius-md);
|
|
412
315
|
--radius-pill: var(--radius-full);
|
|
413
|
-
/* Geometry axis — border-width rhythm */
|
|
414
316
|
--border-hairline: 1px;
|
|
415
317
|
--border-standard: var(--border-width);
|
|
416
318
|
--border-heavy: var(--border-width-thick);
|