From 0aa1318146e0a78c7b16c9468b1eec978bb5e716 Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Thu, 28 Dec 2017 14:20:39 -0500 Subject: [PATCH] added colors --- colors.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 colors.py diff --git a/colors.py b/colors.py new file mode 100644 index 00000000..f8d51c21 --- /dev/null +++ b/colors.py @@ -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"