@lukeashford/aurelius 1.0.1 → 2.0.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/LICENSE +21 -0
- package/README.md +101 -48
- package/dist/index.d.mts +10 -7
- package/dist/index.d.ts +10 -7
- package/dist/index.js +200 -308
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +203 -54
- package/dist/index.mjs.map +1 -1
- package/dist/styles/base.css +7 -536
- package/dist/styles/fonts.css +31 -2
- package/dist/styles/theme.css +368 -0
- package/llms.md +145 -0
- package/package.json +32 -16
- package/dist/chunk-H4EGEZQH.mjs +0 -136
- package/dist/chunk-H4EGEZQH.mjs.map +0 -1
- package/dist/chunk-MDNHT46W.mjs +0 -150
- package/dist/chunk-MDNHT46W.mjs.map +0 -1
- package/dist/llms.md +0 -325
- package/dist/tailwind.preset.d.mts +0 -5
- package/dist/tailwind.preset.d.ts +0 -5
- package/dist/tailwind.preset.js +0 -288
- package/dist/tailwind.preset.js.map +0 -1
- package/dist/tailwind.preset.mjs +0 -8
- package/dist/tailwind.preset.mjs.map +0 -1
- package/dist/tokens/index.d.mts +0 -156
- package/dist/tokens/index.d.ts +0 -156
- package/dist/tokens/index.js +0 -182
- package/dist/tokens/index.js.map +0 -1
- package/dist/tokens/index.mjs +0 -19
- package/dist/tokens/index.mjs.map +0 -1
package/dist/llms.md
DELETED
|
@@ -1,325 +0,0 @@
|
|
|
1
|
-
# Aurelius Design System Philosophy
|
|
2
|
-
|
|
3
|
-
## Core Principles
|
|
4
|
-
Aurelius is a design system for creative technologists, blending technical sophistication with an artistic, cinematic aesthetic. The visual language relies on deep blacks, rich golds, and refined typography to convey stability, trust, and quiet luxury.
|
|
5
|
-
|
|
6
|
-
## Implementation Strategy
|
|
7
|
-
**Hierarchy:** React Components > Component Classes > Utility Classes > Design Tokens.
|
|
8
|
-
|
|
9
|
-
1. **React Components:** Use exported components (e.g., `<Button />`) whenever possible.
|
|
10
|
-
2. **Component Classes:** Fallback to semantic CSS classes (e.g., `.btn`) if no React component fits.
|
|
11
|
-
3. **Utility Classes:** Build custom elements using Tailwind utilities with semantic tokens (e.g., `bg-obsidian`).
|
|
12
|
-
4. **Design Tokens:** Use raw tokens only as a last resort.
|
|
13
|
-
|
|
14
|
-
## Visual Guidelines
|
|
15
|
-
* **Theme:** Strictly dark mode. Avoid white backgrounds for containers; use `obsidian` (#0a0a0a) or `charcoal` (#141414).
|
|
16
|
-
* **Typography:** Use the system font stack via our utility classes. Do not introduce external fonts unless specified.
|
|
17
|
-
* **Borders:** Prefer subtle 1px borders (`border-ash`) over heavy drop shadows.
|
|
18
|
-
* **Primary Color:** Gold (#c9a227) is reserved for primary actions and key highlights.
|
|
19
|
-
|
|
20
|
-
**Instruction for AI Agents:**
|
|
21
|
-
Before generating code, verify if an existing component in this package meets the requirement. Hallucinating new styles for standard elements is strictly prohibited. Check the Manifest below for available tools.
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
## React Components API
|
|
25
|
-
|
|
26
|
-
### <Alert />
|
|
27
|
-
**Props:**
|
|
28
|
-
- `variant?: AlertVariant`
|
|
29
|
-
- `title?: string`
|
|
30
|
-
|
|
31
|
-
### <Avatar />
|
|
32
|
-
**Props:**
|
|
33
|
-
- `src?: string`
|
|
34
|
-
- `alt?: string`
|
|
35
|
-
- `name?: string`
|
|
36
|
-
- `size?: AvatarSize`
|
|
37
|
-
- `status?: 'online' | 'offline' | 'busy'`
|
|
38
|
-
|
|
39
|
-
### <Badge />
|
|
40
|
-
**Props:**
|
|
41
|
-
- `variant?: BadgeVariant`
|
|
42
|
-
|
|
43
|
-
### <Button />
|
|
44
|
-
**Props:**
|
|
45
|
-
- `variant?: ButtonVariant`
|
|
46
|
-
- `size?: ButtonSize`
|
|
47
|
-
- `loading?: boolean`
|
|
48
|
-
|
|
49
|
-
### <Card />
|
|
50
|
-
**Props:**
|
|
51
|
-
- `variant?: CardVariant`
|
|
52
|
-
- `interactive?: boolean`
|
|
53
|
-
|
|
54
|
-
### <Checkbox />
|
|
55
|
-
**Props:**
|
|
56
|
-
- `label?: string`
|
|
57
|
-
|
|
58
|
-
### <HelperText />
|
|
59
|
-
**Props:**
|
|
60
|
-
- `error?: boolean`
|
|
61
|
-
|
|
62
|
-
### <Input />
|
|
63
|
-
**Props:**
|
|
64
|
-
- `error?: boolean`
|
|
65
|
-
- `leadingIcon?: React.ReactNode`
|
|
66
|
-
- `trailingIcon?: React.ReactNode`
|
|
67
|
-
|
|
68
|
-
### <Label />
|
|
69
|
-
**Props:**
|
|
70
|
-
- `required?: boolean`
|
|
71
|
-
|
|
72
|
-
### <Modal />
|
|
73
|
-
**Props:**
|
|
74
|
-
- `isOpen: boolean`
|
|
75
|
-
- `onClose: () => void`
|
|
76
|
-
- `title?: string`
|
|
77
|
-
- `children: React.ReactNode`
|
|
78
|
-
- `className?: string`
|
|
79
|
-
|
|
80
|
-
### <Radio />
|
|
81
|
-
**Props:**
|
|
82
|
-
- `label?: string`
|
|
83
|
-
|
|
84
|
-
### <Select />
|
|
85
|
-
**Props:**
|
|
86
|
-
- `error?: boolean`
|
|
87
|
-
- `options?: SelectOption[]`
|
|
88
|
-
|
|
89
|
-
### <Skeleton />
|
|
90
|
-
|
|
91
|
-
### <Spinner />
|
|
92
|
-
**Props:**
|
|
93
|
-
- `size?: 'sm' | 'md' | 'lg'`
|
|
94
|
-
|
|
95
|
-
### <Switch />
|
|
96
|
-
**Props:**
|
|
97
|
-
- `checked?: boolean`
|
|
98
|
-
- `defaultChecked?: boolean`
|
|
99
|
-
- `onCheckedChange?: (checked: boolean) => void`
|
|
100
|
-
- `label?: string`
|
|
101
|
-
|
|
102
|
-
### <Textarea />
|
|
103
|
-
**Props:**
|
|
104
|
-
- `error?: boolean`
|
|
105
|
-
|
|
106
|
-
### <Tooltip />
|
|
107
|
-
**Props:**
|
|
108
|
-
- `content: React.ReactNode`
|
|
109
|
-
- `children: React.ReactElement`
|
|
110
|
-
- `open?: boolean`
|
|
111
|
-
- `side?: 'top' | 'right' | 'bottom' | 'left'`
|
|
112
|
-
|
|
113
|
-
## CSS Classes & Tailwind Utilities
|
|
114
|
-
|
|
115
|
-
### Component Classes
|
|
116
|
-
|
|
117
|
-
| Class | Description |
|
|
118
|
-
|---|---|
|
|
119
|
-
| `.alert` | |
|
|
120
|
-
| `.alert-error` | |
|
|
121
|
-
| `.alert-info` | |
|
|
122
|
-
| `.alert-success` | |
|
|
123
|
-
| `.alert-warning` | |
|
|
124
|
-
| `.avatar` | |
|
|
125
|
-
| `.avatar-2xl` | |
|
|
126
|
-
| `.avatar-lg` | |
|
|
127
|
-
| `.avatar-md` | |
|
|
128
|
-
| `.avatar-sm` | |
|
|
129
|
-
| `.avatar-xl` | |
|
|
130
|
-
| `.avatar-xs` | |
|
|
131
|
-
| `.badge` | |
|
|
132
|
-
| `.badge-default` | |
|
|
133
|
-
| `.badge-error` | |
|
|
134
|
-
| `.badge-gold` | |
|
|
135
|
-
| `.badge-info` | |
|
|
136
|
-
| `.badge-success` | |
|
|
137
|
-
| `.badge-warning` | |
|
|
138
|
-
| `.btn` | |
|
|
139
|
-
| `.btn-danger` | |
|
|
140
|
-
| `.btn-elevated` | |
|
|
141
|
-
| `.btn-featured` | |
|
|
142
|
-
| `.btn-ghost` | |
|
|
143
|
-
| `.btn-important` | |
|
|
144
|
-
| `.btn-lg` | |
|
|
145
|
-
| `.btn-md` | |
|
|
146
|
-
| `.btn-outlined` | |
|
|
147
|
-
| `.btn-primary` | |
|
|
148
|
-
| `.btn-sm` | |
|
|
149
|
-
| `.btn-xl` | |
|
|
150
|
-
| `.card` | |
|
|
151
|
-
| `.card-elevated` | |
|
|
152
|
-
| `.card-featured` | |
|
|
153
|
-
| `.card-interactive` | |
|
|
154
|
-
| `.card-outlined` | |
|
|
155
|
-
| `.checkbox` | |
|
|
156
|
-
| `.divider` | |
|
|
157
|
-
| `.divider-vertical` | |
|
|
158
|
-
| `.input` | |
|
|
159
|
-
| `.input-error` | |
|
|
160
|
-
| `.label` | |
|
|
161
|
-
| `.label-required` | |
|
|
162
|
-
| `.modal-backdrop` | |
|
|
163
|
-
| `.modal-content` | |
|
|
164
|
-
| `.radio` | |
|
|
165
|
-
| `.select` | |
|
|
166
|
-
| `.switch` | |
|
|
167
|
-
| `.switch-thumb` | |
|
|
168
|
-
| `.textarea` | |
|
|
169
|
-
| `.textarea-error` | |
|
|
170
|
-
| `.tooltip` | |
|
|
171
|
-
|
|
172
|
-
### Utility Classes
|
|
173
|
-
|
|
174
|
-
| Class | Description |
|
|
175
|
-
|---|---|
|
|
176
|
-
| `.backdrop-glass` | |
|
|
177
|
-
| `.center-absolute` | |
|
|
178
|
-
| `.focus-ring` | |
|
|
179
|
-
| `.glow` | |
|
|
180
|
-
| `.glow-lg` | |
|
|
181
|
-
| `.glow-sm` | |
|
|
182
|
-
| `.line-clamp-2` | |
|
|
183
|
-
| `.line-clamp-3` | |
|
|
184
|
-
| `.scroll-smooth` | |
|
|
185
|
-
| `.scrollbar-hide` | |
|
|
186
|
-
| `.text-gradient-gold` | |
|
|
187
|
-
| `.truncate` | |
|
|
188
|
-
|
|
189
|
-
## Design Tokens
|
|
190
|
-
|
|
191
|
-
### Colors
|
|
192
|
-
|
|
193
|
-
| Token | Value |
|
|
194
|
-
|---|---|
|
|
195
|
-
| `colors.void` | #000000 |
|
|
196
|
-
| `colors.obsidian` | #0a0a0a |
|
|
197
|
-
| `colors.charcoal` | #141414 |
|
|
198
|
-
| `colors.graphite` | #1f1f1f |
|
|
199
|
-
| `colors.slate` | #2a2a2a |
|
|
200
|
-
| `colors.ash` | #3d3d3d |
|
|
201
|
-
| `colors.gold` | #c9a227 |
|
|
202
|
-
| `colors.goldLight` | #d4b84a |
|
|
203
|
-
| `colors.goldBright` | #e5c84d |
|
|
204
|
-
| `colors.goldMuted` | #8b7355 |
|
|
205
|
-
| `colors.goldPale` | #d4c4a8 |
|
|
206
|
-
| `colors.goldGlow` | rgba(201, 162, 39, 0.15) |
|
|
207
|
-
| `colors.white` | #ffffff |
|
|
208
|
-
| `colors.silver` | #a3a3a3 |
|
|
209
|
-
| `colors.zinc` | #71717a |
|
|
210
|
-
| `colors.dim` | #52525b |
|
|
211
|
-
| `colors.success` | #22c55e |
|
|
212
|
-
| `colors.successMuted` | #166534 |
|
|
213
|
-
| `colors.error` | #dc2626 |
|
|
214
|
-
| `colors.errorMuted` | #991b1b |
|
|
215
|
-
| `colors.warning` | #d97706 |
|
|
216
|
-
| `colors.warningMuted` | #92400e |
|
|
217
|
-
| `colors.info` | #0ea5e9 |
|
|
218
|
-
| `colors.infoMuted` | #0369a1 |
|
|
219
|
-
|
|
220
|
-
### Duration
|
|
221
|
-
|
|
222
|
-
| Token | Value |
|
|
223
|
-
|---|---|
|
|
224
|
-
| `duration.instant` | 75ms |
|
|
225
|
-
| `duration.fast` | 150ms |
|
|
226
|
-
| `duration.normal` | 200ms |
|
|
227
|
-
| `duration.slow` | 300ms |
|
|
228
|
-
| `duration.slower` | 500ms |
|
|
229
|
-
|
|
230
|
-
### Easing
|
|
231
|
-
|
|
232
|
-
| Token | Value |
|
|
233
|
-
|---|---|
|
|
234
|
-
| `easing.smooth` | cubic-bezier(0.16, 1, 0.3, 1) |
|
|
235
|
-
| `easing.snap` | cubic-bezier(0.5, 0, 0.1, 1) |
|
|
236
|
-
|
|
237
|
-
### Radii
|
|
238
|
-
|
|
239
|
-
| Token | Value |
|
|
240
|
-
|---|---|
|
|
241
|
-
| `radii.sm` | 0.125rem |
|
|
242
|
-
| `radii.md` | 0.25rem |
|
|
243
|
-
| `radii.lg` | 0.375rem |
|
|
244
|
-
| `radii.xl` | 0.5rem |
|
|
245
|
-
| `radii.2xl` | 0.75rem |
|
|
246
|
-
| `radii.3xl` | 1rem |
|
|
247
|
-
| `radii.full` | 9999px |
|
|
248
|
-
|
|
249
|
-
### Shadows
|
|
250
|
-
|
|
251
|
-
| Token | Value |
|
|
252
|
-
|---|---|
|
|
253
|
-
| `shadows.sm` | 0 1px 2px 0 rgba(0, 0, 0, 0.4) |
|
|
254
|
-
| `shadows.md` | 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3) |
|
|
255
|
-
| `shadows.lg` | 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3) |
|
|
256
|
-
| `shadows.xl` | 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3) |
|
|
257
|
-
| `shadows.2xl` | 0 25px 50px -12px rgba(0, 0, 0, 0.5) |
|
|
258
|
-
| `shadows.glow` | 0 0 20px rgba(201, 162, 39, 0.3) |
|
|
259
|
-
| `shadows.glow-sm` | 0 0 10px rgba(201, 162, 39, 0.2) |
|
|
260
|
-
| `shadows.glow-lg` | 0 0 40px rgba(201, 162, 39, 0.4) |
|
|
261
|
-
| `shadows.inner` | inset 0 2px 4px 0 rgba(0, 0, 0, 0.3) |
|
|
262
|
-
|
|
263
|
-
### Spacing
|
|
264
|
-
|
|
265
|
-
| Token | Value |
|
|
266
|
-
|---|---|
|
|
267
|
-
| `spacing.0` | 0 |
|
|
268
|
-
| `spacing.1` | 0.25rem |
|
|
269
|
-
| `spacing.2` | 0.5rem |
|
|
270
|
-
| `spacing.3` | 0.75rem |
|
|
271
|
-
| `spacing.4` | 1rem |
|
|
272
|
-
| `spacing.5` | 1.25rem |
|
|
273
|
-
| `spacing.6` | 1.5rem |
|
|
274
|
-
| `spacing.7` | 1.75rem |
|
|
275
|
-
| `spacing.8` | 2rem |
|
|
276
|
-
| `spacing.9` | 2.25rem |
|
|
277
|
-
| `spacing.10` | 2.5rem |
|
|
278
|
-
| `spacing.11` | 2.75rem |
|
|
279
|
-
| `spacing.12` | 3rem |
|
|
280
|
-
| `spacing.14` | 3.5rem |
|
|
281
|
-
| `spacing.16` | 4rem |
|
|
282
|
-
| `spacing.20` | 5rem |
|
|
283
|
-
| `spacing.24` | 6rem |
|
|
284
|
-
| `spacing.28` | 7rem |
|
|
285
|
-
| `spacing.32` | 8rem |
|
|
286
|
-
| `spacing.px` | 1px |
|
|
287
|
-
| `spacing.0.5` | 0.125rem |
|
|
288
|
-
| `spacing.1.5` | 0.375rem |
|
|
289
|
-
| `spacing.2.5` | 0.625rem |
|
|
290
|
-
| `spacing.3.5` | 0.875rem |
|
|
291
|
-
|
|
292
|
-
### Typography
|
|
293
|
-
|
|
294
|
-
| Token | Value |
|
|
295
|
-
|---|---|
|
|
296
|
-
| `typography.fontHeading` | [Marcellus, serif] |
|
|
297
|
-
| `typography.fontBody` | [Raleway, system-ui, sans-serif] |
|
|
298
|
-
| `typography.fontMono` | [JetBrains Mono, Fira Code, SF Mono, monospace] |
|
|
299
|
-
| `typography.fontSize.xs` | [0.75rem, {"lineHeight":"1rem"}] |
|
|
300
|
-
| `typography.fontSize.sm` | [0.875rem, {"lineHeight":"1.25rem"}] |
|
|
301
|
-
| `typography.fontSize.base` | [1rem, {"lineHeight":"1.5rem"}] |
|
|
302
|
-
| `typography.fontSize.lg` | [1.125rem, {"lineHeight":"1.75rem"}] |
|
|
303
|
-
| `typography.fontSize.xl` | [1.25rem, {"lineHeight":"1.75rem"}] |
|
|
304
|
-
| `typography.fontSize.2xl` | [1.5rem, {"lineHeight":"2rem"}] |
|
|
305
|
-
| `typography.fontSize.3xl` | [1.875rem, {"lineHeight":"2.25rem"}] |
|
|
306
|
-
| `typography.fontSize.4xl` | [2.25rem, {"lineHeight":"2.5rem"}] |
|
|
307
|
-
| `typography.fontSize.5xl` | [3rem, {"lineHeight":"1"}] |
|
|
308
|
-
| `typography.fontSize.6xl` | [3.75rem, {"lineHeight":"1"}] |
|
|
309
|
-
| `typography.fontWeight.normal` | 400 |
|
|
310
|
-
| `typography.fontWeight.medium` | 500 |
|
|
311
|
-
| `typography.fontWeight.semibold` | 600 |
|
|
312
|
-
| `typography.fontWeight.bold` | 700 |
|
|
313
|
-
| `typography.lineHeight.none` | 1 |
|
|
314
|
-
| `typography.lineHeight.tight` | 1.25 |
|
|
315
|
-
| `typography.lineHeight.snug` | 1.375 |
|
|
316
|
-
| `typography.lineHeight.normal` | 1.5 |
|
|
317
|
-
| `typography.lineHeight.relaxed` | 1.625 |
|
|
318
|
-
| `typography.lineHeight.loose` | 2 |
|
|
319
|
-
| `typography.letterSpacing.tighter` | -0.05em |
|
|
320
|
-
| `typography.letterSpacing.tight` | -0.025em |
|
|
321
|
-
| `typography.letterSpacing.normal` | 0 |
|
|
322
|
-
| `typography.letterSpacing.wide` | 0.025em |
|
|
323
|
-
| `typography.letterSpacing.wider` | 0.05em |
|
|
324
|
-
| `typography.letterSpacing.widest` | 0.1em |
|
|
325
|
-
|
package/dist/tailwind.preset.js
DELETED
|
@@ -1,288 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
|
|
20
|
-
// src/tailwind.preset.ts
|
|
21
|
-
var tailwind_preset_exports = {};
|
|
22
|
-
__export(tailwind_preset_exports, {
|
|
23
|
-
default: () => tailwind_preset_default
|
|
24
|
-
});
|
|
25
|
-
module.exports = __toCommonJS(tailwind_preset_exports);
|
|
26
|
-
|
|
27
|
-
// src/tokens/colors.ts
|
|
28
|
-
var colors = {
|
|
29
|
-
// Black spectrum
|
|
30
|
-
void: "#000000",
|
|
31
|
-
obsidian: "#0a0a0a",
|
|
32
|
-
charcoal: "#141414",
|
|
33
|
-
graphite: "#1f1f1f",
|
|
34
|
-
slate: "#2a2a2a",
|
|
35
|
-
ash: "#3d3d3d",
|
|
36
|
-
// Gold spectrum
|
|
37
|
-
gold: "#c9a227",
|
|
38
|
-
goldLight: "#d4b84a",
|
|
39
|
-
goldBright: "#e5c84d",
|
|
40
|
-
goldMuted: "#8b7355",
|
|
41
|
-
goldPale: "#d4c4a8",
|
|
42
|
-
goldGlow: "rgba(201, 162, 39, 0.15)",
|
|
43
|
-
// Neutrals
|
|
44
|
-
white: "#ffffff",
|
|
45
|
-
silver: "#a3a3a3",
|
|
46
|
-
zinc: "#71717a",
|
|
47
|
-
dim: "#52525b",
|
|
48
|
-
// Semantic
|
|
49
|
-
success: "#22c55e",
|
|
50
|
-
successMuted: "#166534",
|
|
51
|
-
error: "#dc2626",
|
|
52
|
-
errorMuted: "#991b1b",
|
|
53
|
-
warning: "#d97706",
|
|
54
|
-
warningMuted: "#92400e",
|
|
55
|
-
info: "#0ea5e9",
|
|
56
|
-
infoMuted: "#0369a1"
|
|
57
|
-
};
|
|
58
|
-
|
|
59
|
-
// src/tokens/typography.ts
|
|
60
|
-
var typography = {
|
|
61
|
-
// Headings use Marcellus, a classic serif
|
|
62
|
-
fontHeading: ["Marcellus", "serif"],
|
|
63
|
-
// Body and UI use Raleway
|
|
64
|
-
fontBody: ["Raleway", "system-ui", "sans-serif"],
|
|
65
|
-
fontMono: ["JetBrains Mono", "Fira Code", "SF Mono", "monospace"],
|
|
66
|
-
fontSize: {
|
|
67
|
-
xs: ["0.75rem", { lineHeight: "1rem" }],
|
|
68
|
-
sm: ["0.875rem", { lineHeight: "1.25rem" }],
|
|
69
|
-
base: ["1rem", { lineHeight: "1.5rem" }],
|
|
70
|
-
lg: ["1.125rem", { lineHeight: "1.75rem" }],
|
|
71
|
-
xl: ["1.25rem", { lineHeight: "1.75rem" }],
|
|
72
|
-
"2xl": ["1.5rem", { lineHeight: "2rem" }],
|
|
73
|
-
"3xl": ["1.875rem", { lineHeight: "2.25rem" }],
|
|
74
|
-
"4xl": ["2.25rem", { lineHeight: "2.5rem" }],
|
|
75
|
-
"5xl": ["3rem", { lineHeight: "1" }],
|
|
76
|
-
"6xl": ["3.75rem", { lineHeight: "1" }]
|
|
77
|
-
},
|
|
78
|
-
fontWeight: {
|
|
79
|
-
normal: "400",
|
|
80
|
-
medium: "500",
|
|
81
|
-
semibold: "600",
|
|
82
|
-
bold: "700"
|
|
83
|
-
},
|
|
84
|
-
lineHeight: {
|
|
85
|
-
none: "1",
|
|
86
|
-
tight: "1.25",
|
|
87
|
-
snug: "1.375",
|
|
88
|
-
normal: "1.5",
|
|
89
|
-
relaxed: "1.625",
|
|
90
|
-
loose: "2"
|
|
91
|
-
},
|
|
92
|
-
letterSpacing: {
|
|
93
|
-
tighter: "-0.05em",
|
|
94
|
-
tight: "-0.025em",
|
|
95
|
-
normal: "0",
|
|
96
|
-
wide: "0.025em",
|
|
97
|
-
wider: "0.05em",
|
|
98
|
-
widest: "0.1em"
|
|
99
|
-
}
|
|
100
|
-
};
|
|
101
|
-
|
|
102
|
-
// src/tokens/spacing.ts
|
|
103
|
-
var spacing = {
|
|
104
|
-
px: "1px",
|
|
105
|
-
0: "0",
|
|
106
|
-
0.5: "0.125rem",
|
|
107
|
-
1: "0.25rem",
|
|
108
|
-
1.5: "0.375rem",
|
|
109
|
-
2: "0.5rem",
|
|
110
|
-
2.5: "0.625rem",
|
|
111
|
-
3: "0.75rem",
|
|
112
|
-
3.5: "0.875rem",
|
|
113
|
-
4: "1rem",
|
|
114
|
-
5: "1.25rem",
|
|
115
|
-
6: "1.5rem",
|
|
116
|
-
7: "1.75rem",
|
|
117
|
-
8: "2rem",
|
|
118
|
-
9: "2.25rem",
|
|
119
|
-
10: "2.5rem",
|
|
120
|
-
11: "2.75rem",
|
|
121
|
-
12: "3rem",
|
|
122
|
-
14: "3.5rem",
|
|
123
|
-
16: "4rem",
|
|
124
|
-
20: "5rem",
|
|
125
|
-
24: "6rem",
|
|
126
|
-
28: "7rem",
|
|
127
|
-
32: "8rem"
|
|
128
|
-
};
|
|
129
|
-
|
|
130
|
-
// src/tokens/shadows.ts
|
|
131
|
-
var shadows = {
|
|
132
|
-
sm: "0 1px 2px 0 rgba(0, 0, 0, 0.4)",
|
|
133
|
-
md: "0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3)",
|
|
134
|
-
lg: "0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3)",
|
|
135
|
-
xl: "0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3)",
|
|
136
|
-
"2xl": "0 25px 50px -12px rgba(0, 0, 0, 0.5)",
|
|
137
|
-
glow: "0 0 20px rgba(201, 162, 39, 0.3)",
|
|
138
|
-
"glow-sm": "0 0 10px rgba(201, 162, 39, 0.2)",
|
|
139
|
-
"glow-lg": "0 0 40px rgba(201, 162, 39, 0.4)",
|
|
140
|
-
inner: "inset 0 2px 4px 0 rgba(0, 0, 0, 0.3)"
|
|
141
|
-
};
|
|
142
|
-
|
|
143
|
-
// src/tokens/transitions.ts
|
|
144
|
-
var duration = {
|
|
145
|
-
instant: "75ms",
|
|
146
|
-
fast: "150ms",
|
|
147
|
-
normal: "200ms",
|
|
148
|
-
slow: "300ms",
|
|
149
|
-
slower: "500ms"
|
|
150
|
-
};
|
|
151
|
-
var easing = {
|
|
152
|
-
smooth: "cubic-bezier(0.16, 1, 0.3, 1)",
|
|
153
|
-
snap: "cubic-bezier(0.5, 0, 0.1, 1)"
|
|
154
|
-
};
|
|
155
|
-
|
|
156
|
-
// src/tokens/radii.ts
|
|
157
|
-
var radii = {
|
|
158
|
-
sm: "0.125rem",
|
|
159
|
-
md: "0.25rem",
|
|
160
|
-
lg: "0.375rem",
|
|
161
|
-
xl: "0.5rem",
|
|
162
|
-
"2xl": "0.75rem",
|
|
163
|
-
"3xl": "1rem",
|
|
164
|
-
full: "9999px"
|
|
165
|
-
};
|
|
166
|
-
|
|
167
|
-
// src/tailwind.preset.ts
|
|
168
|
-
var preset = {
|
|
169
|
-
// Safelist color utilities used dynamically in the demo so Tailwind doesn't purge them
|
|
170
|
-
safelist: [
|
|
171
|
-
// Black spectrum
|
|
172
|
-
"bg-void",
|
|
173
|
-
"bg-obsidian",
|
|
174
|
-
"bg-charcoal",
|
|
175
|
-
"bg-graphite",
|
|
176
|
-
"bg-slate",
|
|
177
|
-
"bg-ash",
|
|
178
|
-
// Gold spectrum
|
|
179
|
-
"bg-gold",
|
|
180
|
-
"bg-gold-light",
|
|
181
|
-
"bg-gold-bright",
|
|
182
|
-
"bg-gold-muted",
|
|
183
|
-
"bg-gold-pale",
|
|
184
|
-
// Neutrals
|
|
185
|
-
"bg-white",
|
|
186
|
-
"bg-silver",
|
|
187
|
-
"bg-zinc",
|
|
188
|
-
"bg-dim",
|
|
189
|
-
// Semantic
|
|
190
|
-
"bg-success",
|
|
191
|
-
"bg-success-muted",
|
|
192
|
-
"bg-error",
|
|
193
|
-
"bg-error-muted",
|
|
194
|
-
"bg-warning",
|
|
195
|
-
"bg-warning-muted",
|
|
196
|
-
"bg-info",
|
|
197
|
-
"bg-info-muted"
|
|
198
|
-
],
|
|
199
|
-
theme: {
|
|
200
|
-
extend: {
|
|
201
|
-
colors: {
|
|
202
|
-
// Black spectrum
|
|
203
|
-
void: colors.void,
|
|
204
|
-
obsidian: colors.obsidian,
|
|
205
|
-
charcoal: colors.charcoal,
|
|
206
|
-
graphite: colors.graphite,
|
|
207
|
-
slate: colors.slate,
|
|
208
|
-
ash: colors.ash,
|
|
209
|
-
// Gold spectrum
|
|
210
|
-
gold: {
|
|
211
|
-
DEFAULT: colors.gold,
|
|
212
|
-
light: colors.goldLight,
|
|
213
|
-
bright: colors.goldBright,
|
|
214
|
-
muted: colors.goldMuted,
|
|
215
|
-
pale: colors.goldPale,
|
|
216
|
-
glow: colors.goldGlow
|
|
217
|
-
},
|
|
218
|
-
// Neutrals
|
|
219
|
-
white: colors.white,
|
|
220
|
-
silver: colors.silver,
|
|
221
|
-
zinc: colors.zinc,
|
|
222
|
-
dim: colors.dim,
|
|
223
|
-
// Semantic
|
|
224
|
-
success: {
|
|
225
|
-
DEFAULT: colors.success,
|
|
226
|
-
muted: colors.successMuted
|
|
227
|
-
},
|
|
228
|
-
error: {
|
|
229
|
-
DEFAULT: colors.error,
|
|
230
|
-
muted: colors.errorMuted
|
|
231
|
-
},
|
|
232
|
-
warning: {
|
|
233
|
-
DEFAULT: colors.warning,
|
|
234
|
-
muted: colors.warningMuted
|
|
235
|
-
},
|
|
236
|
-
info: {
|
|
237
|
-
DEFAULT: colors.info,
|
|
238
|
-
muted: colors.infoMuted
|
|
239
|
-
}
|
|
240
|
-
},
|
|
241
|
-
fontFamily: {
|
|
242
|
-
heading: typography.fontHeading,
|
|
243
|
-
body: typography.fontBody,
|
|
244
|
-
mono: typography.fontMono
|
|
245
|
-
},
|
|
246
|
-
fontSize: typography.fontSize,
|
|
247
|
-
fontWeight: typography.fontWeight,
|
|
248
|
-
lineHeight: typography.lineHeight,
|
|
249
|
-
letterSpacing: typography.letterSpacing,
|
|
250
|
-
spacing,
|
|
251
|
-
borderRadius: radii,
|
|
252
|
-
boxShadow: shadows,
|
|
253
|
-
transitionDuration: duration,
|
|
254
|
-
transitionTimingFunction: easing,
|
|
255
|
-
animation: {
|
|
256
|
-
"fade-in": "fade-in 200ms ease-out",
|
|
257
|
-
"fade-out": "fade-out 150ms ease-in",
|
|
258
|
-
"slide-in-right": `slide-in-right 300ms ${easing.smooth}`,
|
|
259
|
-
"slide-out-right": "slide-out-right 200ms ease-in",
|
|
260
|
-
"pulse-glow": "pulse-glow 2s ease-in-out infinite"
|
|
261
|
-
},
|
|
262
|
-
keyframes: {
|
|
263
|
-
"fade-in": {
|
|
264
|
-
"0%": { opacity: "0" },
|
|
265
|
-
"100%": { opacity: "1" }
|
|
266
|
-
},
|
|
267
|
-
"fade-out": {
|
|
268
|
-
"0%": { opacity: "1" },
|
|
269
|
-
"100%": { opacity: "0" }
|
|
270
|
-
},
|
|
271
|
-
"slide-in-right": {
|
|
272
|
-
"0%": { transform: "translateX(100%)", opacity: "0" },
|
|
273
|
-
"100%": { transform: "translateX(0)", opacity: "1" }
|
|
274
|
-
},
|
|
275
|
-
"slide-out-right": {
|
|
276
|
-
"0%": { transform: "translateX(0)", opacity: "1" },
|
|
277
|
-
"100%": { transform: "translateX(100%)", opacity: "0" }
|
|
278
|
-
},
|
|
279
|
-
"pulse-glow": {
|
|
280
|
-
"0%, 100%": { boxShadow: "0 0 20px rgba(201, 162, 39, 0.3)" },
|
|
281
|
-
"50%": { boxShadow: "0 0 30px rgba(201, 162, 39, 0.5)" }
|
|
282
|
-
}
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
};
|
|
287
|
-
var tailwind_preset_default = preset;
|
|
288
|
-
//# sourceMappingURL=tailwind.preset.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/tailwind.preset.ts","../src/tokens/colors.ts","../src/tokens/typography.ts","../src/tokens/spacing.ts","../src/tokens/shadows.ts","../src/tokens/transitions.ts","../src/tokens/radii.ts"],"sourcesContent":["import type {Config} from 'tailwindcss'\nimport {colors, spacing, typography, shadows, duration, easing, radii} from './tokens'\n\nconst preset: Partial<Config> = {\n // Safelist color utilities used dynamically in the demo so Tailwind doesn't purge them\n safelist: [\n // Black spectrum\n 'bg-void',\n 'bg-obsidian',\n 'bg-charcoal',\n 'bg-graphite',\n 'bg-slate',\n 'bg-ash',\n\n // Gold spectrum\n 'bg-gold',\n 'bg-gold-light',\n 'bg-gold-bright',\n 'bg-gold-muted',\n 'bg-gold-pale',\n\n // Neutrals\n 'bg-white',\n 'bg-silver',\n 'bg-zinc',\n 'bg-dim',\n\n // Semantic\n 'bg-success',\n 'bg-success-muted',\n 'bg-error',\n 'bg-error-muted',\n 'bg-warning',\n 'bg-warning-muted',\n 'bg-info',\n 'bg-info-muted',\n ],\n theme: {\n extend: {\n colors: {\n // Black spectrum\n void: colors.void,\n obsidian: colors.obsidian,\n charcoal: colors.charcoal,\n graphite: colors.graphite,\n slate: colors.slate,\n ash: colors.ash,\n\n // Gold spectrum\n gold: {\n DEFAULT: colors.gold,\n light: colors.goldLight,\n bright: colors.goldBright,\n muted: colors.goldMuted,\n pale: colors.goldPale,\n glow: colors.goldGlow,\n },\n\n // Neutrals\n white: colors.white,\n silver: colors.silver,\n zinc: colors.zinc,\n dim: colors.dim,\n\n // Semantic\n success: {\n DEFAULT: colors.success,\n muted: colors.successMuted,\n },\n error: {\n DEFAULT: colors.error,\n muted: colors.errorMuted,\n },\n warning: {\n DEFAULT: colors.warning,\n muted: colors.warningMuted,\n },\n info: {\n DEFAULT: colors.info,\n muted: colors.infoMuted,\n },\n },\n\n fontFamily: {\n heading: typography.fontHeading as unknown as string[],\n body: typography.fontBody as unknown as string[],\n mono: typography.fontMono as unknown as string[],\n },\n\n fontSize: typography.fontSize as any,\n fontWeight: typography.fontWeight as any,\n lineHeight: typography.lineHeight as any,\n letterSpacing: typography.letterSpacing as any,\n\n spacing: spacing as any,\n\n borderRadius: radii as any,\n\n boxShadow: shadows as any,\n\n transitionDuration: duration as any,\n\n transitionTimingFunction: easing as any,\n\n animation: {\n 'fade-in': 'fade-in 200ms ease-out',\n 'fade-out': 'fade-out 150ms ease-in',\n 'slide-in-right': `slide-in-right 300ms ${easing.smooth}`,\n 'slide-out-right': 'slide-out-right 200ms ease-in',\n 'pulse-glow': 'pulse-glow 2s ease-in-out infinite',\n },\n\n keyframes: {\n 'fade-in': {\n '0%': {opacity: '0'},\n '100%': {opacity: '1'},\n },\n 'fade-out': {\n '0%': {opacity: '1'},\n '100%': {opacity: '0'},\n },\n 'slide-in-right': {\n '0%': {transform: 'translateX(100%)', opacity: '0'},\n '100%': {transform: 'translateX(0)', opacity: '1'},\n },\n 'slide-out-right': {\n '0%': {transform: 'translateX(0)', opacity: '1'},\n '100%': {transform: 'translateX(100%)', opacity: '0'},\n },\n 'pulse-glow': {\n '0%, 100%': {boxShadow: '0 0 20px rgba(201, 162, 39, 0.3)'},\n '50%': {boxShadow: '0 0 30px rgba(201, 162, 39, 0.5)'},\n },\n },\n },\n },\n}\n\nexport default preset\n","export const colors = {\n // Black spectrum\n void: '#000000',\n obsidian: '#0a0a0a',\n charcoal: '#141414',\n graphite: '#1f1f1f',\n slate: '#2a2a2a',\n ash: '#3d3d3d',\n\n // Gold spectrum\n gold: '#c9a227',\n goldLight: '#d4b84a',\n goldBright: '#e5c84d',\n goldMuted: '#8b7355',\n goldPale: '#d4c4a8',\n goldGlow: 'rgba(201, 162, 39, 0.15)',\n\n // Neutrals\n white: '#ffffff',\n silver: '#a3a3a3',\n zinc: '#71717a',\n dim: '#52525b',\n\n // Semantic\n success: '#22c55e',\n successMuted: '#166534',\n error: '#dc2626',\n errorMuted: '#991b1b',\n warning: '#d97706',\n warningMuted: '#92400e',\n info: '#0ea5e9',\n infoMuted: '#0369a1',\n} as const\n\nexport type ColorToken = keyof typeof colors\n","export const typography = {\n // Headings use Marcellus, a classic serif\n fontHeading: ['Marcellus', 'serif'],\n // Body and UI use Raleway\n fontBody: ['Raleway', 'system-ui', 'sans-serif'],\n fontMono: ['JetBrains Mono', 'Fira Code', 'SF Mono', 'monospace'],\n\n fontSize: {\n xs: ['0.75rem', {lineHeight: '1rem'}],\n sm: ['0.875rem', {lineHeight: '1.25rem'}],\n base: ['1rem', {lineHeight: '1.5rem'}],\n lg: ['1.125rem', {lineHeight: '1.75rem'}],\n xl: ['1.25rem', {lineHeight: '1.75rem'}],\n '2xl': ['1.5rem', {lineHeight: '2rem'}],\n '3xl': ['1.875rem', {lineHeight: '2.25rem'}],\n '4xl': ['2.25rem', {lineHeight: '2.5rem'}],\n '5xl': ['3rem', {lineHeight: '1'}],\n '6xl': ['3.75rem', {lineHeight: '1'}],\n },\n\n fontWeight: {\n normal: '400',\n medium: '500',\n semibold: '600',\n bold: '700',\n },\n\n lineHeight: {\n none: '1',\n tight: '1.25',\n snug: '1.375',\n normal: '1.5',\n relaxed: '1.625',\n loose: '2',\n },\n\n letterSpacing: {\n tighter: '-0.05em',\n tight: '-0.025em',\n normal: '0',\n wide: '0.025em',\n wider: '0.05em',\n widest: '0.1em',\n },\n} as const\n\nexport type TypographyToken = keyof typeof typography\n","export const spacing = {\n px: '1px',\n 0: '0',\n 0.5: '0.125rem',\n 1: '0.25rem',\n 1.5: '0.375rem',\n 2: '0.5rem',\n 2.5: '0.625rem',\n 3: '0.75rem',\n 3.5: '0.875rem',\n 4: '1rem',\n 5: '1.25rem',\n 6: '1.5rem',\n 7: '1.75rem',\n 8: '2rem',\n 9: '2.25rem',\n 10: '2.5rem',\n 11: '2.75rem',\n 12: '3rem',\n 14: '3.5rem',\n 16: '4rem',\n 20: '5rem',\n 24: '6rem',\n 28: '7rem',\n 32: '8rem',\n} as const\n\nexport type SpacingToken = keyof typeof spacing\n","export const shadows = {\n sm: '0 1px 2px 0 rgba(0, 0, 0, 0.4)',\n md: '0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3)',\n lg: '0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3)',\n xl: '0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3)',\n '2xl': '0 25px 50px -12px rgba(0, 0, 0, 0.5)',\n glow: '0 0 20px rgba(201, 162, 39, 0.3)',\n 'glow-sm': '0 0 10px rgba(201, 162, 39, 0.2)',\n 'glow-lg': '0 0 40px rgba(201, 162, 39, 0.4)',\n inner: 'inset 0 2px 4px 0 rgba(0, 0, 0, 0.3)',\n} as const\n\nexport type ShadowToken = keyof typeof shadows\n","export const duration = {\n instant: '75ms',\n fast: '150ms',\n normal: '200ms',\n slow: '300ms',\n slower: '500ms',\n} as const\n\nexport const easing = {\n smooth: 'cubic-bezier(0.16, 1, 0.3, 1)',\n snap: 'cubic-bezier(0.5, 0, 0.1, 1)',\n} as const\n\nexport type DurationToken = keyof typeof duration\nexport type EasingToken = keyof typeof easing\n","export const radii = {\n sm: '0.125rem',\n md: '0.25rem',\n lg: '0.375rem',\n xl: '0.5rem',\n '2xl': '0.75rem',\n '3xl': '1rem',\n full: '9999px',\n} as const\n\nexport type RadiusToken = keyof typeof radii\n"],"mappings":"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","names":[]}
|
package/dist/tailwind.preset.mjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|