mirror of
https://github.com/believethehype/nostrdvm.git
synced 2025-10-10 16:02:32 +02:00
15 lines
336 B
Python
15 lines
336 B
Python
class bcolors:
|
|
HEADER = '\033[95m'
|
|
ENDC = '\033[0m'
|
|
BOLD = '\033[1m'
|
|
UNDERLINE = '\033[4m'
|
|
RED = '\033[91m'
|
|
GREEN = '\033[92m'
|
|
BLUE = '\033[94m'
|
|
CYAN = '\033[96m'
|
|
WHITE = '\033[97m'
|
|
YELLOW = '\033[93m'
|
|
MAGENTA = '\033[95m'
|
|
GREY = '\033[90m'
|
|
BLACK = '\033[90m'
|
|
DEFAULT = '\033[99m' |