/* Prevent flashes by setting the base html color without javascript */
@layer fallback {
  @media (prefers-color-scheme: dark) {
    html {
      background-color: #15191d;
    }
  }

  @media (prefers-color-scheme: light) {
    html {
      background-color: white;
    }
  }
}
