forked from sprint-9-3/albaform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
77 lines (76 loc) · 2.04 KB
/
tailwind.config.ts
File metadata and controls
77 lines (76 loc) · 2.04 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
import type { Config } from "tailwindcss";
export default {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
screens: {
pc: { min: "1200px" },
tablet: { min: "768px", max: "1199px" },
mobile: { min: "343px", max: "767px" },
},
extend: {
colors: {
"background-100": "#fcfcfc",
"background-200": "#f7f7f7",
"background-300": "#efefef",
"line-100": "#f2f2f2",
"line-200": "#e6e6e6",
"gray-50": "#ffffff",
"gray-100": "#DEDEDE",
"gray-200": "#C4C4C4",
"gray-300": "#ABABAB",
"gray-400": "#999999",
"gray-500": "#808080",
"black-100": "#6B6B6B",
"black-200": "#525252",
"black-300": "#373737",
"black-400": "#1f1f1f",
"black-500": "#040404",
"orange-50": "#FFF7EB",
"orange-100": "#FCC369",
"orange-200": "#FBAF37",
"orange-300": "#F89A05",
"orange-400": "#E18C05",
"blue-100": "#535779",
"blue-200": "#3E415B",
"blue-300": "#2A2C3D",
"oldLace-50": "#fff7eb",
"tuatara-900": "#3e3e3e",
red: "#fc4100",
},
fontWeight: {
regular: "400",
medium: "500",
semibold: "600",
},
fontSize: {
"3xl": ["32px", "42px"],
"2xl": ["24px", "32px"],
xl: ["20px", "32px"],
"2lg": ["18px", "26px"],
lg: ["16px", "26px"],
md: ["14px", "24px"],
sm: ["13px", "22px"],
xs: ["12px", "18px"],
},
gridTemplateAreas: {
layout: ["box1 box4", "box2 box5", "box3 box6", ". box7"],
},
gridArea: {
box1: "box1",
box2: "box2",
box3: "box3",
box4: "box4",
box5: "box5",
box6: "box6",
box7: "box7",
},
},
},
plugins: [
require("@savvywombat/tailwindcss-grid-areas"), // grid-area를 사용하기 위한 플러그인
],
} satisfies Config;