Initial commit

This commit is contained in:
二叉树树
2025-04-30 08:01:43 +08:00
committed by GitHub
commit 63671e0c0f
112 changed files with 16729 additions and 0 deletions

14
tailwind.config.cjs Normal file
View File

@@ -0,0 +1,14 @@
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme")
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue,mjs}"],
darkMode: "class", // allows toggling dark mode manually
theme: {
extend: {
fontFamily: {
sans: ["Roboto", "sans-serif", ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [require("@tailwindcss/typography")],
}