import type { Config } from "tailwindcss"; export default { darkMode: ["class"], content: ["./index.html", "./src/**/*.{ts,tsx}"], theme: { extend: { colors: { brand: "rgb(var(--color-brand) / )", accent: "rgb(var(--color-accent) / )", surface: "rgb(var(--color-surface) / )", page: "rgb(var(--color-page) / )", text: "rgb(var(--color-text) / )", muted: "rgb(var(--color-muted) / )", line: "rgb(var(--color-line) / )", }, fontFamily: { sans: ["var(--font-family)", "ui-sans-serif", "system-ui"], }, boxShadow: { panel: "0 24px 60px rgba(15, 23, 42, 0.14)", }, }, }, plugins: [], } satisfies Config;