//set up the canvas size(400, 400); background(102, 234, 108); //draw the ears and head fill(0); stroke (255); strokeWeight(2); triangle(100, 20, 120, 150, 80, 150); triangle(300, 20, 320, 150, 280, 150); ellipse(200, 200, 260, 260); //eyes fill(0, 145, 30); ellipse(150, 170, 26, 26); ellipse(250, 170, 26, 26); //nose fill(234, 200, 200); triangle(200, 200, 220, 240, 180, 240); //mouth strokeWeight(4); line(160, 270, 240, 270);