Hello! I use the spotlight theme and have made my store header transparent and solid on scroll through the code:
header {
background-color: transparent;
top: 0;
left: 0;
right: 0;
z-index: 0;
transition: background-color 0.3s ease-in-out;
}
header.solid {
background-color: #fff;
}
I would like to change color on the menu and logo from white to black when i scroll.

