Nope, just combine previous color-char and current color-char and see if it's
less than or equal to 15 (utils.irc)
This commit is contained in:
parent
9a614846b0
commit
fba1dd2271
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ def _color_tokens(s: str) -> typing.List[str]:
|
|||
if can_add:
|
||||
current_color = background if is_background else foreground
|
||||
if current_color:
|
||||
can_add = int(char) < 6 or int(current_color) < 2
|
||||
can_add = int(current_color + char) <= 15
|
||||
|
||||
if can_add:
|
||||
if is_background:
|
||||
|
|
Loading…
Reference in a new issue