Quickstart#

First, initialize a new color and then use it along with text to print it.

import adorable
from adorable import color

RED = color.from_name("red").fg
adorable.printc("Hello World", style = RED)
[Hello World](red)

If this does not print text in color in the terminal, feel free to open an issues on github so it can be fixed. The reason for this might be that your terminal is not supported.You can however force applying colors.

import adorable
from adorable import color

BOLD = adorable.BOLD
BLUE = color.from_name("blue").fg

print(f"Hello {BOLD:wonderful} {BLUE:World}")
Hello [wonderful](bold) [World](blue)