Files
2026-05-28 21:43:23 +08:00

24 lines
524 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,js}'],
theme: {
extend: {
colors: {
dark: {
bg: '#0a0a0a',
card: '#141414',
border: '#262626',
hover: '#1f1f1f',
text: '#e5e5e5',
muted: '#737373',
accent: '#3b82f6',
success: '#22c55e',
warning: '#eab308',
danger: '#ef4444',
},
},
},
},
plugins: [],
}