xxxxxxxxxx
19
let col = 18;
function setup() {
createCanvas(360, 360);
colorMode(HSB);
}
/*
Create an HSB color spectrum (18 columns)
*/
function draw() {
background(220);
for (let i = 0; i < col; i++) {
fill(i*360/18, 100, 100);
rect(i*width/18, 0, 400/18, height);
}
noStroke();
}