Dawn theme - invert header logo (reactive to transparent header)

Trying to get my logo in my header to invert when the header is transparent?

so far I’ve been able to invert the logo but it doesn’t change back when the header has a filled background

I used this in base.css

.header__heading-logo {
  filter: invert(100%);
}

however I need it to be only when .site-header-transparent is active?

Please see screenshots for examples of desired outcome :slightly_smiling_face:

Hi @joedogfish

Depending on the placement of the site-header-transparent. This should work

.site-header-transparent .header__heading-logo {
  filter: invert(100%);
}