19 lines
615 B
JavaScript
19 lines
615 B
JavaScript
/** @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],
|
|
},
|
|
screens: {
|
|
md: "1280px", // 原默认值: 768px, 增大后navbar会更早坍缩
|
|
lg: "1280px", // 原默认值: 1024px, 保持与md一致以确保统一的响应式行为
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("@tailwindcss/typography")],
|
|
};
|