xxxxxxxxxx
20
let pearlColor="#cfd2b2";
let greyColor="#9c9990";
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
for (let i=25; i<width; i+=50) {
for (let j=25; j<height; j+=50) {
if ((i+j) % 100 ==0) {
fill(pearlColor);
} else {
fill(greyColor);
}
circle(i,j,50);
}
}
}