-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
64 lines (64 loc) · 1.3 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
container: {
center: true,
padding: {
DEFAULT: "2rem",
sm: "2rem",
lg: "3rem",
xl: "10rem",
// "2xl": "6rem",
},
},
fontSize: {
sm: "1.2rem",
base: "1.6rem",
md: "2rem",
xl: "2.2rem",
"2xl": "2.5rem",
"3xl": "3rem",
"4xl": "4rem",
"5xl": "5rem",
},
spacing: {
0: "0",
0.5: "0.5rem",
1: "1rem",
1.5: "1.5rem",
2: "2rem",
2.5: "2.5rem",
3: "3rem",
3.5: "3.5rem",
4: "4rem",
4.5: "4.5rem",
5: "5rem",
5.5: "5.5rem",
6: "6rem",
6.5: "6.5rem",
7: "7rem",
7.5: "7.5rem",
8: "8rem",
8.5: "8.5rem",
9: "9rem",
9.5: "9.5rem",
10: "10rem",
},
extend: {
colors: {
primary: "#ff9900",
primarylight: "#f9b050",
primarydark: "#e58200",
secondary: "#131921",
trinary: "#232f3e",
trinarylight: "#97c6f2",
current: "currentColor",
},
gridTemplateColumns: {
footer: "200px minmax(900px, 1fr) 100px",
},
},
},
plugins: [require("@tailwindcss/line-clamp")],
}