open-design/design-systems/agentic/tokens.css
chaoxiaoche 477e602951
feat(design-systems): add 20 product and style token fixtures (#2040)
Co-authored-by: chaoxiaoche <chaoxiaoche@chaoxiaochedeMacBook-Pro.local>
2026-05-18 15:42:06 +08:00

63 lines
1.7 KiB
CSS

/* design-systems/agentic/tokens.css
* Structured token bindings for Agentic.
* agent workflow interface with dark command surfaces, blue automation signals, and traceable task cards.
*/
:root {
--bg: #0b1020;
--surface: #131b2f;
--surface-warm: #182343;
--fg: #f8fafc;
--fg-2: #cbd5e1;
--muted: #8ea0b8;
--meta: #60a5fa;
--border: #293653;
--border-soft: #1e2a43;
--accent: #60a5fa;
--accent-on: #06111f;
--accent-hover: color-mix(in oklab, var(--accent), black 8%);
--accent-active: color-mix(in oklab, var(--accent), black 14%);
--success: #22c55e;
--warn: #fbbf24;
--danger: #fb7185;
--font-display: Inter, system-ui, sans-serif;
--font-body: Inter, system-ui, sans-serif;
--font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
--text-xs: 12px;
--text-sm: 13px;
--text-base: 15px;
--text-lg: 17px;
--text-xl: 22px;
--text-2xl: 32px;
--text-3xl: 48px;
--text-4xl: 66px;
--leading-body: 1.55;
--leading-tight: 1.06;
--tracking-display: -0.02em;
--space-1: 4px;
--space-2: 8px;
--space-3: 12px;
--space-4: 16px;
--space-5: 20px;
--space-6: 24px;
--space-8: 32px;
--space-12: 48px;
--section-y-desktop: 96px;
--section-y-tablet: 68px;
--section-y-phone: 48px;
--radius-sm: 8px;
--radius-md: 12px;
--radius-lg: 20px;
--radius-pill: 9999px;
--elev-flat: none;
--elev-ring: 0 0 0 1px var(--border);
--elev-raised: 0 24px 72px rgba(0, 0, 0, 0.36);
--focus-ring: 0 0 0 4px rgba(96, 165, 250, 0.28);
--motion-fast: 130ms;
--motion-base: 220ms;
--ease-standard: cubic-bezier(0.2, 0, 0, 1);
--container-max: 1200px;
--container-gutter-desktop: 36px;
--container-gutter-tablet: 24px;
--container-gutter-phone: 16px;
}