I am using windows so the below colors won't work with my IDE and print statement:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
print(bcolors.FAIL + bcolors.BOLD + "AN ENEMY ATTACKS!" + bcolors.ENDC)
I have relentlessly searched across ANSI sheets as well as inserted libraries but I just want to keep the above format so that I can reference the colors/bold/underline within the class (Using Windows).
Any help here would be greatly appreciated.