-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.js
75 lines (75 loc) · 1.46 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
module.exports = {
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
green: {
lighter: "#dbe7d9",
light: "#91a88c",
dark: "#4a584b",
darker: "#2b3632",
},
red: {
light: "#F74700",
dark: "#B53A25",
},
peach: {
light: "#f3f0e1",
},
},
width: {
"25vw": "25vw",
"81%": "81%",
"97%": "97%",
},
height: {
"25vh": "25vh",
"35vh": "35vh",
"85vh": "85vh",
"15vw": "15vw",
"17vw": "17vw",
"25vw": "25vw",
"28vw": "28vw",
},
inset: {
"8.6rem": "8.6rem",
"5%": "5%",
"7%": "7%",
"10%": "10%",
"16%": "16%",
"18%": "18%",
"20%": "20%",
"28%": "28%",
"34%": "34%",
"48%": "48%",
"49%": "49%",
"70%": "70%",
},
padding: {
"10%": "10%",
},
lineHeight: {
"extra-loose": "2.5",
},
borderRadius: {
"3xl+": "3rem",
high_curve: "10rem",
},
borderWidth: {
5: "5px",
},
fontFamily: {
genera: ['"genera"'],
},
scale: {
'101': '1.01',
'103': '1.03',
}
},
},
variants: {
extend: { brightness: ["hover"] },
},
plugins: [],
};