2024-05-14 00:01:06 +01:00
|
|
|
import typography from "@tailwindcss/typography";
|
|
|
|
import catppuccin from "@catppuccin/tailwindcss";
|
2024-03-09 22:41:35 +00:00
|
|
|
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
2024-05-14 00:01:06 +01:00
|
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [typography, catppuccin],
|
|
|
|
};
|