/** @type {import('tailwindcss').Config} */ module.exports = { content: ['./src/**/*.{js,jsx,ts,tsx}'], darkMode: 'class', theme: { extend: { fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'], }, colors: { primary: { 50: '#eff6ff', 500: '#2563EB', 600: '#1d4ed8', 700: '#1e40af', }, success: '#10B981', warning: '#F59E0B', danger: '#EF4444', surface: { 900: '#0F1117', 800: '#161B27', 700: '#1E2433', 600: '#252D3D', }, }, }, }, plugins: [], };