-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
71 lines (71 loc) · 2.04 KB
/
Copy pathtailwind.config.js
File metadata and controls
71 lines (71 loc) · 2.04 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "#FFFFFF",
secondary: "#FAFAF8",
card: "#FFFFFF",
border: "#ECE7DF",
accent: {
DEFAULT: "#C58B45",
hover: "#A66F32",
light: "#F5EFE5",
subtle: "#F8F5F0",
},
salt: {
50: "#FFFDF9",
100: "#F8F5F0",
200: "#F5EFE5",
300: "#ECE7DF",
400: "#D8CDBC",
500: "#C58B45",
600: "#A66F32",
700: "#845322",
800: "#5D3915",
900: "#382109",
},
success: "#16A34A",
warning: "#F59E0B",
danger: "#EF4444",
foreground: "#111827",
muted: {
DEFAULT: "#6B7280",
subtle: "#9CA3AF",
},
},
fontFamily: {
sans: ["system-ui", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "sans-serif"],
display: ["Outfit", "system-ui", "-apple-system", "sans-serif"],
},
boxShadow: {
luxury: "0 10px 30px -10px rgba(197, 139, 69, 0.08), 0 4px 12px -2px rgba(17, 24, 39, 0.03)",
"luxury-lg": "0 20px 40px -15px rgba(197, 139, 69, 0.12), 0 8px 24px -4px rgba(17, 24, 39, 0.04)",
glass: "0 8px 32px 0 rgba(197, 139, 69, 0.06)",
},
animation: {
"float-slow": "float 6s ease-in-out infinite",
"pulse-glow": "pulseGlow 3s ease-in-out infinite",
marquee: "marquee 35s linear infinite",
},
keyframes: {
float: {
"0%, 100%": { transform: "translateY(0px)" },
"50%": { transform: "translateY(-12px)" },
},
pulseGlow: {
"0%, 100%": { opacity: "0.6", transform: "scale(1)" },
"50%": { opacity: "1", transform: "scale(1.05)" },
},
marquee: {
"0%": { transform: "translateX(0%)" },
"100%": { transform: "translateX(-50%)" },
},
},
},
},
plugins: [],
};