xxxxxxxxxx
void setup(){
size(600,600);
background(255,230,150);
noStroke();
smooth();
noLoop();
}
void draw(){
shape(255,10,200,200,400);
shape(255,10,50,50,50);
shape(255,10,320,75,100);
shape(255,10,150,275,100);
shape(255,10,390,390,100);
}
void shape(color rando, int weight, int x, int y, int size){
rando = color(random(255),random(255),random(255));
fill(rando);
stroke(rando);
strokeWeight(weight);
ellipse(x,y,size,size);
fill(random(210),100,200);
ellipse(x,y,size,size);
fill(rando);
rect(x,y,size,size);
}