Change header text colour for a specific page

For every other page except home page: I want my header background to be white and header text to be black but I want my home page header to remain as it currently is (white header text, and transparent background which turns black when scrolling down)

Any help would be appreciated please! thank you :slightly_smiling_face:

My website is: https://layaandlu.myshopify.com/

Go to your Online store > Themes > Edit code, add this code under element

{% if template != 'index' %}
sticky-header.header-wrapper {
background-color: #000;
}
sticky-header.header-wrapper * {
color: #fff;
}
{% endif %}

It doesn’t work.

Sorry, please update the code to this

{% if template != 'index' %}

{% endif %}