25 lines
751 B
JavaScript
25 lines
751 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.{ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: { DEFAULT: '#C9A84C', dark: '#B8963A', light: '#E8C97A' },
|
|
gold: { DEFAULT: '#C9A84C', light: '#E8C97A' },
|
|
green: { DEFAULT: '#00C48C', light: '#00E09E' },
|
|
bg: { deep: '#07090C', surface: '#0C1A2E', elevated: '#112236' },
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'ui-sans-serif', 'system-ui', 'sans-serif'],
|
|
heading: ['Cinzel', 'Georgia', 'serif'],
|
|
mono: ['JetBrains Mono', 'Courier New', 'monospace'],
|
|
},
|
|
borderRadius: {
|
|
'app': '18px',
|
|
'xl2': '28px',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|