KADAI
function setup() {
createCanvas(windowWidth,
windowHeight);
background(234, 234, 234);
}
function draw() {
var from = color(0, 255, 100, 40);
var to = color(255, 50, 255, 40);
stroke(120, 170);
fill(lerpColor(from, to, random(1.0)));
ellipse(random(width), random(height), 40, 40);
rect(random(width),random(height),50,50);
}