xxxxxxxxxx
46
function setup() {
createCanvas(800, 800);
}
function draw() {
background("white");
noStroke();
fill("#ff92dd");
rect(100,0,100,100);
rect(0,100,100,100);
rect(200,600,100,100);
rect(100,700,100,100);
fill("#ff6f6f");
rect(200,0,100,100);
rect(700,100,100,100);
rect(700,100,100,100);
rect(0,200,100,100);
rect(300,600,100,100);
rect(200,700,100,100);
fill("#ff9840");
rect(300,0,100,100);
rect(200,100,100,100);
rect(100,200,100,100);
rect(0,300,100,100);
rect(300,700,100,100);
fill("#fc30bc");
rect(400,0,200,200);
rect(300,100,100,200);
rect(600,200,200,200);
rect(700,400,100,100);
fill("#92fffd");
rect(600,0,100,100);
rect(0,600,100,100);
fill("#a546fc");
rect(700,0,100,100);
rect(100,600,100,100);
rect(0,700,100,100);
fill("#ffe440");
rect(100,300,100,100);
rect(0,400,100,100);
fill("#c6ff92");
rect(200,300,100,100);
rect(0,500,100,100);
fill("#d274fa");
rect(400,300,100,100);
}