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"