xxxxxxxxxx
62
function setup() {
createCanvas(400, 400);
}
function draw() {
background('rgb(127,141,124)');
//neck
stroke('#3F3021');
strokeWeight(3);
fill('#523F2D');
triangle(200,300,300,399,100,399);
//hijab
fill('#523F2D');
circle(width/2,height/2,270);
//head
fill('#E4CAA5');
circle(width/2,height/2,200);
//spot
fill('#F3EFEB');
point(240,235,5);
//nose
fill('#DABB8F');
stroke('#C9A573');
triangle(200,210,210,250,190,250);
//eyes
fill(0);
noStroke();
circle(155,210,30);//left
circle(240,210,30);//right
//eyelash
fill(0);
stroke(0);
strokeWeight(4);
line(160, 210, 130, 200);//left
line(240, 210, 265, 200);//right
//mouth
fill('#D68F8F');
stroke('#C98181');
ellipse(200,270,20,10);
//blush
noStroke();
fill('#D68F8F5B');
circle(143,250,20);//left
circle(257,250,20);//right
//eyebrows
stroke('#36281B');
strokeWeight(5);
line(180,170,135,170);//left
line(220,170,265,170);//right
}