/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./src/**/*.{js,jsx,ts,tsx}", ], theme: { extend: { colors: { 'nest-red': '#e53e3e', 'nest-pink': '#e91e63', 'nest-dark': '#1a1a1a', 'nest-gray': '#f5f5f5' }, fontFamily: { 'sans': ['Inter', 'system-ui', 'sans-serif'] } }, }, plugins: [], }