const colors = require('tailwindcss/colors'); /** @type {import('tailwindcss').Config} */ module.exports = { content: ['./index.html', './src/**/*.{ts,tsx}'], theme: { extend: { colors: { amber: colors.amber, slate: colors.slate, }, fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'], }, }, }, plugins: [], };