/* --- CSS Variables (Light) --- */
:root {
  --accent: #04ca15;
  --accent-hover: #26c731;
  --bg-tint: #edf2e6;
  --bg: #fbfefb;
  --text: #1a1a1a;
  --text-muted: #52525b;
  --line: #e4e4e7;
  --selection: rgba(192, 233, 192, 0.25);
}

/* --- CSS Variables (Dark) --- */
html.dark {
  --accent: #0ac836;
  --accent-hover: #12cc15;
  --bg-tint: #031f05;
  --bg: #151515;
  --text: #e4e4e7;
  --text-muted: #a1a1aa;
  --line: #2d2d30;
  --selection: rgba(11, 64, 11, 0.25);
}