xxxxxxxxxx
50
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
fill("#09237b");
noStroke();
rect(0,0,400,150);
//x,y,w,h
fill("#003aff");
noStroke();
rect(0,100,400,200);
fill("#8f5104");
noStroke();
rect(0,300,400,100);
fill("#e8850c");
noStroke();
rect(0,200,400,100);
fill("#ffdb00");
noStroke();
rect(50,150,50,50);
fill("#ffdb00");
noStroke();
rect(100,100,50,50);
fill("#ffdb00");
noStroke();
rect(350,200,50,50);
fill("#000000");
noStroke();
rect(250,250,50,100);
fill("#a7b2d5");
noStroke();
rect(200,200,50,50);
fill("#a7b2d5");
noStroke();
rect(300,150,100,50);
}