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("she was just being using direct ANSI codes.")
print(Style.RESET_ALL)
print(Fore.BRIGHT_RED + "some bright red text")
print(Back.WHITE + "and with a white background")
print("Will need to study about what is ANSI codes.")
print(Style.DIM + "and in dim text")
print(Style.RESET_ALL)
print("back to normal now")
# …or, Colorama can be used in conjunction with existing ANSI libraries such as the venerable Termcolor the fabulous Blessings, or the incredible _Rich.