/* Design tokens: the only file to edit to re-theme the console. */
:root {
  --bg: #0f1115;
  --panel: #171a21;
  --panel-2: #1e222b;
  --line: #2a2f3a;
  --text: #e6e9ef;
  --muted: #9aa3b2;
  --accent: #7c9cff;
  --ok: #4ade80;
  --warn: #fbbf24;
  --mask: #38bdf8;
  --bad: #f87171;
  --radius: 10px;
  --mono: ui-monospace, SFMono-Regular, "JetBrains Mono", Menlo, monospace;
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: #f6f7f9; --panel: #fff; --panel-2: #f0f2f6; --line: #dfe3ea;
    --text: #12151b; --muted: #5d6675;
  }
}
