aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorGravatar jesopo2018-11-13 17:43:00 +0000
committerGravatar jesopo2018-11-13 17:43:00 +0000
commitf1b54efe770936ba04642db381b277b1c2109486 (patch)
treec14f68feb7cae5c561bc3fa896091981acccc116 /src/utils
parentAdd code to tokenize and ansi-replace IRC colors; use this in (diff)
signature
Visual tweak; align "="s in utils.consts
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/consts.py50
1 files changed, 25 insertions, 25 deletions
diff --git a/src/utils/consts.py b/src/utils/consts.py
index 8b34567a..9a0bbe07 100644
--- a/src/utils/consts.py
+++ b/src/utils/consts.py
@@ -17,32 +17,32 @@ def _color(name: str, irc: int, ansi: int, ansi_bold: bool):
COLOR_CODES[irc] = color
return color
-WHITE = _color("white", 0, 37, True)
-BLACK = _color("black", 1, 30, False)
-BLUE = _color("blue", 2, 34, False)
-GREEN = _color("green", 3, 32, False)
-RED = _color("red", 4, 31, True)
-BROWN = _color("brown", 5, 31, False)
-PURPLE = _color("purple", 6, 35, False)
-ORANGE = _color("orange", 7, 33, False)
-YELLOW = _color("yellow", 8, 33, True)
+WHITE = _color("white", 0, 37, True)
+BLACK = _color("black", 1, 30, False)
+BLUE = _color("blue", 2, 34, False)
+GREEN = _color("green", 3, 32, False)
+RED = _color("red", 4, 31, True)
+BROWN = _color("brown", 5, 31, False)
+PURPLE = _color("purple", 6, 35, False)
+ORANGE = _color("orange", 7, 33, False)
+YELLOW = _color("yellow", 8, 33, True)
LIGHTGREEN = _color("light green", 9, 32, True)
-CYAN = _color("cyan", 10, 36, False)
-LIGHTCYAN = _color("light cyan", 11, 36, True)
-LIGHTBLUE = _color("light blue", 12, 34, True)
-PINK = _color("pink", 13, 35, True)
-GREY = _color("grey", 14, 30, True)
-LIGHTGREY = _color("light grey", 15, 37, False)
+CYAN = _color("cyan", 10, 36, False)
+LIGHTCYAN = _color("light cyan", 11, 36, True)
+LIGHTBLUE = _color("light blue", 12, 34, True)
+PINK = _color("pink", 13, 35, True)
+GREY = _color("grey", 14, 30, True)
+LIGHTGREY = _color("light grey", 15, 37, False)
-BOLD = "\x02"
-ITALIC = "\x1D"
-UNDERLINE = "\x1F"
-INVERT = "\x16"
-COLOR = "\x03"
-RESET = "\x0F"
+BOLD = "\x02"
+ITALIC = "\x1D"
+UNDERLINE = "\x1F"
+INVERT = "\x16"
+COLOR = "\x03"
+RESET = "\x0F"
-ANSI_FORMAT = "\033[%sm"
-ANSI_RESET = "\033[0m"
+ANSI_FORMAT = "\033[%sm"
+ANSI_RESET = "\033[0m"
ANSI_COLOR_RESET = "\033[22m"
-ANSI_BOLD = "\033[1m"
-ANSI_BOLD_RESET = "\033[21m"
+ANSI_BOLD = "\033[1m"
+ANSI_BOLD_RESET = "\033[21m"