/* Tint the header logo with the theme's primary colour. Without this it
   inherits the modern header's neutral grey foreground. Setting `color`
   drives the SVG's `currentColor`; `fill` covers the direct case too.
   Using the CSS variable (rather than a fixed hex) keeps the logo in step
   with the palette, so changing the primary colour recolours the heart. */
.md-logo {
  color: var(--md-primary-fg-color);
}

.md-logo svg {
  fill: var(--md-primary-fg-color);
}
