xxxxxxxxxx
17
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
noStroke();
let c = color(150, 100, 35);
print(c);
fill(c);
rect(0, 0, 100, 100);
colorMode(HSB);
c = color(150, 100, 35);
fill(c);
rect(0, 100, 100, 100);
noLoop();
}