-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (45 loc) · 958 Bytes
/
tailwind.config.js
File metadata and controls
46 lines (45 loc) · 958 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
42
43
44
45
46
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
brand_primary: "#fbf5df",
brand_secondary: "#ca0608",
brand_accent: "#ca0608",
brand_red: "#d82744",
brand_blue: "#296ff0",
brand_black:"#0c0d0c"
},
opacity: {
10: "0.1",
20: "0.2",
30: "0.3",
40: "0.4",
50: "0.5",
60: "0.6",
70: "0.7",
80: "0.8",
90: "0.90",
},
height: {
"10vh": "10vh",
"20vh": "20vh",
"30vh": "30vh",
"40vh": "40vh",
"50vh": "50vh",
"60vh": "60vh",
"70vh": "70vh",
"80vh": "80vh",
"90vh": "90vh",
"100vh": "100vh",
"110vh": "110vh",
"120vh": "120vh",
"130vh": "130vh",
"140vh": "140vh",
"150vh": "150vh",
"175vh": "175vh",
},
},
},
plugins: [],
};