mirror of
https://github.com/mikkelsvartveit/astro-personal-website.git
synced 2025-12-22 11:12:38 +00:00
18 lines
529 B
JavaScript
18 lines
529 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const defaultTheme = require("tailwindcss/defaultTheme");
|
|
|
|
export default {
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
theme: {
|
|
fontFamily: {
|
|
sans: ["'Nunito'", ...defaultTheme.fontFamily.sans],
|
|
serif: ["'Source Serif Pro'", ...defaultTheme.fontFamily.serif],
|
|
mono: [...defaultTheme.fontFamily.mono],
|
|
},
|
|
extend: {},
|
|
},
|
|
future: {
|
|
hoverOnlyWhenSupported: true,
|
|
},
|
|
plugins: [require("@tailwindcss/typography")],
|
|
};
|