/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { primary: '#1e40af', // Deep Blue (Header) secondary: '#f3f4f6', // Light Gray (Background) accent: '#3b82f6', // Bright Blue (Buttons/Highlights) 'accent-hover': '#2563eb', surface: '#ffffff', // White (Cards) text: '#1f2937', // Dark Gray (Text) 'text-muted': '#6b7280', // Light Gray (Subtext) } }, }, plugins: [], }