/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./src/**/*.{js,jsx,ts,tsx}", ], theme: { extend: { colors: { 'nest-red': '#e53e3e', 'nest-pink': '#e53e3e', 'nest-dark': '#1a1a1a', 'nest-gray': '#6b7280', 'nest-light-gray': '#f3f4f6' }, fontFamily: { 'sans': ['Inter', 'system-ui', 'sans-serif'] }, backgroundImage: { 'hero-gradient': 'linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%)' } }, }, plugins: [], }