JezK
Edit File: tailwind.config.js
/** @type {import('tailwindcss').Config} */ module.exports = { content: ["./*.{html,js}"], theme: { extend: { colors: { primary: '#b05604', 'primary-light': '#d46a05', 'primary-dark': '#8c4503', }, fontFamily: { 'sans': ['Inter', 'system-ui', 'sans-serif'], }, keyframes: { 'fade-in-up': { '0%': { opacity: '0', transform: 'translateY(20px)' }, '100%': { opacity: '1', transform: 'translateY(0)' } } }, animation: { 'fade-in-up': 'fade-in-up 0.5s ease-out forwards' } }, }, plugins: [], }