Good afternoon,
I am trying to add mix-blend-mode to my SVG logo so when you scroll it will change from black to white as you reach different coloured backgrounds AKA like:
I have inserted my SVG in the header like so:
<img src="https://WEBSITE/staging/8688/wp-content/uploads/2024/07/Logo.svg" class="Logo" role="img" />
and added the following CSS:
.Logo {
color: white;
width: 96px;
mix-blend-mode: difference;
}
The SVG displays but stays white when I scroll no matter what the background colour - please advise
Thank you!
Jason