-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
112 lines (111 loc) · 3.32 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}"
],
theme: {
extend: {
fontFamily: {
Pretendard: ["Pretendard"],
Line: ["LINESeedKR-Bd"]
},
screens: {
sm: "500px",
md: "744px",
// => @media (min-width: 744px) { ... }
xl: "1200px"
// => @media (min-width: 1280px) { ... }
},
fontSize: {
body: ["17px", { lineHeight: "24px", fontWeight: "500" }],
headline: ["17px", { lineHeight: "22px", fontWeight: "600" }],
title1: ["28px", { lineHeight: "34px", fontWeight: "600" }],
title2: ["22px", { lineHeight: "28px", fontWeight: "600" }],
title3: ["20px", { lineHeight: "24px", fontWeight: "600" }],
caption1: ["13px", { lineHeight: "22px", fontWeight: "500" }],
caption2: ["12px", { lineHeight: "16px", fontWeight: "500" }],
caption3: ["13px", { lineHeight: "18px", fontWeight: "500" }],
subheadline: ["15px", { lineHeight: "20px", fontWeight: "600" }],
callout: ["16px", { lineHeight: "21px", fontWeight: "600" }],
largeTitle: ["34px", { lineHeight: "41px", fontWeight: "800" }],
qustion: ["16px", { lineHeight: "22px", fontWeight: "300" }]
},
colors: {
black: {
100: "#787878",
200: "#6B6B6B",
300: "#5E5E5E",
400: "#525252",
500: "#454545",
600: "#373737",
700: "#2B2B2B",
800: "#1F1F1F",
900: "#121212",
950: "#050505"
},
white: {
100: "#FFFFFF"
},
gray: {
50: "#FBFBFF", //gray00
100: "#F2F2F7", //gray01
150: "#E5E8FB", //gray 1.5
200: "#E5E5EA", //gray02
300: "#D1D1D6", //gray03
400: "#C7C7CC", //gray04
500: "#AEAEB2", //gray05
600: "#8E8E93", //gray06
700: "#8E8E93", //gray07
800: "#636366", //gray08
850: "#5C6067", //gray8.5
900: "#3A3A3C", //gray09
1000: "#43454F", //gray10
1100: "#3B3D46", //gray11
1300: "#24252C", //gray13
1400: "#1F2025" //gray14
},
blue: {
100: "#FFFFFF",
200: "#ECEFF4",
300: "#CBD3E1",
400: "#ABB8CE",
500: "#8B9DBC",
600: "#6A82A9",
700: "#52698E",
800: "#40516E",
900: "#2D394E",
950: "#1A212D"
},
red: {
100: "#FF5252"
},
bg: {
100: "#E2E3E5"
},
main: {
100: "#8457FF",
200: "#3A3A3C", //다크모드 색상
300: "#E4E3FA", //main_light
400: "#CAC8FF", //main_light2
500: "#3E0CC4", //main-pressed
600: "#521FDF", //main_deep
700: "#039B72" //main_sub_pressed
}
},
animation: {
buttonHover: "buttonHover 0.3s ease forwards",
dropdown: "dropdown 0.3s ease-out"
},
keyframes: {
dropdown: {
"0%": { opacity: 0, transform: "translateY(-10px)" },
"100%": { opacity: 1, transform: "translateY(0)" }
}
}
}
},
plugins: []
};