Replies: 1 comment
-
Yeah, this would be nice. Someone else requested this feature too, so I'll close this discussion and add your +1 to #437 |
Beta Was this translation helpful? Give feedback.
0 replies
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
-
Would be great to see color come thru..
ANSI escape codes for colors
class Style:
RESET = '\x1b[0m'
BOLD = '\x1b[1m'
class Color:
RESET = '\x1b[0m'
BOLD = '\x1b[1m'
RED = '\x1b[91m'
GREEN = '\x1b[92m'
YELLOW = '\x1b[93m'
BLUE = '\x1b[94m'
MAGENTA = '\x1b[95m'
CYAN = '\x1b[96m'
print(f"{Style.BOLD}{Color.RED}This is bold red text.{Color.RESET}")
Beta Was this translation helpful? Give feedback.
All reactions