This commit is contained in:
2026-06-03 21:26:54 +02:00
parent 05e6b8d061
commit d21e5175d5
125 changed files with 41986 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
class Colors:
"""Class to define colors for terminal output"""
# Reference: https://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python
HEADER = "\033[95m"
INFO = "\033[94m"
OKCYAN = "\033[96m"
OKGREEN = "\033[92m"
WARNING = "\033[93m"
ERROR = "\033[91m"
ENDC = "\033[0m"
BOLD = "\033[1m"
UNDERLINE = "\033[4m"
RESET = "\033[0m"