Colour perception test

24, only because I tilted the laptop screen for the last two :P

I think this has much more to do with monitor quality than actual colour perception :)
 
My eyes are pretty crap but with the help of a bit of rather crap javascript I got to 4403

Code:
var timer = setInterval(function(){
var prev_color = $('#box span').first().css('background-color');
var clicked = false;
$('#box span').each(function(i, data){
var this_color = $(this).css('background-color');
if(prev_color != this_color){
$(this).click();
return true;
}
});
if(clicked == false){ $('#box span').first().click() }
}, 1);
 
Last edited:
Back
Top Bottom