2023-09-26 14:27:38 +08:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
2024-01-21 12:54:41 +08:00
|
|
|
const defaultTheme = require("tailwindcss/defaultTheme")
|
2023-09-26 14:27:38 +08:00
|
|
|
module.exports = {
|
2024-05-02 12:24:20 +08:00
|
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue,mjs}"],
|
2024-01-21 12:54:41 +08:00
|
|
|
darkMode: "class", // allows toggling dark mode manually
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
fontFamily: {
|
|
|
|
sans: ["Roboto", "sans-serif", ...defaultTheme.fontFamily.sans],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [require("@tailwindcss/typography")],
|
2023-09-26 14:27:38 +08:00
|
|
|
}
|