var c
var b
var d
function setup() {
createCanvas(400, 400);
c = color('pink')
b = color('black')
d = color('#e6a5b5')
}
function draw() {
background(220);
fill(c);
stroke('#e6a5b5');
strokeWeight(3)
ellipse(200, 200, 150, 150);
arc(120, 120, 140, 140, 0,HALF_PI);
fill(b)
stroke('black')
circle(190), 190, 20);
circle(230), 190, 20);
fill(c)
stroke('#e6a5b5')
arc(280, 120, 140, 140, HALF_PI, PI);
fill(d)
ellipse(200, 220, 40, 40);
fill(c)
ellipse(190, 218, 15, 15);
ellipse(210, 218, 15, 15);
fill(d)
}