-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
59 lines (57 loc) · 1.45 KB
/
tailwind.config.ts
File metadata and controls
59 lines (57 loc) · 1.45 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/**/*.{js,ts,jsx,tsx,mdx}", //test용 폴더 경로
],
theme: {
fontSize: {
xs: ["12px", "18px"],
sm: ["13px", "22px"],
base: ["14px", "24px"],
lg: ["16px", "26px"],
xl: ["18px", "26px"],
"2xl": ["20px", "32px"],
"3xl": ["24px", "32px"],
"4xl": ["32px", "42px"],
},
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
black02: "#171717",
black03: "#333236",
black04: "#4B4B4B",
gray01: "#787486",
gray02: "#9FA6B2",
gray03: "#D9D9D9",
gray04: "#EEEEEE",
gray05: "#FAFAFA",
violet01: "#5534DA",
violet02: "#F1EFFD",
red01: "#D6173A",
green01: "#7AC555",
purple01: "#760DDE",
orange01: "#FFA500",
blue01: "#76A6EA",
pink01: "#E876EA",
},
fontFamily: {
sans: [
"Pretendard",
"-apple-system",
"BlinkMacSystemFont",
"system-ui",
"Helvetica Neue",
"Apple SD Gothic Neo",
"sans-serif",
],
montserrat: ["var(--font-montserrat)", "sans-serif"],
},
},
},
plugins: [],
};
export default config;