-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
62 lines (62 loc) · 2.42 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
main01: "#0167AB",
main02: "#57A9FB",
main03: "#32A2DB",
main04: "#52B6E7",
sub01: "#0e325a",
sub02: "#123F6D",
pinkHachu: "#EFD5E2",
blueDada: "#BCD9E6",
yellowGogo: "#FAEB75",
pinkHap: "#F7E2E9",
purpleLala: "#D4ACCE",
yellowChacha: "#F4F3A2",
blue01: "#9BD5F1",
red01: "#F24646",
purple01: "#E1B2C6",
gray01: "#D3D3D3",
pink01: "#F8DEE7",
redHover: "#B91C1C",
},
fontSize: {
"B-32": ["32px", { lineHeight: "normal", fontWeight: 700 }],
"B-28": ["28px", { lineHeight: "normal", fontWeight: 700 }],
"B-22": ["22px", { lineHeight: "normal", fontWeight: 700 }],
"B-20": ["20px", { lineHeight: "normal", fontWeight: 700 }],
"B-18": ["18px", { lineHeight: "normal", fontWeight: 700 }],
"R-28": ["28px", { lineHeight: "normal", fontWeight: 400 }],
"R-25": ["25px", { lineHeight: "normal", fontWeight: 400 }],
"R-20": ["20px", { lineHeight: "normal", fontWeight: 400 }],
"R-18": ["18px", { lineHeight: "normal", fontWeight: 400 }],
"R-17": ["17px", { lineHeight: "normal", fontWeight: 400 }],
"R-15": ["14px", { lineHeight: "normal", fontWeight: 400 }],
"R-14": ["14px", { lineHeight: "normal", fontWeight: 400 }],
"R-12": ["12px", { lineHeight: "normal", fontWeight: 400 }],
"R-10": ["10px", { lineHeight: "normal", fontWeight: 400 }],
"L-20": ["20px", { lineHeight: "normal", fontWeight: 300 }],
"L-12": ["12px", { lineHeight: "normal", fontWeight: 300 }],
"L-10": ["10px", { lineHeight: "normal", fontWeight: 300 }],
},
fontFamily: {
"L-12": ["12px", { lineHeight: "normal", fontWeight: 300 }],
"L-10": ["10px", { lineHeight: "normal", fontWeight: 300 }],
},
PretendardB: ["Pretendard-Bold", "sans-serif"],
PretendardR: ["Pretendard-Regular", "sans-serif"],
PretendardL: ["Pretendard-Light", "sans-serif"],
},
},
plugins: [require("tailwind-scrollbar-hide")],
};