/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./src/**/*.{js,jsx,ts,tsx}", ], theme: { extend: { colors: { 'nest-red': '#e53e3e', 'nest-pink': '#ed64a6', 'nest-dark': '#1a1a1a', 'nest-gray': '#2d3748', 'nest-light-gray': '#f7fafc' }, fontFamily: { 'sans': ['Inter', 'system-ui', 'sans-serif'] }, backgroundImage: { 'hero-pattern': "url('https://enterprise.nestjs.com/header-2.50296714.jpg')", 'support-pattern': "url('https://enterprise.nestjs.com/support.cbdb04e7.png')" } }, }, plugins: [], }