xxxxxxxxxx
30
function setup() {
createCanvas(500, 500);
}
function draw() {
background("#1936D4");
fill('#2FBDF7')
textSize(50);
text('Katie', 190, 65);
fill('#F575DB');
circle(250, 250, 300);
fill('#2FBDF7');
ellipse(200, 200, 40, 55);
ellipse(300, 200, 40, 55);
fill('#190FD7');
ellipse(300, 200, 10, 15);
ellipse(200, 200, 10, 15);
fill('#6B38EB');
triangle(220, 280, 250, 230, 280, 280);
fill('#B728D4')
arc(250, 300, 130, 130, 0, radians(180), PIE);
}