Files

34 lines
615 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
border: '#2a3142',
dark: {
bg: '#0a0e1a',
surface: '#1a1f2e',
border: '#2a3142',
hover: '#242938',
},
gold: {
500: '#FFD700',
600: '#FFC700',
},
green: {
500: '#10b981',
600: '#059669',
},
red: {
500: '#ef4444',
600: '#dc2626',
},
},
},
},
plugins: [],
}