-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.ts
92 lines (90 loc) · 1.56 KB
/
tailwind.config.ts
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
textColor: {
"2D3": "#2D3748",
"718": "#718096",
CBD: "#CBD5E0",
A0A: "#A0AEC0",
FFF: "#FFF",
},
backgroundColor: {
"718": "#718096",
"4A5": "#4A5568",
"2D3": "#2D3748",
EDF: "#EDF2F7",
F7F: "#F7FAFC",
FFF: "#FFF",
},
boxShadow: {
E2E: "0px 0px 8px #E2E8F0",
A0A: "0px 2px 8px #A0AEC0",
},
borderColor: {
E2E: "#E2E8F0",
CBD: "#CBD5E0",
},
width: {
320: "320px",
640: "640px",
full: "100%",
},
maxWidth: {
640: "640px",
none: "none",
},
padding: {
0: "0",
9: "9px",
18: "18px",
24: "24px",
36: "36px",
72: "72px",
},
gap: {
0: "0",
9: "9px",
18: "18px",
24: "24px",
36: "36px",
72: "72px",
},
margin: {
18: "18px",
24: "24px",
36: "36px",
48: "48px",
},
fontFamily: {
mono: "Roboto Mono, monospace",
},
fontSize: {
15: "15px",
18: "18px",
24: "24px",
72: "72px",
},
fontWeight: {
semibold: "600",
normal: "400",
},
lineHeight: {
18: "18px",
24: "24px",
30: "30px",
36: "36px",
96: "96px",
none: "1",
},
zIndex: {
0: "0",
1: "1",
},
screens: {
lt1280: { max: "1279px" },
lt960: { max: "959px" },
},
},
};
export default config;