/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], darkMode: 'class', theme: { extend: { colors: { primary: { DEFAULT: '#6366f1', dark: '#4f46e5', }, secondary: '#0ea5e9', success: '#10b981', warning: '#f59e0b', error: '#ef4444', bg: { dark: 'var(--color-bg-dark)', card: 'var(--color-bg-card)', 'card-hover': 'var(--color-bg-card-hover)', }, text: { primary: 'var(--color-text-primary)', secondary: 'var(--color-text-secondary)', }, border: 'var(--color-border)', }, }, }, plugins: [], }