A simple way to color terminal text! ❤️ 💛 💚 💙 💜
from terminology import in_red, in_yellow, in_green, in_blue, in_magenta
print(in_red("it's"), in_yellow("a"), in_green("double"), in_blue("rainbow"), in_magenta("dude..."))
Output
from terminology import on_green, on_yellow, on_red
print(on_green("OK"), on_yellow("WARNING"), on_red("DANGER")
Output
from terminology import in_bold, underlined
print(in_bold("Chapter 1"))
print("- ", underlined("Section i"))
print("- ", underlined("Section ii"), "\n")
print(in_bold("Chapter 2"))
print("- ", underlined("Section i"), '\n')
Output