mlog: add non bold version of colors

pull/6182/head
Daniel Mensinger 5 years ago
parent e1fd830070
commit e39d570d3a
No known key found for this signature in database
GPG Key ID: 54DD94C131E277D4
  1. 15
      mesonbuild/mlog.py

@ -127,6 +127,21 @@ def blue(text: str) -> AnsiDecorator:
def cyan(text: str) -> AnsiDecorator: def cyan(text: str) -> AnsiDecorator:
return AnsiDecorator(text, "\033[1;36m") return AnsiDecorator(text, "\033[1;36m")
def normal_red(text: str) -> AnsiDecorator:
return AnsiDecorator(text, "\033[31m")
def normal_green(text: str) -> AnsiDecorator:
return AnsiDecorator(text, "\033[32m")
def normal_yellow(text: str) -> AnsiDecorator:
return AnsiDecorator(text, "\033[33m")
def normal_blue(text: str) -> AnsiDecorator:
return AnsiDecorator(text, "\033[34m")
def normal_cyan(text: str) -> AnsiDecorator:
return AnsiDecorator(text, "\033[36m")
# This really should be AnsiDecorator or anything that implements # This really should be AnsiDecorator or anything that implements
# __str__(), but that requires protocols from typing_extensions # __str__(), but that requires protocols from typing_extensions
def process_markup(args: Sequence[Union[AnsiDecorator, str]], keep: bool) -> List[str]: def process_markup(args: Sequence[Union[AnsiDecorator, str]], keep: bool) -> List[str]:

Loading…
Cancel
Save