setInterval(_=>{
icons.forEach(function(element, i){
setTimeout(function(){
element.style.color = 'white'
setTimeout(_=>{
element.style.color = 'green'
}, 400)
}, 240 * ++i)
});
}, icons.length*200 + 800)