mirror of
https://github.com/afoim/fuwari.git
synced 2026-01-31 00:53:19 +08:00
15 lines
428 B
JavaScript
15 lines
428 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],
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("@tailwindcss/typography")],
|
|
};
|