log101-dot-dev/tailwind.config.mjs
log101 0ae7d8dac4
All checks were successful
/ Build (push) Successful in 58s
style: add new font
2024-08-12 23:32:18 +03:00

13 lines
325 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
fontFamily: {
sans: ["Inter", "Calibri", "Trebuchet MS", "sans-serif"],
mono: ["Courier New", "Courier", "monospace"],
},
extend: {},
},
plugins: [],
};