-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 791 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (41 loc) · 791 Bytes
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
module.exports = {
purge: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
darkMode: false,
theme: {
maxHeight: {
"1/2": "50%",
"3/4": "75%",
},
extend: {
colors: {
main: "var(--main)",
warning: "var(--warning)",
seperator: "var(--separator)",
"dark-gray": "var(--dark-gray)",
},
fontSize: {
base: "1.6rem",
large: "2rem",
xl: "4.8rem",
},
spacing: {
22: "5.5rem",
120: "30rem",
124: "31rem",
128: "32rem",
136: "34rem",
144: "38rem",
152: "38rem",
160: "40rem",
220: "50rem",
},
height: {
chart: "50rem",
},
},
},
variants: {
extend: {},
},
plugins: [],
};