var spans = document.querySelectorAll('.colon');
var op = [0.2, 0.4, 0.6, 0.8, 1.0];
step = 0;
(function color() {
spans.forEach(function(elem) {
elem.style.opacity = op[step];
});
step = ++step % op.length;
setTimeout(color, 200);
})()
вроде так... ничего не пропустила?