/* Swap brand logos with the Material color scheme toggle.
   Two <img> tags are emitted per logo; exactly one is visible per scheme. */
.logo-dark {
  display: none;
}

[data-md-color-scheme="slate"] .logo-light {
  display: none;
}

[data-md-color-scheme="slate"] .logo-dark {
  display: inline;
}
