-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
130 lines (129 loc) · 3.11 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
const colors = require('tailwindcss/colors')
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
purge: ['./public/**/*.html', './src/**/*.vue'],
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/aspect-ratio')],
theme: {
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans]
},
colors: {
gray: colors.trueGray
},
maxWidth: {
'4xl': '60rem'
},
width: {
'1/100': '1%',
'2/100': '2%',
'3/100': '3%',
'4/100': '4%',
'5/100': '5%',
'6/100': '6%',
'7/100': '7%',
'8/100': '8%',
'9/100': '9%',
'10/100': '10%',
'11/100': '11%',
'12/100': '12%',
'13/100': '13%',
'14/100': '14%',
'15/100': '15%',
'16/100': '16%',
'17/100': '17%',
'18/100': '18%',
'19/100': '19%',
'20/100': '20%',
'21/100': '21%',
'22/100': '22%',
'23/100': '23%',
'24/100': '24%',
'25/100': '25%',
'26/100': '26%',
'27/100': '27%',
'28/100': '28%',
'29/100': '29%',
'30/100': '30%',
'31/100': '31%',
'32/100': '32%',
'33/100': '33%',
'34/100': '34%',
'35/100': '35%',
'36/100': '36%',
'37/100': '37%',
'38/100': '38%',
'39/100': '39%',
'40/100': '40%',
'41/100': '41%',
'42/100': '42%',
'43/100': '43%',
'44/100': '44%',
'45/100': '45%',
'46/100': '46%',
'47/100': '47%',
'48/100': '48%',
'49/100': '49%',
'50/100': '50%',
'51/100': '51%',
'52/100': '52%',
'53/100': '53%',
'54/100': '54%',
'55/100': '55%',
'56/100': '56%',
'57/100': '57%',
'58/100': '58%',
'59/100': '59%',
'60/100': '60%',
'61/100': '61%',
'62/100': '62%',
'63/100': '63%',
'64/100': '64%',
'65/100': '65%',
'66/100': '66%',
'67/100': '67%',
'68/100': '68%',
'69/100': '69%',
'70/100': '70%',
'71/100': '71%',
'72/100': '72%',
'73/100': '73%',
'74/100': '74%',
'75/100': '75%',
'76/100': '76%',
'77/100': '77%',
'78/100': '78%',
'79/100': '79%',
'80/100': '80%',
'81/100': '81%',
'82/100': '82%',
'83/100': '83%',
'84/100': '84%',
'85/100': '85%',
'86/100': '86%',
'87/100': '87%',
'88/100': '88%',
'89/100': '89%',
'90/100': '90%',
'91/100': '91%',
'92/100': '92%',
'93/100': '93%',
'94/100': '94%',
'95/100': '95%',
'96/100': '96%',
'97/100': '97%',
'98/100': '98%',
'99/100': '99%'
}
}
},
variants: {
extend: {
display: ['group-hover'],
borderColor: ['focus-visible'],
ringOffsetWidth: ['focus-visible'],
ringColor: ['focus-visible'],
ringWidth: ['focus-visible']
}
}
}