2022-10-23 12:08:29 +02:00
|
|
|
/* eslint-disable @typescript-eslint/no-var-requires */
|
2023-09-02 23:51:52 +02:00
|
|
|
const defaultTheme = require("tailwindcss/defaultTheme");
|
2022-10-23 12:08:29 +02:00
|
|
|
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
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
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2023-09-02 23:51:52 +02:00
|
|
|
plugins: [require("@tailwindcss/typography")],
|
|
|
|
};
|