-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
60 lines (59 loc) · 1.39 KB
/
tailwind.config.js
File metadata and controls
60 lines (59 loc) · 1.39 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
theme: {
main: "#1c3163",
sub: "#d6b585",
},
gold: {
50: "#fff5e6",
100: "#f5e9d7",
200: "#e7d2b3",
300: "#d6b585",
400: "#cca46a",
500: "#c49653",
600: "#c18f47",
700: "#aa7c38",
800: "#986e2f",
900: "#855e22",
},
primary: {
50: "#faf9f8",
100: "#f5f3f0",
200: "#ede7df",
300: "#e1d4c7",
400: "#d2c0a8",
500: "#b59f85",
600: "#a08c6f",
700: "#87725b",
800: "#6f5e4d",
900: "#5c4e41",
},
background: {
primary: "#282427",
secondary: "#EEEBD9",
light: "#7e7d7d",
},
},
animation: {
"fade-in": "fadeIn 0.3s ease-in-out",
"slide-up": "slideUp 0.3s ease-out",
},
keyframes: {
fadeIn: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
slideUp: {
"0%": { transform: "translateY(10px)", opacity: "0" },
"100%": { transform: "translateY(0)", opacity: "1" },
},
},
},
},
plugins: [require("@tailwindcss/forms")],
};
// #e7dba6