/* Override the theme's default orange palette with a blue one.
   The terminal theme references --background, --foreground, --accent
   via CSS variables defined in main.css; redefining them on :root
   here takes precedence because this file is loaded after main.css.
   Source palette: https://panr.github.io/terminal-css/ (blue) */
:root {
  --background: #14181c;
  --foreground: #ebebeb;
  --accent:     #7ec8e3;
}
