xxxxxxxxxx
28
//Darkness disco
//Created by Mirette Dahab
//January 4th, 2025
//independant work
//Genuary day 4
//Prompt: Black on Black
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
fill(18, 18, 18);
ellipse(width/2,height/2,350);
fill(18, 18, 18);
for(i = 0; i< width; i+=20){
for(j = 0; j< height; j+=20)
rect(i+1, j+1, 20,random(1,20));
}
fill(10,10,10);
ellipse(width/2,height/2,20);
for(k =0; k< 350;k+=random(15,20)){
fill(10,10,10,10);
strokeWeight(random(1,6));
ellipse(width/2,height/2, k)
}
}