xxxxxxxxxx
19
let boja1 = "#bb8427";
let boja2 = "#db9d22";
let boja3 = "#ecaf21";
let boja4 = "#eeb123";
function setup() {
createCanvas(400, 400);
}
function draw() {
background(boja1);
noStroke();
fill(boja2);
rect(40, 63, 325, 325);
fill(boja3);
rect(80, 123, 242, 242);
fill(boja4);
rect(117, 179, 164, 164);
}