-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
64 lines (63 loc) · 1.13 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
const range = {
"1/7": "14.2857143%",
"2/7": "28.5714286%",
"3/7": "42.8571429%",
"4/7": "57.1428571%",
"5/7": "71.4285714%",
"6/7": "85.7142857%",
"6.8/7": "97.1428%",
"25p": "25vw",
".5": "5%",
"1/10": "10%",
"2/10": "20%",
"2.5/10": "25%",
"3/10": "30%",
"4/10": "40%",
"5/10": "50%",
"6/10": "60%",
"7/10": "70%",
"8/10": "80%",
"9/10": "90%",
"10/10": "100%",
};
module.exports = {
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
minWidth: {
...range,
},
width: {
...range
},
height: {
...range
},
colors: {
red: {
materialRed: '#C23C3C'
},
green: {
lime: "#68BB66",
},
gray: {
midnight: "#0C0C0D",
light: "#DDDDDD",
foreGround: '#242428, 100%'
},
blue: {
materialLightBlue: '#242428'
}
},
screens: {
'3xl': '2000px'
}
},
},
variants: {
extend: {},
},
plugins: [],
};