xxxxxxxxxx
18
function setup() {
createCanvas(400, 400);
noStroke()
fill(0)
let temp = 72
if (temp < 32){
fill('lightblue')
}else if (temp > 85){
fill('orangered')
}else{
fill('green')
}
circle(200, 200, temp)
}