Rainbow EVERYTHING*!

All (properly formatted non-extension) websites will become RAINBOW!

作者
Jos KVW
日安装量
0
总安装量
10
评分
0 0 0
版本
1.0
创建于
2022-01-03
更新于
2022-01-03
大小
575 字节
许可证
GNU GPLv3
适用于

it just works!™
If you want to add this to your site, just paste the HTML found below. Adjust the speed variable if the effect is to fast or slow.

<script>
    var dg = 0
    const speed = 10
    setInterval(() => {
        document.querySelector(':root').style.setProperty('filter', `hue-rotate(${dg}deg)`);
        dg += speed
    }, 100);
</script>