Created
July 4, 2025 08:46
-
-
Save alanshaw/31b3fec17fd370d975fa20b64710656c to your computer and use it in GitHub Desktop.
Print the charm colours 0-255
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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