:root{
  color-scheme:dark;
  --bg:#080808;
  --sidebar:#0b0b0b;
  --panel:#111;
  --panel-2:#161616;
  --panel-hover:#1a1a1a;
  --input:#0d0d0d;
  --border:#272727;
  --border-strong:#363636;
  --text:#f4f4f4;
  --muted:#9a9a9a;
  --muted-2:#6f6f6f;
  --accent:#f5f5f5;
  --accent-text:#0b0b0b;
  --danger:#ff6b6b;
  --success:#61d095;
  --warning:#eab65f;
  --focus:#fff;
  --backdrop:rgba(0,0,0,.78);
}
body.light-theme{
  color-scheme:light;
  --bg:#f4f4f2;
  --sidebar:#fafaf9;
  --panel:#fff;
  --panel-2:#f7f7f5;
  --panel-hover:#f0f0ed;
  --input:#f6f6f4;
  --border:#deded9;
  --border-strong:#c8c8c2;
  --text:#111;
  --muted:#696966;
  --muted-2:#92928c;
  --accent:#111;
  --accent-text:#fff;
  --danger:#c83737;
  --success:#13794b;
  --warning:#9b650b;
  --focus:#111;
  --backdrop:rgba(20,20,20,.48);
}
body{background:var(--bg);color:var(--text)}

