@variousjs/create 3.0.0 → 3.0.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.
@@ -1,134 +0,0 @@
1
- /** @type {import('tailwindcss').Config} */
2
- module.exports = {
3
- darkMode: ["class"],
4
- content: [
5
- './src/**/*.{ts,tsx}',
6
- ],
7
- prefix: "",
8
- theme: {
9
- container: {
10
- center: true,
11
- padding: "2rem",
12
- screens: {
13
- "2xl": "1400px",
14
- },
15
- },
16
- fontSize: {
17
- xs: '12px',
18
- sm: '14px',
19
- base: '16px',
20
- lg: '18px',
21
- xl: '20px',
22
- '2xl': '24px',
23
- '3xl': '30px',
24
- '4xl': '36px',
25
- '5xl': '48px',
26
- '6xl': '60px',
27
- '7xl': '72px',
28
- },
29
- spacing: {
30
- px: '1px',
31
- 0: '0',
32
- 0.5: '2px',
33
- 1: '4px',
34
- 1.5: '6px',
35
- 2: '8px',
36
- 2.5: '10px',
37
- 3: '12px',
38
- 3.5: '14px',
39
- 4: '16px',
40
- 5: '20px',
41
- 6: '24px',
42
- 7: '28px',
43
- 8: '32px',
44
- 9: '36px',
45
- 10: '40px',
46
- 11: '44px',
47
- 12: '48px',
48
- 14: '56px',
49
- 16: '64px',
50
- 20: '80px',
51
- 24: '96px',
52
- 28: '112px',
53
- 32: '128px',
54
- 36: '144px',
55
- 40: '160px',
56
- 44: '176px',
57
- 48: '192px',
58
- 52: '208px',
59
- 56: '224px',
60
- 60: '240px',
61
- 64: '256px',
62
- 72: '288px',
63
- 80: '320px',
64
- 96: '384px',
65
- },
66
- extend: {
67
- lineHeight: {
68
- 3: '12px',
69
- 4: '16px',
70
- 5: '20px',
71
- 6: '24px',
72
- 7: '28px',
73
- 8: '32px',
74
- 9: '36px',
75
- 10: '40px',
76
- },
77
- colors: {
78
- border: "hsl(var(--border))",
79
- input: "hsl(var(--input))",
80
- ring: "hsl(var(--ring))",
81
- background: "hsl(var(--background))",
82
- foreground: "hsl(var(--foreground))",
83
- primary: {
84
- DEFAULT: "hsl(var(--primary))",
85
- foreground: "hsl(var(--primary-foreground))",
86
- },
87
- secondary: {
88
- DEFAULT: "hsl(var(--secondary))",
89
- foreground: "hsl(var(--secondary-foreground))",
90
- },
91
- destructive: {
92
- DEFAULT: "hsl(var(--destructive))",
93
- foreground: "hsl(var(--destructive-foreground))",
94
- },
95
- muted: {
96
- DEFAULT: "hsl(var(--muted))",
97
- foreground: "hsl(var(--muted-foreground))",
98
- },
99
- accent: {
100
- DEFAULT: "hsl(var(--accent))",
101
- foreground: "hsl(var(--accent-foreground))",
102
- },
103
- popover: {
104
- DEFAULT: "hsl(var(--popover))",
105
- foreground: "hsl(var(--popover-foreground))",
106
- },
107
- card: {
108
- DEFAULT: "hsl(var(--card))",
109
- foreground: "hsl(var(--card-foreground))",
110
- },
111
- },
112
- borderRadius: {
113
- lg: "var(--radius)",
114
- md: "calc(var(--radius) - 2px)",
115
- sm: "calc(var(--radius) - 4px)",
116
- },
117
- keyframes: {
118
- "accordion-down": {
119
- from: { height: "0" },
120
- to: { height: "var(--radix-accordion-content-height)" },
121
- },
122
- "accordion-up": {
123
- from: { height: "var(--radix-accordion-content-height)" },
124
- to: { height: "0" },
125
- },
126
- },
127
- animation: {
128
- "accordion-down": "accordion-down 0.2s ease-out",
129
- "accordion-up": "accordion-up 0.2s ease-out",
130
- },
131
- },
132
- },
133
- plugins: [require("tailwindcss-animate")],
134
- }