aboutsummaryrefslogtreecommitdiff
path: root/src/utils/consts.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/consts.py')
-rw-r--r--src/utils/consts.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/utils/consts.py b/src/utils/consts.py
index 221c327b..cfb09243 100644
--- a/src/utils/consts.py
+++ b/src/utils/consts.py
@@ -43,9 +43,11 @@ INVERT = "\x16"
COLOR = "\x03"
RESET = "\x0F"
-ANSI_FORMAT = "\033[%sm"
-ANSI_RESET = "\033[0m"
+ANSI_FORMAT = "\033[%sm"
+ANSI_RESET = "\033[0m"
ANSI_FOREGROUND_RESET = "\033[39m"
ANSI_BACKGROUND_RESET = "\033[49m"
-ANSI_BOLD = "\033[1m"
-ANSI_BOLD_RESET = "\033[22m"
+ANSI_BOLD = "\033[1m"
+ANSI_BOLD_RESET = "\033[22m"
+ANSI_UNDERLINE = "\033[4m"
+ANSI_UNDERLINE_RESET = "\033[24m"