-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
82 lines (80 loc) · 1.85 KB
/
tailwind.config.ts
File metadata and controls
82 lines (80 loc) · 1.85 KB
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
white: "#ffffff",
black: {
DEFAULT: "#000000",
2: "#fcfcfc",
3: "#f5f5f5",
4: "#f0f0f0",
5: "#d9d9d9",
6: "#bfbfbf",
7: "#8c8c8c",
8: "#595959",
9: "#454545",
10: "#262626",
11: "#1f1f1f",
12: "#141414",
},
yellow: {
1: "#fffbe6",
2: "#fff5c2",
3: "#ffed91",
4: "#ffe55e",
5: "#ffdd2e",
6: "#ffd500",
7: "#d9b500",
8: "#b59700",
9: "#917900",
10: "#736000",
},
red: {
1: "#ffe6e9",
2: "#ffc2cb",
3: "#ff91a2",
4: "#ff5e76",
5: "#ff2e4d",
6: "#ff0026",
7: "#d90020",
8: "#b5001b",
9: "#910016",
10: "#730011",
},
},
fontSize: {
xs: ["0.75rem", "1rem"],
sm: ["0.875rem", "1.25rem"], //14px
base: ["1rem", "1.5rem"],
lg: ["1.125rem", "1.75rem"], //18px
xl: ["1.25rem", "1.75rem"],
"2xl": ["1.5rem", "2rem"],
"3xl": ["1.875rem", "2.25rem"],
},
fontWeight: {
light: "300",
normal: "400",
medium: "500",
semibold: "600",
bold: "700",
},
fontFamily: {
dunggeunmo: ["DungGeunMo", "sans-serif"],
pretendard: ["var(--font-pretendard)", "sans-serif"],
},
screens: {
sm: { min: "361px" },
md: { min: "769px" },
lg: { min: "1201px" },
},
},
},
plugins: [],
};
export default config;