16 lines
472 B
JavaScript
16 lines
472 B
JavaScript
import typographyPlugin from "@tailwindcss/typography";
|
|
import defaultTheme from "tailwindcss/defaultTheme";
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["Inter Variable", ...defaultTheme.fontFamily.sans],
|
|
code: ["Fira Code", ...defaultTheme.fontFamily.mono],
|
|
},
|
|
},
|
|
},
|
|
plugins: [typographyPlugin],
|
|
};
|