summaryrefslogtreecommitdiff
path: root/src/colors.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/colors.py')
-rw-r--r--src/colors.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/colors.py b/src/colors.py
index 760c3f3..c05d49b 100644
--- a/src/colors.py
+++ b/src/colors.py
@@ -19,3 +19,13 @@ LIGHT_BLUE = esc(94)
LIGHT_MAGENTA = esc(95)
LIGHT_CYAN = esc(96)
LIGHT_WHITE = esc(97)
+
+BG_BLACK = esc(40)
+BG_RED = esc(41)
+BG_GREEN = esc(42)
+BG_YELLOW = esc(43)
+BG_BLUE = esc(44)
+BG_MAGENTA = esc(45)
+BG_CYAN = esc(46)
+BG_WHITE = esc(47)
+BG_DEFAULT = esc(49)