/** * Theo UI Tailwind preset — Violet Forge identity. * * Single source of truth for the design system's utility-level tokens: * - colors mapped to CSS variables (HSL split via `hsl(var(--x) / )`) * - Geist-inspired typescale (display / title / body / label / code tiers) * - radii, shadows, motion timing & duration, keyframes * - tailwindcss-animate plugin * * Consumed by: * - `tailwind.config.ts` (this repo) via `presets: [theoUIPreset]` * - registry/r/tailwind-preset.json (shipped to consumers via shadcn CLI) * * Consumers integrate as: * * import type { Config } from "tailwindcss"; * import { theoUIPreset } from "./styles/tailwind-preset"; * * export default { * darkMode: "class", * content: ["./src/**\/*.{ts,tsx}"], * presets: [theoUIPreset], * } satisfies Config; * * Note: `darkMode` and `content` are NOT in the preset — they are consumer * decisions. The preset only contains `theme.extend.*` and `plugins`. */ import type { Config } from "tailwindcss"; export declare const theoUIPreset: Partial;