xxxxxxxxxx
30
y = -10;
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);
fill(c);
for (x = 0; x < (mouseX/2); x = x + mouseY/100) {
push();
translate(width / 2, height / 2);
rotate(radians(x * 5));
rect(x, y, x, y);
pop();
}
}