20 lines
552 B
JavaScript
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")],
|
|
};
|