SketchBook

ないとむーん

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

function draw() {
noStroke();
fill(frameCount, 160+ frameCount, 30, 3);
ellipse(150, 80, frameCount);
}