module.exports = { content: [ "./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { dark: { 400: "#64748b", 500: "#475569", 600: "#334155", 700: "#1f2937", 800: "#111827", 900: "#0f172a", 1000: "#020617", }, primary: { 500: "#10b981", 600: "#059669", 700: "#047857", 800: "#065f46", 900: "#064e3b", }, accent: { 500: "#3b82f6", 600: "#2563eb", 700: "#1d4ed8", 800: "#1e40af", 900: "#1e3a8a", }, }, fontFamily: { sans: ['-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', '"Fira Sans"', '"Droid Sans"', '"Helvetica Neue"', 'sans-serif'], }, boxShadow: { 'glow': '0 0 20px rgba(16, 185, 129, 0.3)', 'glow-lg': '0 0 30px rgba(16, 185, 129, 0.4)', }, }, }, }