/* filename: public/assets/theme.css */
/* What it does: Central CSS custom properties for dark and light theme support */
/* Where it goes: Save as public/assets/theme.css */

:root {
  --bg: #000000;
  --surface: #0a0a0a;
  --border: #1a1a1a;
  --text: #ffffff;
  --muted: #6b7280;
  --subtle: #374151;
}

body.light-mode {
  --bg: #ffffff;
  --surface: #f9fafb;
  --border: #e5e7eb;
  --text: #000000;
  --muted: #6b7280;
  --subtle: #9ca3af;
}
