Change text color to white on any non-white background

Here is an idea that rely on background coloration and not mix-blend-mode. The trick is to have a gradient with the same dimension as the image that you move the same way to simulate the blend mode: const box = document.querySelector(“.box”); const h1 = document.querySelector(“h1”); window.addEventListener(‘mousemove’, function(event) { box.style.left = `${event.pageX – 50}px`; box.style.top = … Read more