Make the UI of your project adorable.
import adorable
from adorable import color
RED = color.from_name("red")
print(RED.fg("Hello adorable World"))
BLUE = color.from_hex(0x0AF)
DARK = color.from_rgb((38, 38, 38))
col = BLUE.on(DARK)
adorable.printc("Hello", "World", style = col)