noahsw.xyz/tailwind.config.mjs

25 lines
514 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: {
2024-04-15 20:05:26 +00:00
background: "#0F1210",
foreground: "#E6FFE9",
accent: "#F2FFF4",
2023-10-22 05:25:53 +00:00
},
fontFamily: {
display: ["Fahkwang", "serif"],
body: ["Azeret Mono", "sans-serif"],
},
},
},
future: {
hoverOnlyWhenSupported: true,
},
2023-10-22 05:25:53 +00:00
plugins: [],
};