app1 / color.py
Sandaruth
temp
3e7ea7a
raw
history blame
No virus
401 Bytes
def print_colorful_msg(msg, color='white'):
colors = {
'red': '\033[91m',
'green': '\033[92m',
'yellow': '\033[93m',
'blue': '\033[94m',
'magenta': '\033[95m',
'cyan': '\033[96m',
'white': '\033[97m',
'bold': '\033[1m',
'underline': '\033[4m',
'end': '\033[0m'
}
print(f"{colors[color]}{msg}{colors['end']}")