Files
xevion.dev/tailwind.config.cjs
2024-12-18 14:43:32 -06:00

24 lines
538 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
zinc: {
850: "#1D1D20",
},
},
fontSize: {
"10xl": "10rem",
},
fontFamily: {
inter: ['"Inter"', "sans-serif"],
roboto: ['"Roboto"', "sans-serif"],
mono: ['"Roboto Mono"', "monospace"],
hanken: ['"Hanken Grotesk"', "sans-serif"],
},
},
},
plugins: [require("@tailwindcss/typography")],
};