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
easy text color and print text pretty on terminal , cmd , console
#windows
pip install colorthon
# linux
pip3 install colorthon
How to import To Project:
fromcolorthonimportconsolered=console.redgreen=console.greenyellow=console.yellowwhite=console.whiteblue=console.bluemagenta=console.magentacyan=console.cyangrey=console.grey# reset or format text color :reset=console.reset
How To Use Colorthon In My Script:
print(red, 'RED COLOR TEXT', reset)
print(green, "GREEN COLOR TEXT", reset)
print(yellow, 'Yellow Text Color And Format', reset, cyan, 'CYAN COLOR TEXT ', reset)
print(f"{magenta}MAGENTA COLOR TEXT{reset}{white}WHITE NORMAL COLOR TEXT{reset}")