open-design/design-systems/expo/tokens.css
chaoxiaoche df801d412c
feat(design-systems): add next 20 brand token fixtures (#2037)
Co-authored-by: chaoxiaoche <chaoxiaoche@chaoxiaochedeMacBook-Pro.local>
2026-05-18 15:41:28 +08:00

64 lines
1.7 KiB
CSS

/* design-systems/expo/tokens.css
*
* Structured token bindings for Expo.
* developer-console minimalism with black-and-white precision and native app launch energy.
*/
:root {
--bg: #ffffff;
--surface: #f6f7f9;
--surface-warm: #eef2ff;
--fg: #0b0d12;
--fg-2: #353945;
--muted: #6b7280;
--meta: #4630eb;
--border: #dfe3ea;
--border-soft: #edf0f5;
--accent: #000020;
--accent-on: #ffffff;
--accent-hover: color-mix(in oklab, var(--accent), black 8%);
--accent-active: color-mix(in oklab, var(--accent), black 14%);
--success: #00a36c;
--warn: #f59e0b;
--danger: #e5484d;
--font-display: "Inter", system-ui, sans-serif;
--font-body: "Inter", system-ui, sans-serif;
--font-mono: "Geist Mono", "SF Mono", ui-monospace, Menlo, monospace;
--text-xs: 12px;
--text-sm: 14px;
--text-base: 16px;
--text-lg: 18px;
--text-xl: 22px;
--text-2xl: 32px;
--text-3xl: 48px;
--text-4xl: 68px;
--leading-body: 1.52;
--leading-tight: 1.06;
--tracking-display: -0.025em;
--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: 14px;
--radius-lg: 22px;
--radius-pill: 9999px;
--elev-flat: none;
--elev-ring: 0 0 0 1px var(--border);
--elev-raised: 0 18px 48px rgba(0, 0, 32, 0.12);
--focus-ring: 0 0 0 4px rgba(70, 48, 235, 0.24);
--motion-fast: 140ms;
--motion-base: 220ms;
--ease-standard: cubic-bezier(0.2, 0, 0, 1);
--container-max: 1160px;
--container-gutter-desktop: 32px;
--container-gutter-tablet: 24px;
--container-gutter-phone: 16px;
}