CL+
function setup() {
createCanvas(700,700);
background(250,250,250);
}
function draw() {
background(250,250,250);
point(100,100);
fill(0,139,139,250);
strokeWeight(20);
fill(175,238,238,250);
line(500,500,200,200);
fill(175,238,238,250);
triangle(100,300,110,110,200,600);
rect(400,200,100,150);
ellipse(600,150,100);
}