-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
69 lines (65 loc) · 1.48 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
colors: {
// Brand colors
main: "#4200FF",
main_default: "#4200FF",
main_mid: "#6360FF",
main_light: "#ECEDFB",
background: "#F1F2FC",
sub: "#29CCC7",
line: "#e5e5e5",
// Particular colors
red_error: "#FF5449",
// Achromatic colors
black: "#191919",
darkgray: "#4F4F4F",
midgray: "#767676",
gray: "#999999",
gray2: "#DBDBDB",
gray3: "#F4F4F4",
white: "#FFFFFF",
// 스케줄에서 사용할, 무지개색 컬러
red: "#FF6666",
orange: "#ffb266",
yellow: "#FFE600",
green: "#00CC66",
blue: "#66b2ff",
indigo: "#6666ff",
purple: "#b266ff",
// 그 외 추가 컬러
// ...
},
screens: {
"2xl": "1920px", // 최상위 화면 크기
},
fontSize: {
h0: "64px",
h1: "32px", // 대 타이틀
h2: "24px", // 중 타이틀
h3: "20px", // 소 타이틀 2
h4: "18px", // 소 타이틀
h5: "16px", // 본문 2
h6: "15px", // 본문
h7: "13px", // 작은
h8: "12px", // 최소
},
extend: {
spacing: {
main: "1920px",
home: "1434px",
home2: "940px",
side: "486px",
},
},
minWidth: {
main: "1920px",
home: "1434px",
home2: "940px",
side: "486px",
},
},
plugins: [],
};