-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
49 lines (48 loc) · 1.17 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
module.exports = {
purge: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: false, // or 'media' or 'class'
theme: {
minWidth: {
0: "0",
"10/100": "10%",
"20/100": "20%",
"25vw": "25vw",
"30vw": "30vw",
"60/100": "60%",
"70/100": "70%",
},
extend: {
colors: {
lightgray: "#f3f2ef",
grayblue: "#a0b4b7",
linkedinblue: "#4180cc",
darkerblue: "#3E7DC9",
},
inset: {
auto: "auto",
},
width: {
"30rem": "37rem",
},
spacing: {
"10%": "10%",
"20%": "20%",
"25%": "25%",
"30%": "30%",
"40%": "40%",
},
},
},
variants: {
extend: {
width: ["focus-within"],
scale: ["focus-within", "focus"],
borderWidth: ["hover", "focus"],
ringWidth: ["hover", "active"],
},
},
plugins: [],
};