File size: 375 Bytes
9bf26a6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
'''
* Project : Screenipy
* Author : Pranjal Joshi
* Created : 11/04/2021
* Description : Class for terminal text decoration
'''
# Decoration Class
class colorText:
HEAD = '\033[95m'
BLUE = '\033[94m'
GREEN = '\033[92m'
WARN = '\033[93m'
FAIL = '\033[91m'
END = '\033[0m'
BOLD = '\033[1m'
UNDR = '\033[4m' |