xxxxxxxxxx
35
/*
Colors
*/
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
noStroke ();
// hsb color
colorMode(HSB);
// hsb color
fill(20,100,100);
circle(200,200,600);
fill('rgb(143,34,34)');
circle(200,200,350);
// hsb color
colorMode(HSB);
fill("yellow");
circle(200,200,250);
// hsb
fill('red');
circle(200,200,150);
}