/* Manual dark-mode override — applied when JS sets html.theme-dark
   (overrides the light prefers-color-scheme system preference).
   Only the three base colours change; everything else derives from
   them in main.css. */

.theme-dark {
    --bg:          #1c1c1e;   /* dark grey  */
    --text:        #ffffff;   /* white      */
    --highlight:   #8fc7ff;   /* light blue */
    --accent-text: var(--bg); /* dark label on highlight fill */
}
