import type { Config } from "tailwindcss"; const config: Config = { content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}"], theme: { extend: { colors: { // Tactile Archive — SPEC-DS-001 v1.2.1 linen: "#FBF9F6", stone: "#F5F3F0", card: "#FFFFFF", ink: "#1B1C1A", "ink-soft": "#4A4B48", "ink-faint": "#8A8B88", terracotta: "#8B4B2F", "terracotta-end": "#A86245", "terracotta-tint": "#F5EDE8", line: "#E8E4E0", "line-strong": "#D4CFCA", danger: "#991B1B", "danger-bg": "#FEE2E2", ok: "#2D6A4F", "ok-bg": "#E8F5EE", }, fontFamily: { sans: ["var(--font-jakarta)", "system-ui", "sans-serif"], mono: ["var(--font-mono)", "monospace"], }, borderRadius: { card: "16px", control: "8px", }, }, }, plugins: [], }; export default config;