xxxxxxxxxx
function setup() {
createCanvas(600,600);
background(100,0,150);
//purple background
//head
fill(255); //white head
ellipse(300,250,100,100);
//body
fill(255); //white body
strokeWeight(3);
ellipse(300,400,150,200);
//ears
fill(255);
ellipse(240,180,40,100);// left ear
ellipse (360,180,40,100); //right ear
//inner ears
fill(255,190,200);// pink color
ellipse(240,180,30,70);
ellipse(360,180,30,70);
//eyes
fill(0); //black eyes
ellipse(270,240,10,10);//left eye
ellipse(330,240,10,10);// right eye
//nose
fill(255,190,200);//pink fill
triangle(300,260,290,280,310,280);
//mouth
noFill();
stroke(0);
strokeWeight(2);
arc(300,290,30,10,0,radians(180));
//feet
fill(255,192,203)
rect(250,490,30,10); //left foot
rect(320,490,30,10); // right foot
}