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
I've search for people getting the same errors has me, but I didn't find any related issues.
I'm using PyCharm 2021.1.3 (latest) on Windows 10 and when I use the init() command with autoreset=True, there is no color at all.
from colorama import Fore, Style, init
init(autoreset=True)
The second issue, I ran into, is that Fore.WHITE actually renders as grey:
The other lines are using regular print()
Here is the code: print(Fore.WHITE, "AAAAAAAAAAAAAA", Style.RESET_ALL, sep='')
The behavior is the same with and without the init() command.
The text was updated successfully, but these errors were encountered:
Hello,
I've search for people getting the same errors has me, but I didn't find any related issues.
I'm using PyCharm 2021.1.3 (latest) on Windows 10 and when I use the
init()
command withautoreset=True
, there is no color at all.The second issue, I ran into, is that
Fore.WHITE
actually renders as grey:The other lines are using regular print()
Here is the code:
print(Fore.WHITE, "AAAAAAAAAAAAAA", Style.RESET_ALL, sep='')
The behavior is the same with and without the
init()
command.The text was updated successfully, but these errors were encountered: