1/** @type {import('tailwindcss').Config} */
2export default {
3 content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
4 theme: {
5 extend: {
6 fontFamily: {
7 syne: ["SyneMono"]
8 }
9 },
10 },
11 plugins: [require("@tailwindcss/typography")]
12}