Skip to content

Commit

Permalink
Changed some of the color codes and ansi
Browse files Browse the repository at this point in the history
  • Loading branch information
zweed4u committed May 1, 2017
1 parent eb86154 commit c2f5cc0
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions colorCodes.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
colorCodes = {
'RED': "\033[1;31m",
'BLUE': "\033[1;34m",
'CYAN': "\033[1;36m",
'PURPLE': '\033[95m',
'DARKCYAN': '\033[36m',
'YELLOW': '\033[93m'
'red':'\033[31m',
'orange':'\033[33m',
'blue':'\033[34m',
'purple':'\033[35m',
'cyan':'\033[36m',
'lightgrey':'\033[37m',
'darkgrey':'\033[90m',
'lightred':'\033[91m',
'lightgreen':'\033[92m',
'yellow':'\033[93m',
'lightblue':'\033[94m',
'pink':'\033[95m',
'lightcyan':'\033[96m'
}
COLOR_END = '\033[0m'

0 comments on commit c2f5cc0

Please sign in to comment.