12 lines
399 B
Python
12 lines
399 B
Python
class colors:
|
|
'''
|
|
Color definitions. If you want to change them, check the reference at https://en.wikipedia.org/wiki/ANSI_escape_code#Colors
|
|
'''
|
|
yellow = "\033[0;33;40m"
|
|
green = "\033[0;32;40m"
|
|
red = "\033[0;31;40m"
|
|
blue = "\033[0;34;40m"
|
|
cyan = "\033[0;36;40m"
|
|
bright_white = "\033[0;97;40m"
|
|
bright_green = "\033[0;92;40m"
|
|
white = "\033[0;37;40m" |