Last active
December 1, 2023 13:06
-
-
Save ahndmal/cd3153a05009100ae8b4076458880a07 to your computer and use it in GitHub Desktop.
ascii colors
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
Black: \u001b[30m | |
Red: \u001b[31m | |
Green: \u001b[32m | |
Yellow: \u001b[33m | |
Blue: \u001b[34m | |
Magenta: \u001b[35m | |
Cyan: \u001b[36m | |
White: \u001b[37m | |
Reset: \u001b[0m | |
print u"\u001b[30m A \u001b[31m B \u001b[32m C \u001b[33m D \u001b[0m" | |
print u"\u001b[34m E \u001b[35m F \u001b[36m G \u001b[37m H \u001b[0m" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment