Skip to content

Instantly share code, notes, and snippets.

@ahndmal
Last active December 1, 2023 13:06
Show Gist options
  • Save ahndmal/cd3153a05009100ae8b4076458880a07 to your computer and use it in GitHub Desktop.
Save ahndmal/cd3153a05009100ae8b4076458880a07 to your computer and use it in GitHub Desktop.
ascii colors
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