/** @type {import('tailwindcss').Config} */ const defaultTheme = require('tailwindcss/defaultTheme') export default { content: ['./src/**/*.{html,js,svelte,ts}'], theme: { extend: { fontFamily: { mono: ['"Hack"', ...defaultTheme.fontFamily.mono], }, typography: { DEFAULT: { css: { h1: { fontSize: '1.75rem', marginBottom: '0.8em', }, h2: { fontSize: '1.5rem', marginTop: '0rem', marginBottom: '0.8em', }, }, }, }, }, }, darkMode: 'class', plugins: [require('@tailwindcss/typography')], }