xxxxxxxxxx
35
y = 10;
xoff = 0;
function setup() {
createCanvas(700, 700);
let shades = ['#76AA8B', '#3A6554', '#A1A56F', '#DEB700', '#FFC7B8'];
let shade = random(shades);
c = color(shade);
background(c);
stroke(c);
}
function draw() {
xoff = xoff + 0.1;
let n = noise(xoff) * 100;
let shades = ['#76AA8B', '#3A6554', '#A1A56F', '#DEB700', '#FFC7B8'];
let shade = random(shades);
c = color(shade);
fill(c);
for (x = 0; x < 360; x++) {
push();
translate(width / 2, height / 2);
rotate(radians(x *n));
ellipse(x, y, x, y);
pop();
}
y = y + 100;
}