-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (30 loc) · 929 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (30 loc) · 929 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
// Luxury Palette
'mb-black': '#0a0a0a', // Deep rich black
'mb-charcoal': '#1a1a1a', // Secondary dark
'mb-gold': '#d4af37', // Primary metallic gold
'mb-gold-dim': '#aa8c2c', // Muted gold for text
'mb-white': '#f5f5f7', // Off-white for readability
},
fontFamily: {
// Typography
serif: ['"Playfair Display"', 'serif'], // Headings
sans: ['Montserrat', 'sans-serif'], // Body text
},
backgroundImage: {
// Cinematic gradients
'gradient-luxury': 'linear-gradient(to bottom, #0a0a0a, #1a1a1a)',
'hero-vignette': 'radial-gradient(circle, transparent 20%, #0a0a0a 90%)',
}
},
},
plugins: [],
}