/** @type {import('tailwindcss').Config} */ export default { content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], darkMode: 'class', theme: { extend: { fontFamily: { sans: ['Poppins', 'Inter', 'system-ui', '-apple-system', 'sans-serif'], brand: ['Poppins', 'arial', 'sans-serif'], }, }, }, plugins: [], }