Visual tweak; align "="s in utils.consts
This commit is contained in:
parent
765ae0fcf9
commit
f1b54efe77
1 changed files with 25 additions and 25 deletions
|
@ -17,32 +17,32 @@ def _color(name: str, irc: int, ansi: int, ansi_bold: bool):
|
||||||
COLOR_CODES[irc] = color
|
COLOR_CODES[irc] = color
|
||||||
return color
|
return color
|
||||||
|
|
||||||
WHITE = _color("white", 0, 37, True)
|
WHITE = _color("white", 0, 37, True)
|
||||||
BLACK = _color("black", 1, 30, False)
|
BLACK = _color("black", 1, 30, False)
|
||||||
BLUE = _color("blue", 2, 34, False)
|
BLUE = _color("blue", 2, 34, False)
|
||||||
GREEN = _color("green", 3, 32, False)
|
GREEN = _color("green", 3, 32, False)
|
||||||
RED = _color("red", 4, 31, True)
|
RED = _color("red", 4, 31, True)
|
||||||
BROWN = _color("brown", 5, 31, False)
|
BROWN = _color("brown", 5, 31, False)
|
||||||
PURPLE = _color("purple", 6, 35, False)
|
PURPLE = _color("purple", 6, 35, False)
|
||||||
ORANGE = _color("orange", 7, 33, False)
|
ORANGE = _color("orange", 7, 33, False)
|
||||||
YELLOW = _color("yellow", 8, 33, True)
|
YELLOW = _color("yellow", 8, 33, True)
|
||||||
LIGHTGREEN = _color("light green", 9, 32, True)
|
LIGHTGREEN = _color("light green", 9, 32, True)
|
||||||
CYAN = _color("cyan", 10, 36, False)
|
CYAN = _color("cyan", 10, 36, False)
|
||||||
LIGHTCYAN = _color("light cyan", 11, 36, True)
|
LIGHTCYAN = _color("light cyan", 11, 36, True)
|
||||||
LIGHTBLUE = _color("light blue", 12, 34, True)
|
LIGHTBLUE = _color("light blue", 12, 34, True)
|
||||||
PINK = _color("pink", 13, 35, True)
|
PINK = _color("pink", 13, 35, True)
|
||||||
GREY = _color("grey", 14, 30, True)
|
GREY = _color("grey", 14, 30, True)
|
||||||
LIGHTGREY = _color("light grey", 15, 37, False)
|
LIGHTGREY = _color("light grey", 15, 37, False)
|
||||||
|
|
||||||
BOLD = "\x02"
|
BOLD = "\x02"
|
||||||
ITALIC = "\x1D"
|
ITALIC = "\x1D"
|
||||||
UNDERLINE = "\x1F"
|
UNDERLINE = "\x1F"
|
||||||
INVERT = "\x16"
|
INVERT = "\x16"
|
||||||
COLOR = "\x03"
|
COLOR = "\x03"
|
||||||
RESET = "\x0F"
|
RESET = "\x0F"
|
||||||
|
|
||||||
ANSI_FORMAT = "\033[%sm"
|
ANSI_FORMAT = "\033[%sm"
|
||||||
ANSI_RESET = "\033[0m"
|
ANSI_RESET = "\033[0m"
|
||||||
ANSI_COLOR_RESET = "\033[22m"
|
ANSI_COLOR_RESET = "\033[22m"
|
||||||
ANSI_BOLD = "\033[1m"
|
ANSI_BOLD = "\033[1m"
|
||||||
ANSI_BOLD_RESET = "\033[21m"
|
ANSI_BOLD_RESET = "\033[21m"
|
||||||
|
|
Loading…
Reference in a new issue