xxxxxxxxxx
let colourList = ["#EAB347", "#CC5322", "#799759", "#C2D59F", "#FCF0B3"]
function setup() {
createCanvas(windowWidth, windowHeight);
background(200);
noLoop()
}
function draw() {
const spacing = 50
for (let x = 0; x <= width; x = x + spacing) {
for (let y = 0; y <= height; y = y + spacing) {
noStroke()
fill(random(colourList))
circle(x, y, (random(5, 50)))
}
}
}