/** @type {import('tailwindcss').Config} */ module.exports = { content: ['./index.html', './src/**/*.{ts,tsx,js,jsx}'], theme: { extend: { colors: { brand: { orange: '#f97316', black: '#020617', }, }, }, }, plugins: [], }