import typography from '@tailwindcss/typography'; /** @type {import('tailwindcss').Config} */ export default { content: ['./src/**/*.{html,js,svelte,ts}'], theme: { extend: { fontFamily: { sans: ['Inter', 'sans-serif'], mono: ['"Roboto mono"', 'monospace'] } } }, plugins: [typography] };