-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
58 lines (58 loc) · 1.57 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
module.exports = {
purge: [
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
darkMode: false, // or 'media' or 'class'
theme: {
borderWidth: {
DEFAULT: '1px',
'0': '0',
'0.5': '0.125rem',
'1': '0.25rem',
'1.5': '0.375rem',
'2': '0.5rem',
'2.5': '0.625rem',
'3': '0.75rem',
'3.5': '0.875rem',
'4': '1rem',
},
fontSize: {
'xs': ['0.75rem', 'inherit'],
'sm': ['0.875rem', 'inherit'],
'base': ['1rem', 'inherit'],
'lg': ['1.125rem', 'inherit'],
'xl': ['1.25rem', 'inherit'],
'2xl': ['1.5rem', 'inherit'],
'3xl': ['1.875rem', 'inherit'],
'4xl': ['2.25rem', 'inherit'],
'5xl': ['3rem', 'inherit'],
'6xl': ['3.75rem', 'inherit'],
'7xl': ['4.5rem', 'inherit'],
'8xl': ['6rem', 'inherit'],
'9xl': ['8rem', 'inherit'],
},
extend: {
fontFamily: {
'display': ['Ayer Web Medium', 'serif'],
'serif': ['Ermina', 'serif'],
},
height: {
'128': '32rem',
'144': '36rem',
'168': '42rem',
},
width: {
'128': '32rem',
}
},
},
variants: {
extend: {
margin: ['focus'],
padding: ['focus'],
},
},
plugins: [],
}