Created
January 16, 2015 11:38
-
-
Save benbacardi/8551eb887739a66fee61 to your computer and use it in GitHub Desktop.
Static Colours class
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
class Colours: | |
BLACK = '\033[30m' | |
BLUE = '\033[34m' | |
GREEN = '\033[32m' | |
CYAN = '\033[36m' | |
RED = '\033[31m' | |
PURPLE = '\033[35m' | |
YELLOW = '\033[33m' | |
LIGHT_GREY = '\033[37m' | |
DARK_GREY = '\033[1;30m' | |
BOLD_BLUE = '\033[1;34m' | |
BOLD_GREEN = '\033[1;32m' | |
BOLD_CYAN = '\033[1;36m' | |
BOLD_RED = '\033[1;31m' | |
BOLD_PURPLE = '\033[1;35m' | |
BOLD_YELLOW = '\033[1;33m' | |
BRIGHT_GREY = '\033[0;90m' | |
BRIGHT_BLUE = '\033[0;94m' | |
BRIGHT_GREEN = '\033[0;92m' | |
BRIGHT_CYAN = '\033[0;96m' | |
BRIGHT_RED = '\033[0;91m' | |
BRIGHT_PURPLE = '\033[0;95m' | |
BRIGHT_YELLOW = '\033[0;93m' | |
WHITE = '\033[1;37m' | |
NORMAL = '\033[0m' | |
print Colors.RED | |
print Colors.GREEN | |
# etc... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment