19 lines
344 B
JavaScript
19 lines
344 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./index.html',
|
|
'./src/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'dark-bg': '#0b1220',
|
|
'dark-surface': '#121a2b',
|
|
'dark-border': '#1f2a3a',
|
|
'gold-500': '#d4af37',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|