/* Hide the dark logo by default (in light mode) and show the light one */
.brand-logo-light {
  display: inline-block;
}
.brand-logo-dark {
  display: none;
}

/* When the theme is dark, hide the light logo and show the dark one */
[data-bs-theme="dark"] .brand-logo-light {
  display: none;
}
[data-bs-theme="dark"] .brand-logo-dark {
  display: inline-block;
}