void setup(){ size(300,375); framerate(30); } void draw(){ background(#81DFF3); //ears line(75, 85, 125, 150); line(125, 85, 125, 175); //head fill(173,247,112); ellipse(150,180,150,100); smooth(); //eyeball fill(255); ellipse(175,175,25,25); smooth(); //pupil fill(0); ellipse(175,175,5,5); smooth(); //eyeball fill(255); ellipse(100,175,25,25); smooth(); //pupil fill(0); ellipse(100,175,5,5); smooth(); //mouth fill(240,6,55); ellipse(145,210,30,15); smooth(); }