/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./src/**/*.{js,jsx,ts,tsx}", ], theme: { extend: { colors: { primary: { 50: '#eff6ff', 100: '#dbeafe', 500: '#3b82f6', 600: '#2563eb', 700: '#1d4ed8', }, secondary: { 50: '#fdf7ef', 100: '#fcefc3', 500: '#f59e0b', 600: '#d97706', 700: '#b45309', } } }, }, plugins: [], }