SketchBook

CL

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

function draw() {

background(255);

stroke(76,128,104,70);
strokeWeight(8);

fill(102,136,153,random(0,80));

point(150,250);
line (300,250,400,250)
strokeWeight(5);

triangle(100,450,200,450,150,350);

fill(255,218,185,random(0,90));
rect(300,350,100,100);

fill(35,59,108,random(0,80));

frameRate(10);

ellipse(550,400,random(50,100));
}