xxxxxxxxxx
function setup() {
createCanvas(400, 300); //canvas size in width and height
}
function draw() {
background(255); //background color, 255 = white, 0 = black
rectMode (CENTER); //x and y position of the square is the center
fill (255); //gray
// rect (70, 175, 100, 20);
fill (128,0,128,63); //is for filling in shapes
ellipse (200, 150, 250, 250);
fill (255,192,203,191);
triangle (90, 210, 200, 25, 310, 210);
fill (255,105,180,191);
triangle (200, 275, 90, 90, 310, 90);
fill (219,112,147,191);
triangle (260, 260, 76, 150, 260, 40);
fill (199,21,133,191);
triangle (324, 150, 130, 252, 132, 45);
}