/** @type {import('tailwindcss').Config} */ export default { content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'], theme: { extend: { colors: { // nevertell.ink theme - playful, mischievous nevertell: { primary: '#6366f1', // indigo secondary: '#ec4899', // pink accent: '#f59e0b', // amber background: '#fafafa', text: '#1f2937', }, // dignity.ink theme - warm, respectful dignity: { primary: '#059669', // emerald secondary: '#dc2626', // red accent: '#d97706', // amber background: '#f9fafb', text: '#374151', }, }, fontFamily: { serif: ['Georgia', 'Times New Roman', 'serif'], sans: ['Inter', 'system-ui', 'sans-serif'], }, fontSize: { // Larger fonts for accessibility 'story-title': ['2.5rem', { lineHeight: '1.2' }], 'story-body': ['1.125rem', { lineHeight: '1.7' }], }, }, }, plugins: [], }