24 lines
559 B
Python
24 lines
559 B
Python
'''
|
|
Simply define terminal control codes (mainly colors)
|
|
'''
|
|
class Colors:
|
|
def __init__(self):
|
|
'''
|
|
PURPLE='\033[95m'
|
|
BLUE='\033[94m'
|
|
GREEN='\033[92m'
|
|
YELLOW='\033[93m'
|
|
RED='\033[91m'
|
|
BOLD='\033[1m'
|
|
UNDERLINE='\033[4m'
|
|
RESET="\x1B[m"
|
|
'''
|
|
self.PURPLE='\033[95m'
|
|
self.BLUE='\033[94m'
|
|
self.GREEN='\033[92m'
|
|
self.YELLOW='\033[93m'
|
|
self.RED='\033[91m'
|
|
self.BOLD='\033[1m'
|
|
self.UNDERLINE='\033[4m'
|
|
self.RESET="\x1B[m"
|