forked from Choi-jeonghoon/next14-nine-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
77 lines (76 loc) · 1.9 KB
/
tailwind.config.ts
File metadata and controls
77 lines (76 loc) · 1.9 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/common/**/*.{js,ts,jsx,tsx,mdx}",
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
pretendard: ["var(--font-pretendard)"],
},
colors: {
primary: {
50: "#E6E9EF",
100: "#C0C8D9",
200: "#98A5BF",
300: "#7282A5",
400: "#546894",
500: "#364F84",
600: "#30487C",
700: "#283E70",
800: "#213564",
900: "#18254C",
},
secondary: {
50: "#E1F5FD",
100: "#B2E6FA",
200: "#80D5F7",
300: "#4CC5F4",
400: "#1CB8F3",
500: "#00ACF2",
600: "#009EE3",
700: "#008BD0",
800: "#0079BC",
900: "#005A9B",
},
grayscale: {
0: "#FFFFFF",
100: "#F5F5F5",
200: "#E9E9E9",
300: "#C5C5C5",
400: "#9F9F9F",
500: "#7D7D7D",
600: "#575757",
700: "#454545",
800: "#282828",
900: "#121212",
},
background: "#F1F3F8",
warning: "#FF294F",
success: "#1FCE65",
},
backgroundImage: {
main: "url('../../public/images/main/background_img.png')",
},
keyframes: {
wiggle: {
"0%, 100%": { transform: "rotate(-3deg)" },
"50%": { transform: "rotate(3deg)" },
},
fadeUp: {
"0%": { opacity: "0", transform: "translateY(2rem)" },
"100%": { opacity: "1", transform: "translateY(0)" },
},
},
animation: {
wiggle: "wiggle 1s ease-in-out infinite",
fadeUp: "faseUp 1s ease-in-out both",
},
},
},
plugins: [],
};
export default config;