You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print(f"{Style.BRIGHT}{Fore.RED}I should be bright and red.{Fore.RESET} I should be the default foreground colour and still bright, but I'm not bright.")
Fore.RESET behaviour is currently identical to Style.RESET_ALL behaviour
I'm currently just dropping Fore.RESET = "\033[39m" after every from colorama import Fore, Style to fix this as 39m is the correct code to only reset the colour and not reset the style.
The text was updated successfully, but these errors were encountered:
print(f"{Style.BRIGHT}{Fore.RED}I should be bright and red.{Fore.RESET} I should be the default foreground colour and still bright, but I'm not bright.")
Fore.RESET behaviour is currently identical to Style.RESET_ALL behaviour
I'm currently just dropping
Fore.RESET = "\033[39m"
after everyfrom colorama import Fore, Style
to fix this as 39m is the correct code to only reset the colour and not reset the style.The text was updated successfully, but these errors were encountered: