-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathtailwind.config.js
76 lines (76 loc) · 2.1 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
const colors = require('tailwindcss/colors')
module.exports = {
purge: ['./*.html'],
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
display: ['Inter', 'system-ui', 'sans-serif'],
body: ['Inter', 'system-ui', 'sans-serif'],
},
extend: {
colors: {
fuchsia: colors.fuchsia,
cyan: colors.cyan,
emerald: colors.emerald,
teal: colors.teal,
orange: colors.orange,
yellow: colors.yellow,
},
maxHeight: {
116: "29rem",
/*464px*/
125: "31.25rem",
/*500px*/
140: "35rem",
/*560px*/
150: "37.5rem",
/*600px*/
190: "47.5rem",
/*760px*/
},
height: {
116: "29rem",
/*464px*/
125: "31.25rem",
/*500px*/
140: "35rem",
/*560px*/
150: "37.5rem",
/*600px*/
200: "50rem",
/*800px*/
250: "62.5rem",
/*800px*/
},
minHeight: {
18: "4.5rem",
/*72*/
33: "8.125rem",
/*132px*/
62: "15.5rem",
/*248px*/
96: "24rem",
/*384px*/
150: "37.5rem",
/*600px*/
},
margin: {
'-100%': '-100%'
}
},
},
variants: {
extend: {
display: ["group-hover"],
opacity: ["group-hover"],
translate: ["group-hover"],
transform: ["group-hover"],
width: ["group-hover", "hover"],
height: ["group-hover", "hover"],
padding: ["group-hover", "hover"],
animation: ["group-hover", "hover"],
scale: ["group-hover", "hover"],
},
},
plugins: [],
}