/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}", ], theme: { extend: { colors: { brand: { primary: '#3b82f6', // Bright professional blue secondary: '#10b981', // Success green dark: '#0f172a', // Deep slate panel: '#1e293b', // Slightly lighter slate border: '#334155' } }, fontFamily: { sans: ['Inter', 'system-ui', 'Avenir', 'Helvetica', 'Arial', 'sans-serif'], } }, }, plugins: [], }