xxxxxxxxxx
27
function setup() {
createCanvas(400,400);
}
function draw() {
scale(50);
background("#E4E4E4");
fill("#988CBF");
noStroke();
rect(1,0,4,1);
rect(0,1,8,1);
rect(0,2,1,2);
rect(7,2,1,2);
fill("#BFBC8C");
noStroke();
rect(1,2,6,6);
rect(0,4,1,2);
rect(7,4,1,2);
fill("black");
noStroke();
rect(2,3,1,1);
rect(5,3,1,1);
rect(3,5,2,1);
fill("#BF8C8C");
rect(3,6,2,1);
}