xxxxxxxxxx
12
let colors = ['red', 'orange', 'yellow', 'green', 'blue', 'purple', '#000', '#333', '#666', '#999', '#ccc', '#fff']
function setup() {
createCanvas(400, 400);
noStroke()
}
function draw(){
let now = clock()
fill(colors[now.hour])
rect(50, 50, 200, 200)
}