-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
79 lines (76 loc) · 2.11 KB
/
tailwind.config.ts
File metadata and controls
79 lines (76 loc) · 2.11 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
78
79
import { heroui } from "@heroui/theme";
import type { Config } from "tailwindcss";
export default {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@heroui/theme/dist/components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
keyframes: {
fadeOut: {
"0%": { opacity: "1", transform: "translateY(0)" },
"100%": { opacity: "0", transform: "translateY(10px)" },
},
spin: {
"0%": { transform: "rotate(0deg)" },
"100%": { transform: "rotate(720deg)" },
},
},
animation: {
fadeOut: "fadeOut 0.5s ease-in-out 2.5s forwards",
spin: "spin 0.5s cubic-bezier(0.42, 0, 0.58, 1)",
},
screens: {
mobile: { max: "768px" },
tablet: { min: "769px", max: "1279px" },
pc: { min: "1280px" },
},
boxShadow: {
"soft-md": "0px 6px 10px 0px rgba(0, 0, 0, 0.05)",
},
colors: {
Primary: "#00ADEE",
Secondary: "#009AD4",
Tertiary: "#008ABE",
quaternary: "#0076A2",
Fifth: "#00516F",
gra: "#00ADEE",
bg0: "#F8FDFF",
bg1: "#FAFBFF",
bg2: "#F3F4FE",
bg3: "#E8EAFE",
bg4: "#DCDFFD",
bg5: "#D0D4FC",
warning: "#D1504B",
new: "#DC2800",
alert: "F89E21",
ing: "#04C52E",
finish: "#0066FF",
white: "#FFFFFF",
gray1: "#FAFAFA",
gray2: "#EEEEEE",
gray3: "#DBDBDB",
gray4: "#CBCBCB",
gray5: "#A6A6A6",
gray6: "#656565",
gray7: "#424242",
gray8: "#303030",
gray9: "#181818",
black: "#000000",
background: "var(--background)",
foreground: "var(--foreground)",
//토스트팝업 색상
toastSuccess: "#009AD4",
toastInfo: "#FFFFFF",
toastInfoBorder: "#FAFAFA",
toastWarning: "#FFFFFF",
toastWarningBorder: "#D1504B",
toastError: "#D1504B",
},
},
},
plugins: [heroui()],
} satisfies Config;