<span style="background-color: #ffcccc" onclick="cColor(this)">Я цветоменяло</span>
<span style="background-color: #ffcccc" onclick="cColor(this)">Я цветоменяло 2</span>
<span style="background-color: #ffcccc" onclick="cColor(this)">Я цветоменяло 3</span>
<script>
function cColor(obj){
obj.style.backgroundColor == 'rgb(255, 204, 204)' || obj.style.backgroundColor == '#ffcccc' ? obj.style.backgroundColor = '#f3f3ff' : obj.style.backgroundColor = '#ffcccc'
}
</script>