-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.js
60 lines (60 loc) · 1.28 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
fontFamily: {
sans: ['Raleway'],
},
minHeight: {
24: '6rem',
0: '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
full: '100%',
screen: '92vh',
},
maxHeight: {
'half-screen': '50vh',
'3/4-screen': '75vh',
screen: '92vh',
full: '100%',
},
// height:{
// '50vh':"50vh"
// },
extend: {
fontFamily: {
'title-abril': 'Abril Fatface',
'title-oswald': 'Oswald',
montserrat: 'montserrat',
'shadow-into-light': 'Shadows Into Light',
},
colors: {
base: '#090919',
'base-light': '#33334d',
primary: '#64B8FB',
'primary-dark': '#0070F3',
secondary: '#ff1cf7',
'secondary-dark': '#b249f8',
'secondary-last': '#f05454',
},
maxWidth: {
'1/5': '20%',
'2/5': '40%',
'3/5': '60%',
'4/5': '80%',
'7/10': '70%',
screen: '100vw',
},
minWidth: {
screen: '100vw',
},
},
},
darkmode: false,
variants: {
textColor: ['responsive', 'group-hover', 'hover', 'focus'],
width: ['responsive', 'group-hover', 'hover', 'focus'],
},
plugins: [],
};