Skip to content

Instantly share code, notes, and snippets.

@zamfi
Last active September 13, 2020 04:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zamfi/5a471412a11921366bbd5e2ffb4336bc to your computer and use it in GitHub Desktop.
Save zamfi/5a471412a11921366bbd5e2ffb4336bc to your computer and use it in GitHub Desktop.
var hues = [14,134,13,65,134,243,95,68,345];
colorMode(HSB);
noStroke();
for (var i = 0; i < hues.length; i += 1) {
fill(hues[i], 100, 100);
ellipse(20+i * 30, height/2, 15);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment