Answers for "python color codes"

2

add colour to text in python

def colored(r, g, b, text):
    return "33[38;2;{};{};{}m{} 33[38;2;255;255;255m".format(r, g, b, text)
  
text = 'Hello, World'
colored_text = colored(255, 0, 0, text)
print(colored_text)

#or

print(colored(255, 0, 0, 'Hello, World'))
Posted by: Guest on October-31-2020
3

simple colours python

pip install simple-colors

from simple_colors import *

print(green('hello'))
print(green('hello', 'bold'))
print(green('hello', ['bold', 'underlined']))
Posted by: Guest on March-30-2020
3

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
Posted by: Guest on February-22-2021
3

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")
Posted by: Guest on December-17-2020
0

color plt

matplotlib. colors
b : blue.
g : green.
r : red.
c : cyan.
m : magenta.
y : yellow.
k : black.
w : white.
Posted by: Guest on November-06-2020

Python Answers by Framework

Browse Popular Code Answers by Language