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.zinc, indigo: colors.black, // Solid black for the simplest look violet: colors.violet, emerald: colors.emerald, }, fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'], }, }, }, plugins: [], };