saiblog/tailwind.config.js

17 lines
472 B
JavaScript
Raw Normal View History

import typographyPlugin from "@tailwindcss/typography";
import defaultTheme from "tailwindcss/defaultTheme";
2022-10-23 12:08:29 +02:00
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
2022-10-23 12:08:29 +02:00
theme: {
extend: {
fontFamily: {
2023-09-02 23:59:54 +02:00
sans: ["Inter Variable", ...defaultTheme.fontFamily.sans],
code: ["Fira Code", ...defaultTheme.fontFamily.mono],
2022-10-23 12:08:29 +02:00
},
},
},
plugins: [typographyPlugin],
};