Earlier quoted context omitted.
As a quick workaround, you can set a CSS filter on the whole page: Either use dev tools to put a rule `filter: hue-rotate(60deg);` on the `body` element, or simply run `javascript:void(document.body.style.filter='hue-rotate(60deg)')` from the url bar.
let i = 0; setInterval(() => document.body.style.filter=`hue-rotate(${i++}deg)`, 16); Disco mode! (better to use requestAnimationFrame but I'm lazy atm)
let i = 0;
function bump() {
document.body.style.filter=`hue-rotate(${i+=2}deg)`, 16;
requestAnimationFrame(bump);
}
requestAnimationFrame(bump);