void setup(){ size(900, 600); colorMode(HSB, 100); background(0); } void draw(){ for (int i=0; i<300; i++){ stroke(random(20), random(35), 99); point(random(30, width-30), random(30, 570)); stroke(random(25), random(30), 40); point(random(30, width-30), random(400, 500)); stroke(random(10), random(30), 10); point(random(30, width-30), random(406, 412)); stroke(5); point(random(30, width-30), random(30, 570)); } }