Out of the Sandbox Flex Theme Header Change colour on Scroll

Hi @lcameron

Add this code above the tag, in the theme.liquid file
https://prnt.sc/9W1BEGOaZy6H

{% if template.name == "index" %}
  
  {% style %}
    header#header {
        background: white !important;
    }
    header#header * {
        color: black !important;
    }
    a.header__logo.header__link.overlay-logo .image-element__wrap > img {
        filter: brightness(0) !important;
    }
  {% endstyle %}
{% endif %}

Please let me know if it works. Thank you!Best,
Daisy - Avada Support Team