28 lines
676 B
JavaScript
28 lines
676 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
cellar: {
|
|
bg: '#0a0a0a',
|
|
surface: '#141414',
|
|
card: '#1a1a1a',
|
|
border: '#2a2a2a',
|
|
gold: '#c9a84c',
|
|
'gold-light': '#e0c068',
|
|
wine: '#722f37',
|
|
'wine-light': '#8b3a42',
|
|
cream: '#f5f0e8',
|
|
muted: '#6b6b6b',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
|
|
display: ['Playfair Display', 'Georgia', 'serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|