Skip to content

Instantly share code, notes, and snippets.

@ff6347
Forked from edgalindo/BlueRainbow.js
Created November 14, 2016 14:51
Show Gist options
  • Select an option

  • Save ff6347/28c32fc127d5c6e10caf6f2ffb4f0efc to your computer and use it in GitHub Desktop.

Select an option

Save ff6347/28c32fc127d5c6e10caf6f2ffb4f0efc to your computer and use it in GitHub Desktop.
function setup() {
colorMode(HSB, 260, 100, 100, 100);
createCanvas(300, 300);
var a = 150;
var x = 10;
while (a < 360) {
fill(a, 75, 100);
rect(x, 0, 15, height);
a+=3;
x +=15;
}
}
function draw() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment