xxxxxxxxxx
void setup(){
size(350,350);
background(0);
noStroke();
//HSB(色相、彩度、明度)で色を指定する。
colorMode(HSB);
}
void draw(){
//ランダムな色、ランダムな位置、ランダムな大きさを変数に代入する
float hue = random(100, 190);
float x = random(0,width);
float y = random(0,height);
float w = random(5,20);
//円を描く
fill(hue,255,255,128);
ellipse(x, y, w, w);
}