@unocss/preset-mini 0.55.1 → 0.55.3

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.
Files changed (56) hide show
  1. package/dist/colors.cjs +360 -6
  2. package/dist/{colors-dabdd21f.d.ts → colors.d.cts} +3 -2
  3. package/dist/colors.d.mts +354 -0
  4. package/dist/colors.d.ts +353 -2
  5. package/dist/colors.mjs +361 -1
  6. package/dist/index.cjs +12 -12
  7. package/dist/index.d.cts +69 -0
  8. package/dist/index.d.mts +69 -0
  9. package/dist/index.d.ts +6 -6
  10. package/dist/index.mjs +9 -10
  11. package/dist/rules.cjs +928 -48
  12. package/dist/rules.d.cts +133 -0
  13. package/dist/rules.d.mts +133 -0
  14. package/dist/rules.d.ts +1 -1
  15. package/dist/rules.mjs +891 -4
  16. package/dist/shared/preset-mini.0d957b3b.d.mts +721 -0
  17. package/dist/shared/preset-mini.0fac4963.mjs +320 -0
  18. package/dist/shared/preset-mini.2f8c3259.d.mts +67 -0
  19. package/dist/{types-d991ba46.d.ts → shared/preset-mini.32abac2c.d.cts} +1 -1
  20. package/dist/shared/preset-mini.32abac2c.d.mts +71 -0
  21. package/dist/shared/preset-mini.32abac2c.d.ts +71 -0
  22. package/dist/{default-1f25a0ae.d.ts → shared/preset-mini.3a79e471.d.ts} +1 -1
  23. package/dist/shared/preset-mini.5bfee53b.cjs +344 -0
  24. package/dist/shared/preset-mini.7b9de562.d.cts +67 -0
  25. package/dist/shared/{preset-mini.a21c5071.cjs → preset-mini.b4ad509c.cjs} +12 -8
  26. package/dist/shared/{preset-mini.6c1c8016.mjs → preset-mini.f1fe435e.mjs} +13 -9
  27. package/dist/shared/preset-mini.f67366b3.d.cts +721 -0
  28. package/dist/{utilities-d496540e.d.ts → shared/preset-mini.fa67009f.d.ts} +1 -1
  29. package/dist/theme.cjs +308 -34
  30. package/dist/theme.d.cts +264 -0
  31. package/dist/theme.d.mts +264 -0
  32. package/dist/theme.d.ts +5 -5
  33. package/dist/theme.mjs +284 -4
  34. package/dist/utils.cjs +81 -10
  35. package/dist/utils.d.cts +65 -0
  36. package/dist/utils.d.mts +65 -0
  37. package/dist/utils.d.ts +13 -31
  38. package/dist/utils.mjs +81 -3
  39. package/dist/variants.cjs +737 -33
  40. package/dist/variants.d.cts +46 -0
  41. package/dist/variants.d.mts +46 -0
  42. package/dist/variants.d.ts +4 -4
  43. package/dist/variants.mjs +714 -4
  44. package/package.json +3 -3
  45. package/dist/shared/preset-mini.0131b915.mjs +0 -704
  46. package/dist/shared/preset-mini.1c66bf79.mjs +0 -361
  47. package/dist/shared/preset-mini.74f9d55e.mjs +0 -80
  48. package/dist/shared/preset-mini.811eb23d.mjs +0 -681
  49. package/dist/shared/preset-mini.8dd73081.mjs +0 -452
  50. package/dist/shared/preset-mini.9d93761b.cjs +0 -729
  51. package/dist/shared/preset-mini.b8d9397e.cjs +0 -471
  52. package/dist/shared/preset-mini.ce5169f2.cjs +0 -730
  53. package/dist/shared/preset-mini.d778b487.cjs +0 -85
  54. package/dist/shared/preset-mini.de3bd9f7.mjs +0 -284
  55. package/dist/shared/preset-mini.e078d7da.cjs +0 -313
  56. package/dist/shared/preset-mini.f3fc54d2.cjs +0 -363
package/dist/theme.cjs CHANGED
@@ -1,41 +1,315 @@
1
1
  'use strict';
2
2
 
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- const colors = require('./shared/preset-mini.f3fc54d2.cjs');
6
- const _default = require('./shared/preset-mini.e078d7da.cjs');
7
- require('./shared/preset-mini.ce5169f2.cjs');
8
- require('./shared/preset-mini.a21c5071.cjs');
3
+ const colors = require('./colors.cjs');
4
+ const transform = require('./shared/preset-mini.5bfee53b.cjs');
5
+ require('./shared/preset-mini.b4ad509c.cjs');
9
6
  require('@unocss/core');
10
7
 
8
+ const fontFamily = {
9
+ sans: [
10
+ "ui-sans-serif",
11
+ "system-ui",
12
+ "-apple-system",
13
+ "BlinkMacSystemFont",
14
+ '"Segoe UI"',
15
+ "Roboto",
16
+ '"Helvetica Neue"',
17
+ "Arial",
18
+ '"Noto Sans"',
19
+ "sans-serif",
20
+ '"Apple Color Emoji"',
21
+ '"Segoe UI Emoji"',
22
+ '"Segoe UI Symbol"',
23
+ '"Noto Color Emoji"'
24
+ ].join(","),
25
+ serif: [
26
+ "ui-serif",
27
+ "Georgia",
28
+ "Cambria",
29
+ '"Times New Roman"',
30
+ "Times",
31
+ "serif"
32
+ ].join(","),
33
+ mono: [
34
+ "ui-monospace",
35
+ "SFMono-Regular",
36
+ "Menlo",
37
+ "Monaco",
38
+ "Consolas",
39
+ '"Liberation Mono"',
40
+ '"Courier New"',
41
+ "monospace"
42
+ ].join(",")
43
+ };
44
+ const fontSize = {
45
+ "xs": ["0.75rem", "1rem"],
46
+ "sm": ["0.875rem", "1.25rem"],
47
+ "base": ["1rem", "1.5rem"],
48
+ "lg": ["1.125rem", "1.75rem"],
49
+ "xl": ["1.25rem", "1.75rem"],
50
+ "2xl": ["1.5rem", "2rem"],
51
+ "3xl": ["1.875rem", "2.25rem"],
52
+ "4xl": ["2.25rem", "2.5rem"],
53
+ "5xl": ["3rem", "1"],
54
+ "6xl": ["3.75rem", "1"],
55
+ "7xl": ["4.5rem", "1"],
56
+ "8xl": ["6rem", "1"],
57
+ "9xl": ["8rem", "1"]
58
+ };
59
+ const textIndent = {
60
+ "DEFAULT": "1.5rem",
61
+ "xs": "0.5rem",
62
+ "sm": "1rem",
63
+ "md": "1.5rem",
64
+ "lg": "2rem",
65
+ "xl": "2.5rem",
66
+ "2xl": "3rem",
67
+ "3xl": "4rem"
68
+ };
69
+ const textStrokeWidth = {
70
+ DEFAULT: "1.5rem",
71
+ none: "0",
72
+ sm: "thin",
73
+ md: "medium",
74
+ lg: "thick"
75
+ };
76
+ const textShadow = {
77
+ DEFAULT: ["0 0 1px rgba(0,0,0,0.2)", "0 0 1px rgba(1,0,5,0.1)"],
78
+ none: "0 0 rgba(0,0,0,0)",
79
+ sm: "1px 1px 3px rgba(36,37,47,0.25)",
80
+ md: ["0 1px 2px rgba(30,29,39,0.19)", "1px 2px 4px rgba(54,64,147,0.18)"],
81
+ lg: ["3px 3px 6px rgba(0,0,0,0.26)", "0 0 5px rgba(15,3,86,0.22)"],
82
+ xl: ["1px 1px 3px rgba(0,0,0,0.29)", "2px 4px 7px rgba(73,64,125,0.35)"]
83
+ };
84
+ const lineHeight = {
85
+ none: "1",
86
+ tight: "1.25",
87
+ snug: "1.375",
88
+ normal: "1.5",
89
+ relaxed: "1.625",
90
+ loose: "2"
91
+ };
92
+ const letterSpacing = {
93
+ tighter: "-0.05em",
94
+ tight: "-0.025em",
95
+ normal: "0em",
96
+ wide: "0.025em",
97
+ wider: "0.05em",
98
+ widest: "0.1em"
99
+ };
100
+ const fontWeight = {
101
+ thin: "100",
102
+ extralight: "200",
103
+ light: "300",
104
+ normal: "400",
105
+ medium: "500",
106
+ semibold: "600",
107
+ bold: "700",
108
+ extrabold: "800",
109
+ black: "900"
110
+ // int[0, 900] -> int
111
+ };
112
+ const wordSpacing = letterSpacing;
113
+
114
+ const breakpoints = {
115
+ "sm": "640px",
116
+ "md": "768px",
117
+ "lg": "1024px",
118
+ "xl": "1280px",
119
+ "2xl": "1536px"
120
+ };
121
+ const verticalBreakpoints = { ...breakpoints };
122
+ const lineWidth = {
123
+ DEFAULT: "1px",
124
+ none: "0"
125
+ };
126
+ const spacing = {
127
+ "DEFAULT": "1rem",
128
+ "none": "0",
129
+ "xs": "0.75rem",
130
+ "sm": "0.875rem",
131
+ "lg": "1.125rem",
132
+ "xl": "1.25rem",
133
+ "2xl": "1.5rem",
134
+ "3xl": "1.875rem",
135
+ "4xl": "2.25rem",
136
+ "5xl": "3rem",
137
+ "6xl": "3.75rem",
138
+ "7xl": "4.5rem",
139
+ "8xl": "6rem",
140
+ "9xl": "8rem"
141
+ };
142
+ const duration = {
143
+ DEFAULT: "150ms",
144
+ none: "0s",
145
+ 75: "75ms",
146
+ 100: "100ms",
147
+ 150: "150ms",
148
+ 200: "200ms",
149
+ 300: "300ms",
150
+ 500: "500ms",
151
+ 700: "700ms",
152
+ 1e3: "1000ms"
153
+ };
154
+ const borderRadius = {
155
+ "DEFAULT": "0.25rem",
156
+ "none": "0",
157
+ "sm": "0.125rem",
158
+ "md": "0.375rem",
159
+ "lg": "0.5rem",
160
+ "xl": "0.75rem",
161
+ "2xl": "1rem",
162
+ "3xl": "1.5rem",
163
+ "full": "9999px"
164
+ };
165
+ const boxShadow = {
166
+ "DEFAULT": ["var(--un-shadow-inset) 0 1px 3px 0 rgba(0,0,0,0.1)", "var(--un-shadow-inset) 0 1px 2px -1px rgba(0,0,0,0.1)"],
167
+ "none": "0 0 rgba(0,0,0,0)",
168
+ "sm": "var(--un-shadow-inset) 0 1px 2px 0 rgba(0,0,0,0.05)",
169
+ "md": ["var(--un-shadow-inset) 0 4px 6px -1px rgba(0,0,0,0.1)", "var(--un-shadow-inset) 0 2px 4px -2px rgba(0,0,0,0.1)"],
170
+ "lg": ["var(--un-shadow-inset) 0 10px 15px -3px rgba(0,0,0,0.1)", "var(--un-shadow-inset) 0 4px 6px -4px rgba(0,0,0,0.1)"],
171
+ "xl": ["var(--un-shadow-inset) 0 20px 25px -5px rgba(0,0,0,0.1)", "var(--un-shadow-inset) 0 8px 10px -6px rgba(0,0,0,0.1)"],
172
+ "2xl": "var(--un-shadow-inset) 0 25px 50px -12px rgba(0,0,0,0.25)",
173
+ "inner": "inset 0 2px 4px 0 rgba(0,0,0,0.05)"
174
+ };
175
+ const easing = {
176
+ "DEFAULT": "cubic-bezier(0.4, 0, 0.2, 1)",
177
+ "linear": "linear",
178
+ "in": "cubic-bezier(0.4, 0, 1, 1)",
179
+ "out": "cubic-bezier(0, 0, 0.2, 1)",
180
+ "in-out": "cubic-bezier(0.4, 0, 0.2, 1)"
181
+ };
182
+ const ringWidth = {
183
+ DEFAULT: "1px",
184
+ none: "0"
185
+ };
186
+
187
+ const blur = {
188
+ "DEFAULT": "8px",
189
+ "0": "0",
190
+ "sm": "4px",
191
+ "md": "12px",
192
+ "lg": "16px",
193
+ "xl": "24px",
194
+ "2xl": "40px",
195
+ "3xl": "64px"
196
+ };
197
+ const dropShadow = {
198
+ "DEFAULT": ["0 1px 2px rgba(0,0,0,0.1)", "0 1px 1px rgba(0,0,0,0.06)"],
199
+ "sm": "0 1px 1px rgba(0,0,0,0.05)",
200
+ "md": ["0 4px 3px rgba(0,0,0,0.07)", "0 2px 2px rgba(0,0,0,0.06)"],
201
+ "lg": ["0 10px 8px rgba(0,0,0,0.04)", "0 4px 3px rgba(0,0,0,0.1)"],
202
+ "xl": ["0 20px 13px rgba(0,0,0,0.03)", "0 8px 5px rgba(0,0,0,0.08)"],
203
+ "2xl": "0 25px 25px rgba(0,0,0,0.15)",
204
+ "none": "0 0 rgba(0,0,0,0)"
205
+ };
206
+
207
+ const baseSize = {
208
+ "xs": "20rem",
209
+ "sm": "24rem",
210
+ "md": "28rem",
211
+ "lg": "32rem",
212
+ "xl": "36rem",
213
+ "2xl": "42rem",
214
+ "3xl": "48rem",
215
+ "4xl": "56rem",
216
+ "5xl": "64rem",
217
+ "6xl": "72rem",
218
+ "7xl": "80rem",
219
+ "prose": "65ch"
220
+ };
221
+ const width = {
222
+ auto: "auto",
223
+ ...baseSize,
224
+ screen: "100vw"
225
+ };
226
+ const maxWidth = {
227
+ none: "none",
228
+ ...baseSize,
229
+ screen: "100vw"
230
+ };
231
+ const height = {
232
+ auto: "auto",
233
+ ...baseSize,
234
+ screen: "100vh"
235
+ };
236
+ const maxHeight = {
237
+ none: "none",
238
+ ...baseSize,
239
+ screen: "100vh"
240
+ };
241
+ const containers = Object.fromEntries(Object.entries(baseSize).map(([k, v]) => [k, `(min-width: ${v})`]));
242
+
243
+ const preflightBase = {
244
+ ...transform.transformBase,
245
+ ...transform.boxShadowsBase,
246
+ ...transform.ringBase
247
+ };
11
248
 
249
+ const theme = {
250
+ width,
251
+ height,
252
+ maxWidth,
253
+ maxHeight,
254
+ minWidth: maxWidth,
255
+ minHeight: maxHeight,
256
+ inlineSize: width,
257
+ blockSize: height,
258
+ maxInlineSize: maxWidth,
259
+ maxBlockSize: maxHeight,
260
+ minInlineSize: maxWidth,
261
+ minBlockSize: maxHeight,
262
+ colors: colors.colors,
263
+ fontFamily,
264
+ fontSize,
265
+ fontWeight,
266
+ breakpoints,
267
+ verticalBreakpoints,
268
+ borderRadius,
269
+ lineHeight,
270
+ letterSpacing,
271
+ wordSpacing,
272
+ boxShadow,
273
+ textIndent,
274
+ textShadow,
275
+ textStrokeWidth,
276
+ blur,
277
+ dropShadow,
278
+ easing,
279
+ lineWidth,
280
+ spacing,
281
+ duration,
282
+ ringWidth,
283
+ preflightBase,
284
+ containers
285
+ };
12
286
 
13
287
  exports.colors = colors.colors;
14
- exports.baseSize = _default.baseSize;
15
- exports.blur = _default.blur;
16
- exports.borderRadius = _default.borderRadius;
17
- exports.boxShadow = _default.boxShadow;
18
- exports.breakpoints = _default.breakpoints;
19
- exports.containers = _default.containers;
20
- exports.dropShadow = _default.dropShadow;
21
- exports.duration = _default.duration;
22
- exports.easing = _default.easing;
23
- exports.fontFamily = _default.fontFamily;
24
- exports.fontSize = _default.fontSize;
25
- exports.fontWeight = _default.fontWeight;
26
- exports.height = _default.height;
27
- exports.letterSpacing = _default.letterSpacing;
28
- exports.lineHeight = _default.lineHeight;
29
- exports.lineWidth = _default.lineWidth;
30
- exports.maxHeight = _default.maxHeight;
31
- exports.maxWidth = _default.maxWidth;
32
- exports.preflightBase = _default.preflightBase;
33
- exports.ringWidth = _default.ringWidth;
34
- exports.spacing = _default.spacing;
35
- exports.textIndent = _default.textIndent;
36
- exports.textShadow = _default.textShadow;
37
- exports.textStrokeWidth = _default.textStrokeWidth;
38
- exports.theme = _default.theme;
39
- exports.verticalBreakpoints = _default.verticalBreakpoints;
40
- exports.width = _default.width;
41
- exports.wordSpacing = _default.wordSpacing;
288
+ exports.baseSize = baseSize;
289
+ exports.blur = blur;
290
+ exports.borderRadius = borderRadius;
291
+ exports.boxShadow = boxShadow;
292
+ exports.breakpoints = breakpoints;
293
+ exports.containers = containers;
294
+ exports.dropShadow = dropShadow;
295
+ exports.duration = duration;
296
+ exports.easing = easing;
297
+ exports.fontFamily = fontFamily;
298
+ exports.fontSize = fontSize;
299
+ exports.fontWeight = fontWeight;
300
+ exports.height = height;
301
+ exports.letterSpacing = letterSpacing;
302
+ exports.lineHeight = lineHeight;
303
+ exports.lineWidth = lineWidth;
304
+ exports.maxHeight = maxHeight;
305
+ exports.maxWidth = maxWidth;
306
+ exports.preflightBase = preflightBase;
307
+ exports.ringWidth = ringWidth;
308
+ exports.spacing = spacing;
309
+ exports.textIndent = textIndent;
310
+ exports.textShadow = textShadow;
311
+ exports.textStrokeWidth = textStrokeWidth;
312
+ exports.theme = theme;
313
+ exports.verticalBreakpoints = verticalBreakpoints;
314
+ exports.width = width;
315
+ exports.wordSpacing = wordSpacing;
@@ -0,0 +1,264 @@
1
+ export { colors } from './colors.cjs';
2
+ export { t as theme } from './shared/preset-mini.f67366b3.cjs';
3
+ import { T as Theme } from './shared/preset-mini.32abac2c.cjs';
4
+ export { C as Colors, a as ThemeAnimation } from './shared/preset-mini.32abac2c.cjs';
5
+ import '@unocss/core';
6
+
7
+ declare const blur: {
8
+ DEFAULT: string;
9
+ '0': string;
10
+ sm: string;
11
+ md: string;
12
+ lg: string;
13
+ xl: string;
14
+ '2xl': string;
15
+ '3xl': string;
16
+ };
17
+ declare const dropShadow: {
18
+ DEFAULT: string[];
19
+ sm: string;
20
+ md: string[];
21
+ lg: string[];
22
+ xl: string[];
23
+ '2xl': string;
24
+ none: string;
25
+ };
26
+
27
+ declare const fontFamily: {
28
+ sans: string;
29
+ serif: string;
30
+ mono: string;
31
+ };
32
+ declare const fontSize: Theme['fontSize'];
33
+ declare const textIndent: Theme['textIndent'];
34
+ declare const textStrokeWidth: Theme['textStrokeWidth'];
35
+ declare const textShadow: {
36
+ DEFAULT: string[];
37
+ none: string;
38
+ sm: string;
39
+ md: string[];
40
+ lg: string[];
41
+ xl: string[];
42
+ };
43
+ declare const lineHeight: {
44
+ none: string;
45
+ tight: string;
46
+ snug: string;
47
+ normal: string;
48
+ relaxed: string;
49
+ loose: string;
50
+ };
51
+ declare const letterSpacing: {
52
+ tighter: string;
53
+ tight: string;
54
+ normal: string;
55
+ wide: string;
56
+ wider: string;
57
+ widest: string;
58
+ };
59
+ declare const fontWeight: {
60
+ thin: string;
61
+ extralight: string;
62
+ light: string;
63
+ normal: string;
64
+ medium: string;
65
+ semibold: string;
66
+ bold: string;
67
+ extrabold: string;
68
+ black: string;
69
+ };
70
+ declare const wordSpacing: {
71
+ tighter: string;
72
+ tight: string;
73
+ normal: string;
74
+ wide: string;
75
+ wider: string;
76
+ widest: string;
77
+ };
78
+
79
+ declare const breakpoints: {
80
+ sm: string;
81
+ md: string;
82
+ lg: string;
83
+ xl: string;
84
+ '2xl': string;
85
+ };
86
+ declare const verticalBreakpoints: {
87
+ sm: string;
88
+ md: string;
89
+ lg: string;
90
+ xl: string;
91
+ '2xl': string;
92
+ };
93
+ declare const lineWidth: {
94
+ DEFAULT: string;
95
+ none: string;
96
+ };
97
+ declare const spacing: {
98
+ DEFAULT: string;
99
+ none: string;
100
+ xs: string;
101
+ sm: string;
102
+ lg: string;
103
+ xl: string;
104
+ '2xl': string;
105
+ '3xl': string;
106
+ '4xl': string;
107
+ '5xl': string;
108
+ '6xl': string;
109
+ '7xl': string;
110
+ '8xl': string;
111
+ '9xl': string;
112
+ };
113
+ declare const duration: {
114
+ DEFAULT: string;
115
+ none: string;
116
+ 75: string;
117
+ 100: string;
118
+ 150: string;
119
+ 200: string;
120
+ 300: string;
121
+ 500: string;
122
+ 700: string;
123
+ 1000: string;
124
+ };
125
+ declare const borderRadius: {
126
+ DEFAULT: string;
127
+ none: string;
128
+ sm: string;
129
+ md: string;
130
+ lg: string;
131
+ xl: string;
132
+ '2xl': string;
133
+ '3xl': string;
134
+ full: string;
135
+ };
136
+ declare const boxShadow: {
137
+ DEFAULT: string[];
138
+ none: string;
139
+ sm: string;
140
+ md: string[];
141
+ lg: string[];
142
+ xl: string[];
143
+ '2xl': string;
144
+ inner: string;
145
+ };
146
+ declare const easing: {
147
+ DEFAULT: string;
148
+ linear: string;
149
+ in: string;
150
+ out: string;
151
+ 'in-out': string;
152
+ };
153
+ declare const ringWidth: {
154
+ DEFAULT: string;
155
+ none: string;
156
+ };
157
+
158
+ declare const preflightBase: {
159
+ '--un-ring-inset': string;
160
+ '--un-ring-offset-width': string;
161
+ '--un-ring-offset-color': string;
162
+ '--un-ring-width': string;
163
+ '--un-ring-color': string;
164
+ '--un-shadow': string;
165
+ '--un-ring-offset-shadow': string;
166
+ '--un-ring-shadow': string;
167
+ '--un-shadow-inset': string;
168
+ '--un-rotate': number;
169
+ '--un-rotate-x': number;
170
+ '--un-rotate-y': number;
171
+ '--un-rotate-z': number;
172
+ '--un-scale-x': number;
173
+ '--un-scale-y': number;
174
+ '--un-scale-z': number;
175
+ '--un-skew-x': number;
176
+ '--un-skew-y': number;
177
+ '--un-translate-x': number;
178
+ '--un-translate-y': number;
179
+ '--un-translate-z': number;
180
+ };
181
+
182
+ declare const baseSize: {
183
+ xs: string;
184
+ sm: string;
185
+ md: string;
186
+ lg: string;
187
+ xl: string;
188
+ '2xl': string;
189
+ '3xl': string;
190
+ '4xl': string;
191
+ '5xl': string;
192
+ '6xl': string;
193
+ '7xl': string;
194
+ prose: string;
195
+ };
196
+ declare const width: {
197
+ screen: string;
198
+ xs: string;
199
+ sm: string;
200
+ md: string;
201
+ lg: string;
202
+ xl: string;
203
+ '2xl': string;
204
+ '3xl': string;
205
+ '4xl': string;
206
+ '5xl': string;
207
+ '6xl': string;
208
+ '7xl': string;
209
+ prose: string;
210
+ auto: string;
211
+ };
212
+ declare const maxWidth: {
213
+ screen: string;
214
+ xs: string;
215
+ sm: string;
216
+ md: string;
217
+ lg: string;
218
+ xl: string;
219
+ '2xl': string;
220
+ '3xl': string;
221
+ '4xl': string;
222
+ '5xl': string;
223
+ '6xl': string;
224
+ '7xl': string;
225
+ prose: string;
226
+ none: string;
227
+ };
228
+ declare const height: {
229
+ screen: string;
230
+ xs: string;
231
+ sm: string;
232
+ md: string;
233
+ lg: string;
234
+ xl: string;
235
+ '2xl': string;
236
+ '3xl': string;
237
+ '4xl': string;
238
+ '5xl': string;
239
+ '6xl': string;
240
+ '7xl': string;
241
+ prose: string;
242
+ auto: string;
243
+ };
244
+ declare const maxHeight: {
245
+ screen: string;
246
+ xs: string;
247
+ sm: string;
248
+ md: string;
249
+ lg: string;
250
+ xl: string;
251
+ '2xl': string;
252
+ '3xl': string;
253
+ '4xl': string;
254
+ '5xl': string;
255
+ '6xl': string;
256
+ '7xl': string;
257
+ prose: string;
258
+ none: string;
259
+ };
260
+ declare const containers: {
261
+ [k: string]: string;
262
+ };
263
+
264
+ export { Theme, baseSize, blur, borderRadius, boxShadow, breakpoints, containers, dropShadow, duration, easing, fontFamily, fontSize, fontWeight, height, letterSpacing, lineHeight, lineWidth, maxHeight, maxWidth, preflightBase, ringWidth, spacing, textIndent, textShadow, textStrokeWidth, verticalBreakpoints, width, wordSpacing };