SketchBook

color

function setup() {
createCanvas(windowWidth,
windowHeight);
background(232, 2152, 288);
}

function draw() {
var from = color(2, 2, 273, 40);
var to = color(55, 245, 215, 43);

stroke(255, 170);
fill(lerpColor(from, to, random(1.0)));
rect(random(width), random(height), 99, 57);
}