/* Dezky design tokens — workspace surface (light/bone). Ported from project/platform-tokens.jsx (THEMES.light + ACCENTS.signal). */ :root { /* Surface */ --bg: #F4F3EE; /* bone */ --surface: #FAFAF7; /* paper */ --elevated: #FFFFFF; --border: #E6E4DC; /* fog */ --border-hi: #D4D2C8; /* Text */ --text: #0A0A0A; /* carbon */ --text-dim: rgba(10, 10, 10, 0.55); --text-mute: rgba(10, 10, 10, 0.4); /* Sidebar (always-dark for brand consistency) */ --side-bg: #0A0A0A; --side-surf: #141413; --side-text: #F4F3EE; /* Brand accent */ --accent: #D4FF3A; /* signal */ --accent-fg: #0A0A0A; --signal: #D4FF3A; /* Semantic */ --ok: #1F8A5B; --warn: #E89A1F; --bad: #E23030; --info: #2A6FDB; /* Type */ --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; --font-display: 'Inter Tight', 'Inter', sans-serif; --font-mono: 'JetBrains Mono', ui-monospace, 'Menlo', monospace; /* Field input surface */ --input-bg: var(--bg); } [data-theme='dark'] { --bg: #0A0A0A; --surface: #141413; --elevated: #1C1C1A; --border: #262622; --border-hi: #33332E; --text: #F4F3EE; --text-dim: rgba(244, 243, 238, 0.72); --text-mute: rgba(244, 243, 238, 0.45); --ok: #34C77B; --warn: #F0B14A; --bad: #F05858; --info: #4D8BE8; --input-bg: rgba(244, 243, 238, 0.04); }