-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
48 lines (45 loc) ยท 1.09 KB
/
tailwind.config.ts
File metadata and controls
48 lines (45 loc) ยท 1.09 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/containers/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
// Brand colors
primary: "#4078FF", //button-linear-left
second: "#6A89D4", //button-linear-right
// Achromatic colors
red: "#F85449",
white: "#FFFFFF",
sky: "#E5F0FE",
blue: "#5481EC",
darkblue: "#264989",
rightgray: "#E9E9E9",
gray: "#ADADAD",
fontgray: "#686868",
darkgray: "#575757",
// ๊ทธ ์ธ ์ถ๊ฐ ์ปฌ๋ฌ
// ...
},
fontSize: {
//ํฐํธ ์ฌ์ด์ฆ
h2: "20px",
h3: "18px",
h4: "16px", // Button
h5: "15px",
h6: "14px", // Popup Button
h7: "12px",
},
screens: {},
fontFamily: {
pretendard: ["Pretendard", "sans-serif"],
},
},
},
plugins: [],
};
export default config;