@lukeashford/aurelius 1.1.0 → 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 +22 -45
- package/dist/index.d.mts +10 -7
- package/dist/index.d.ts +10 -7
- package/dist/index.js +3 -390
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -24
- package/dist/index.mjs.map +1 -1
- package/dist/styles/base.css +7 -2
- package/dist/styles/fonts.css +31 -2
- package/dist/styles/theme.css +368 -0
- package/llms.md +37 -72
- package/package.json +29 -17
- package/dist/chunk-MBYGB67D.mjs +0 -243
- package/dist/chunk-MBYGB67D.mjs.map +0 -1
- package/dist/chunk-MDNHT46W.mjs +0 -150
- package/dist/chunk-MDNHT46W.mjs.map +0 -1
- package/dist/tailwind.preset.d.mts +0 -5
- package/dist/tailwind.preset.d.ts +0 -5
- package/dist/tailwind.preset.js +0 -405
- 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
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../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":["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.js
DELETED
|
@@ -1,405 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __create = Object.create;
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __export = (target, all) => {
|
|
9
|
-
for (var name in all)
|
|
10
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
-
};
|
|
12
|
-
var __copyProps = (to, from, except, desc) => {
|
|
13
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
-
for (let key of __getOwnPropNames(from))
|
|
15
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
-
}
|
|
18
|
-
return to;
|
|
19
|
-
};
|
|
20
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
-
mod
|
|
27
|
-
));
|
|
28
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
-
|
|
30
|
-
// src/tailwind.preset.ts
|
|
31
|
-
var tailwind_preset_exports = {};
|
|
32
|
-
__export(tailwind_preset_exports, {
|
|
33
|
-
default: () => tailwind_preset_default
|
|
34
|
-
});
|
|
35
|
-
module.exports = __toCommonJS(tailwind_preset_exports);
|
|
36
|
-
var import_plugin = __toESM(require("tailwindcss/plugin"));
|
|
37
|
-
|
|
38
|
-
// src/tokens/colors.ts
|
|
39
|
-
var colors = {
|
|
40
|
-
// Black spectrum
|
|
41
|
-
void: "#000000",
|
|
42
|
-
obsidian: "#0a0a0a",
|
|
43
|
-
charcoal: "#141414",
|
|
44
|
-
graphite: "#1f1f1f",
|
|
45
|
-
slate: "#2a2a2a",
|
|
46
|
-
ash: "#3d3d3d",
|
|
47
|
-
// Gold spectrum
|
|
48
|
-
gold: "#c9a227",
|
|
49
|
-
goldLight: "#d4b84a",
|
|
50
|
-
goldBright: "#e5c84d",
|
|
51
|
-
goldMuted: "#8b7355",
|
|
52
|
-
goldPale: "#d4c4a8",
|
|
53
|
-
goldGlow: "rgba(201, 162, 39, 0.15)",
|
|
54
|
-
// Neutrals
|
|
55
|
-
white: "#ffffff",
|
|
56
|
-
silver: "#a3a3a3",
|
|
57
|
-
zinc: "#71717a",
|
|
58
|
-
dim: "#52525b",
|
|
59
|
-
// Semantic
|
|
60
|
-
success: "#22c55e",
|
|
61
|
-
successMuted: "#166534",
|
|
62
|
-
error: "#dc2626",
|
|
63
|
-
errorMuted: "#991b1b",
|
|
64
|
-
warning: "#d97706",
|
|
65
|
-
warningMuted: "#92400e",
|
|
66
|
-
info: "#0ea5e9",
|
|
67
|
-
infoMuted: "#0369a1"
|
|
68
|
-
};
|
|
69
|
-
|
|
70
|
-
// src/tokens/typography.ts
|
|
71
|
-
var typography = {
|
|
72
|
-
// Headings use Marcellus, a classic serif
|
|
73
|
-
fontHeading: ["Marcellus", "serif"],
|
|
74
|
-
// Body and UI use Raleway
|
|
75
|
-
fontBody: ["Raleway", "system-ui", "sans-serif"],
|
|
76
|
-
fontMono: ["JetBrains Mono", "Fira Code", "SF Mono", "monospace"],
|
|
77
|
-
fontSize: {
|
|
78
|
-
xs: ["0.75rem", { lineHeight: "1rem" }],
|
|
79
|
-
sm: ["0.875rem", { lineHeight: "1.25rem" }],
|
|
80
|
-
base: ["1rem", { lineHeight: "1.5rem" }],
|
|
81
|
-
lg: ["1.125rem", { lineHeight: "1.75rem" }],
|
|
82
|
-
xl: ["1.25rem", { lineHeight: "1.75rem" }],
|
|
83
|
-
"2xl": ["1.5rem", { lineHeight: "2rem" }],
|
|
84
|
-
"3xl": ["1.875rem", { lineHeight: "2.25rem" }],
|
|
85
|
-
"4xl": ["2.25rem", { lineHeight: "2.5rem" }],
|
|
86
|
-
"5xl": ["3rem", { lineHeight: "1" }],
|
|
87
|
-
"6xl": ["3.75rem", { lineHeight: "1" }]
|
|
88
|
-
},
|
|
89
|
-
fontWeight: {
|
|
90
|
-
normal: "400",
|
|
91
|
-
medium: "500",
|
|
92
|
-
semibold: "600",
|
|
93
|
-
bold: "700"
|
|
94
|
-
},
|
|
95
|
-
lineHeight: {
|
|
96
|
-
none: "1",
|
|
97
|
-
tight: "1.25",
|
|
98
|
-
snug: "1.375",
|
|
99
|
-
normal: "1.5",
|
|
100
|
-
relaxed: "1.625",
|
|
101
|
-
loose: "2"
|
|
102
|
-
},
|
|
103
|
-
letterSpacing: {
|
|
104
|
-
tighter: "-0.05em",
|
|
105
|
-
tight: "-0.025em",
|
|
106
|
-
normal: "0",
|
|
107
|
-
wide: "0.025em",
|
|
108
|
-
wider: "0.05em",
|
|
109
|
-
widest: "0.1em"
|
|
110
|
-
}
|
|
111
|
-
};
|
|
112
|
-
|
|
113
|
-
// src/tokens/spacing.ts
|
|
114
|
-
var spacing = {
|
|
115
|
-
px: "1px",
|
|
116
|
-
0: "0",
|
|
117
|
-
0.5: "0.125rem",
|
|
118
|
-
1: "0.25rem",
|
|
119
|
-
1.5: "0.375rem",
|
|
120
|
-
2: "0.5rem",
|
|
121
|
-
2.5: "0.625rem",
|
|
122
|
-
3: "0.75rem",
|
|
123
|
-
3.5: "0.875rem",
|
|
124
|
-
4: "1rem",
|
|
125
|
-
5: "1.25rem",
|
|
126
|
-
6: "1.5rem",
|
|
127
|
-
7: "1.75rem",
|
|
128
|
-
8: "2rem",
|
|
129
|
-
9: "2.25rem",
|
|
130
|
-
10: "2.5rem",
|
|
131
|
-
11: "2.75rem",
|
|
132
|
-
12: "3rem",
|
|
133
|
-
14: "3.5rem",
|
|
134
|
-
16: "4rem",
|
|
135
|
-
20: "5rem",
|
|
136
|
-
24: "6rem",
|
|
137
|
-
28: "7rem",
|
|
138
|
-
32: "8rem"
|
|
139
|
-
};
|
|
140
|
-
|
|
141
|
-
// src/tokens/shadows.ts
|
|
142
|
-
var shadows = {
|
|
143
|
-
sm: "0 1px 2px 0 rgba(0, 0, 0, 0.4)",
|
|
144
|
-
md: "0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3)",
|
|
145
|
-
lg: "0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3)",
|
|
146
|
-
xl: "0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3)",
|
|
147
|
-
"2xl": "0 25px 50px -12px rgba(0, 0, 0, 0.5)",
|
|
148
|
-
glow: "0 0 20px rgba(201, 162, 39, 0.3)",
|
|
149
|
-
"glow-sm": "0 0 10px rgba(201, 162, 39, 0.2)",
|
|
150
|
-
"glow-lg": "0 0 40px rgba(201, 162, 39, 0.4)",
|
|
151
|
-
inner: "inset 0 2px 4px 0 rgba(0, 0, 0, 0.3)"
|
|
152
|
-
};
|
|
153
|
-
|
|
154
|
-
// src/tokens/transitions.ts
|
|
155
|
-
var duration = {
|
|
156
|
-
instant: "75ms",
|
|
157
|
-
fast: "150ms",
|
|
158
|
-
normal: "200ms",
|
|
159
|
-
slow: "300ms",
|
|
160
|
-
slower: "500ms"
|
|
161
|
-
};
|
|
162
|
-
var easing = {
|
|
163
|
-
smooth: "cubic-bezier(0.16, 1, 0.3, 1)",
|
|
164
|
-
snap: "cubic-bezier(0.5, 0, 0.1, 1)"
|
|
165
|
-
};
|
|
166
|
-
|
|
167
|
-
// src/tokens/radii.ts
|
|
168
|
-
var radii = {
|
|
169
|
-
sm: "0.125rem",
|
|
170
|
-
md: "0.25rem",
|
|
171
|
-
lg: "0.375rem",
|
|
172
|
-
xl: "0.5rem",
|
|
173
|
-
"2xl": "0.75rem",
|
|
174
|
-
"3xl": "1rem",
|
|
175
|
-
full: "9999px"
|
|
176
|
-
};
|
|
177
|
-
|
|
178
|
-
// src/tailwind.preset.ts
|
|
179
|
-
var aureliusPlugin = (0, import_plugin.default)(function({ addBase, addUtilities, theme }) {
|
|
180
|
-
addBase({
|
|
181
|
-
"html": {
|
|
182
|
-
fontFamily: theme("fontFamily.body"),
|
|
183
|
-
backgroundColor: theme("colors.obsidian"),
|
|
184
|
-
color: theme("colors.white"),
|
|
185
|
-
"-webkit-font-smoothing": "antialiased",
|
|
186
|
-
"-moz-osx-font-smoothing": "grayscale"
|
|
187
|
-
},
|
|
188
|
-
"body": {
|
|
189
|
-
minHeight: "100vh",
|
|
190
|
-
lineHeight: "1.5"
|
|
191
|
-
},
|
|
192
|
-
"table": {
|
|
193
|
-
borderCollapse: "collapse",
|
|
194
|
-
width: "100%"
|
|
195
|
-
},
|
|
196
|
-
"table, th, td": {
|
|
197
|
-
border: `1px solid ${theme("colors.gold.muted")}`
|
|
198
|
-
},
|
|
199
|
-
"th, td": {
|
|
200
|
-
padding: "0.5rem 0.75rem"
|
|
201
|
-
},
|
|
202
|
-
"table:hover": {
|
|
203
|
-
boxShadow: theme("boxShadow.glow")
|
|
204
|
-
},
|
|
205
|
-
"progress": {
|
|
206
|
-
appearance: "none",
|
|
207
|
-
"-webkit-appearance": "none",
|
|
208
|
-
border: `1px solid ${theme("colors.gold.muted")}`,
|
|
209
|
-
borderRadius: "0",
|
|
210
|
-
backgroundColor: theme("colors.charcoal"),
|
|
211
|
-
width: "100%",
|
|
212
|
-
height: "0.5rem"
|
|
213
|
-
},
|
|
214
|
-
"progress::-webkit-progress-bar": {
|
|
215
|
-
backgroundColor: theme("colors.charcoal")
|
|
216
|
-
},
|
|
217
|
-
"progress::-webkit-progress-value": {
|
|
218
|
-
backgroundColor: theme("colors.gold.DEFAULT")
|
|
219
|
-
},
|
|
220
|
-
"progress::-moz-progress-bar": {
|
|
221
|
-
backgroundColor: theme("colors.gold.DEFAULT")
|
|
222
|
-
},
|
|
223
|
-
"h1, h2, h3, h4, h5, h6": {
|
|
224
|
-
fontFamily: theme("fontFamily.heading"),
|
|
225
|
-
fontWeight: "600",
|
|
226
|
-
letterSpacing: "-0.025em",
|
|
227
|
-
color: theme("colors.white")
|
|
228
|
-
},
|
|
229
|
-
"h1": { fontSize: "2.25rem", lineHeight: "1.25" },
|
|
230
|
-
"h2": { fontSize: "1.875rem", lineHeight: "1.25" },
|
|
231
|
-
"h3": { fontSize: "1.5rem", lineHeight: "1.375" },
|
|
232
|
-
"h4": { fontSize: "1.25rem", lineHeight: "1.375" },
|
|
233
|
-
"h5": { fontSize: "1.125rem", lineHeight: "1.5" },
|
|
234
|
-
"h6": { fontSize: "1rem", lineHeight: "1.5" },
|
|
235
|
-
"code, pre, kbd, samp": {
|
|
236
|
-
fontFamily: theme("fontFamily.mono"),
|
|
237
|
-
fontSize: "0.875em"
|
|
238
|
-
},
|
|
239
|
-
"a": {
|
|
240
|
-
color: theme("colors.gold.DEFAULT"),
|
|
241
|
-
textDecoration: "none",
|
|
242
|
-
transition: `color ${theme("transitionDuration.fast")} ease-out`
|
|
243
|
-
},
|
|
244
|
-
"a:hover": {
|
|
245
|
-
color: theme("colors.gold.light")
|
|
246
|
-
},
|
|
247
|
-
":focus-visible": {
|
|
248
|
-
outline: `2px solid ${theme("colors.gold.DEFAULT")}`,
|
|
249
|
-
outlineOffset: "2px"
|
|
250
|
-
},
|
|
251
|
-
"::selection": {
|
|
252
|
-
backgroundColor: theme("colors.gold.DEFAULT"),
|
|
253
|
-
color: theme("colors.obsidian")
|
|
254
|
-
},
|
|
255
|
-
"::-webkit-scrollbar": { width: "8px", height: "8px" },
|
|
256
|
-
"::-webkit-scrollbar-track": { background: theme("colors.charcoal") },
|
|
257
|
-
"::-webkit-scrollbar-thumb": {
|
|
258
|
-
background: theme("colors.ash"),
|
|
259
|
-
borderRadius: theme("borderRadius.full")
|
|
260
|
-
},
|
|
261
|
-
"::-webkit-scrollbar-thumb:hover": { background: theme("colors.silver") }
|
|
262
|
-
});
|
|
263
|
-
addUtilities({
|
|
264
|
-
".text-gradient-gold": {
|
|
265
|
-
background: `linear-gradient(to right, ${theme("colors.gold.DEFAULT")}, ${theme(
|
|
266
|
-
"colors.gold.light"
|
|
267
|
-
)}, ${theme("colors.gold.DEFAULT")})`,
|
|
268
|
-
"-webkit-background-clip": "text",
|
|
269
|
-
"background-clip": "text",
|
|
270
|
-
color: "transparent"
|
|
271
|
-
},
|
|
272
|
-
".glow": { boxShadow: theme("boxShadow.glow") },
|
|
273
|
-
".glow-sm": { boxShadow: theme("boxShadow.glow-sm") },
|
|
274
|
-
".glow-lg": { boxShadow: theme("boxShadow.glow-lg") },
|
|
275
|
-
".scroll-smooth": {
|
|
276
|
-
scrollBehavior: "smooth",
|
|
277
|
-
"-webkit-overflow-scrolling": "touch"
|
|
278
|
-
},
|
|
279
|
-
".scrollbar-hide": {
|
|
280
|
-
"-ms-overflow-style": "none",
|
|
281
|
-
"scrollbar-width": "none",
|
|
282
|
-
"&::-webkit-scrollbar": { display: "none" }
|
|
283
|
-
},
|
|
284
|
-
".backdrop-glass": {
|
|
285
|
-
backdropFilter: "blur(12px)",
|
|
286
|
-
backgroundColor: "rgba(20, 20, 20, 0.8)"
|
|
287
|
-
},
|
|
288
|
-
".focus-ring": {
|
|
289
|
-
"&:focus-visible": {
|
|
290
|
-
outline: "2px solid #c9a227",
|
|
291
|
-
outlineOffset: "2px"
|
|
292
|
-
}
|
|
293
|
-
},
|
|
294
|
-
".line-clamp-2": {
|
|
295
|
-
display: "-webkit-box",
|
|
296
|
-
"-webkit-line-clamp": "2",
|
|
297
|
-
"-webkit-box-orient": "vertical",
|
|
298
|
-
overflow: "hidden"
|
|
299
|
-
},
|
|
300
|
-
".line-clamp-3": {
|
|
301
|
-
display: "-webkit-box",
|
|
302
|
-
"-webkit-line-clamp": "3",
|
|
303
|
-
"-webkit-box-orient": "vertical",
|
|
304
|
-
overflow: "hidden"
|
|
305
|
-
},
|
|
306
|
-
".center-absolute": {
|
|
307
|
-
position: "absolute",
|
|
308
|
-
top: "50%",
|
|
309
|
-
left: "50%",
|
|
310
|
-
transform: "translate(-50%, -50%)"
|
|
311
|
-
}
|
|
312
|
-
});
|
|
313
|
-
});
|
|
314
|
-
var preset = {
|
|
315
|
-
theme: {
|
|
316
|
-
extend: {
|
|
317
|
-
colors: {
|
|
318
|
-
// Black spectrum
|
|
319
|
-
void: colors.void,
|
|
320
|
-
obsidian: colors.obsidian,
|
|
321
|
-
charcoal: colors.charcoal,
|
|
322
|
-
graphite: colors.graphite,
|
|
323
|
-
slate: colors.slate,
|
|
324
|
-
ash: colors.ash,
|
|
325
|
-
// Gold spectrum
|
|
326
|
-
gold: {
|
|
327
|
-
DEFAULT: colors.gold,
|
|
328
|
-
light: colors.goldLight,
|
|
329
|
-
bright: colors.goldBright,
|
|
330
|
-
muted: colors.goldMuted,
|
|
331
|
-
pale: colors.goldPale,
|
|
332
|
-
glow: colors.goldGlow
|
|
333
|
-
},
|
|
334
|
-
// Neutrals
|
|
335
|
-
white: colors.white,
|
|
336
|
-
silver: colors.silver,
|
|
337
|
-
zinc: colors.zinc,
|
|
338
|
-
dim: colors.dim,
|
|
339
|
-
// Semantic
|
|
340
|
-
success: {
|
|
341
|
-
DEFAULT: colors.success,
|
|
342
|
-
muted: colors.successMuted
|
|
343
|
-
},
|
|
344
|
-
error: {
|
|
345
|
-
DEFAULT: colors.error,
|
|
346
|
-
muted: colors.errorMuted
|
|
347
|
-
},
|
|
348
|
-
warning: {
|
|
349
|
-
DEFAULT: colors.warning,
|
|
350
|
-
muted: colors.warningMuted
|
|
351
|
-
},
|
|
352
|
-
info: {
|
|
353
|
-
DEFAULT: colors.info,
|
|
354
|
-
muted: colors.infoMuted
|
|
355
|
-
}
|
|
356
|
-
},
|
|
357
|
-
fontFamily: {
|
|
358
|
-
heading: typography.fontHeading,
|
|
359
|
-
body: typography.fontBody,
|
|
360
|
-
mono: typography.fontMono
|
|
361
|
-
},
|
|
362
|
-
fontSize: typography.fontSize,
|
|
363
|
-
fontWeight: typography.fontWeight,
|
|
364
|
-
lineHeight: typography.lineHeight,
|
|
365
|
-
letterSpacing: typography.letterSpacing,
|
|
366
|
-
spacing,
|
|
367
|
-
borderRadius: radii,
|
|
368
|
-
boxShadow: shadows,
|
|
369
|
-
transitionDuration: duration,
|
|
370
|
-
transitionTimingFunction: easing,
|
|
371
|
-
animation: {
|
|
372
|
-
"fade-in": "fade-in 200ms ease-out",
|
|
373
|
-
"fade-out": "fade-out 150ms ease-in",
|
|
374
|
-
"slide-in-right": `slide-in-right 300ms ${easing.smooth}`,
|
|
375
|
-
"slide-out-right": "slide-out-right 200ms ease-in",
|
|
376
|
-
"pulse-glow": "pulse-glow 2s ease-in-out infinite"
|
|
377
|
-
},
|
|
378
|
-
keyframes: {
|
|
379
|
-
"fade-in": {
|
|
380
|
-
"0%": { opacity: "0" },
|
|
381
|
-
"100%": { opacity: "1" }
|
|
382
|
-
},
|
|
383
|
-
"fade-out": {
|
|
384
|
-
"0%": { opacity: "1" },
|
|
385
|
-
"100%": { opacity: "0" }
|
|
386
|
-
},
|
|
387
|
-
"slide-in-right": {
|
|
388
|
-
"0%": { transform: "translateX(100%)", opacity: "0" },
|
|
389
|
-
"100%": { transform: "translateX(0)", opacity: "1" }
|
|
390
|
-
},
|
|
391
|
-
"slide-out-right": {
|
|
392
|
-
"0%": { transform: "translateX(0)", opacity: "1" },
|
|
393
|
-
"100%": { transform: "translateX(100%)", opacity: "0" }
|
|
394
|
-
},
|
|
395
|
-
"pulse-glow": {
|
|
396
|
-
"0%, 100%": { boxShadow: "0 0 20px rgba(201, 162, 39, 0.3)" },
|
|
397
|
-
"50%": { boxShadow: "0 0 30px rgba(201, 162, 39, 0.5)" }
|
|
398
|
-
}
|
|
399
|
-
}
|
|
400
|
-
}
|
|
401
|
-
},
|
|
402
|
-
plugins: [aureliusPlugin]
|
|
403
|
-
};
|
|
404
|
-
var tailwind_preset_default = preset;
|
|
405
|
-
//# 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 plugin from 'tailwindcss/plugin'\nimport {colors, duration, easing, radii, shadows, spacing, typography} from './tokens'\n\nconst aureliusPlugin = plugin(function ({addBase, addUtilities, theme}) {\n // Base styles\n addBase({\n 'html': {\n fontFamily: theme('fontFamily.body'),\n backgroundColor: theme('colors.obsidian'),\n color: theme('colors.white'),\n '-webkit-font-smoothing': 'antialiased',\n '-moz-osx-font-smoothing': 'grayscale',\n },\n 'body': {\n minHeight: '100vh',\n lineHeight: '1.5',\n },\n 'table': {\n borderCollapse: 'collapse',\n width: '100%',\n },\n 'table, th, td': {\n border: `1px solid ${theme('colors.gold.muted')}`,\n },\n 'th, td': {\n padding: '0.5rem 0.75rem',\n },\n 'table:hover': {\n boxShadow: theme('boxShadow.glow'),\n },\n 'progress': {\n appearance: 'none',\n '-webkit-appearance': 'none',\n border: `1px solid ${theme('colors.gold.muted')}`,\n borderRadius: '0',\n backgroundColor: theme('colors.charcoal'),\n width: '100%',\n height: '0.5rem',\n },\n 'progress::-webkit-progress-bar': {\n backgroundColor: theme('colors.charcoal'),\n },\n 'progress::-webkit-progress-value': {\n backgroundColor: theme('colors.gold.DEFAULT'),\n },\n 'progress::-moz-progress-bar': {\n backgroundColor: theme('colors.gold.DEFAULT'),\n },\n 'h1, h2, h3, h4, h5, h6': {\n fontFamily: theme('fontFamily.heading'),\n fontWeight: '600',\n letterSpacing: '-0.025em',\n color: theme('colors.white'),\n },\n 'h1': {fontSize: '2.25rem', lineHeight: '1.25'},\n 'h2': {fontSize: '1.875rem', lineHeight: '1.25'},\n 'h3': {fontSize: '1.5rem', lineHeight: '1.375'},\n 'h4': {fontSize: '1.25rem', lineHeight: '1.375'},\n 'h5': {fontSize: '1.125rem', lineHeight: '1.5'},\n 'h6': {fontSize: '1rem', lineHeight: '1.5'},\n 'code, pre, kbd, samp': {\n fontFamily: theme('fontFamily.mono'),\n fontSize: '0.875em',\n },\n 'a': {\n color: theme('colors.gold.DEFAULT'),\n textDecoration: 'none',\n transition: `color ${theme('transitionDuration.fast')} ease-out`,\n },\n 'a:hover': {\n color: theme('colors.gold.light'),\n },\n ':focus-visible': {\n outline: `2px solid ${theme('colors.gold.DEFAULT')}`,\n outlineOffset: '2px',\n },\n '::selection': {\n backgroundColor: theme('colors.gold.DEFAULT'),\n color: theme('colors.obsidian'),\n },\n '::-webkit-scrollbar': {width: '8px', height: '8px'},\n '::-webkit-scrollbar-track': {background: theme('colors.charcoal')},\n '::-webkit-scrollbar-thumb': {\n background: theme('colors.ash'),\n borderRadius: theme('borderRadius.full')\n },\n '::-webkit-scrollbar-thumb:hover': {background: theme('colors.silver')},\n })\n\n // Utility classes\n addUtilities({\n '.text-gradient-gold': {\n background: `linear-gradient(to right, ${theme('colors.gold.DEFAULT')}, ${theme(\n 'colors.gold.light')}, ${theme('colors.gold.DEFAULT')})`,\n '-webkit-background-clip': 'text',\n 'background-clip': 'text',\n color: 'transparent',\n },\n '.glow': {boxShadow: theme('boxShadow.glow')},\n '.glow-sm': {boxShadow: theme('boxShadow.glow-sm')},\n '.glow-lg': {boxShadow: theme('boxShadow.glow-lg')},\n '.scroll-smooth': {\n scrollBehavior: 'smooth',\n '-webkit-overflow-scrolling': 'touch',\n },\n '.scrollbar-hide': {\n '-ms-overflow-style': 'none',\n 'scrollbar-width': 'none',\n '&::-webkit-scrollbar': {display: 'none'},\n },\n '.backdrop-glass': {\n backdropFilter: 'blur(12px)',\n backgroundColor: 'rgba(20, 20, 20, 0.8)',\n },\n '.focus-ring': {\n '&:focus-visible': {\n outline: '2px solid #c9a227',\n outlineOffset: '2px',\n },\n },\n '.line-clamp-2': {\n display: '-webkit-box',\n '-webkit-line-clamp': '2',\n '-webkit-box-orient': 'vertical',\n overflow: 'hidden',\n },\n '.line-clamp-3': {\n display: '-webkit-box',\n '-webkit-line-clamp': '3',\n '-webkit-box-orient': 'vertical',\n overflow: 'hidden',\n },\n '.center-absolute': {\n position: 'absolute',\n top: '50%',\n left: '50%',\n transform: 'translate(-50%, -50%)',\n },\n })\n})\n\nconst preset: Partial<Config> = {\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 plugins: [aureliusPlugin]\n}\n\nexport default preset","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":["plugin"]}
|
package/dist/tailwind.preset.mjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/dist/tokens/index.d.mts
DELETED
|
@@ -1,156 +0,0 @@
|
|
|
1
|
-
declare const colors: {
|
|
2
|
-
readonly void: "#000000";
|
|
3
|
-
readonly obsidian: "#0a0a0a";
|
|
4
|
-
readonly charcoal: "#141414";
|
|
5
|
-
readonly graphite: "#1f1f1f";
|
|
6
|
-
readonly slate: "#2a2a2a";
|
|
7
|
-
readonly ash: "#3d3d3d";
|
|
8
|
-
readonly gold: "#c9a227";
|
|
9
|
-
readonly goldLight: "#d4b84a";
|
|
10
|
-
readonly goldBright: "#e5c84d";
|
|
11
|
-
readonly goldMuted: "#8b7355";
|
|
12
|
-
readonly goldPale: "#d4c4a8";
|
|
13
|
-
readonly goldGlow: "rgba(201, 162, 39, 0.15)";
|
|
14
|
-
readonly white: "#ffffff";
|
|
15
|
-
readonly silver: "#a3a3a3";
|
|
16
|
-
readonly zinc: "#71717a";
|
|
17
|
-
readonly dim: "#52525b";
|
|
18
|
-
readonly success: "#22c55e";
|
|
19
|
-
readonly successMuted: "#166534";
|
|
20
|
-
readonly error: "#dc2626";
|
|
21
|
-
readonly errorMuted: "#991b1b";
|
|
22
|
-
readonly warning: "#d97706";
|
|
23
|
-
readonly warningMuted: "#92400e";
|
|
24
|
-
readonly info: "#0ea5e9";
|
|
25
|
-
readonly infoMuted: "#0369a1";
|
|
26
|
-
};
|
|
27
|
-
type ColorToken = keyof typeof colors;
|
|
28
|
-
|
|
29
|
-
declare const typography: {
|
|
30
|
-
readonly fontHeading: readonly ["Marcellus", "serif"];
|
|
31
|
-
readonly fontBody: readonly ["Raleway", "system-ui", "sans-serif"];
|
|
32
|
-
readonly fontMono: readonly ["JetBrains Mono", "Fira Code", "SF Mono", "monospace"];
|
|
33
|
-
readonly fontSize: {
|
|
34
|
-
readonly xs: readonly ["0.75rem", {
|
|
35
|
-
readonly lineHeight: "1rem";
|
|
36
|
-
}];
|
|
37
|
-
readonly sm: readonly ["0.875rem", {
|
|
38
|
-
readonly lineHeight: "1.25rem";
|
|
39
|
-
}];
|
|
40
|
-
readonly base: readonly ["1rem", {
|
|
41
|
-
readonly lineHeight: "1.5rem";
|
|
42
|
-
}];
|
|
43
|
-
readonly lg: readonly ["1.125rem", {
|
|
44
|
-
readonly lineHeight: "1.75rem";
|
|
45
|
-
}];
|
|
46
|
-
readonly xl: readonly ["1.25rem", {
|
|
47
|
-
readonly lineHeight: "1.75rem";
|
|
48
|
-
}];
|
|
49
|
-
readonly '2xl': readonly ["1.5rem", {
|
|
50
|
-
readonly lineHeight: "2rem";
|
|
51
|
-
}];
|
|
52
|
-
readonly '3xl': readonly ["1.875rem", {
|
|
53
|
-
readonly lineHeight: "2.25rem";
|
|
54
|
-
}];
|
|
55
|
-
readonly '4xl': readonly ["2.25rem", {
|
|
56
|
-
readonly lineHeight: "2.5rem";
|
|
57
|
-
}];
|
|
58
|
-
readonly '5xl': readonly ["3rem", {
|
|
59
|
-
readonly lineHeight: "1";
|
|
60
|
-
}];
|
|
61
|
-
readonly '6xl': readonly ["3.75rem", {
|
|
62
|
-
readonly lineHeight: "1";
|
|
63
|
-
}];
|
|
64
|
-
};
|
|
65
|
-
readonly fontWeight: {
|
|
66
|
-
readonly normal: "400";
|
|
67
|
-
readonly medium: "500";
|
|
68
|
-
readonly semibold: "600";
|
|
69
|
-
readonly bold: "700";
|
|
70
|
-
};
|
|
71
|
-
readonly lineHeight: {
|
|
72
|
-
readonly none: "1";
|
|
73
|
-
readonly tight: "1.25";
|
|
74
|
-
readonly snug: "1.375";
|
|
75
|
-
readonly normal: "1.5";
|
|
76
|
-
readonly relaxed: "1.625";
|
|
77
|
-
readonly loose: "2";
|
|
78
|
-
};
|
|
79
|
-
readonly letterSpacing: {
|
|
80
|
-
readonly tighter: "-0.05em";
|
|
81
|
-
readonly tight: "-0.025em";
|
|
82
|
-
readonly normal: "0";
|
|
83
|
-
readonly wide: "0.025em";
|
|
84
|
-
readonly wider: "0.05em";
|
|
85
|
-
readonly widest: "0.1em";
|
|
86
|
-
};
|
|
87
|
-
};
|
|
88
|
-
type TypographyToken = keyof typeof typography;
|
|
89
|
-
|
|
90
|
-
declare const spacing: {
|
|
91
|
-
readonly px: "1px";
|
|
92
|
-
readonly 0: "0";
|
|
93
|
-
readonly 0.5: "0.125rem";
|
|
94
|
-
readonly 1: "0.25rem";
|
|
95
|
-
readonly 1.5: "0.375rem";
|
|
96
|
-
readonly 2: "0.5rem";
|
|
97
|
-
readonly 2.5: "0.625rem";
|
|
98
|
-
readonly 3: "0.75rem";
|
|
99
|
-
readonly 3.5: "0.875rem";
|
|
100
|
-
readonly 4: "1rem";
|
|
101
|
-
readonly 5: "1.25rem";
|
|
102
|
-
readonly 6: "1.5rem";
|
|
103
|
-
readonly 7: "1.75rem";
|
|
104
|
-
readonly 8: "2rem";
|
|
105
|
-
readonly 9: "2.25rem";
|
|
106
|
-
readonly 10: "2.5rem";
|
|
107
|
-
readonly 11: "2.75rem";
|
|
108
|
-
readonly 12: "3rem";
|
|
109
|
-
readonly 14: "3.5rem";
|
|
110
|
-
readonly 16: "4rem";
|
|
111
|
-
readonly 20: "5rem";
|
|
112
|
-
readonly 24: "6rem";
|
|
113
|
-
readonly 28: "7rem";
|
|
114
|
-
readonly 32: "8rem";
|
|
115
|
-
};
|
|
116
|
-
type SpacingToken = keyof typeof spacing;
|
|
117
|
-
|
|
118
|
-
declare const shadows: {
|
|
119
|
-
readonly sm: "0 1px 2px 0 rgba(0, 0, 0, 0.4)";
|
|
120
|
-
readonly md: "0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3)";
|
|
121
|
-
readonly lg: "0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3)";
|
|
122
|
-
readonly xl: "0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3)";
|
|
123
|
-
readonly '2xl': "0 25px 50px -12px rgba(0, 0, 0, 0.5)";
|
|
124
|
-
readonly glow: "0 0 20px rgba(201, 162, 39, 0.3)";
|
|
125
|
-
readonly 'glow-sm': "0 0 10px rgba(201, 162, 39, 0.2)";
|
|
126
|
-
readonly 'glow-lg': "0 0 40px rgba(201, 162, 39, 0.4)";
|
|
127
|
-
readonly inner: "inset 0 2px 4px 0 rgba(0, 0, 0, 0.3)";
|
|
128
|
-
};
|
|
129
|
-
type ShadowToken = keyof typeof shadows;
|
|
130
|
-
|
|
131
|
-
declare const duration: {
|
|
132
|
-
readonly instant: "75ms";
|
|
133
|
-
readonly fast: "150ms";
|
|
134
|
-
readonly normal: "200ms";
|
|
135
|
-
readonly slow: "300ms";
|
|
136
|
-
readonly slower: "500ms";
|
|
137
|
-
};
|
|
138
|
-
declare const easing: {
|
|
139
|
-
readonly smooth: "cubic-bezier(0.16, 1, 0.3, 1)";
|
|
140
|
-
readonly snap: "cubic-bezier(0.5, 0, 0.1, 1)";
|
|
141
|
-
};
|
|
142
|
-
type DurationToken = keyof typeof duration;
|
|
143
|
-
type EasingToken = keyof typeof easing;
|
|
144
|
-
|
|
145
|
-
declare const radii: {
|
|
146
|
-
readonly sm: "0.125rem";
|
|
147
|
-
readonly md: "0.25rem";
|
|
148
|
-
readonly lg: "0.375rem";
|
|
149
|
-
readonly xl: "0.5rem";
|
|
150
|
-
readonly '2xl': "0.75rem";
|
|
151
|
-
readonly '3xl': "1rem";
|
|
152
|
-
readonly full: "9999px";
|
|
153
|
-
};
|
|
154
|
-
type RadiusToken = keyof typeof radii;
|
|
155
|
-
|
|
156
|
-
export { type ColorToken, type DurationToken, type EasingToken, type RadiusToken, type ShadowToken, type SpacingToken, type TypographyToken, colors, duration, easing, radii, shadows, spacing, typography };
|