-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
66 lines (58 loc) · 1.77 KB
/
tailwind.config.ts
File metadata and controls
66 lines (58 loc) · 1.77 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./app/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./features/**/*.{ts,tsx}",
],
theme: {
extend: {
colors: {
background: "#0B0B0D",
surface: "#121214",
border: "#1F1F22",
primary: "#D4AF37", // luxury gold
textPrimary: "#F5F5F7",
textSecondary: "#A1A1AA",
// Legacy support
black: "#000000",
obsidian: "#0f0f0f",
gold: {
DEFAULT: "#C6A75E",
light: "#D4AF37",
dark: "#A68A4C",
},
luxury: {
text: "#ffffff",
subtext: "#b3b3b3",
border: "rgba(255,255,255,0.08)",
}
},
fontFamily: {
playfair: ["var(--font-playfair)", "serif"],
inter: ["var(--font-inter)", "sans-serif"],
serif: ["var(--font-playfair)", "serif"],
sans: ["var(--font-inter)", "sans-serif"],
},
borderRadius: {
luxury: "14px",
},
boxShadow: {
gold: "0 0 20px rgba(198, 167, 94, 0.15)",
luxury: "0 8px 32px rgba(0,0,0,0.5)",
},
spacing: {
section: "120px",
},
letterSpacing: {
luxury: "0.04em",
wide: "0.15em",
},
transitionTimingFunction: {
luxury: "cubic-bezier(0.4, 0, 0.2, 1)",
},
},
},
plugins: [],
};
export default config;