/* NTNU CIS colors sampled from www.ntnu.edu.tw。
   深色模式值是 #840000 的提亮色調，為了在深色表面保持可讀性，
   同時與 --fgColor-danger 清楚區分。 */

:root {
  --brandColor: #4E070B;
  --bgColor-accent-muted: #fbe9e9;
  --borderColor-accent-emphasis: #840000;
  --fgColor-accent: #840000;
}

/* 深色主題：系統偏好為預設信號，data-theme 手動切換一律勝出 */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --brandColor: #4E070B;
    --bgColor-accent-muted: #84000033;
    --borderColor-accent-emphasis: #9e2b31;
    --fgColor-accent: #dc8b91;
  }
}

:root[data-theme="dark"] {
  --brandColor: #4E070B;
  --bgColor-accent-muted: #84000033;
  --borderColor-accent-emphasis: #9e2b31;
  --fgColor-accent: #dc8b91;
}
