forked from K-Hackathon-Fledge/Fledge-Front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
43 lines (43 loc) · 1.34 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [],
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
darkMode: false,
theme: {
colors: {
background: "#FAF8F5",
mainColor: "#EEC65D",
subColor: "#EF7F18",
fontColor1: "#271F17",
fontColor2: "#B3B0AC",
fontColor3: "#AE7D43",
white: "#FFFFFF",
red: "#F84141",
},
extend: {
fontFamily: {
sans: ["Noto Sans KR", "sans-serif"],
},
fontSize: {
// Bold
"bold-10": ["10px", "1.2"],
"bold-15": ["15px", "1.2"],
"bold-20": ["20px", "1.2"],
"bold-24": ["24px", "1.2"],
"bold-36": ["36px", "1.2"],
"bold-48": ["48px", "1.2"],
"bold-64": ["64px", "1.2"],
"bold-96": ["96px", "1.2"],
// Medium
"medium-12": ["12px", "1.2"],
"medium-15": ["15px", "1.2"],
"medium-20": ["20px", "1.2"],
"medium-96": ["96px", "1.2"],
// Regular
"regular-15": ["15px", "1.2"],
"regular-16": ["16px", "1.2"],
},
},
},
plugins: [],
};