﻿:root {
  --bg: #ffffff;
  --panel: #f7f8fa;
  --text: #111318;
  --muted: #606774;
  --line: #e3e6eb;
  --accent: #1f6feb;
  --accent-text: #ffffff;
  --theme-button-bg: #202020;
  --theme-button-text: #ffffff;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #202020;
  --panel: #252525;
  --text: #f5f6f8;
  --muted: #a7adb7;
  --line: #343434;
  --accent: #4f8cff;
  --accent-text: #ffffff;
  --theme-button-bg: #ffffff;
  --theme-button-text: #202020;
}

body {
  background: var(--bg);
  color: var(--text);
}
