Skip to content

Instantly share code, notes, and snippets.

@deep5050
Created September 5, 2023 17:44
Show Gist options
  • Save deep5050/1123bd189a645485119145a07ca46730 to your computer and use it in GitHub Desktop.
Save deep5050/1123bd189a645485119145a07ca46730 to your computer and use it in GitHub Desktop.
ANSI colors
# ANSI colors
class Colors(object):
def __init__(self) -> None:
self.HEADER = '\033[95m'
self.OKBLUE = '\033[94m'
self.OKCYAN = '\033[96m'
self.OKGREEN = '\033[92m'
self.WARNING = '\033[93m'
self.FAIL = '\033[91m'
self.ENDC = '\033[0m'
self.BOLD = '\033[1m'
self.UNDERLINE = '\033[4m'
colors = Colors()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment