@gv-tech/design-tokens 2.20.0 → 2.21.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -1,230 +1,257 @@
1
- const r = {
2
- brand: {
3
- blue: "hsl(225 73% 57%)",
4
- // Royal Blue (Intellect)
5
- green: "hsl(151 66% 27%)",
6
- // #177245 (Stability)
7
- floralWhite: "hsl(40 100% 97%)"
8
- // Light Neutral / Floral White
9
- },
10
- neutral: {
11
- white: "hsl(0 0% 100%)",
12
- black: "hsl(0 0% 0%)",
13
- // Pure Black
14
- gray50: "hsl(0 0% 96%)",
15
- // White Smoke
16
- gray100: "hsl(0 0% 92%)",
17
- // Gainsboro
18
- gray200: "hsl(0 0% 89%)",
19
- // Light Gray
20
- gray300: "hsl(0 0% 88%)",
21
- // French Gray
22
- gray400: "hsl(0 0% 70%)",
23
- // Silver
24
- gray500: "hsl(215 16% 47%)",
25
- // Steel Blue
26
- gray600: "hsl(222 47% 11%)",
27
- // Oxford Blue
28
- gray700: "hsl(0 0% 18%)",
29
- // Raisin Black
30
- gray800: "hsl(0 0% 15%)",
31
- // Jet
32
- gray900: "hsl(0 0% 14%)",
33
- // Eerie Black
34
- gray950: "hsl(0 0% 11%)",
35
- // Night (alt)
36
- gray975: "hsl(0 0% 9%)",
37
- // Night
38
- gray990: "hsl(0 0% 6%)"
39
- // Black (almost)
40
- },
41
- semantic: {
42
- success: "hsl(93 28% 54%)",
43
- // Asparagus / Pistachio
44
- successDark: "hsl(96 44% 61%)",
45
- destructive: "hsl(0 84.2% 60.2%)",
46
- // Vivid Red
47
- destructiveDark: "hsl(0 62.8% 30.6%)"
48
- // Blood Red
49
- }
50
- }, e = {
51
- light: {
52
- background: r.neutral.gray50,
53
- foreground: r.neutral.gray600,
54
- card: r.neutral.white,
55
- cardForeground: r.neutral.gray600,
56
- popover: r.neutral.white,
57
- popoverForeground: r.neutral.gray600,
58
- primary: r.brand.blue,
59
- primaryForeground: r.neutral.white,
60
- secondary: r.semantic.success,
61
- secondaryForeground: r.neutral.white,
62
- muted: r.neutral.gray100,
63
- mutedForeground: r.neutral.gray500,
64
- accent: r.neutral.gray300,
65
- accentForeground: r.neutral.gray600,
66
- destructive: r.semantic.destructive,
67
- destructiveForeground: r.neutral.white,
68
- border: r.neutral.gray200,
69
- input: r.neutral.gray200,
70
- ring: r.neutral.gray600,
71
- radius: "0.5rem"
72
- },
73
- dark: {
74
- background: r.neutral.gray975,
75
- foreground: r.neutral.white,
76
- card: r.neutral.gray900,
77
- cardForeground: r.neutral.white,
78
- popover: r.neutral.gray950,
79
- popoverForeground: r.neutral.white,
80
- primary: "hsl(227 96% 71%)",
81
- // Keeping as specific HSL to match original
82
- primaryForeground: r.neutral.gray975,
83
- secondary: r.semantic.successDark,
84
- secondaryForeground: r.neutral.gray975,
85
- muted: r.neutral.gray990,
86
- mutedForeground: r.neutral.gray400,
87
- accent: r.neutral.gray800,
88
- accentForeground: r.neutral.white,
89
- destructive: r.semantic.destructiveDark,
90
- destructiveForeground: r.neutral.white,
91
- border: r.neutral.gray700,
92
- input: r.neutral.gray700,
93
- ring: "hsl(0 0% 90%)",
94
- // Platinum
95
- radius: "0.5rem"
96
- }
97
- }, a = {
98
- px: "1px",
99
- 0: "0",
100
- 0.5: "0.125rem",
101
- // 2px
102
- 1: "0.25rem",
103
- // 4px
104
- 1.5: "0.375rem",
105
- // 6px
106
- 2: "0.5rem",
107
- // 8px
108
- 2.5: "0.625rem",
109
- // 10px
110
- 3: "0.75rem",
111
- // 12px
112
- 3.5: "0.875rem",
113
- // 14px
114
- 4: "1rem",
115
- // 16px
116
- 5: "1.25rem",
117
- // 20px
118
- 6: "1.5rem",
119
- // 24px
120
- 7: "1.75rem",
121
- // 28px
122
- 8: "2rem",
123
- // 32px
124
- 9: "2.25rem",
125
- // 36px
126
- 10: "2.5rem",
127
- // 40px
128
- 12: "3rem",
129
- // 48px
130
- 14: "3.5rem",
131
- // 56px
132
- 16: "4rem",
133
- // 64px
134
- 20: "5rem",
135
- // 80px
136
- 24: "6rem",
137
- // 96px
138
- 32: "8rem",
139
- // 128px
140
- 40: "10rem",
141
- // 160px
142
- 48: "12rem",
143
- // 192px
144
- 56: "14rem",
145
- // 224px
146
- 64: "16rem"
147
- // 256px
148
- }, n = {
149
- none: "0",
150
- sm: "calc(var(--radius) - 4px)",
151
- md: "calc(var(--radius) - 2px)",
152
- lg: "var(--radius)",
153
- xl: "calc(var(--radius) + 4px)",
154
- "2xl": "calc(var(--radius) + 8px)",
155
- full: "9999px"
1
+ //#region src/palette.ts
2
+ var e = {
3
+ brand: {
4
+ blue: "hsl(225 73% 57%)",
5
+ green: "hsl(151 66% 27%)",
6
+ floralWhite: "hsl(40 100% 97%)"
7
+ },
8
+ neutral: {
9
+ white: "hsl(0 0% 100%)",
10
+ black: "hsl(0 0% 0%)",
11
+ gray50: "hsl(0 0% 96%)",
12
+ gray100: "hsl(0 0% 92%)",
13
+ gray200: "hsl(0 0% 89%)",
14
+ gray300: "hsl(0 0% 88%)",
15
+ gray400: "hsl(0 0% 70%)",
16
+ gray500: "hsl(215 16% 47%)",
17
+ gray600: "hsl(222 47% 11%)",
18
+ gray700: "hsl(0 0% 18%)",
19
+ gray800: "hsl(0 0% 15%)",
20
+ gray900: "hsl(0 0% 14%)",
21
+ gray950: "hsl(0 0% 11%)",
22
+ gray975: "hsl(0 0% 9%)",
23
+ gray990: "hsl(0 0% 6%)"
24
+ },
25
+ semantic: {
26
+ success: "hsl(93 28% 54%)",
27
+ successDark: "hsl(96 44% 61%)",
28
+ destructive: "hsl(0 84.2% 60.2%)",
29
+ destructiveDark: "hsl(0 62.8% 30.6%)"
30
+ }
156
31
  }, t = {
157
- none: 0,
158
- sm: 4,
159
- // 8 - 4
160
- md: 6,
161
- // 8 - 2
162
- lg: 8,
163
- // base
164
- xl: 12,
165
- // 8 + 4
166
- "2xl": 16,
167
- // 8 + 8
168
- full: 9999
169
- }, l = {
170
- fontFamily: {
171
- sans: 'Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif',
172
- mono: 'ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace'
173
- },
174
- fontSize: {
175
- xs: "0.75rem",
176
- // 12px
177
- sm: "0.875rem",
178
- // 14px
179
- base: "1rem",
180
- // 16px
181
- lg: "1.125rem",
182
- // 18px
183
- xl: "1.25rem",
184
- // 20px
185
- "2xl": "1.5rem",
186
- // 24px
187
- "3xl": "1.875rem",
188
- // 30px
189
- "4xl": "2.25rem",
190
- // 36px
191
- "5xl": "3rem"
192
- // 48px
193
- },
194
- fontWeight: {
195
- normal: "400",
196
- medium: "500",
197
- semibold: "600",
198
- bold: "700"
199
- },
200
- lineHeight: {
201
- none: "1",
202
- tight: "1.25",
203
- snug: "1.375",
204
- normal: "1.5",
205
- relaxed: "1.625",
206
- loose: "2"
207
- }
208
- }, s = {
209
- none: "none",
210
- sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
211
- default: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
212
- md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
213
- lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
214
- xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
215
- "2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
216
- inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)"
32
+ light: {
33
+ background: e.neutral.gray50,
34
+ foreground: e.neutral.gray600,
35
+ card: e.neutral.white,
36
+ cardForeground: e.neutral.gray600,
37
+ popover: e.neutral.white,
38
+ popoverForeground: e.neutral.gray600,
39
+ primary: e.brand.blue,
40
+ primaryForeground: e.neutral.white,
41
+ secondary: e.semantic.success,
42
+ secondaryForeground: e.neutral.white,
43
+ muted: e.neutral.gray100,
44
+ mutedForeground: e.neutral.gray500,
45
+ accent: e.neutral.gray300,
46
+ accentForeground: e.neutral.gray600,
47
+ destructive: e.semantic.destructive,
48
+ destructiveForeground: e.neutral.white,
49
+ border: e.neutral.gray200,
50
+ input: e.neutral.gray200,
51
+ ring: e.neutral.gray600,
52
+ radius: "0.5rem"
53
+ },
54
+ dark: {
55
+ background: e.neutral.gray975,
56
+ foreground: e.neutral.white,
57
+ card: e.neutral.gray900,
58
+ cardForeground: e.neutral.white,
59
+ popover: e.neutral.gray950,
60
+ popoverForeground: e.neutral.white,
61
+ primary: "hsl(227 96% 71%)",
62
+ primaryForeground: e.neutral.gray975,
63
+ secondary: e.semantic.successDark,
64
+ secondaryForeground: e.neutral.gray975,
65
+ muted: e.neutral.gray990,
66
+ mutedForeground: e.neutral.gray400,
67
+ accent: e.neutral.gray800,
68
+ accentForeground: e.neutral.white,
69
+ destructive: e.semantic.destructiveDark,
70
+ destructiveForeground: e.neutral.white,
71
+ border: e.neutral.gray700,
72
+ input: e.neutral.gray700,
73
+ ring: "hsl(0 0% 90%)",
74
+ radius: "0.5rem"
75
+ }
76
+ }, n = {
77
+ px: "1px",
78
+ 0: "0",
79
+ .5: "0.125rem",
80
+ 1: "0.25rem",
81
+ 1.5: "0.375rem",
82
+ 2: "0.5rem",
83
+ 2.5: "0.625rem",
84
+ 3: "0.75rem",
85
+ 3.5: "0.875rem",
86
+ 4: "1rem",
87
+ 5: "1.25rem",
88
+ 6: "1.5rem",
89
+ 7: "1.75rem",
90
+ 8: "2rem",
91
+ 9: "2.25rem",
92
+ 10: "2.5rem",
93
+ 12: "3rem",
94
+ 14: "3.5rem",
95
+ 16: "4rem",
96
+ 20: "5rem",
97
+ 24: "6rem",
98
+ 32: "8rem",
99
+ 40: "10rem",
100
+ 48: "12rem",
101
+ 56: "14rem",
102
+ 64: "16rem"
103
+ }, r = {
104
+ none: "0",
105
+ sm: "calc(var(--radius) - 4px)",
106
+ md: "calc(var(--radius) - 2px)",
107
+ lg: "var(--radius)",
108
+ xl: "calc(var(--radius) + 4px)",
109
+ "2xl": "calc(var(--radius) + 8px)",
110
+ full: "9999px"
111
+ }, i = {
112
+ none: 0,
113
+ sm: 4,
114
+ md: 6,
115
+ lg: 8,
116
+ xl: 12,
117
+ "2xl": 16,
118
+ full: 9999
119
+ }, a = {
120
+ fontFamily: {
121
+ sans: "Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
122
+ mono: "ui-monospace, SFMono-Regular, \"SF Mono\", Menlo, Consolas, \"Liberation Mono\", monospace"
123
+ },
124
+ fontSize: {
125
+ xs: "0.75rem",
126
+ sm: "0.875rem",
127
+ base: "1rem",
128
+ lg: "1.125rem",
129
+ xl: "1.25rem",
130
+ "2xl": "1.5rem",
131
+ "3xl": "1.875rem",
132
+ "4xl": "2.25rem",
133
+ "5xl": "3rem"
134
+ },
135
+ fontWeight: {
136
+ normal: "400",
137
+ medium: "500",
138
+ semibold: "600",
139
+ bold: "700"
140
+ },
141
+ lineHeight: {
142
+ none: "1",
143
+ tight: "1.25",
144
+ snug: "1.375",
145
+ normal: "1.5",
146
+ relaxed: "1.625",
147
+ loose: "2"
148
+ }
217
149
  }, o = {
218
- palette: r,
219
- theme: e
220
- };
221
- export {
222
- r as palette,
223
- n as radii,
224
- t as radiiNumeric,
225
- s as shadows,
226
- a as spacing,
227
- e as theme,
228
- o as tokens,
229
- l as typography
150
+ none: "none",
151
+ sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
152
+ default: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
153
+ md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
154
+ lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
155
+ xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
156
+ "2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
157
+ inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)"
158
+ }, s = { theme: { extend: {
159
+ colors: {
160
+ background: "hsl(var(--background) / <alpha-value>)",
161
+ foreground: "hsl(var(--foreground) / <alpha-value>)",
162
+ card: {
163
+ DEFAULT: "hsl(var(--card) / <alpha-value>)",
164
+ foreground: "hsl(var(--card-foreground) / <alpha-value>)"
165
+ },
166
+ popover: {
167
+ DEFAULT: "hsl(var(--popover) / <alpha-value>)",
168
+ foreground: "hsl(var(--popover-foreground) / <alpha-value>)"
169
+ },
170
+ primary: {
171
+ DEFAULT: "hsl(var(--primary) / <alpha-value>)",
172
+ foreground: "hsl(var(--primary-foreground) / <alpha-value>)"
173
+ },
174
+ secondary: {
175
+ DEFAULT: "hsl(var(--secondary) / <alpha-value>)",
176
+ foreground: "hsl(var(--secondary-foreground) / <alpha-value>)"
177
+ },
178
+ muted: {
179
+ DEFAULT: "hsl(var(--muted) / <alpha-value>)",
180
+ foreground: "hsl(var(--muted-foreground) / <alpha-value>)"
181
+ },
182
+ accent: {
183
+ DEFAULT: "hsl(var(--accent) / <alpha-value>)",
184
+ foreground: "hsl(var(--accent-foreground) / <alpha-value>)"
185
+ },
186
+ destructive: {
187
+ DEFAULT: "hsl(var(--destructive) / <alpha-value>)",
188
+ foreground: "hsl(var(--destructive-foreground) / <alpha-value>)"
189
+ },
190
+ border: "hsl(var(--border) / <alpha-value>)",
191
+ input: "hsl(var(--input) / <alpha-value>)",
192
+ ring: "hsl(var(--ring) / <alpha-value>)",
193
+ brand: {
194
+ blue: "hsl(var(--brand-blue) / <alpha-value>)",
195
+ green: "hsl(var(--brand-green) / <alpha-value>)",
196
+ "floral-white": "hsl(var(--brand-floral-white) / <alpha-value>)"
197
+ },
198
+ neutral: {
199
+ white: "hsl(var(--neutral-white) / <alpha-value>)",
200
+ black: "hsl(var(--neutral-black) / <alpha-value>)",
201
+ gray50: "hsl(var(--neutral-gray50) / <alpha-value>)",
202
+ gray100: "hsl(var(--neutral-gray100) / <alpha-value>)",
203
+ gray200: "hsl(var(--neutral-gray200) / <alpha-value>)",
204
+ gray300: "hsl(var(--neutral-gray300) / <alpha-value>)",
205
+ gray400: "hsl(var(--neutral-gray400) / <alpha-value>)",
206
+ gray500: "hsl(var(--neutral-gray500) / <alpha-value>)",
207
+ gray600: "hsl(var(--neutral-gray600) / <alpha-value>)",
208
+ gray700: "hsl(var(--neutral-gray700) / <alpha-value>)",
209
+ gray800: "hsl(var(--neutral-gray800) / <alpha-value>)",
210
+ gray900: "hsl(var(--neutral-gray900) / <alpha-value>)",
211
+ gray950: "hsl(var(--neutral-gray950) / <alpha-value>)",
212
+ gray975: "hsl(var(--neutral-gray975) / <alpha-value>)",
213
+ gray990: "hsl(var(--neutral-gray990) / <alpha-value>)"
214
+ },
215
+ semantic: {
216
+ success: "hsl(var(--semantic-success) / <alpha-value>)",
217
+ "success-dark": "hsl(var(--semantic-success-dark) / <alpha-value>)",
218
+ destructive: "hsl(var(--semantic-destructive) / <alpha-value>)",
219
+ "destructive-dark": "hsl(var(--semantic-destructive-dark) / <alpha-value>)"
220
+ }
221
+ },
222
+ borderRadius: {
223
+ lg: "var(--radius)",
224
+ md: "calc(var(--radius) - 2px)",
225
+ sm: "calc(var(--radius) - 4px)",
226
+ xl: "calc(var(--radius) + 4px)",
227
+ "2xl": "calc(var(--radius) + 8px)"
228
+ },
229
+ boxShadow: {
230
+ sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
231
+ DEFAULT: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
232
+ md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
233
+ lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
234
+ xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
235
+ "2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
236
+ inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)"
237
+ },
238
+ keyframes: {
239
+ "accordion-down": {
240
+ from: { height: "0" },
241
+ to: { height: "var(--radix-accordion-content-height)" }
242
+ },
243
+ "accordion-up": {
244
+ from: { height: "var(--radix-accordion-content-height)" },
245
+ to: { height: "0" }
246
+ }
247
+ },
248
+ animation: {
249
+ "accordion-down": "accordion-down 0.2s ease-out",
250
+ "accordion-up": "accordion-up 0.2s ease-out"
251
+ }
252
+ } } }, c = {
253
+ palette: e,
254
+ theme: t
230
255
  };
256
+ //#endregion
257
+ export { e as palette, s as preset, r as radii, i as radiiNumeric, o as shadows, n as spacing, t as theme, c as tokens, a as typography };
@@ -0,0 +1,32 @@
1
+ export declare const palette: {
2
+ readonly brand: {
3
+ readonly blue: "hsl(225 73% 57%)";
4
+ readonly green: "hsl(151 66% 27%)";
5
+ readonly floralWhite: "hsl(40 100% 97%)";
6
+ };
7
+ readonly neutral: {
8
+ readonly white: "hsl(0 0% 100%)";
9
+ readonly black: "hsl(0 0% 0%)";
10
+ readonly gray50: "hsl(0 0% 96%)";
11
+ readonly gray100: "hsl(0 0% 92%)";
12
+ readonly gray200: "hsl(0 0% 89%)";
13
+ readonly gray300: "hsl(0 0% 88%)";
14
+ readonly gray400: "hsl(0 0% 70%)";
15
+ readonly gray500: "hsl(215 16% 47%)";
16
+ readonly gray600: "hsl(222 47% 11%)";
17
+ readonly gray700: "hsl(0 0% 18%)";
18
+ readonly gray800: "hsl(0 0% 15%)";
19
+ readonly gray900: "hsl(0 0% 14%)";
20
+ readonly gray950: "hsl(0 0% 11%)";
21
+ readonly gray975: "hsl(0 0% 9%)";
22
+ readonly gray990: "hsl(0 0% 6%)";
23
+ };
24
+ readonly semantic: {
25
+ readonly success: "hsl(93 28% 54%)";
26
+ readonly successDark: "hsl(96 44% 61%)";
27
+ readonly destructive: "hsl(0 84.2% 60.2%)";
28
+ readonly destructiveDark: "hsl(0 62.8% 30.6%)";
29
+ };
30
+ };
31
+ export type PaletteTokens = typeof palette;
32
+ //# sourceMappingURL=palette.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"palette.d.ts","sourceRoot":"","sources":["../src/palette.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6BV,CAAC;AAEX,MAAM,MAAM,aAAa,GAAG,OAAO,OAAO,CAAC"}
@@ -0,0 +1,108 @@
1
+ export declare const preset: {
2
+ theme: {
3
+ extend: {
4
+ colors: {
5
+ background: string;
6
+ foreground: string;
7
+ card: {
8
+ DEFAULT: string;
9
+ foreground: string;
10
+ };
11
+ popover: {
12
+ DEFAULT: string;
13
+ foreground: string;
14
+ };
15
+ primary: {
16
+ DEFAULT: string;
17
+ foreground: string;
18
+ };
19
+ secondary: {
20
+ DEFAULT: string;
21
+ foreground: string;
22
+ };
23
+ muted: {
24
+ DEFAULT: string;
25
+ foreground: string;
26
+ };
27
+ accent: {
28
+ DEFAULT: string;
29
+ foreground: string;
30
+ };
31
+ destructive: {
32
+ DEFAULT: string;
33
+ foreground: string;
34
+ };
35
+ border: string;
36
+ input: string;
37
+ ring: string;
38
+ brand: {
39
+ blue: string;
40
+ green: string;
41
+ 'floral-white': string;
42
+ };
43
+ neutral: {
44
+ white: string;
45
+ black: string;
46
+ gray50: string;
47
+ gray100: string;
48
+ gray200: string;
49
+ gray300: string;
50
+ gray400: string;
51
+ gray500: string;
52
+ gray600: string;
53
+ gray700: string;
54
+ gray800: string;
55
+ gray900: string;
56
+ gray950: string;
57
+ gray975: string;
58
+ gray990: string;
59
+ };
60
+ semantic: {
61
+ success: string;
62
+ 'success-dark': string;
63
+ destructive: string;
64
+ 'destructive-dark': string;
65
+ };
66
+ };
67
+ borderRadius: {
68
+ lg: string;
69
+ md: string;
70
+ sm: string;
71
+ xl: string;
72
+ '2xl': string;
73
+ };
74
+ boxShadow: {
75
+ sm: string;
76
+ DEFAULT: string;
77
+ md: string;
78
+ lg: string;
79
+ xl: string;
80
+ '2xl': string;
81
+ inner: string;
82
+ };
83
+ keyframes: {
84
+ 'accordion-down': {
85
+ from: {
86
+ height: string;
87
+ };
88
+ to: {
89
+ height: string;
90
+ };
91
+ };
92
+ 'accordion-up': {
93
+ from: {
94
+ height: string;
95
+ };
96
+ to: {
97
+ height: string;
98
+ };
99
+ };
100
+ };
101
+ animation: {
102
+ 'accordion-down': string;
103
+ 'accordion-up': string;
104
+ };
105
+ };
106
+ };
107
+ };
108
+ //# sourceMappingURL=preset.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"preset.d.ts","sourceRoot":"","sources":["../src/preset.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoGlB,CAAC"}
@@ -0,0 +1,21 @@
1
+ export declare const radii: {
2
+ readonly none: "0";
3
+ readonly sm: "calc(var(--radius) - 4px)";
4
+ readonly md: "calc(var(--radius) - 2px)";
5
+ readonly lg: "var(--radius)";
6
+ readonly xl: "calc(var(--radius) + 4px)";
7
+ readonly '2xl': "calc(var(--radius) + 8px)";
8
+ readonly full: "9999px";
9
+ };
10
+ export declare const radiiNumeric: {
11
+ readonly none: 0;
12
+ readonly sm: 4;
13
+ readonly md: 6;
14
+ readonly lg: 8;
15
+ readonly xl: 12;
16
+ readonly '2xl': 16;
17
+ readonly full: 9999;
18
+ };
19
+ export type RadiiTokens = typeof radii;
20
+ export type RadiiNumericTokens = typeof radiiNumeric;
21
+ //# sourceMappingURL=radii.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"radii.d.ts","sourceRoot":"","sources":["../src/radii.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;CAQR,CAAC;AAIX,eAAO,MAAM,YAAY;;;;;;;;CAQf,CAAC;AAEX,MAAM,MAAM,WAAW,GAAG,OAAO,KAAK,CAAC;AACvC,MAAM,MAAM,kBAAkB,GAAG,OAAO,YAAY,CAAC"}
@@ -0,0 +1,12 @@
1
+ export declare const shadows: {
2
+ readonly none: "none";
3
+ readonly sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)";
4
+ readonly default: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)";
5
+ readonly md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
6
+ readonly lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
7
+ readonly xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)";
8
+ readonly '2xl': "0 25px 50px -12px rgb(0 0 0 / 0.25)";
9
+ readonly inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)";
10
+ };
11
+ export type ShadowTokens = typeof shadows;
12
+ //# sourceMappingURL=shadows.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"shadows.d.ts","sourceRoot":"","sources":["../src/shadows.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,OAAO;;;;;;;;;CASV,CAAC;AAEX,MAAM,MAAM,YAAY,GAAG,OAAO,OAAO,CAAC"}