Skip to content

Instantly share code, notes, and snippets.

@tm157
Created March 15, 2019 20:23
Show Gist options
  • Save tm157/36de55822786e0b492839df52a62a48f to your computer and use it in GitHub Desktop.
Save tm157/36de55822786e0b492839df52a62a48f to your computer and use it in GitHub Desktop.
class bcolors(object):
Endc='\033[0m'
Bold='\033[1m'
Underlined='\033[4m'
Blink='\033[5m'
Inverted='\033[7m'
Hidden='\033[8m'
Black='\033[30m'
Red='\033[31m'
Green='\033[32m'
Yellow='\033[33m'
Blue='\033[34m'
Purple='\033[35m'
Cyan='\033[36m'
LightGray='\033[37m'
DarkGray='\033[30m'
LightRed='\033[31m'
LightGreen='\033[32m'
LightYellow='\033[93m'
LightBlue='\033[34m'
LightPurple='\033[35m'
LightCyan='\033[36m'
White='\033[97m'
BckgrDefault='\033[49m'
BckgrBlack='\033[40m'
BckgrRed='\033[41m'
BckgrGreen='\033[42m'
BckgrYellow='\033[43m'
BckgrBlue='\033[44m'
BckgrPurple='\033[45m'
BckgrCyan='\033[46m'
BckgrLightGray='\033[47m'
BckgrDarkGray='\033[100m'
BckgrLightRed='\033[101m'
BckgrLightGreen='\033[102m'
BckgrLightYellow='\033[103m'
BckgrLightBlue='\033[104m'
BckgrLightPurple='\033[105m'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment