mirror of
https://github.com/michaelrausch/michaelrausch-24.git
synced 2024-11-21 05:03:08 +00:00
19 lines
454 B
JavaScript
19 lines
454 B
JavaScript
import defaultTheme from "tailwindcss/defaultTheme";
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
darkMode: ["class"],
|
|
content: [
|
|
"./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["Inter", ...defaultTheme.fontFamily.sans],
|
|
serif: ["Lora", ...defaultTheme.fontFamily.serif],
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("@tailwindcss/typography")],
|
|
};
|