Skip to content

Instantly share code, notes, and snippets.

@sentientwaffle
Created June 6, 2014 21:13
Show Gist options
  • Save sentientwaffle/d9a6e046d639157a9c2c to your computer and use it in GitHub Desktop.
Save sentientwaffle/d9a6e046d639157a9c2c to your computer and use it in GitHub Desktop.
256 colors
function color(n) {
return '\u001b[38;5;' + n + 'm'
}
var clear_color = '\u001b[39m'
var str = ""
for (var i = 0; i < 256; i++) {
if (i && i % 32 === 0) str += "\n"
str += color(i) + "X" + clear_color
}
console.log(str)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment