kaleido-ui 0.1.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.
@@ -0,0 +1,212 @@
1
+ // src/tokens/colors.ts
2
+ var colors = {
3
+ /** Brand */
4
+ primary: "#2BEE79",
5
+ primaryDark: "#1FA855",
6
+ primaryFg: "#102217",
7
+ /** Surfaces (dark theme — the default) */
8
+ bgDark: "#102217",
9
+ surfaceDark: "#162E21",
10
+ surfaceHighlight: "#243E30",
11
+ surfaceBorder: "#244A35",
12
+ surfaceDarker: "#0B1810",
13
+ /** Surfaces (light theme) */
14
+ bgLight: "#F6F8F7",
15
+ surfaceLight: "#FFFFFF",
16
+ /** Text */
17
+ textPrimary: "#FFFFFF",
18
+ textSecondary: "#92C9A8",
19
+ textMuted: "rgba(255,255,255,0.5)",
20
+ textDimmed: "rgba(255,255,255,0.35)",
21
+ /** Semantic */
22
+ success: "#2BEE79",
23
+ warning: "#F59E0B",
24
+ error: "#F94040",
25
+ info: "#4290FF",
26
+ /** Network / Layer */
27
+ network: {
28
+ bitcoin: "#F7931A",
29
+ rgb: "#DD352E",
30
+ arkade: "#7C3AED",
31
+ spark: "#FF6D00",
32
+ lightning: "#F6C343"
33
+ },
34
+ /** Transaction direction */
35
+ tx: {
36
+ sent: "#F94040",
37
+ receive: "#2BEE79",
38
+ swap: "#4290FF"
39
+ }
40
+ };
41
+
42
+ // src/tokens/typography.ts
43
+ var fontFamily = {
44
+ display: "'Geist Sans', system-ui, -apple-system, sans-serif",
45
+ mono: "'Geist Mono', monospace"
46
+ };
47
+ var typeScale = {
48
+ xxs: ["10px", "14px"],
49
+ tiny: ["11px", "16px"],
50
+ caption: ["13px", "18px"],
51
+ body: ["15px", "22px"],
52
+ subhead: ["17px", "24px"],
53
+ title: ["20px", "28px"],
54
+ headline: ["28px", "34px"],
55
+ display: ["36px", "40px"]
56
+ };
57
+
58
+ // src/tokens/radius.ts
59
+ var radius = {
60
+ sm: "8px",
61
+ md: "12px",
62
+ lg: "16px",
63
+ xl: "20px",
64
+ card: "20px",
65
+ panel: "22px",
66
+ pill: "24px",
67
+ nav: "14px",
68
+ full: "9999px"
69
+ };
70
+
71
+ // src/tokens/shadows.ts
72
+ var shadow = {
73
+ glow: "0 0 20px rgba(43, 238, 121, 0.15)",
74
+ glowStrong: "0 0 30px rgba(43, 238, 121, 0.3)",
75
+ glowSubtle: "0 0 15px rgba(43, 238, 121, 0.15)",
76
+ glowAccent: "0 4px 30px rgba(43, 238, 121, 0.25)"
77
+ };
78
+
79
+ // src/tailwind/index.ts
80
+ var preset = {
81
+ darkMode: ["class"],
82
+ theme: {
83
+ extend: {
84
+ colors: {
85
+ border: "hsl(var(--border))",
86
+ input: "hsl(var(--input))",
87
+ ring: "hsl(var(--ring))",
88
+ background: "hsl(var(--background))",
89
+ foreground: "hsl(var(--foreground))",
90
+ primary: {
91
+ DEFAULT: colors.primary,
92
+ foreground: colors.primaryFg,
93
+ dark: colors.primaryDark
94
+ },
95
+ secondary: {
96
+ DEFAULT: "hsl(var(--secondary))",
97
+ foreground: "hsl(var(--secondary-foreground))"
98
+ },
99
+ destructive: {
100
+ DEFAULT: "hsl(var(--destructive))",
101
+ foreground: "hsl(var(--destructive-foreground))"
102
+ },
103
+ muted: {
104
+ DEFAULT: "hsl(var(--muted))",
105
+ foreground: "hsl(var(--muted-foreground))"
106
+ },
107
+ accent: {
108
+ DEFAULT: "hsl(var(--accent))",
109
+ foreground: "hsl(var(--accent-foreground))"
110
+ },
111
+ popover: {
112
+ DEFAULT: "hsl(var(--popover))",
113
+ foreground: "hsl(var(--popover-foreground))"
114
+ },
115
+ card: {
116
+ DEFAULT: "hsl(var(--card))",
117
+ foreground: "hsl(var(--card-foreground))"
118
+ },
119
+ network: colors.network,
120
+ tx: colors.tx,
121
+ "background-light": colors.bgLight,
122
+ "background-dark": colors.bgDark,
123
+ "surface-dark": colors.surfaceDark,
124
+ "surface-light": colors.surfaceLight,
125
+ "surface-highlight": colors.surfaceHighlight,
126
+ "surface-border": colors.surfaceBorder,
127
+ "surface-darker": colors.surfaceDarker
128
+ },
129
+ fontFamily: {
130
+ display: fontFamily.display.split(", "),
131
+ mono: fontFamily.mono.split(", ")
132
+ },
133
+ fontSize: Object.fromEntries(
134
+ Object.entries(typeScale).map(([key, [size, lh]]) => [
135
+ key,
136
+ [size, { lineHeight: lh }]
137
+ ])
138
+ ),
139
+ borderRadius: {
140
+ lg: "var(--radius)",
141
+ md: "calc(var(--radius) - 2px)",
142
+ sm: "calc(var(--radius) - 4px)",
143
+ xl: "0.75rem",
144
+ "2xl": "1rem",
145
+ "3xl": "1.5rem",
146
+ card: radius.card,
147
+ panel: radius.panel,
148
+ pill: radius.pill,
149
+ nav: radius.nav
150
+ },
151
+ boxShadow: {
152
+ glow: shadow.glow,
153
+ "glow-strong": shadow.glowStrong,
154
+ "glow-subtle": shadow.glowSubtle
155
+ },
156
+ keyframes: {
157
+ "accordion-down": {
158
+ from: { height: "0" },
159
+ to: { height: "var(--radix-accordion-content-height)" }
160
+ },
161
+ "accordion-up": {
162
+ from: { height: "var(--radix-accordion-content-height)" },
163
+ to: { height: "0" }
164
+ },
165
+ "pulse-glow": {
166
+ "0%, 100%": { boxShadow: "0 0 20px rgba(43, 238, 121, 0.2)" },
167
+ "50%": { boxShadow: "0 0 30px rgba(43, 238, 121, 0.4)" }
168
+ },
169
+ "fade-in": {
170
+ from: { opacity: "0" },
171
+ to: { opacity: "1" }
172
+ },
173
+ "slide-up": {
174
+ from: { opacity: "0", transform: "translateY(10px)" },
175
+ to: { opacity: "1", transform: "translateY(0)" }
176
+ },
177
+ "slide-in-from-bottom": {
178
+ from: { opacity: "0", transform: "translateY(20px)" },
179
+ to: { opacity: "1", transform: "translateY(0)" }
180
+ },
181
+ shimmer: {
182
+ "0%": { backgroundPosition: "-200% 0" },
183
+ "100%": { backgroundPosition: "200% 0" }
184
+ },
185
+ "stagger-up": {
186
+ "0%": { opacity: "0", transform: "translateY(15px)" },
187
+ "100%": { opacity: "1", transform: "translateY(0)" }
188
+ },
189
+ "bounce-slight": {
190
+ "0%, 100%": { transform: "translateY(-5%)" },
191
+ "50%": { transform: "translateY(0)" }
192
+ }
193
+ },
194
+ animation: {
195
+ "accordion-down": "accordion-down 0.2s ease-out",
196
+ "accordion-up": "accordion-up 0.2s ease-out",
197
+ "pulse-glow": "pulse-glow 2s ease-in-out infinite",
198
+ "fade-in": "fade-in 0.3s ease-out",
199
+ "slide-up": "slide-up 0.3s ease-out",
200
+ "slide-in-from-bottom": "slide-in-from-bottom 0.4s ease-out",
201
+ "stagger-up": "stagger-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards",
202
+ shimmer: "shimmer 2s linear infinite",
203
+ "bounce-slight": "bounce-slight 2s infinite"
204
+ }
205
+ }
206
+ },
207
+ plugins: []
208
+ };
209
+ var tailwind_default = preset;
210
+ export {
211
+ tailwind_default as default
212
+ };
@@ -0,0 +1,132 @@
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/tokens/index.ts
21
+ var tokens_exports = {};
22
+ __export(tokens_exports, {
23
+ colors: () => colors,
24
+ fontFamily: () => fontFamily,
25
+ fontWeight: () => fontWeight,
26
+ radius: () => radius,
27
+ shadow: () => shadow,
28
+ transition: () => transition,
29
+ typeScale: () => typeScale
30
+ });
31
+ module.exports = __toCommonJS(tokens_exports);
32
+
33
+ // src/tokens/colors.ts
34
+ var colors = {
35
+ /** Brand */
36
+ primary: "#2BEE79",
37
+ primaryDark: "#1FA855",
38
+ primaryFg: "#102217",
39
+ /** Surfaces (dark theme — the default) */
40
+ bgDark: "#102217",
41
+ surfaceDark: "#162E21",
42
+ surfaceHighlight: "#243E30",
43
+ surfaceBorder: "#244A35",
44
+ surfaceDarker: "#0B1810",
45
+ /** Surfaces (light theme) */
46
+ bgLight: "#F6F8F7",
47
+ surfaceLight: "#FFFFFF",
48
+ /** Text */
49
+ textPrimary: "#FFFFFF",
50
+ textSecondary: "#92C9A8",
51
+ textMuted: "rgba(255,255,255,0.5)",
52
+ textDimmed: "rgba(255,255,255,0.35)",
53
+ /** Semantic */
54
+ success: "#2BEE79",
55
+ warning: "#F59E0B",
56
+ error: "#F94040",
57
+ info: "#4290FF",
58
+ /** Network / Layer */
59
+ network: {
60
+ bitcoin: "#F7931A",
61
+ rgb: "#DD352E",
62
+ arkade: "#7C3AED",
63
+ spark: "#FF6D00",
64
+ lightning: "#F6C343"
65
+ },
66
+ /** Transaction direction */
67
+ tx: {
68
+ sent: "#F94040",
69
+ receive: "#2BEE79",
70
+ swap: "#4290FF"
71
+ }
72
+ };
73
+
74
+ // src/tokens/typography.ts
75
+ var fontFamily = {
76
+ display: "'Geist Sans', system-ui, -apple-system, sans-serif",
77
+ mono: "'Geist Mono', monospace"
78
+ };
79
+ var typeScale = {
80
+ xxs: ["10px", "14px"],
81
+ tiny: ["11px", "16px"],
82
+ caption: ["13px", "18px"],
83
+ body: ["15px", "22px"],
84
+ subhead: ["17px", "24px"],
85
+ title: ["20px", "28px"],
86
+ headline: ["28px", "34px"],
87
+ display: ["36px", "40px"]
88
+ };
89
+ var fontWeight = {
90
+ normal: "400",
91
+ medium: "500",
92
+ semibold: "600",
93
+ bold: "700"
94
+ };
95
+
96
+ // src/tokens/radius.ts
97
+ var radius = {
98
+ sm: "8px",
99
+ md: "12px",
100
+ lg: "16px",
101
+ xl: "20px",
102
+ card: "20px",
103
+ panel: "22px",
104
+ pill: "24px",
105
+ nav: "14px",
106
+ full: "9999px"
107
+ };
108
+
109
+ // src/tokens/shadows.ts
110
+ var shadow = {
111
+ glow: "0 0 20px rgba(43, 238, 121, 0.15)",
112
+ glowStrong: "0 0 30px rgba(43, 238, 121, 0.3)",
113
+ glowSubtle: "0 0 15px rgba(43, 238, 121, 0.15)",
114
+ glowAccent: "0 4px 30px rgba(43, 238, 121, 0.25)"
115
+ };
116
+
117
+ // src/tokens/transitions.ts
118
+ var transition = {
119
+ fast: "150ms ease-out",
120
+ default: "200ms ease-out",
121
+ slow: "300ms ease-out"
122
+ };
123
+ // Annotate the CommonJS export names for ESM import in node:
124
+ 0 && (module.exports = {
125
+ colors,
126
+ fontFamily,
127
+ fontWeight,
128
+ radius,
129
+ shadow,
130
+ transition,
131
+ typeScale
132
+ });
@@ -0,0 +1,107 @@
1
+ /**
2
+ * KaleidoSwap Color Tokens
3
+ *
4
+ * Single source of truth for all color constants across web and native.
5
+ */
6
+ declare const colors: {
7
+ /** Brand */
8
+ readonly primary: "#2BEE79";
9
+ readonly primaryDark: "#1FA855";
10
+ readonly primaryFg: "#102217";
11
+ /** Surfaces (dark theme — the default) */
12
+ readonly bgDark: "#102217";
13
+ readonly surfaceDark: "#162E21";
14
+ readonly surfaceHighlight: "#243E30";
15
+ readonly surfaceBorder: "#244A35";
16
+ readonly surfaceDarker: "#0B1810";
17
+ /** Surfaces (light theme) */
18
+ readonly bgLight: "#F6F8F7";
19
+ readonly surfaceLight: "#FFFFFF";
20
+ /** Text */
21
+ readonly textPrimary: "#FFFFFF";
22
+ readonly textSecondary: "#92C9A8";
23
+ readonly textMuted: "rgba(255,255,255,0.5)";
24
+ readonly textDimmed: "rgba(255,255,255,0.35)";
25
+ /** Semantic */
26
+ readonly success: "#2BEE79";
27
+ readonly warning: "#F59E0B";
28
+ readonly error: "#F94040";
29
+ readonly info: "#4290FF";
30
+ /** Network / Layer */
31
+ readonly network: {
32
+ readonly bitcoin: "#F7931A";
33
+ readonly rgb: "#DD352E";
34
+ readonly arkade: "#7C3AED";
35
+ readonly spark: "#FF6D00";
36
+ readonly lightning: "#F6C343";
37
+ };
38
+ /** Transaction direction */
39
+ readonly tx: {
40
+ readonly sent: "#F94040";
41
+ readonly receive: "#2BEE79";
42
+ readonly swap: "#4290FF";
43
+ };
44
+ };
45
+
46
+ /**
47
+ * KaleidoSwap Typography Tokens
48
+ */
49
+ declare const fontFamily: {
50
+ readonly display: "'Geist Sans', system-ui, -apple-system, sans-serif";
51
+ readonly mono: "'Geist Mono', monospace";
52
+ };
53
+ /**
54
+ * Type scale — [fontSize, lineHeight]
55
+ */
56
+ declare const typeScale: {
57
+ readonly xxs: readonly ["10px", "14px"];
58
+ readonly tiny: readonly ["11px", "16px"];
59
+ readonly caption: readonly ["13px", "18px"];
60
+ readonly body: readonly ["15px", "22px"];
61
+ readonly subhead: readonly ["17px", "24px"];
62
+ readonly title: readonly ["20px", "28px"];
63
+ readonly headline: readonly ["28px", "34px"];
64
+ readonly display: readonly ["36px", "40px"];
65
+ };
66
+ declare const fontWeight: {
67
+ readonly normal: "400";
68
+ readonly medium: "500";
69
+ readonly semibold: "600";
70
+ readonly bold: "700";
71
+ };
72
+
73
+ /**
74
+ * KaleidoSwap Border Radius Tokens
75
+ */
76
+ declare const radius: {
77
+ readonly sm: "8px";
78
+ readonly md: "12px";
79
+ readonly lg: "16px";
80
+ readonly xl: "20px";
81
+ readonly card: "20px";
82
+ readonly panel: "22px";
83
+ readonly pill: "24px";
84
+ readonly nav: "14px";
85
+ readonly full: "9999px";
86
+ };
87
+
88
+ /**
89
+ * KaleidoSwap Shadow Tokens
90
+ */
91
+ declare const shadow: {
92
+ readonly glow: "0 0 20px rgba(43, 238, 121, 0.15)";
93
+ readonly glowStrong: "0 0 30px rgba(43, 238, 121, 0.3)";
94
+ readonly glowSubtle: "0 0 15px rgba(43, 238, 121, 0.15)";
95
+ readonly glowAccent: "0 4px 30px rgba(43, 238, 121, 0.25)";
96
+ };
97
+
98
+ /**
99
+ * KaleidoSwap Transition Tokens
100
+ */
101
+ declare const transition: {
102
+ readonly fast: "150ms ease-out";
103
+ readonly default: "200ms ease-out";
104
+ readonly slow: "300ms ease-out";
105
+ };
106
+
107
+ export { colors, fontFamily, fontWeight, radius, shadow, transition, typeScale };
@@ -0,0 +1,107 @@
1
+ /**
2
+ * KaleidoSwap Color Tokens
3
+ *
4
+ * Single source of truth for all color constants across web and native.
5
+ */
6
+ declare const colors: {
7
+ /** Brand */
8
+ readonly primary: "#2BEE79";
9
+ readonly primaryDark: "#1FA855";
10
+ readonly primaryFg: "#102217";
11
+ /** Surfaces (dark theme — the default) */
12
+ readonly bgDark: "#102217";
13
+ readonly surfaceDark: "#162E21";
14
+ readonly surfaceHighlight: "#243E30";
15
+ readonly surfaceBorder: "#244A35";
16
+ readonly surfaceDarker: "#0B1810";
17
+ /** Surfaces (light theme) */
18
+ readonly bgLight: "#F6F8F7";
19
+ readonly surfaceLight: "#FFFFFF";
20
+ /** Text */
21
+ readonly textPrimary: "#FFFFFF";
22
+ readonly textSecondary: "#92C9A8";
23
+ readonly textMuted: "rgba(255,255,255,0.5)";
24
+ readonly textDimmed: "rgba(255,255,255,0.35)";
25
+ /** Semantic */
26
+ readonly success: "#2BEE79";
27
+ readonly warning: "#F59E0B";
28
+ readonly error: "#F94040";
29
+ readonly info: "#4290FF";
30
+ /** Network / Layer */
31
+ readonly network: {
32
+ readonly bitcoin: "#F7931A";
33
+ readonly rgb: "#DD352E";
34
+ readonly arkade: "#7C3AED";
35
+ readonly spark: "#FF6D00";
36
+ readonly lightning: "#F6C343";
37
+ };
38
+ /** Transaction direction */
39
+ readonly tx: {
40
+ readonly sent: "#F94040";
41
+ readonly receive: "#2BEE79";
42
+ readonly swap: "#4290FF";
43
+ };
44
+ };
45
+
46
+ /**
47
+ * KaleidoSwap Typography Tokens
48
+ */
49
+ declare const fontFamily: {
50
+ readonly display: "'Geist Sans', system-ui, -apple-system, sans-serif";
51
+ readonly mono: "'Geist Mono', monospace";
52
+ };
53
+ /**
54
+ * Type scale — [fontSize, lineHeight]
55
+ */
56
+ declare const typeScale: {
57
+ readonly xxs: readonly ["10px", "14px"];
58
+ readonly tiny: readonly ["11px", "16px"];
59
+ readonly caption: readonly ["13px", "18px"];
60
+ readonly body: readonly ["15px", "22px"];
61
+ readonly subhead: readonly ["17px", "24px"];
62
+ readonly title: readonly ["20px", "28px"];
63
+ readonly headline: readonly ["28px", "34px"];
64
+ readonly display: readonly ["36px", "40px"];
65
+ };
66
+ declare const fontWeight: {
67
+ readonly normal: "400";
68
+ readonly medium: "500";
69
+ readonly semibold: "600";
70
+ readonly bold: "700";
71
+ };
72
+
73
+ /**
74
+ * KaleidoSwap Border Radius Tokens
75
+ */
76
+ declare const radius: {
77
+ readonly sm: "8px";
78
+ readonly md: "12px";
79
+ readonly lg: "16px";
80
+ readonly xl: "20px";
81
+ readonly card: "20px";
82
+ readonly panel: "22px";
83
+ readonly pill: "24px";
84
+ readonly nav: "14px";
85
+ readonly full: "9999px";
86
+ };
87
+
88
+ /**
89
+ * KaleidoSwap Shadow Tokens
90
+ */
91
+ declare const shadow: {
92
+ readonly glow: "0 0 20px rgba(43, 238, 121, 0.15)";
93
+ readonly glowStrong: "0 0 30px rgba(43, 238, 121, 0.3)";
94
+ readonly glowSubtle: "0 0 15px rgba(43, 238, 121, 0.15)";
95
+ readonly glowAccent: "0 4px 30px rgba(43, 238, 121, 0.25)";
96
+ };
97
+
98
+ /**
99
+ * KaleidoSwap Transition Tokens
100
+ */
101
+ declare const transition: {
102
+ readonly fast: "150ms ease-out";
103
+ readonly default: "200ms ease-out";
104
+ readonly slow: "300ms ease-out";
105
+ };
106
+
107
+ export { colors, fontFamily, fontWeight, radius, shadow, transition, typeScale };
@@ -0,0 +1,99 @@
1
+ // src/tokens/colors.ts
2
+ var colors = {
3
+ /** Brand */
4
+ primary: "#2BEE79",
5
+ primaryDark: "#1FA855",
6
+ primaryFg: "#102217",
7
+ /** Surfaces (dark theme — the default) */
8
+ bgDark: "#102217",
9
+ surfaceDark: "#162E21",
10
+ surfaceHighlight: "#243E30",
11
+ surfaceBorder: "#244A35",
12
+ surfaceDarker: "#0B1810",
13
+ /** Surfaces (light theme) */
14
+ bgLight: "#F6F8F7",
15
+ surfaceLight: "#FFFFFF",
16
+ /** Text */
17
+ textPrimary: "#FFFFFF",
18
+ textSecondary: "#92C9A8",
19
+ textMuted: "rgba(255,255,255,0.5)",
20
+ textDimmed: "rgba(255,255,255,0.35)",
21
+ /** Semantic */
22
+ success: "#2BEE79",
23
+ warning: "#F59E0B",
24
+ error: "#F94040",
25
+ info: "#4290FF",
26
+ /** Network / Layer */
27
+ network: {
28
+ bitcoin: "#F7931A",
29
+ rgb: "#DD352E",
30
+ arkade: "#7C3AED",
31
+ spark: "#FF6D00",
32
+ lightning: "#F6C343"
33
+ },
34
+ /** Transaction direction */
35
+ tx: {
36
+ sent: "#F94040",
37
+ receive: "#2BEE79",
38
+ swap: "#4290FF"
39
+ }
40
+ };
41
+
42
+ // src/tokens/typography.ts
43
+ var fontFamily = {
44
+ display: "'Geist Sans', system-ui, -apple-system, sans-serif",
45
+ mono: "'Geist Mono', monospace"
46
+ };
47
+ var typeScale = {
48
+ xxs: ["10px", "14px"],
49
+ tiny: ["11px", "16px"],
50
+ caption: ["13px", "18px"],
51
+ body: ["15px", "22px"],
52
+ subhead: ["17px", "24px"],
53
+ title: ["20px", "28px"],
54
+ headline: ["28px", "34px"],
55
+ display: ["36px", "40px"]
56
+ };
57
+ var fontWeight = {
58
+ normal: "400",
59
+ medium: "500",
60
+ semibold: "600",
61
+ bold: "700"
62
+ };
63
+
64
+ // src/tokens/radius.ts
65
+ var radius = {
66
+ sm: "8px",
67
+ md: "12px",
68
+ lg: "16px",
69
+ xl: "20px",
70
+ card: "20px",
71
+ panel: "22px",
72
+ pill: "24px",
73
+ nav: "14px",
74
+ full: "9999px"
75
+ };
76
+
77
+ // src/tokens/shadows.ts
78
+ var shadow = {
79
+ glow: "0 0 20px rgba(43, 238, 121, 0.15)",
80
+ glowStrong: "0 0 30px rgba(43, 238, 121, 0.3)",
81
+ glowSubtle: "0 0 15px rgba(43, 238, 121, 0.15)",
82
+ glowAccent: "0 4px 30px rgba(43, 238, 121, 0.25)"
83
+ };
84
+
85
+ // src/tokens/transitions.ts
86
+ var transition = {
87
+ fast: "150ms ease-out",
88
+ default: "200ms ease-out",
89
+ slow: "300ms ease-out"
90
+ };
91
+ export {
92
+ colors,
93
+ fontFamily,
94
+ fontWeight,
95
+ radius,
96
+ shadow,
97
+ transition,
98
+ typeScale
99
+ };