/* Base variables overridden by the active theme file */ :root { color-scheme: dark; --bg: #0a0b0d; --surface: #111318; --surface2: #181b22; --border: #232733; --border-bright: #2e3444; --accent: #e8c842; --accent2: #4a9eff; --accent-live: #ff4444; --text: #c8cdd8; --text-dim: #5a6070; --text-bright: #eef0f5; --prog-bg: #141820; --prog-border: #1e2a3a; --prog-live-bg: #0d2040; --prog-live-border: #4a9eff; --font-ui: 'Barlow Condensed', sans-serif; --font-mono: 'Share Tech Mono', monospace; --channel-w: 160px; --row-h: 80px; --header-h: 52px; } html, body { height: 100%; } body { background: var(--bg); color: var(--text); font-family: var(--font-ui); font-size: 14px; overflow: hidden; display: flex; flex-direction: column; }