Skip to content

Instantly share code, notes, and snippets.

@alanshaw
Created July 4, 2025 08:46
Show Gist options
  • Save alanshaw/31b3fec17fd370d975fa20b64710656c to your computer and use it in GitHub Desktop.
Save alanshaw/31b3fec17fd370d975fa20b64710656c to your computer and use it in GitHub Desktop.
Print the charm colours 0-255
import createCharm from 'charm'
const charm = createCharm()
charm.pipe(process.stdout)
charm.reset()
for (var i = 0; i < 256; i++) {
charm.background(i).write(i+'\n')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment