import typography from '@tailwindcss/typography' import { catppuccin } from '@catppuccin/tailwindcss' /** @type {import('tailwindcss').Config} */ export default { darkMode: 'class', content: [ './layouts/**/*.{html,htm}', './content/**/*.{md,html}', './static/theme.js' ], theme: { extend: { fontFamily: { sans: ['Rubik', 'ui-sans-serif', 'system-ui', '-apple-system', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans'] } } }, plugins: [ typography, catppuccin({ prefix: 'ctp', defaultFlavor: 'mocha' }) ] }