@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/wireframe.css
CHANGED
|
@@ -1,51 +1,20 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
* Classic blueprint/wireframe aesthetic with bold, tactile interactions.
|
|
2
|
+
* GENERATED — do not edit by hand.
|
|
3
|
+
* Source: packages/almadar-core/themes/wireframe.json
|
|
4
|
+
* Regenerate: node tools/almadar-pattern-sync/dist/index.js themes (or `almadar-sync themes`)
|
|
6
5
|
*/
|
|
7
6
|
|
|
8
|
-
/* ==========================================================================
|
|
9
|
-
* LIGHT MODE
|
|
10
|
-
* ========================================================================== */
|
|
11
7
|
[data-theme="wireframe-light"] {
|
|
12
|
-
/* Shadows - Hard offset shadows (brutalist) */
|
|
13
|
-
--shadow-main: 4px 4px 0px 0px rgba(0, 0, 0, 1);
|
|
14
|
-
--shadow-sm: 2px 2px 0px 0px rgba(0, 0, 0, 1);
|
|
15
|
-
--shadow-lg: 6px 6px 0px 0px rgba(0, 0, 0, 1);
|
|
16
|
-
--shadow-inner: inset 2px 2px 0px 0px rgba(0, 0, 0, 0.1);
|
|
17
|
-
--shadow-none: none;
|
|
18
|
-
--shadow-hover: 6px 6px 0px 0px rgba(0, 0, 0, 1);
|
|
19
|
-
--shadow-active: 1px 1px 0px 0px rgba(0, 0, 0, 1);
|
|
20
|
-
|
|
21
|
-
/* Border radius - Sharp corners (brutalist) */
|
|
22
|
-
--radius-none: 0px;
|
|
23
|
-
--radius-sm: 0px;
|
|
24
|
-
--radius-md: 0px;
|
|
25
|
-
--radius-lg: 0px;
|
|
26
|
-
--radius-xl: 0px;
|
|
27
|
-
--radius-full: 9999px;
|
|
28
|
-
|
|
29
|
-
/* Border width - Thick, bold */
|
|
30
|
-
--border-width: 2px;
|
|
31
|
-
--border-width-thin: 1px;
|
|
32
|
-
--border-width-thick: 3px;
|
|
33
|
-
|
|
34
|
-
/* Colors - High contrast black/white */
|
|
35
8
|
--color-primary: #000000;
|
|
36
9
|
--color-primary-hover: #333333;
|
|
37
10
|
--color-primary-foreground: #ffffff;
|
|
38
|
-
|
|
39
11
|
--color-secondary: #ffffff;
|
|
40
12
|
--color-secondary-hover: #f0f0f0;
|
|
41
13
|
--color-secondary-foreground: #000000;
|
|
42
|
-
|
|
43
14
|
--color-accent: #000000;
|
|
44
15
|
--color-accent-foreground: #ffffff;
|
|
45
|
-
|
|
46
16
|
--color-muted: #f5f5f5;
|
|
47
17
|
--color-muted-foreground: #666666;
|
|
48
|
-
|
|
49
18
|
--color-background: #ffffff;
|
|
50
19
|
--color-foreground: #000000;
|
|
51
20
|
--color-card: #ffffff;
|
|
@@ -54,8 +23,6 @@
|
|
|
54
23
|
--color-border: #000000;
|
|
55
24
|
--color-input: #000000;
|
|
56
25
|
--color-ring: #000000;
|
|
57
|
-
|
|
58
|
-
/* Semantic colors */
|
|
59
26
|
--color-error: #dc2626;
|
|
60
27
|
--color-error-foreground: #ffffff;
|
|
61
28
|
--color-success: #15803d;
|
|
@@ -64,39 +31,41 @@
|
|
|
64
31
|
--color-warning-foreground: #000000;
|
|
65
32
|
--color-info: #2563eb;
|
|
66
33
|
--color-info-foreground: #ffffff;
|
|
67
|
-
|
|
68
|
-
|
|
34
|
+
--radius-none: 0px;
|
|
35
|
+
--radius-sm: 0px;
|
|
36
|
+
--radius-md: 0px;
|
|
37
|
+
--radius-lg: 0px;
|
|
38
|
+
--radius-xl: 0px;
|
|
39
|
+
--radius-full: 9999px;
|
|
40
|
+
--border-width: 2px;
|
|
41
|
+
--border-width-thin: 1px;
|
|
42
|
+
--border-width-thick: 3px;
|
|
69
43
|
--font-family: "Inter", "SF Mono", "Monaco", system-ui, sans-serif;
|
|
70
44
|
--font-weight-normal: 500;
|
|
71
45
|
--font-weight-medium: 600;
|
|
72
46
|
--font-weight-bold: 800;
|
|
73
47
|
--letter-spacing: 0;
|
|
74
48
|
--line-height: 1.5;
|
|
75
|
-
|
|
76
|
-
/* Icon styling - Thick strokes */
|
|
77
|
-
--icon-stroke-width: 2.5;
|
|
78
49
|
--icon-color: currentColor;
|
|
79
|
-
|
|
80
|
-
/* Transitions - Snappy, mechanical */
|
|
81
50
|
--transition-fast: 50ms;
|
|
82
51
|
--transition-normal: 100ms;
|
|
83
52
|
--transition-slow: 200ms;
|
|
84
53
|
--transition-timing: linear;
|
|
85
|
-
|
|
86
|
-
/* Hover/Active transforms */
|
|
87
54
|
--hover-scale: 1;
|
|
88
55
|
--hover-translate-y: -2px;
|
|
89
56
|
--hover-translate-x: 2px;
|
|
90
57
|
--active-scale: 0.98;
|
|
91
58
|
--active-translate-y: 2px;
|
|
92
|
-
|
|
93
|
-
/* Focus ring */
|
|
94
59
|
--focus-ring-width: 2px;
|
|
95
60
|
--focus-ring-offset: 2px;
|
|
96
61
|
--focus-ring-color: #000000;
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
62
|
+
--shadow-main: 4px 4px 0px 0px rgba(0, 0, 0, 1);
|
|
63
|
+
--shadow-sm: 2px 2px 0px 0px rgba(0, 0, 0, 1);
|
|
64
|
+
--shadow-lg: 6px 6px 0px 0px rgba(0, 0, 0, 1);
|
|
65
|
+
--shadow-inner: inset 2px 2px 0px 0px rgba(0, 0, 0, 0.1);
|
|
66
|
+
--shadow-none: none;
|
|
67
|
+
--shadow-hover: 6px 6px 0px 0px rgba(0, 0, 0, 1);
|
|
68
|
+
--shadow-active: 1px 1px 0px 0px rgba(0, 0, 0, 1);
|
|
100
69
|
--space-0: 0px;
|
|
101
70
|
--space-1: 4px;
|
|
102
71
|
--space-2: 8px;
|
|
@@ -110,7 +79,6 @@
|
|
|
110
79
|
--space-10: 40px;
|
|
111
80
|
--space-11: 44px;
|
|
112
81
|
--space-12: 48px;
|
|
113
|
-
/* Density axis — per-element heights */
|
|
114
82
|
--button-height-sm: 28px;
|
|
115
83
|
--button-height-md: 36px;
|
|
116
84
|
--button-height-lg: 44px;
|
|
@@ -120,17 +88,14 @@
|
|
|
120
88
|
--row-height-compact: 32px;
|
|
121
89
|
--row-height-normal: 40px;
|
|
122
90
|
--row-height-spacious: 48px;
|
|
123
|
-
/* Density axis — per-element padding */
|
|
124
91
|
--card-padding-sm: 12px;
|
|
125
92
|
--card-padding-md: 16px;
|
|
126
93
|
--card-padding-lg: 24px;
|
|
127
94
|
--dialog-padding: 24px;
|
|
128
95
|
--section-gap: 32px;
|
|
129
|
-
/* Type axis — family triplet */
|
|
130
96
|
--font-family-display: var(--font-family);
|
|
131
97
|
--font-family-body: var(--font-family);
|
|
132
98
|
--font-family-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
133
|
-
/* Type axis — size scale */
|
|
134
99
|
--text-xs: 12px;
|
|
135
100
|
--leading-xs: 16px;
|
|
136
101
|
--text-sm: 14px;
|
|
@@ -151,7 +116,6 @@
|
|
|
151
116
|
--leading-display-1: 52px;
|
|
152
117
|
--text-display-2: 60px;
|
|
153
118
|
--leading-display-2: 64px;
|
|
154
|
-
/* Type axis — intent mapping */
|
|
155
119
|
--intent-heading-major-size: var(--text-2xl);
|
|
156
120
|
--intent-heading-major-weight: var(--font-weight-bold);
|
|
157
121
|
--intent-heading-major-leading: var(--leading-2xl);
|
|
@@ -173,79 +137,41 @@
|
|
|
173
137
|
--intent-numeric-size: var(--text-sm);
|
|
174
138
|
--intent-numeric-weight: var(--font-weight-medium);
|
|
175
139
|
--intent-numeric-leading: var(--leading-sm);
|
|
176
|
-
/* Motion axis — duration palette */
|
|
177
140
|
--duration-instant: 0ms;
|
|
178
141
|
--duration-fast: var(--transition-fast);
|
|
179
142
|
--duration-normal: var(--transition-normal);
|
|
180
143
|
--duration-slow: var(--transition-slow);
|
|
181
144
|
--duration-dramatic: 600ms;
|
|
182
|
-
/* Motion axis — easing palette */
|
|
183
145
|
--easing-linear: linear;
|
|
184
|
-
--easing-standard:
|
|
185
|
-
--easing-emphasized:
|
|
146
|
+
--easing-standard: linear;
|
|
147
|
+
--easing-emphasized: linear;
|
|
186
148
|
--easing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
187
|
-
/* Iconography axis */
|
|
188
149
|
--icon-family: lucide;
|
|
150
|
+
--icon-stroke-width: 2.5;
|
|
189
151
|
--icon-default-size: 16px;
|
|
190
|
-
/* Elevation axis — per-layer mapping */
|
|
191
152
|
--elevation-card: var(--shadow-sm);
|
|
192
153
|
--elevation-popover: var(--shadow-main);
|
|
193
154
|
--elevation-dialog: var(--shadow-lg);
|
|
194
155
|
--elevation-toast: var(--shadow-main);
|
|
195
|
-
/* Geometry axis — radius rhythm with intent */
|
|
196
156
|
--radius-container: var(--radius-md);
|
|
197
157
|
--radius-interactive: var(--radius-md);
|
|
198
158
|
--radius-pill: var(--radius-full);
|
|
199
|
-
/* Geometry axis — border-width rhythm */
|
|
200
159
|
--border-hairline: 1px;
|
|
201
160
|
--border-standard: var(--border-width);
|
|
202
161
|
--border-heavy: var(--border-width-thick);
|
|
203
|
-
/* wireframe override: mechanical motion has no curve */
|
|
204
|
-
--easing-standard: linear;
|
|
205
|
-
--easing-emphasized: linear;
|
|
206
162
|
}
|
|
207
163
|
|
|
208
|
-
/* ==========================================================================
|
|
209
|
-
* DARK MODE
|
|
210
|
-
* ========================================================================== */
|
|
211
164
|
[data-theme="wireframe-dark"] {
|
|
212
|
-
/* Shadows - Inverted for dark */
|
|
213
|
-
--shadow-main: 4px 4px 0px 0px rgba(255, 255, 255, 0.8);
|
|
214
|
-
--shadow-sm: 2px 2px 0px 0px rgba(255, 255, 255, 0.8);
|
|
215
|
-
--shadow-lg: 6px 6px 0px 0px rgba(255, 255, 255, 0.8);
|
|
216
|
-
--shadow-inner: inset 2px 2px 0px 0px rgba(255, 255, 255, 0.1);
|
|
217
|
-
--shadow-none: none;
|
|
218
|
-
--shadow-hover: 6px 6px 0px 0px rgba(255, 255, 255, 0.8);
|
|
219
|
-
--shadow-active: 1px 1px 0px 0px rgba(255, 255, 255, 0.8);
|
|
220
|
-
|
|
221
|
-
/* Border radius - Sharp corners (brutalist) */
|
|
222
|
-
--radius-none: 0px;
|
|
223
|
-
--radius-sm: 0px;
|
|
224
|
-
--radius-md: 0px;
|
|
225
|
-
--radius-lg: 0px;
|
|
226
|
-
--radius-xl: 0px;
|
|
227
|
-
--radius-full: 9999px;
|
|
228
|
-
|
|
229
|
-
/* Border width - Thick, bold */
|
|
230
|
-
--border-width: 2px;
|
|
231
|
-
--border-width-thin: 1px;
|
|
232
|
-
--border-width-thick: 3px;
|
|
233
|
-
|
|
234
|
-
/* Colors - Inverted high contrast */
|
|
235
165
|
--color-primary: #ffffff;
|
|
236
166
|
--color-primary-hover: #e5e5e5;
|
|
237
167
|
--color-primary-foreground: #000000;
|
|
238
|
-
|
|
239
168
|
--color-secondary: #1a1a1a;
|
|
240
169
|
--color-secondary-hover: #262626;
|
|
241
170
|
--color-secondary-foreground: #ffffff;
|
|
242
|
-
|
|
243
171
|
--color-accent: #ffffff;
|
|
244
172
|
--color-accent-foreground: #000000;
|
|
245
|
-
|
|
246
173
|
--color-muted: #262626;
|
|
247
174
|
--color-muted-foreground: #a3a3a3;
|
|
248
|
-
|
|
249
175
|
--color-background: #111117;
|
|
250
176
|
--color-foreground: #f5f5f5;
|
|
251
177
|
--color-card: #1c1c22;
|
|
@@ -254,8 +180,6 @@
|
|
|
254
180
|
--color-border: #ffffff;
|
|
255
181
|
--color-input: #ffffff;
|
|
256
182
|
--color-ring: #ffffff;
|
|
257
|
-
|
|
258
|
-
/* Semantic colors - Brighter for dark mode */
|
|
259
183
|
--color-error: #f87171;
|
|
260
184
|
--color-error-foreground: #000000;
|
|
261
185
|
--color-success: #4ade80;
|
|
@@ -264,39 +188,41 @@
|
|
|
264
188
|
--color-warning-foreground: #000000;
|
|
265
189
|
--color-info: #60a5fa;
|
|
266
190
|
--color-info-foreground: #000000;
|
|
267
|
-
|
|
268
|
-
|
|
191
|
+
--radius-none: 0px;
|
|
192
|
+
--radius-sm: 0px;
|
|
193
|
+
--radius-md: 0px;
|
|
194
|
+
--radius-lg: 0px;
|
|
195
|
+
--radius-xl: 0px;
|
|
196
|
+
--radius-full: 9999px;
|
|
197
|
+
--border-width: 2px;
|
|
198
|
+
--border-width-thin: 1px;
|
|
199
|
+
--border-width-thick: 3px;
|
|
269
200
|
--font-family: "Inter", "SF Mono", "Monaco", system-ui, sans-serif;
|
|
270
201
|
--font-weight-normal: 500;
|
|
271
202
|
--font-weight-medium: 600;
|
|
272
203
|
--font-weight-bold: 800;
|
|
273
204
|
--letter-spacing: 0;
|
|
274
205
|
--line-height: 1.5;
|
|
275
|
-
|
|
276
|
-
/* Icon styling */
|
|
277
|
-
--icon-stroke-width: 2.5;
|
|
278
206
|
--icon-color: currentColor;
|
|
279
|
-
|
|
280
|
-
/* Transitions */
|
|
281
207
|
--transition-fast: 50ms;
|
|
282
208
|
--transition-normal: 100ms;
|
|
283
209
|
--transition-slow: 200ms;
|
|
284
210
|
--transition-timing: linear;
|
|
285
|
-
|
|
286
|
-
/* Hover/Active transforms */
|
|
287
211
|
--hover-scale: 1;
|
|
288
212
|
--hover-translate-y: -2px;
|
|
289
213
|
--hover-translate-x: 2px;
|
|
290
214
|
--active-scale: 0.98;
|
|
291
215
|
--active-translate-y: 2px;
|
|
292
|
-
|
|
293
|
-
/* Focus ring */
|
|
294
216
|
--focus-ring-width: 2px;
|
|
295
217
|
--focus-ring-offset: 2px;
|
|
296
218
|
--focus-ring-color: #ffffff;
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
219
|
+
--shadow-main: 4px 4px 0px 0px rgba(255, 255, 255, 0.8);
|
|
220
|
+
--shadow-sm: 2px 2px 0px 0px rgba(255, 255, 255, 0.8);
|
|
221
|
+
--shadow-lg: 6px 6px 0px 0px rgba(255, 255, 255, 0.8);
|
|
222
|
+
--shadow-inner: inset 2px 2px 0px 0px rgba(255, 255, 255, 0.1);
|
|
223
|
+
--shadow-none: none;
|
|
224
|
+
--shadow-hover: 6px 6px 0px 0px rgba(255, 255, 255, 0.8);
|
|
225
|
+
--shadow-active: 1px 1px 0px 0px rgba(255, 255, 255, 0.8);
|
|
300
226
|
--space-0: 0px;
|
|
301
227
|
--space-1: 4px;
|
|
302
228
|
--space-2: 8px;
|
|
@@ -310,7 +236,6 @@
|
|
|
310
236
|
--space-10: 40px;
|
|
311
237
|
--space-11: 44px;
|
|
312
238
|
--space-12: 48px;
|
|
313
|
-
/* Density axis — per-element heights */
|
|
314
239
|
--button-height-sm: 28px;
|
|
315
240
|
--button-height-md: 36px;
|
|
316
241
|
--button-height-lg: 44px;
|
|
@@ -320,17 +245,14 @@
|
|
|
320
245
|
--row-height-compact: 32px;
|
|
321
246
|
--row-height-normal: 40px;
|
|
322
247
|
--row-height-spacious: 48px;
|
|
323
|
-
/* Density axis — per-element padding */
|
|
324
248
|
--card-padding-sm: 12px;
|
|
325
249
|
--card-padding-md: 16px;
|
|
326
250
|
--card-padding-lg: 24px;
|
|
327
251
|
--dialog-padding: 24px;
|
|
328
252
|
--section-gap: 32px;
|
|
329
|
-
/* Type axis — family triplet */
|
|
330
253
|
--font-family-display: var(--font-family);
|
|
331
254
|
--font-family-body: var(--font-family);
|
|
332
255
|
--font-family-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
333
|
-
/* Type axis — size scale */
|
|
334
256
|
--text-xs: 12px;
|
|
335
257
|
--leading-xs: 16px;
|
|
336
258
|
--text-sm: 14px;
|
|
@@ -351,7 +273,6 @@
|
|
|
351
273
|
--leading-display-1: 52px;
|
|
352
274
|
--text-display-2: 60px;
|
|
353
275
|
--leading-display-2: 64px;
|
|
354
|
-
/* Type axis — intent mapping */
|
|
355
276
|
--intent-heading-major-size: var(--text-2xl);
|
|
356
277
|
--intent-heading-major-weight: var(--font-weight-bold);
|
|
357
278
|
--intent-heading-major-leading: var(--leading-2xl);
|
|
@@ -373,34 +294,26 @@
|
|
|
373
294
|
--intent-numeric-size: var(--text-sm);
|
|
374
295
|
--intent-numeric-weight: var(--font-weight-medium);
|
|
375
296
|
--intent-numeric-leading: var(--leading-sm);
|
|
376
|
-
/* Motion axis — duration palette */
|
|
377
297
|
--duration-instant: 0ms;
|
|
378
298
|
--duration-fast: var(--transition-fast);
|
|
379
299
|
--duration-normal: var(--transition-normal);
|
|
380
300
|
--duration-slow: var(--transition-slow);
|
|
381
301
|
--duration-dramatic: 600ms;
|
|
382
|
-
/* Motion axis — easing palette */
|
|
383
302
|
--easing-linear: linear;
|
|
384
|
-
--easing-standard:
|
|
385
|
-
--easing-emphasized:
|
|
303
|
+
--easing-standard: linear;
|
|
304
|
+
--easing-emphasized: linear;
|
|
386
305
|
--easing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
387
|
-
/* Iconography axis */
|
|
388
306
|
--icon-family: lucide;
|
|
307
|
+
--icon-stroke-width: 2.5;
|
|
389
308
|
--icon-default-size: 16px;
|
|
390
|
-
/* Elevation axis — per-layer mapping */
|
|
391
309
|
--elevation-card: var(--shadow-sm);
|
|
392
310
|
--elevation-popover: var(--shadow-main);
|
|
393
311
|
--elevation-dialog: var(--shadow-lg);
|
|
394
312
|
--elevation-toast: var(--shadow-main);
|
|
395
|
-
/* Geometry axis — radius rhythm with intent */
|
|
396
313
|
--radius-container: var(--radius-md);
|
|
397
314
|
--radius-interactive: var(--radius-md);
|
|
398
315
|
--radius-pill: var(--radius-full);
|
|
399
|
-
/* Geometry axis — border-width rhythm */
|
|
400
316
|
--border-hairline: 1px;
|
|
401
317
|
--border-standard: var(--border-width);
|
|
402
318
|
--border-heavy: var(--border-width-thick);
|
|
403
|
-
/* wireframe override: mechanical motion has no curve */
|
|
404
|
-
--easing-standard: linear;
|
|
405
|
-
--easing-emphasized: linear;
|
|
406
319
|
}
|