xxxxxxxxxx
17
let color1="#48639c30";
let color2="#8cb36930";
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
fill("#48639c30")
for (let i=0; i<=300; i+=25) {
fill(color1);
rect(i,i,100,100,6,6);
fill(color2);
rect(300-i,i,100,100,6,6);
}
}