forked from logenkain/cig-cost
8 lines
169 B
Python
8 lines
169 B
Python
|
class fgColor:
|
||
|
GREEN = '\033[92m'
|
||
|
RED = '\033[91m'
|
||
|
YELLOW = '\033[93m'
|
||
|
PURPLE = '\033[95m'
|
||
|
CYAN = '\033[96m'
|
||
|
GRAY = '\033[90m'
|
||
|
NC = '\033[0m'
|