xxxxxxxxxx
37
y = 0;
function setup() {
createCanvas(700, 700);
background('#FFE9E2');
fill('#ECE6DA')
noStroke();
frameRate(15);
}
function draw() {
y = y + 1;
rot = random(360);
let shades = ['#FFA789', '#DE5A3B', '#C3E8D1', '#659377'];
let shade = random(shades);
c = color(shade);
for (x = 0; x < 10; x = x + 1) {
push();
translate(width / 2, height / 2);
rotate(radians(x * rot));
rect(x, y, x, y * 3);
pop();
}
if (y < 70) {
fill(c);
} else {
fill('#FFE9E2');
}
if (y > 140) {
noLoop();
}
}