SketchBook

function setup() {
createCanvas(700,700);
}
function draw() {
background(255,255,255);
point(500,200);
line(300,200,100,400);
stroke(0,255,255);
triangle(300,400,250,400,300,700);
fill(255,127,80,random(0,348));
ellipse(345,300,40);
fill(255,105,180,random(0,378));
rect(435,534,250,123);
fill(255,105,180,(0,500));
strokeWeight(11);
stroke(0,255,255);
fill(135,206,250,random(0,240));
}