first commit

This commit is contained in:
tiff 2025-06-12 00:32:34 -04:00
parent a3f5f5f701
commit 207c82578f
137 changed files with 4659 additions and 8605 deletions

18
tailwind.config.ts Normal file
View file

@ -0,0 +1,18 @@
import type { Config } from "tailwindcss";
// import defaultTheme from "tailwindcss/defaultTheme";
const config: Config = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
future: {
hoverOnlyWhenSupported: true,
},
plugins: [
require("@catppuccin/tailwindcss")({
prefix: "ctp",
// which flavour of colours to use by default, in the `:root`
defaultFlavour: "latte",
}),
],
};
export default config;