value 1:

value 2

0-3 - red, 4-6 - yellow, 7+ green
code of mapper
rateMap = function(val,mode){
	if(val < 4){
		this.style.backgroundColor = '#FCDEE6';
	}else if(val < 7){
		this.style.backgroundColor = '#FCFCD4';
	}else{
		this.style.backgroundColor = '#CEF2CE';
	}
	return val;
}