added colors
This commit is contained in:
parent
2baf794ae7
commit
0aa1318146
1 changed files with 10 additions and 0 deletions
10
colors.py
Normal file
10
colors.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
class Colors:
|
||||
def __init__(self):
|
||||
self.PURPLE='\033[95m'
|
||||
self.BLUE='\033[94m'
|
||||
self.GREEN='\033[92m'
|
||||
self.YELLOW='\033[93m'
|
||||
self.RED='\033[91m'
|
||||
self.BOLD='\033[1m'
|
||||
self.UNDERLINE='\033[4m'
|
||||
self.RESET="\x1B[m"
|
Loading…
Reference in a new issue