-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (50 loc) · 1.11 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
screens: {
lg: { min: "90rem" },
ssm: { max: "460px" },
mo: { max: "900px" },
md: [{ min: "900px", max: "1280px" }],
mmd: [{ min: "990px", max: "1200px" }],
sm: { min: "900px" },
},
fontFamily: {
OpenSans: "var(--open-sans)",
},
maxHeight: {
mc: "calc(100vh - 260px)",
},
colors: {
gray: {
3: "#333333",
6: "#666666",
9: "#999999",
14: "#DDDDDD",
16: "#f3f3f3",
18: "#4A4A4A",
20: "#eeeeee",
bg: "#f1f1f1",
28: "#f8f8f8",
},
green: {
2: "#29953A",
28: "#2E8C3D",
3: "#38942C",
4: "#CBDED0",
},
blue: {
0: "#0084FF",
},
orange: {
16: "#FF8D00",
169: "#FF9640",
},
},
unf: ":nth=child(n + 2)",
},
},
plugins: [],
};