2024-05-16 10:13:10 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
|
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
|
|
theme: {
|
|
|
|
fontFamily: {
|
2024-08-12 20:32:18 +00:00
|
|
|
sans: ["Inter", "Calibri", "Trebuchet MS", "sans-serif"],
|
2024-05-16 10:46:38 +00:00
|
|
|
mono: ["Courier New", "Courier", "monospace"],
|
2024-05-16 10:13:10 +00:00
|
|
|
},
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
};
|