noahsw.xyz/tailwind.config.mjs

21 lines
432 B
JavaScript
Raw Normal View History

2023-10-22 05:25:53 +00:00
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
screens: {
2024-04-15 04:23:24 +00:00
md: "850px",
2023-10-22 05:25:53 +00:00
},
colors: {
secondary: "#121412",
primary: "#F2FCF4",
},
fontFamily: {
display: ["Fahkwang", "serif"],
body: ["Azeret Mono", "sans-serif"],
},
},
},
plugins: [],
};