SketchBook

saihuukadai

function setup() {
createCanvas(windowWidth,
windowHeight);
background(60, 170, 250);
}

function draw() {
var from = color(0, 250, 325, 100);
var to = color(355, 350, 350, 350);

stroke(355, 170);
fill(lerpColor(from, to, random(1.0)));
rect(random(width), random(height), 50, 50);
ellipse(random(width), random(height),50);
}