/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { primary: { DEFAULT: '#6366f1', dark: '#4f46e5' }, secondary: '#8b5cf6', success: '#10b981', warning: '#f59e0b', danger: '#ef4444', dark: '#1f2937', gray: '#6b7280', light: '#f3f4f6', white: '#ffffff' } }, }, plugins: [], }