18 lines
390 B
JavaScript
18 lines
390 B
JavaScript
|
import defaultTheme from "tailwindcss/defaultTheme";
|
||
|
|
||
|
/** @type {import('tailwindcss').Config} */
|
||
|
export default {
|
||
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
fontFamily: {
|
||
|
serif: [`"Source Serif 4"`, ...defaultTheme.fontFamily.serif],
|
||
|
},
|
||
|
colors: {
|
||
|
bg: "#fff4ef",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
};
|