simple colours python
pip install simple-colors from simple_colors import * print(green('hello')) print(green('hello', 'bold')) print(green('hello', ['bold', 'underlined']))
simple colours python
pip install simple-colors from simple_colors import * print(green('hello')) print(green('hello', 'bold')) print(green('hello', ['bold', 'underlined']))
python color
from colorama import init, Fore, Back, Style init() print("normal") print(Fore.LIGHTYELLOW + "yellow" + Fore.RESET) print(Back.RED + "red" + Back.RESET) print(Fore.YELLOW + Back.RED + "both" + Style.RESET_ALL) print("normal again") The possible colors are: BLACK, BLUE, CYAN, GREEN, LIGHTBLACK_EX, LIGHTBLUE_EX, LIGHTCYAN_EX, LIGHTGREEN_EX, LIGHTMAGENTA_EX, LIGHTRED_EX, LIGHTWHITE_EX, LIGHTYELLOW_EX, MAGENTA, RED, WHITE, YELLOW
python colors code
print("33[0;37;40m Normal textn") print("33[2;37;40m Underlined text33[0;37;40m n") print("33[1;37;40m Bright Colour33[0;37;40m n") print("33[3;37;40m Negative Colour33[0;37;40m n") print("33[5;37;40m Negative Colour33[0;37;40mn") print("33[1;37;40m 33[2;37:40m TextColour BlackBackground TextColour GreyBackground WhiteText ColouredBackground33[0;37;40mn") print("33[1;30;40m Dark Gray 33[0m 1;30;40m 33[0;30;47m Black 33[0m 0;30;47m 33[0;37;41m Black 33[0m 0;37;41m") print("33[1;31;40m Bright Red 33[0m 1;31;40m 33[0;31;47m Red 33[0m 0;31;47m 33[0;37;42m Black 33[0m 0;37;42m") print("33[1;32;40m Bright Green 33[0m 1;32;40m 33[0;32;47m Green 33[0m 0;32;47m 33[0;37;43m Black 33[0m 0;37;43m") print("33[1;33;40m Yellow 33[0m 1;33;40m 33[0;33;47m Brown 33[0m 0;33;47m 33[0;37;44m Black 33[0m 0;37;44m") print("33[1;34;40m Bright Blue 33[0m 1;34;40m 33[0;34;47m Blue 33[0m 0;34;47m 33[0;37;45m Black 33[0m 0;37;45m") print("33[1;35;40m Bright Magenta 33[0m 1;35;40m 33[0;35;47m Magenta 33[0m 0;35;47m 33[0;37;46m Black 33[0m 0;37;46m") print("33[1;36;40m Bright Cyan 33[0m 1;36;40m 33[0;36;47m Cyan 33[0m 0;36;47m 33[0;37;47m Black 33[0m 0;37;47m") print("33[1;37;40m White 33[0m 1;37;40m 33[0;37;40m Light Grey 33[0m 0;37;40m 33[0;37;48m Black 33[0m 0;37;48m") n")
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us