added colors

This commit is contained in:
Kevin Froman 2017-12-28 14:20:39 -05:00
parent 2baf794ae7
commit 0aa1318146
1 changed files with 10 additions and 0 deletions

10
colors.py Normal file
View 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"