xxxxxxxxxx
24
let yummygreen = "rgba(0,60,0,.7)";
function setup() {
createCanvas(800, 800);
background(50);}
function draw(){
for (let i = 0; i < width; i++) {
fill(color(yummygreen));
strokeWeight(5);
stroke(color(0, 0, 200));
circle(random(0, 800), random(0, 800), random(0, 150));
// fill(yummygreen);
// strokeWeight(5);
// stroke(color(0, 200, 200));
// circle(random(0, 800), random(0, 800), random(0, 50));
stroke(250);
strokeWeight(5);
point(random(0, 800), random(0, 800));
}
}