mirror of
https://github.com/saicaca/fuwari.git
synced 2025-01-19 03:09:16 +08:00
e1dae88515
* Added remark-directive, unist-util-visit * Add rehype custom components for Github, Admonitions * pnpm * Update pnpm-lock * Corrected hastscript requierement * Change ad- prefix so adblocks dont block content
15 lines
445 B
JavaScript
15 lines
445 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")],
|
|
}
|