/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { cream: '#FAF8F5', warmBrown: '#3D3530', greige: '#E8E4DE', greigeDark: '#D5CFC8', taupe: '#8C7E6B', taupeDark: '#6B5F4F', mutedBrown: '#9A9088', softBrown: '#6B6560', powder: '#E8E0EC', lavender: '#D5CFE0', }, fontFamily: { serif: ['Cormorant Garamond', 'serif'], sans: ['Manrope', 'sans-serif'], }, }, }, plugins: [], }