I have a problem with the color transition on my site.
Basically, I want to transition from a black background-color to white but I want it to go like on this site https://bullmade.dk/ - smooth (check the inspect when you scroll or the video below). https://streamable.com/w3uso2
I tried it like this but it doesn't work smoothly on mobile...
body {
background-color:rgba(0,0,0);
-webkit-transition: background-color .3s linear;
-ms-transition: background-color .3s linear;
transition: background-color .3s linear;
will-change: background-color;
}
I really appreciate any help you can provide.