Uriy2
Да, цвет ячейки определяется так:
class_f = 35 - round((f - 100)/10);
if(class_f<35) class_f = 35;
if(class_f>46) class_f = 46;
где f - значение относительной влажности воздуха в процентах.
Цвета для разных классов от 35 до 46:
.temp_35 {background-color: rgb(105, 255, 204)}
.temp_36 {background-color: rgb(0, 230, 119)}
.temp_37 {background-color: rgb(0, 230, 80)}
.temp_38 {background-color: rgb(0, 240, 40)}
.temp_39 {background-color: rgb(0, 250, 0)}
.temp_40 {background-color: rgb(255, 255, 153)}
.temp_41 {background-color: rgb(254, 225, 0)}
.temp_42 {background-color: rgb(254, 200, 0)}
.temp_43 {background-color: rgb(254, 174, 0)}
.temp_44 {background-color: rgb(254, 150, 0)}
.temp_45 {background-color: rgb(230, 125, 0)}
.temp_46 {background-color: rgb(230, 100, 0)}