This commit is contained in:
도로롱
2025-10-23 20:51:28 +09:00
commit e6ab4973c0
44 changed files with 7642 additions and 0 deletions

18
tailwind.config.mjs Normal file
View File

@@ -0,0 +1,18 @@
import defaultTheme from "tailwindcss/defaultTheme";
/** @type {import('tailwindcss').Config} */
export default {
darkMode: ["class"],
content: [
"./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}",
],
theme: {
extend: {
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
serif: ["Lora", ...defaultTheme.fontFamily.serif],
},
},
},
plugins: [require("@tailwindcss/typography")],
};