1 comment

[ 4.5 ms ] story [ 10.3 ms ] thread
It would be better if I can choose the color with keyboard buttons, like with

    Q W E R T
    A S D F G
Moving the cursor is really slow and is a disadvantage, especially with a touchpad, however I haven't tried on touchscreen.

Btw,

    setInterval(function() {
     var color = document.querySelector("#kolor-kolor").style.backgroundColor;
     var links = document.querySelectorAll("#kolor-options a");
     for(i in links) {
      if(links[i].style.backgroundColor == color) {
       links[i].click();
       return;
      }
     }
    }, 10);