xxxxxxxxxx
23
let c1=255;
let c2=0;
let c3=0;
function setup() {
createCanvas(400, 400);
background(0);
for(let j=0;j<10;j++){
for(let i=0;i<8;i++){
noStroke();
fill(random(100,255),random(100,255),random(100,255));
rect(i*50,height/1.5-j*15,200,10);
}
}
}
function draw() {
}