xxxxxxxxxx
let hue;
function setup() {
createCanvas(windowWidth,windowHeight);
background(100);
colorMode(HSL, 255);
hue = 0;
}
function draw() {
// Change the second number to make it more grey, change the third number to make it lighter/darker
background(hue, 255, 150);
hue++;
if(hue > 255) {
hue = 0;
}
}