v5/tailwind.config.ts
2025-01-29 17:35:25 -05:00

74 lines
1.4 KiB
TypeScript

import type { Config } from "tailwindcss";
const lineHeight = {
val: 1.2,
unit: "rem",
};
const buildLineHeights = () => {
const h: Record<string, string> = {};
for (let i = 1; i <= 10; i++) {
h[i.toString()] = `${i * lineHeight.val}${lineHeight.unit}`;
}
return h;
};
const buildSpacing = () => {
const h: Record<string, string> = {};
for (let i = 1; i <= 20; i++) {
h[`${i}v`] = `${i * lineHeight.val}${lineHeight.unit}`;
h[`${i}h`] = `${i}ch`;
}
return h;
};
const config: Config = {
content: ["./src/**/*.{html,tsx,mdx}"],
darkMode: "class",
theme: {
fontFamily: {
mono: '"JetBrains Mono", monospace;',
},
fontWeight: {
normal: "500",
medium: "600",
bold: "800",
},
lineHeight: buildLineHeights(),
colors: {
black: "#000000",
"slate-50": "#f8fafc",
"slate-100": "#f1f5f9",
"slate-200": "#e2e8f0",
"slate-300": "#cbd5e1",
"slate-400": "#94a3b8",
"slate-500": "#64748b",
"slate-600": "#475569",
"slate-700": "#334155",
"slate-800": "#1e293b",
"slate-900": "#0f172a",
"slate-950": "#020617",
white: "#FFFFFF",
transparent: "transparent",
},
borderWidth: {
"2": "2px",
},
extend: {
spacing: buildSpacing(),
listStyleType: {
square: "square",
},
boxShadow: {
box: "3px 3px 0px",
},
fontSize: {
"2v": "2rem",
},
},
},
plugins: [require("tailwind-nord")],
};
export default config;