xxxxxxxxxx
66
function setup() {
createCanvas(700, 700);
x = 5
y=5
x2 = random(0, 700);
y2 = random(0, 350);
w2 = random(100, 500);
noStroke();
let shades = ["#A50042", "#F6DDD4", "#E19C18", "#6E8F82", "#006366", "#0f4057"];
let shade3 = random(shades);
cS3 = color(shade3);
}
function draw() {
y = (random(50, 350));
w = (random(100, 200));
h = height - y;
w1 = (w - 48) / 8;
h1 = (h - 108) / 20;
let shades = ["#A50042", "#F6DDD4", "#E19C18", "#6E8F82", "#006366", "#0f4057"];
let shade4 = random(shades);
cS4 = color(shade4);
let shade5 = random(shades);
cS5 = color(shade5);
rX=random(20,50)
rY=random(20,50)
fill(cS4);
noStroke();
rect(x, y, rX, rY);
stroke(cS5);
noFill();
rect(x + 3, y + 3, rX,rY);
rect(x, y, rX, rY);
x = x + rX;
y=y+rY;
if (x > width) {
x = -2;
y = y + rX;
}
if (y > height) {
noLoop()
}
}