-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
65 lines (65 loc) · 1.53 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
module.exports = {
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: "media", // or 'media' or 'class'
theme: {
gradientColorStops: (theme) => ({
...theme("colors"),
"cm-color": "#17171a",
"cm-color2": "#222531",
}),
extend: {
backgroundColor: {
neutral: "#eff2f5",
basic: "#f8fafd",
"color-light-neutral-1": "#f8fafd",
"color-light-neutral-2": "#eff2f5",
"color-light-neutral-3": "#a6b0c3",
"color-light-neutral-4": "#808a9d",
"color-light-neutral-5": "#58667e",
"color-light-neutral-6": "#eff2f5",
"color-neutral-1": "#171924",
"color-neutral-2": "#222531",
"color-neutral-3": "#323546",
"color-neutral-4": "#646b80",
"color-neutral-5": "#858ca2",
"color-neutral-6": "#a1a7bb",
"cm-color": "#17171a",
"cm-color2": "#222531",
},
width: {
left: "42%",
right: "58%",
"3/10": "30%",
"7/10": "70%",
15: "15rem",
15.5: "15.5rem",
},
height: {
cg42: "26.75rem",
"3/10": "30%",
"7/10": "70%",
},
borderWidth: {
cg1: "1.2px",
},
minWidth: {
15.5: "15.5rem",
15: "15rem",
3.5: "3.5rem",
},
minHeight: {
32: "8rem",
},
maxWidth: {},
maxHeight: {
"h-60": "15rem",
cg42: "24rem",
},
},
},
variants: {
extend: {},
},
plugins: [],
}