xxxxxxxxxx
// https://coolors.co/06aed5-086788-f0c808-fff1d0-dd1c1a
function setup() {
createCanvas(windowWidth, windowHeight, WEBGL);
colorMode(HSB,360,100,100,100);
}
function draw() {
background(163, 8, 85);
rotateX(frameCount * 0.01);
rotateY(frameCount * 0.01);
for (let i = 0; i < 70; i++) {
let x = i *8;
ambientLight(360,50,80); // white light
ambientMaterial(random(343), 30, 30, 5); // magenta material
stroke(random(360),90,30);
strokeWeight(3);
// noStroke();
box(x);
}
}