A tool with which you can use colors in your Python code to decorate terminal output.
pip install coloreflection
or,
poetry add coloreflection
from coloreflection import Color
C = Color()
print(C.border(" Using style for text "))
print(C.FG.red("Changing text color"))
print(C.BG.green("Changing text background"))
print(C.border(C.bold(C.FG.pink("You can"))), "combine",
C.BG.blue(C.FG.yellow(f"different colors{C.reverse(' and styles.')}")))