mirror of
https://github.com/Xevion/undefined.behavio.rs.git
synced 2025-12-06 03:16:56 -06:00
15 lines
352 B
JavaScript
15 lines
352 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
source: ["Source Serif 4", "serif"],
|
|
serif: ["CMU Serif", "serif"],
|
|
mono: ["CMU Typewriter Text", "monospace"],
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|