xxxxxxxxxx
26
function setup() {
createCanvas(950, 1150);
}
function draw() {
//fo background in rgb remember to close the expression ''
background('rgb(138,39,242)');
fill(249,202,6);
rect(150,575,500,160);
fill(249,202,6);
rect(250,415,295,160,20,85,5,5);
fill(2,2,2);
rect(250,595,60,60);
fill(2,2,2);
rect(310,625,60,60);
fill(2,2,2);
rect(370,595,60,60);
fill(2,2,2);
rect(413,625,60,60);
fill(35,33,33);
ellipse(250,735,140,140);
fill(35,33,33);
ellipse(550,735,140,140);
}