@web-my-money/tokens 1.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/bin/doctor.mjs +189 -0
- package/dist/chunk-2IXFKPNU.mjs +72 -0
- package/dist/chunk-4FF2FHY6.mjs +265 -0
- package/dist/font-size-runtime-DlvZXy2n.d.mts +48 -0
- package/dist/font-size-runtime-DlvZXy2n.d.ts +48 -0
- package/dist/fonts/satoshi-black.woff2 +0 -0
- package/dist/fonts.css +16 -0
- package/dist/index.d.mts +264 -0
- package/dist/index.d.ts +264 -0
- package/dist/index.js +464 -0
- package/dist/index.mjs +137 -0
- package/dist/react.d.mts +61 -0
- package/dist/react.d.ts +61 -0
- package/dist/react.js +232 -0
- package/dist/react.mjs +155 -0
- package/dist/tailwind-preset.d.mts +14 -0
- package/dist/tailwind-preset.d.ts +14 -0
- package/dist/tailwind-preset.js +225 -0
- package/dist/tailwind-preset.mjs +6 -0
- package/dist/themes/app-theme.css +140 -0
- package/dist/themes/clients/acme.css +50 -0
- package/dist/themes/extended.css +453 -0
- package/dist/themes/palette.mjs +121 -0
- package/dist/themes/shadcn-theme.css +169 -0
- package/dist/themes/theme.css +12 -0
- package/dist/themes/themes.json +31 -0
- package/dist/themes/wmm.css +29 -0
- package/dist/tokens.css +82 -0
- package/package.json +68 -0
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
export { wmmPreset } from './tailwind-preset.mjs';
|
|
2
|
+
export { D as DEFAULT_FONT_SIZE, a as DEFAULT_THEME, F as FONT_SIZES, b as FONT_SIZE_STORAGE_KEY, c as FontSizeName, T as THEMES, d as THEME_STORAGE_KEY, e as ThemeName, f as applyFontSize, g as applyTheme, h as fontSizeBootScript, i as getStoredFontSize, j as getStoredTheme, k as isFontSizeName, l as isThemeName, t as themeBootScript } from './font-size-runtime-DlvZXy2n.mjs';
|
|
3
|
+
import 'tailwindcss';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Color tokens — OKLCH-based semantic palette.
|
|
7
|
+
*
|
|
8
|
+
* Every value is a raw CSS value (no var() wrapper) so consumers can use them
|
|
9
|
+
* either as CSS custom properties or directly in Tailwind config.
|
|
10
|
+
*
|
|
11
|
+
* Brand-specific colors live in themes (see ./themes/).
|
|
12
|
+
*/
|
|
13
|
+
declare const colors: {
|
|
14
|
+
readonly background: "oklch(1 0 0)";
|
|
15
|
+
readonly foreground: "oklch(0.145 0 0)";
|
|
16
|
+
readonly card: "oklch(1 0 0)";
|
|
17
|
+
readonly cardForeground: "oklch(0.145 0 0)";
|
|
18
|
+
readonly popover: "oklch(1 0 0)";
|
|
19
|
+
readonly popoverForeground: "oklch(0.145 0 0)";
|
|
20
|
+
readonly primary: "oklch(0.205 0 0)";
|
|
21
|
+
readonly primaryForeground: "oklch(0.985 0 0)";
|
|
22
|
+
readonly secondary: "oklch(0.97 0 0)";
|
|
23
|
+
readonly secondaryForeground: "oklch(0.205 0 0)";
|
|
24
|
+
readonly muted: "oklch(0.97 0 0)";
|
|
25
|
+
readonly mutedForeground: "oklch(0.556 0 0)";
|
|
26
|
+
readonly accent: "oklch(0.97 0 0)";
|
|
27
|
+
readonly accentForeground: "oklch(0.205 0 0)";
|
|
28
|
+
readonly destructive: "oklch(0.577 0.245 27.325)";
|
|
29
|
+
readonly border: "oklch(0.922 0 0)";
|
|
30
|
+
readonly input: "oklch(0.922 0 0)";
|
|
31
|
+
readonly ring: "oklch(0.708 0 0)";
|
|
32
|
+
readonly chart1: "oklch(0.87 0 0)";
|
|
33
|
+
readonly chart2: "oklch(0.556 0 0)";
|
|
34
|
+
readonly chart3: "oklch(0.439 0 0)";
|
|
35
|
+
readonly chart4: "oklch(0.371 0 0)";
|
|
36
|
+
readonly chart5: "oklch(0.269 0 0)";
|
|
37
|
+
readonly sidebar: "oklch(0.985 0 0)";
|
|
38
|
+
readonly sidebarForeground: "oklch(0.145 0 0)";
|
|
39
|
+
readonly sidebarPrimary: "oklch(0.205 0 0)";
|
|
40
|
+
readonly sidebarPrimaryForeground: "oklch(0.985 0 0)";
|
|
41
|
+
readonly sidebarAccent: "oklch(0.97 0 0)";
|
|
42
|
+
readonly sidebarAccentForeground: "oklch(0.205 0 0)";
|
|
43
|
+
readonly sidebarBorder: "oklch(0.922 0 0)";
|
|
44
|
+
readonly sidebarRing: "oklch(0.708 0 0)";
|
|
45
|
+
};
|
|
46
|
+
declare const colorsDark: {
|
|
47
|
+
readonly background: "oklch(0.145 0 0)";
|
|
48
|
+
readonly foreground: "oklch(0.985 0 0)";
|
|
49
|
+
readonly card: "oklch(0.205 0 0)";
|
|
50
|
+
readonly cardForeground: "oklch(0.985 0 0)";
|
|
51
|
+
readonly popover: "oklch(0.205 0 0)";
|
|
52
|
+
readonly popoverForeground: "oklch(0.985 0 0)";
|
|
53
|
+
readonly primary: "oklch(0.922 0 0)";
|
|
54
|
+
readonly primaryForeground: "oklch(0.205 0 0)";
|
|
55
|
+
readonly secondary: "oklch(0.269 0 0)";
|
|
56
|
+
readonly secondaryForeground: "oklch(0.985 0 0)";
|
|
57
|
+
readonly muted: "oklch(0.269 0 0)";
|
|
58
|
+
readonly mutedForeground: "oklch(0.708 0 0)";
|
|
59
|
+
readonly accent: "oklch(0.269 0 0)";
|
|
60
|
+
readonly accentForeground: "oklch(0.985 0 0)";
|
|
61
|
+
readonly destructive: "oklch(0.704 0.191 22.216)";
|
|
62
|
+
readonly border: "oklch(1 0 0 / 10%)";
|
|
63
|
+
readonly input: "oklch(1 0 0 / 15%)";
|
|
64
|
+
readonly ring: "oklch(0.556 0 0)";
|
|
65
|
+
readonly chart1: "oklch(0.87 0 0)";
|
|
66
|
+
readonly chart2: "oklch(0.556 0 0)";
|
|
67
|
+
readonly chart3: "oklch(0.439 0 0)";
|
|
68
|
+
readonly chart4: "oklch(0.371 0 0)";
|
|
69
|
+
readonly chart5: "oklch(0.269 0 0)";
|
|
70
|
+
readonly sidebar: "oklch(0.205 0 0)";
|
|
71
|
+
readonly sidebarForeground: "oklch(0.985 0 0)";
|
|
72
|
+
readonly sidebarPrimary: "oklch(0.488 0.243 264.376)";
|
|
73
|
+
readonly sidebarPrimaryForeground: "oklch(0.985 0 0)";
|
|
74
|
+
readonly sidebarAccent: "oklch(0.269 0 0)";
|
|
75
|
+
readonly sidebarAccentForeground: "oklch(0.985 0 0)";
|
|
76
|
+
readonly sidebarBorder: "oklch(1 0 0 / 10%)";
|
|
77
|
+
readonly sidebarRing: "oklch(0.556 0 0)";
|
|
78
|
+
};
|
|
79
|
+
type SemanticColor = keyof typeof colors;
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Typography tokens.
|
|
83
|
+
*
|
|
84
|
+
* Font stacks, sizes, weights, line heights, letter spacing.
|
|
85
|
+
* Consumers set actual font-face loading — tokens only define the stack.
|
|
86
|
+
*/
|
|
87
|
+
declare const fontFamily: {
|
|
88
|
+
/** Body text — Inter or system sans */
|
|
89
|
+
readonly sans: readonly ["var(--font-inter)", "ui-sans-serif", "system-ui", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "sans-serif"];
|
|
90
|
+
/** Display / hero headings — Satoshi */
|
|
91
|
+
readonly display: readonly ["Satoshi", "ui-sans-serif", "system-ui", "-apple-system", "sans-serif"];
|
|
92
|
+
/** Labels, badges, section headers — Space Grotesk */
|
|
93
|
+
readonly label: readonly ["var(--font-space-grotesk)", "ui-sans-serif", "system-ui", "sans-serif"];
|
|
94
|
+
/** Code blocks */
|
|
95
|
+
readonly mono: readonly ["var(--font-geist-mono)", "ui-monospace", "SFMono-Regular", "Menlo", "Monaco", "Consolas", "monospace"];
|
|
96
|
+
};
|
|
97
|
+
declare const fontSize: {
|
|
98
|
+
readonly xs: readonly ["0.75rem", {
|
|
99
|
+
readonly lineHeight: "1rem";
|
|
100
|
+
}];
|
|
101
|
+
readonly sm: readonly ["0.875rem", {
|
|
102
|
+
readonly lineHeight: "1.25rem";
|
|
103
|
+
}];
|
|
104
|
+
readonly base: readonly ["1rem", {
|
|
105
|
+
readonly lineHeight: "1.5rem";
|
|
106
|
+
}];
|
|
107
|
+
readonly lg: readonly ["1.125rem", {
|
|
108
|
+
readonly lineHeight: "1.75rem";
|
|
109
|
+
}];
|
|
110
|
+
readonly xl: readonly ["1.25rem", {
|
|
111
|
+
readonly lineHeight: "1.75rem";
|
|
112
|
+
}];
|
|
113
|
+
readonly "2xl": readonly ["1.5rem", {
|
|
114
|
+
readonly lineHeight: "2rem";
|
|
115
|
+
}];
|
|
116
|
+
readonly "3xl": readonly ["1.875rem", {
|
|
117
|
+
readonly lineHeight: "2.25rem";
|
|
118
|
+
}];
|
|
119
|
+
readonly "4xl": readonly ["2.25rem", {
|
|
120
|
+
readonly lineHeight: "2.5rem";
|
|
121
|
+
}];
|
|
122
|
+
readonly "5xl": readonly ["3rem", {
|
|
123
|
+
readonly lineHeight: "1.15";
|
|
124
|
+
}];
|
|
125
|
+
readonly "6xl": readonly ["3.75rem", {
|
|
126
|
+
readonly lineHeight: "1.1";
|
|
127
|
+
}];
|
|
128
|
+
};
|
|
129
|
+
declare const letterSpacing: {
|
|
130
|
+
readonly tighter: "-0.05em";
|
|
131
|
+
readonly tight: "-0.025em";
|
|
132
|
+
readonly normal: "0em";
|
|
133
|
+
readonly wide: "0.025em";
|
|
134
|
+
readonly wider: "0.05em";
|
|
135
|
+
readonly label: "0.15em";
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* Spacing & layout tokens.
|
|
140
|
+
*/
|
|
141
|
+
declare const radius: {
|
|
142
|
+
readonly sm: "calc(var(--radius) * 0.6)";
|
|
143
|
+
readonly md: "calc(var(--radius) * 0.8)";
|
|
144
|
+
readonly lg: "var(--radius)";
|
|
145
|
+
readonly xl: "calc(var(--radius) * 1.4)";
|
|
146
|
+
readonly "2xl": "calc(var(--radius) * 1.8)";
|
|
147
|
+
readonly "3xl": "calc(var(--radius) * 2.2)";
|
|
148
|
+
readonly "4xl": "calc(var(--radius) * 2.6)";
|
|
149
|
+
readonly full: "9999px";
|
|
150
|
+
};
|
|
151
|
+
declare const radiusBase = "0.625rem";
|
|
152
|
+
declare const container: {
|
|
153
|
+
readonly center: true;
|
|
154
|
+
readonly padding: {
|
|
155
|
+
readonly DEFAULT: "1.25rem";
|
|
156
|
+
readonly sm: "1.5rem";
|
|
157
|
+
readonly lg: "2rem";
|
|
158
|
+
readonly xl: "2.5rem";
|
|
159
|
+
readonly "2xl": "3rem";
|
|
160
|
+
};
|
|
161
|
+
readonly screens: {
|
|
162
|
+
readonly "2xl": "1320px";
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* Shadow tokens — elevation system + glow effects.
|
|
168
|
+
*/
|
|
169
|
+
declare const boxShadow: {
|
|
170
|
+
/** Subtle teal glow for CTAs */
|
|
171
|
+
readonly glow: "0 0 30px rgba(0, 196, 180, 0.15)";
|
|
172
|
+
/** Strong teal glow on hover */
|
|
173
|
+
readonly glowStrong: "0 0 40px rgba(0, 196, 180, 0.4)";
|
|
174
|
+
/** Deep panel shadow with inset highlight (glassmorphism) */
|
|
175
|
+
readonly panel: "0 24px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.08)";
|
|
176
|
+
/** Glass panel shadow */
|
|
177
|
+
readonly glass: "0 28px 90px rgba(0, 0, 0, 0.38), 0 0 36px rgba(0, 196, 180, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.06)";
|
|
178
|
+
};
|
|
179
|
+
|
|
180
|
+
/**
|
|
181
|
+
* Animation tokens — keyframes and durations.
|
|
182
|
+
*/
|
|
183
|
+
declare const keyframes: {
|
|
184
|
+
readonly marquee: {
|
|
185
|
+
readonly "0%": {
|
|
186
|
+
readonly transform: "translate3d(0, 0, 0)";
|
|
187
|
+
};
|
|
188
|
+
readonly "100%": {
|
|
189
|
+
readonly transform: "translate3d(-50%, 0, 0)";
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
readonly "marquee-reverse": {
|
|
193
|
+
readonly "0%": {
|
|
194
|
+
readonly transform: "translate3d(-50%, 0, 0)";
|
|
195
|
+
};
|
|
196
|
+
readonly "100%": {
|
|
197
|
+
readonly transform: "translate3d(0, 0, 0)";
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
readonly shimmer: {
|
|
201
|
+
readonly "0%": {
|
|
202
|
+
readonly transform: "translate3d(-150%, 0, 0)";
|
|
203
|
+
};
|
|
204
|
+
readonly "100%": {
|
|
205
|
+
readonly transform: "translate3d(150%, 0, 0)";
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
readonly float: {
|
|
209
|
+
readonly "0%, 100%": {
|
|
210
|
+
readonly transform: "translate3d(0, 0, 0)";
|
|
211
|
+
};
|
|
212
|
+
readonly "50%": {
|
|
213
|
+
readonly transform: "translate3d(0, -12px, 0)";
|
|
214
|
+
};
|
|
215
|
+
};
|
|
216
|
+
readonly pulseGlow: {
|
|
217
|
+
readonly "0%, 100%": {
|
|
218
|
+
readonly boxShadow: "0 0 0 rgba(0, 196, 180, 0.0)";
|
|
219
|
+
};
|
|
220
|
+
readonly "50%": {
|
|
221
|
+
readonly boxShadow: "0 0 36px rgba(0, 196, 180, 0.18)";
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
};
|
|
225
|
+
declare const animation: {
|
|
226
|
+
readonly marquee: "marquee 28s linear infinite";
|
|
227
|
+
readonly "marquee-slow": "marquee 42s linear infinite";
|
|
228
|
+
readonly "marquee-reverse": "marquee-reverse 32s linear infinite";
|
|
229
|
+
readonly shimmer: "shimmer 4.2s linear infinite";
|
|
230
|
+
readonly float: "float 8s ease-in-out infinite";
|
|
231
|
+
readonly "pulse-glow": "pulseGlow 5s ease-in-out infinite";
|
|
232
|
+
};
|
|
233
|
+
/** Standard easing curves */
|
|
234
|
+
declare const easing: {
|
|
235
|
+
spring: readonly [0.22, 1, 0.36, 1];
|
|
236
|
+
smooth: readonly [0.4, 0, 0.2, 1];
|
|
237
|
+
snappy: readonly [0.2, 0, 0, 1];
|
|
238
|
+
};
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* Gradient tokens — background images and overlays.
|
|
242
|
+
*/
|
|
243
|
+
declare const backgroundImage: {
|
|
244
|
+
/** CTA gradient: navy → aqua (production brand) */
|
|
245
|
+
readonly "cta-gradient": "linear-gradient(135deg, #1f2d56, #8fccb6)";
|
|
246
|
+
/** Grid pattern overlay for hero backgrounds */
|
|
247
|
+
readonly "hero-grid": "linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px)";
|
|
248
|
+
};
|
|
249
|
+
/** Glassmorphism background for panels */
|
|
250
|
+
declare const glassPanel: {
|
|
251
|
+
readonly background: "radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 42%),\n linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),\n rgba(15, 23, 42, 0.84)";
|
|
252
|
+
readonly border: "1px solid rgba(255, 255, 255, 0.08)";
|
|
253
|
+
readonly backdropFilter: "blur(20px)";
|
|
254
|
+
};
|
|
255
|
+
/** Spotlight overlay for sections */
|
|
256
|
+
declare const spotlight: {
|
|
257
|
+
readonly background: "radial-gradient(circle at 50% 0%, rgba(0, 196, 180, 0.18), transparent 28%),\n radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.2), transparent 25%)";
|
|
258
|
+
};
|
|
259
|
+
/** Dark page body background */
|
|
260
|
+
declare const darkBody: {
|
|
261
|
+
readonly background: "radial-gradient(circle at top, rgba(14, 165, 233, 0.12), transparent 32%),\n radial-gradient(circle at 80% 10%, rgba(124, 58, 237, 0.14), transparent 28%),\n linear-gradient(180deg, #070b14 0%, #080b14 45%, #09111f 100%)";
|
|
262
|
+
};
|
|
263
|
+
|
|
264
|
+
export { type SemanticColor, animation, backgroundImage, boxShadow, colors, colorsDark, container, darkBody, easing, fontFamily, fontSize, glassPanel, keyframes, letterSpacing, radius, radiusBase, spotlight };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
export { wmmPreset } from './tailwind-preset.js';
|
|
2
|
+
export { D as DEFAULT_FONT_SIZE, a as DEFAULT_THEME, F as FONT_SIZES, b as FONT_SIZE_STORAGE_KEY, c as FontSizeName, T as THEMES, d as THEME_STORAGE_KEY, e as ThemeName, f as applyFontSize, g as applyTheme, h as fontSizeBootScript, i as getStoredFontSize, j as getStoredTheme, k as isFontSizeName, l as isThemeName, t as themeBootScript } from './font-size-runtime-DlvZXy2n.js';
|
|
3
|
+
import 'tailwindcss';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Color tokens — OKLCH-based semantic palette.
|
|
7
|
+
*
|
|
8
|
+
* Every value is a raw CSS value (no var() wrapper) so consumers can use them
|
|
9
|
+
* either as CSS custom properties or directly in Tailwind config.
|
|
10
|
+
*
|
|
11
|
+
* Brand-specific colors live in themes (see ./themes/).
|
|
12
|
+
*/
|
|
13
|
+
declare const colors: {
|
|
14
|
+
readonly background: "oklch(1 0 0)";
|
|
15
|
+
readonly foreground: "oklch(0.145 0 0)";
|
|
16
|
+
readonly card: "oklch(1 0 0)";
|
|
17
|
+
readonly cardForeground: "oklch(0.145 0 0)";
|
|
18
|
+
readonly popover: "oklch(1 0 0)";
|
|
19
|
+
readonly popoverForeground: "oklch(0.145 0 0)";
|
|
20
|
+
readonly primary: "oklch(0.205 0 0)";
|
|
21
|
+
readonly primaryForeground: "oklch(0.985 0 0)";
|
|
22
|
+
readonly secondary: "oklch(0.97 0 0)";
|
|
23
|
+
readonly secondaryForeground: "oklch(0.205 0 0)";
|
|
24
|
+
readonly muted: "oklch(0.97 0 0)";
|
|
25
|
+
readonly mutedForeground: "oklch(0.556 0 0)";
|
|
26
|
+
readonly accent: "oklch(0.97 0 0)";
|
|
27
|
+
readonly accentForeground: "oklch(0.205 0 0)";
|
|
28
|
+
readonly destructive: "oklch(0.577 0.245 27.325)";
|
|
29
|
+
readonly border: "oklch(0.922 0 0)";
|
|
30
|
+
readonly input: "oklch(0.922 0 0)";
|
|
31
|
+
readonly ring: "oklch(0.708 0 0)";
|
|
32
|
+
readonly chart1: "oklch(0.87 0 0)";
|
|
33
|
+
readonly chart2: "oklch(0.556 0 0)";
|
|
34
|
+
readonly chart3: "oklch(0.439 0 0)";
|
|
35
|
+
readonly chart4: "oklch(0.371 0 0)";
|
|
36
|
+
readonly chart5: "oklch(0.269 0 0)";
|
|
37
|
+
readonly sidebar: "oklch(0.985 0 0)";
|
|
38
|
+
readonly sidebarForeground: "oklch(0.145 0 0)";
|
|
39
|
+
readonly sidebarPrimary: "oklch(0.205 0 0)";
|
|
40
|
+
readonly sidebarPrimaryForeground: "oklch(0.985 0 0)";
|
|
41
|
+
readonly sidebarAccent: "oklch(0.97 0 0)";
|
|
42
|
+
readonly sidebarAccentForeground: "oklch(0.205 0 0)";
|
|
43
|
+
readonly sidebarBorder: "oklch(0.922 0 0)";
|
|
44
|
+
readonly sidebarRing: "oklch(0.708 0 0)";
|
|
45
|
+
};
|
|
46
|
+
declare const colorsDark: {
|
|
47
|
+
readonly background: "oklch(0.145 0 0)";
|
|
48
|
+
readonly foreground: "oklch(0.985 0 0)";
|
|
49
|
+
readonly card: "oklch(0.205 0 0)";
|
|
50
|
+
readonly cardForeground: "oklch(0.985 0 0)";
|
|
51
|
+
readonly popover: "oklch(0.205 0 0)";
|
|
52
|
+
readonly popoverForeground: "oklch(0.985 0 0)";
|
|
53
|
+
readonly primary: "oklch(0.922 0 0)";
|
|
54
|
+
readonly primaryForeground: "oklch(0.205 0 0)";
|
|
55
|
+
readonly secondary: "oklch(0.269 0 0)";
|
|
56
|
+
readonly secondaryForeground: "oklch(0.985 0 0)";
|
|
57
|
+
readonly muted: "oklch(0.269 0 0)";
|
|
58
|
+
readonly mutedForeground: "oklch(0.708 0 0)";
|
|
59
|
+
readonly accent: "oklch(0.269 0 0)";
|
|
60
|
+
readonly accentForeground: "oklch(0.985 0 0)";
|
|
61
|
+
readonly destructive: "oklch(0.704 0.191 22.216)";
|
|
62
|
+
readonly border: "oklch(1 0 0 / 10%)";
|
|
63
|
+
readonly input: "oklch(1 0 0 / 15%)";
|
|
64
|
+
readonly ring: "oklch(0.556 0 0)";
|
|
65
|
+
readonly chart1: "oklch(0.87 0 0)";
|
|
66
|
+
readonly chart2: "oklch(0.556 0 0)";
|
|
67
|
+
readonly chart3: "oklch(0.439 0 0)";
|
|
68
|
+
readonly chart4: "oklch(0.371 0 0)";
|
|
69
|
+
readonly chart5: "oklch(0.269 0 0)";
|
|
70
|
+
readonly sidebar: "oklch(0.205 0 0)";
|
|
71
|
+
readonly sidebarForeground: "oklch(0.985 0 0)";
|
|
72
|
+
readonly sidebarPrimary: "oklch(0.488 0.243 264.376)";
|
|
73
|
+
readonly sidebarPrimaryForeground: "oklch(0.985 0 0)";
|
|
74
|
+
readonly sidebarAccent: "oklch(0.269 0 0)";
|
|
75
|
+
readonly sidebarAccentForeground: "oklch(0.985 0 0)";
|
|
76
|
+
readonly sidebarBorder: "oklch(1 0 0 / 10%)";
|
|
77
|
+
readonly sidebarRing: "oklch(0.556 0 0)";
|
|
78
|
+
};
|
|
79
|
+
type SemanticColor = keyof typeof colors;
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Typography tokens.
|
|
83
|
+
*
|
|
84
|
+
* Font stacks, sizes, weights, line heights, letter spacing.
|
|
85
|
+
* Consumers set actual font-face loading — tokens only define the stack.
|
|
86
|
+
*/
|
|
87
|
+
declare const fontFamily: {
|
|
88
|
+
/** Body text — Inter or system sans */
|
|
89
|
+
readonly sans: readonly ["var(--font-inter)", "ui-sans-serif", "system-ui", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "sans-serif"];
|
|
90
|
+
/** Display / hero headings — Satoshi */
|
|
91
|
+
readonly display: readonly ["Satoshi", "ui-sans-serif", "system-ui", "-apple-system", "sans-serif"];
|
|
92
|
+
/** Labels, badges, section headers — Space Grotesk */
|
|
93
|
+
readonly label: readonly ["var(--font-space-grotesk)", "ui-sans-serif", "system-ui", "sans-serif"];
|
|
94
|
+
/** Code blocks */
|
|
95
|
+
readonly mono: readonly ["var(--font-geist-mono)", "ui-monospace", "SFMono-Regular", "Menlo", "Monaco", "Consolas", "monospace"];
|
|
96
|
+
};
|
|
97
|
+
declare const fontSize: {
|
|
98
|
+
readonly xs: readonly ["0.75rem", {
|
|
99
|
+
readonly lineHeight: "1rem";
|
|
100
|
+
}];
|
|
101
|
+
readonly sm: readonly ["0.875rem", {
|
|
102
|
+
readonly lineHeight: "1.25rem";
|
|
103
|
+
}];
|
|
104
|
+
readonly base: readonly ["1rem", {
|
|
105
|
+
readonly lineHeight: "1.5rem";
|
|
106
|
+
}];
|
|
107
|
+
readonly lg: readonly ["1.125rem", {
|
|
108
|
+
readonly lineHeight: "1.75rem";
|
|
109
|
+
}];
|
|
110
|
+
readonly xl: readonly ["1.25rem", {
|
|
111
|
+
readonly lineHeight: "1.75rem";
|
|
112
|
+
}];
|
|
113
|
+
readonly "2xl": readonly ["1.5rem", {
|
|
114
|
+
readonly lineHeight: "2rem";
|
|
115
|
+
}];
|
|
116
|
+
readonly "3xl": readonly ["1.875rem", {
|
|
117
|
+
readonly lineHeight: "2.25rem";
|
|
118
|
+
}];
|
|
119
|
+
readonly "4xl": readonly ["2.25rem", {
|
|
120
|
+
readonly lineHeight: "2.5rem";
|
|
121
|
+
}];
|
|
122
|
+
readonly "5xl": readonly ["3rem", {
|
|
123
|
+
readonly lineHeight: "1.15";
|
|
124
|
+
}];
|
|
125
|
+
readonly "6xl": readonly ["3.75rem", {
|
|
126
|
+
readonly lineHeight: "1.1";
|
|
127
|
+
}];
|
|
128
|
+
};
|
|
129
|
+
declare const letterSpacing: {
|
|
130
|
+
readonly tighter: "-0.05em";
|
|
131
|
+
readonly tight: "-0.025em";
|
|
132
|
+
readonly normal: "0em";
|
|
133
|
+
readonly wide: "0.025em";
|
|
134
|
+
readonly wider: "0.05em";
|
|
135
|
+
readonly label: "0.15em";
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* Spacing & layout tokens.
|
|
140
|
+
*/
|
|
141
|
+
declare const radius: {
|
|
142
|
+
readonly sm: "calc(var(--radius) * 0.6)";
|
|
143
|
+
readonly md: "calc(var(--radius) * 0.8)";
|
|
144
|
+
readonly lg: "var(--radius)";
|
|
145
|
+
readonly xl: "calc(var(--radius) * 1.4)";
|
|
146
|
+
readonly "2xl": "calc(var(--radius) * 1.8)";
|
|
147
|
+
readonly "3xl": "calc(var(--radius) * 2.2)";
|
|
148
|
+
readonly "4xl": "calc(var(--radius) * 2.6)";
|
|
149
|
+
readonly full: "9999px";
|
|
150
|
+
};
|
|
151
|
+
declare const radiusBase = "0.625rem";
|
|
152
|
+
declare const container: {
|
|
153
|
+
readonly center: true;
|
|
154
|
+
readonly padding: {
|
|
155
|
+
readonly DEFAULT: "1.25rem";
|
|
156
|
+
readonly sm: "1.5rem";
|
|
157
|
+
readonly lg: "2rem";
|
|
158
|
+
readonly xl: "2.5rem";
|
|
159
|
+
readonly "2xl": "3rem";
|
|
160
|
+
};
|
|
161
|
+
readonly screens: {
|
|
162
|
+
readonly "2xl": "1320px";
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* Shadow tokens — elevation system + glow effects.
|
|
168
|
+
*/
|
|
169
|
+
declare const boxShadow: {
|
|
170
|
+
/** Subtle teal glow for CTAs */
|
|
171
|
+
readonly glow: "0 0 30px rgba(0, 196, 180, 0.15)";
|
|
172
|
+
/** Strong teal glow on hover */
|
|
173
|
+
readonly glowStrong: "0 0 40px rgba(0, 196, 180, 0.4)";
|
|
174
|
+
/** Deep panel shadow with inset highlight (glassmorphism) */
|
|
175
|
+
readonly panel: "0 24px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.08)";
|
|
176
|
+
/** Glass panel shadow */
|
|
177
|
+
readonly glass: "0 28px 90px rgba(0, 0, 0, 0.38), 0 0 36px rgba(0, 196, 180, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.06)";
|
|
178
|
+
};
|
|
179
|
+
|
|
180
|
+
/**
|
|
181
|
+
* Animation tokens — keyframes and durations.
|
|
182
|
+
*/
|
|
183
|
+
declare const keyframes: {
|
|
184
|
+
readonly marquee: {
|
|
185
|
+
readonly "0%": {
|
|
186
|
+
readonly transform: "translate3d(0, 0, 0)";
|
|
187
|
+
};
|
|
188
|
+
readonly "100%": {
|
|
189
|
+
readonly transform: "translate3d(-50%, 0, 0)";
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
readonly "marquee-reverse": {
|
|
193
|
+
readonly "0%": {
|
|
194
|
+
readonly transform: "translate3d(-50%, 0, 0)";
|
|
195
|
+
};
|
|
196
|
+
readonly "100%": {
|
|
197
|
+
readonly transform: "translate3d(0, 0, 0)";
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
readonly shimmer: {
|
|
201
|
+
readonly "0%": {
|
|
202
|
+
readonly transform: "translate3d(-150%, 0, 0)";
|
|
203
|
+
};
|
|
204
|
+
readonly "100%": {
|
|
205
|
+
readonly transform: "translate3d(150%, 0, 0)";
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
readonly float: {
|
|
209
|
+
readonly "0%, 100%": {
|
|
210
|
+
readonly transform: "translate3d(0, 0, 0)";
|
|
211
|
+
};
|
|
212
|
+
readonly "50%": {
|
|
213
|
+
readonly transform: "translate3d(0, -12px, 0)";
|
|
214
|
+
};
|
|
215
|
+
};
|
|
216
|
+
readonly pulseGlow: {
|
|
217
|
+
readonly "0%, 100%": {
|
|
218
|
+
readonly boxShadow: "0 0 0 rgba(0, 196, 180, 0.0)";
|
|
219
|
+
};
|
|
220
|
+
readonly "50%": {
|
|
221
|
+
readonly boxShadow: "0 0 36px rgba(0, 196, 180, 0.18)";
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
};
|
|
225
|
+
declare const animation: {
|
|
226
|
+
readonly marquee: "marquee 28s linear infinite";
|
|
227
|
+
readonly "marquee-slow": "marquee 42s linear infinite";
|
|
228
|
+
readonly "marquee-reverse": "marquee-reverse 32s linear infinite";
|
|
229
|
+
readonly shimmer: "shimmer 4.2s linear infinite";
|
|
230
|
+
readonly float: "float 8s ease-in-out infinite";
|
|
231
|
+
readonly "pulse-glow": "pulseGlow 5s ease-in-out infinite";
|
|
232
|
+
};
|
|
233
|
+
/** Standard easing curves */
|
|
234
|
+
declare const easing: {
|
|
235
|
+
spring: readonly [0.22, 1, 0.36, 1];
|
|
236
|
+
smooth: readonly [0.4, 0, 0.2, 1];
|
|
237
|
+
snappy: readonly [0.2, 0, 0, 1];
|
|
238
|
+
};
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* Gradient tokens — background images and overlays.
|
|
242
|
+
*/
|
|
243
|
+
declare const backgroundImage: {
|
|
244
|
+
/** CTA gradient: navy → aqua (production brand) */
|
|
245
|
+
readonly "cta-gradient": "linear-gradient(135deg, #1f2d56, #8fccb6)";
|
|
246
|
+
/** Grid pattern overlay for hero backgrounds */
|
|
247
|
+
readonly "hero-grid": "linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px)";
|
|
248
|
+
};
|
|
249
|
+
/** Glassmorphism background for panels */
|
|
250
|
+
declare const glassPanel: {
|
|
251
|
+
readonly background: "radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 42%),\n linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),\n rgba(15, 23, 42, 0.84)";
|
|
252
|
+
readonly border: "1px solid rgba(255, 255, 255, 0.08)";
|
|
253
|
+
readonly backdropFilter: "blur(20px)";
|
|
254
|
+
};
|
|
255
|
+
/** Spotlight overlay for sections */
|
|
256
|
+
declare const spotlight: {
|
|
257
|
+
readonly background: "radial-gradient(circle at 50% 0%, rgba(0, 196, 180, 0.18), transparent 28%),\n radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.2), transparent 25%)";
|
|
258
|
+
};
|
|
259
|
+
/** Dark page body background */
|
|
260
|
+
declare const darkBody: {
|
|
261
|
+
readonly background: "radial-gradient(circle at top, rgba(14, 165, 233, 0.12), transparent 32%),\n radial-gradient(circle at 80% 10%, rgba(124, 58, 237, 0.14), transparent 28%),\n linear-gradient(180deg, #070b14 0%, #080b14 45%, #09111f 100%)";
|
|
262
|
+
};
|
|
263
|
+
|
|
264
|
+
export { type SemanticColor, animation, backgroundImage, boxShadow, colors, colorsDark, container, darkBody, easing, fontFamily, fontSize, glassPanel, keyframes, letterSpacing, radius, radiusBase, spotlight };
|