28 lines
760 B
JavaScript
28 lines
760 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{js,jsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
gold: '#C9A84C',
|
|
'gold-light': '#E8C96A',
|
|
'gold-muted': '#8A6E2F',
|
|
surface: '#111111',
|
|
'surface-raised': '#1A1A1A',
|
|
'surface-elevated': '#242424',
|
|
'surface-border': '#2E2E2E',
|
|
'text-primary': '#F5F5F5',
|
|
'text-muted': '#888888',
|
|
},
|
|
boxShadow: {
|
|
gold: '0 0 12px rgba(201, 168, 76, 0.4)',
|
|
'gold-lg':'0 0 24px rgba(201, 168, 76, 0.55)',
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|