Files
vxheaven-blog/tailwind.config.mjs
2025-11-30 19:50:46 +01:00

20 lines
552 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
unifont: ["Unifont", "sans-serif"], // Use Unifont as the default sans font
gohu: ["Gohu", "sans-serif"], // Use Unifont as the default sans font
},
colors: {
c_mauve: "#a292a3",
c_crust: "#0B0A0A",
c_text: "#c5c9c5",
c_surface0: "#2A2727",
},
},
},
plugins: [require("@tailwindcss/typography")],
};