// Declarations go here void setup ( ) { size(900,800); background(250, 240, 225); noStroke(); frameRate(5); } void draw ( ) { background(255, 245, 220); // Homer fill(250,193,35); //yellow rect(300,300,40,40); fill(245,245,245); rect(300,340,40, 50); //white fill(89,79,217); rect(300,390,40,45); //blue // Marge fill(167,203,60); //olive rect(360,340,40,95); fill(250,193,35); //yellow rect(360,305,40,35); fill(40,80,240); //light blue rect(360,210,40,95); // Bart fill(89,79,217); //blue rect(420,405,40,30); fill(240,71,41); //red rect(420,375,40,30); fill(250,193,35); //yellow rect(420,345,40,30); // Lisa fill(229,77,35); //red orange rect(480,380,40,55); fill(250, 193, 35); //yellow rect(480, 350, 40, 30); // Maggie fill(147,189,255); //blue rect(540, 395,40, 40); fill(250, 193, 35); //yellow rect(540, 370, 40, 25); }