SketchBook

function setup(){
createCanvas(700,700);
}

function draw(){
background(255,255,255)
fill(240,248,255);
stroke(200,100,100,200);
strokeWeight(20);
fill(200,100,110,random(0,500));
point(350,50)
fill(50,30,11,random(0,500));
line(100,100,600,100)
fill(10,300,150,random(0,500));
triangle(250,350,350,150,450,350);
fill(10,100,110,random(0,500));
rect(100,400,200,200);
fill(10,100,250,random(0,500));
ellipse(500,500,200);
}