SketchBook

function setup() {
createCanvas(windowWidth,
windowHeight);
background(234, 362, 266);
}

function draw() {
var from = color(0, 200, 255, 40);
var to = color(255, 100, 150, 40);

fill(lerpColor(from, to, random(3.0)));
ellipse(random(width), random(height), 99, 100);
}