-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
59 lines (57 loc) · 1.67 KB
/
tailwind.config.ts
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}",
],
theme: {
extend: {
colors: {
white: "#FFFFFF",
black: "#000000",
"black-90": "#1A1A1A",
"black-80": "#333333",
"black-70": "#4D4D4D",
"black-60": "#676767",
primary: "#06CC80",
secondary: "#CEFFEC",
},
fontFamily: {
Pretendard: ["Pretendard"],
},
fontSize: {
"bold-20": ["20px", "20px"], // Bold 20/20
"bold-16": ["16px", "16px"], // Bold 16/16
"semibold-16": ["16px", "24px"], // SemiBold 16/24
"regular-16": ["16px", "16px"], // Regular 16/16
"regular-12": ["12px", "12px"], // Regular 12/12
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
keyframes: {
textAnimation: {
"0%, 10%": { marginTop: "0rem" },
"20%, 30%": { marginTop: "-2.5rem" },
"40%, 50%": { marginTop: "-5.2rem" },
"60%, 70%": { marginTop: "-8.2rem" },
"80%, 90%": { marginTop: "-10.2rem" },
"90%, 100%": { marginTop: "0rem" },
},
blink: {
"0%, 100%": { opacity: "1" },
"50%": { opacity: "0.3" },
},
},
animation: {
blink: "blink 1.5s infinite",
textAnimation: "textAnimation 8s infinite",
},
},
},
plugins: [],
};
export default config;