xxxxxxxxxx
17
var randomH, randomS, randomB
function setup() {
createCanvas(400, 400);
randomH = int(random(360));
randomS = int(random(100));
randomB = int(random(100));
}
function draw() {
background(220);
//hit play to generate a new color!
textSize(20);
text("(" + randomH + ", " + randomS + ", " + randomB + ")", 150, height/2);
}