-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (61 loc) · 976 Bytes
/
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
module.exports = {
darkMode: false, // or 'media' or 'class'
purge: {
preserveHtmlElements: false,
content: ['./src/**/*.html', './src/**/*.vue']
},
theme: {
extend: {
borderWidth: {
3: '3px'
},
colors: {
white: '#fdfdfd',
primary: {
100: '#d5f4ff',
200: '#8ed4fc',
300: '#61c8fd',
400: '#36c3ff',
500: '#00b5ff',
600: '#1699F1',
700: '#003180',
900: '#03132C'
}
},
width: {
96: '24rem',
112: '28rem',
128: '32rem',
144: '36rem',
160: '40rem'
},
height: {
96: '24rem',
112: '28rem',
128: '32rem',
144: '36rem',
160: '40rem'
},
minHeight: {
'10': '2.5rem'
},
maxHeight: {
'5/6': '83%'
},
fontSize: {
'7xl': '5rem',
'8xl': '6rem',
'9xl': '7rem',
'10xl': '8rem'
}
}
},
variants: {
visibility: ['group-hover'],
extend: {
borderWidth: ['first', 'last'],
margin: ['last']
}
},
plugins: []
};