function setup() {
createCanvas(400, 400);
}
function draw() {
stroke(0)
strokeWeight(2)
background(240,141,202);
fill(250,238,0);
ellipse(200,200,200,200);
fill(250,250,250);
ellipse(240,140,20,20);
ellipse(160,140,20,20);
fill(0,0,0);
ellipse(240,140,10,10);
ellipse(160,140,10,10);
if (mouseX > 100 && mouseY > 100) {
fill(150,5,5);// achtergond mond
ellipse(200,200,150,80);
fill(240,141,202);// tong
ellipse(200,210,120,60);
fill(0);
line(200,210,200,180);//tong streep
} else {
fill(0);
line(150,190,250,190);}
https://editor.p5js.org/emptyfish8/full/yVQhhQb1J