2024-02-21 20:19:57 +01:00
|
|
|
import typographyPlugin from "@tailwindcss/typography";
|
|
|
|
import defaultTheme from "tailwindcss/defaultTheme";
|
2022-10-23 12:08:29 +02:00
|
|
|
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
2024-02-21 20:19:57 +01:00
|
|
|
export default {
|
2023-09-02 23:51:52 +02:00
|
|
|
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],
|
2023-09-02 23:51:52 +02:00
|
|
|
code: ["Fira Code", ...defaultTheme.fontFamily.mono],
|
2022-10-23 12:08:29 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2024-02-21 20:19:57 +01:00
|
|
|
plugins: [typographyPlugin],
|
2023-09-02 23:51:52 +02:00
|
|
|
};
|