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, indigo: colors.indigo, violet: colors.violet, emerald: colors.emerald, }, fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'], }, }, }, plugins: [], };