aboutsummaryrefslogtreecommitdiff
path: root/colorcode.py
diff options
context:
space:
mode:
Diffstat (limited to 'colorcode.py')
-rw-r--r--colorcode.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/colorcode.py b/colorcode.py
new file mode 100644
index 0000000..8263420
--- /dev/null
+++ b/colorcode.py
@@ -0,0 +1,9 @@
+#Simplified color codes here for error/warning/ok and the such.. messages
+HEADER = '\033[95m'
+OKBLUE = '\033[94m'
+OKGREEN = '\033[92m'
+WARNING = '\033[93m'
+FAIL = '\033[91m'
+ENDC = '\033[0m'
+BOLD = '\033[1m'
+UNDERLINE = '\033[4m'