SketchBook

function setup() {
createCanvas(windowWidth,
windowHeight);
background(234, 234, 234);
textSize(40);
stroke(0,0,0);
noFill();
text("Sara Nagata",20,50);
}

function draw() {
var from = color(10 , 150, 255, 20);
var to = color(50, 50,200 , 40);

stroke(255, 100);
fill(lerpColor(from, to, random(1.0)));
 ellipse(random(width), random(height), 90, 90);
}