/* Served from /public so Tailwind PostCSS does not rewrite these selectors. */

@media (prefers-color-scheme: dark) {
  html:not([data-theme]) {
    --accent: #92032d;
    --bg: #141414;
    --coral: #ed4e49;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text: #f5f5f5;
    --text-secondary: #aaaaaa;
  }
}

html[data-theme="light"] {
  --accent: #9a0002;
  --bg: #eee6de;
  --coral: #ed4e49;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --text: #1a1a1a;
  --text-secondary: #555555;
}

html[data-theme="dark"] {
  --accent: #92032d;
  --bg: #141414;
  --coral: #ed4e49;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.2);
  --text: #f5f5f5;
  --text-secondary: #aaaaaa;
}
