/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { primary: { 50: '#f0f4ff', 100: '#e0eafe', 200: '#c7d7fe', 300: '#a5b9fc', 400: '#8191f8', 500: '#667eea', 600: '#5b68e0', 700: '#4c52cd', 800: '#3e43a6', 900: '#363b83', }, secondary: { 50: '#faf5ff', 100: '#f3e8ff', 200: '#e9d5ff', 300: '#d8b4fe', 400: '#c084fc', 500: '#764ba2', 600: '#6b4391', 700: '#5a3778', 800: '#4a2d61', 900: '#3d2550', }, }, }, }, plugins: [], }