summaryrefslogtreecommitdiff
path: root/tailwind.config.ts
blob: 8d81a7d996b0e668b64133ab8f5e4f032fb3ae8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import type { Config } from "tailwindcss";
import defaultTheme from "tailwindcss/defaultTheme";

export default {
	content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
	theme: {
		fontFamily: {
			sans: ["Noto Sans", ...defaultTheme.fontFamily.sans],
			serif: ["Noto Serif", ...defaultTheme.fontFamily.serif],
			monospace: ["Noto Sans Mono", ...defaultTheme.fontFamily.mono],
		},
		extend: {},
	},
	plugins: [
		require("@catppuccin/tailwindcss")({
			defaultFlavour: "mocha",
		}),
	],
} satisfies Config;