xxxxxxxxxx
function setup() {
createCanvas(400,400);
}
function draw() {
background(166, 186, 168);
strokeWeight(0)
fill(99, 59, 45)
//triangle(200,200,60,200,200,100)
//triangle(200,200,100,200,200,100)
//triangle(200,200,300,200,200,100)
triangle(240,200,100,150,190,400)
fill(99, 59, 45)
//circle(225,150,200)
fill(150, 37, 219)
circle(180,150,200)
//text
stroke(20)
strokeWeight(1)
fill(0)
textSize(20)
text('Ice Cream Man',10,20)
circle(125,130,50)
circle(220,130,50)
circle(175,190,50)
}