noahsw.xyz/tailwind.config.mjs

22 lines
454 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-03-15 17:14:42 +00:00
md: "500px",
lg: "1100px",
2023-10-22 05:25:53 +00:00
},
colors: {
secondary: "#121412",
primary: "#F2FCF4",
},
fontFamily: {
display: ["Fahkwang", "serif"],
body: ["Azeret Mono", "sans-serif"],
},
},
},
plugins: [],
};