SketchBook

2022 / 09 / 21

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

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

fill(lerpColor(from, to, random(1.0)));
ellipse(random(width), random(height), 50, 50);
}