Skip to content

phoenixr-codes/adorable

Repository files navigation

adorable

Make the UI of your project adorable.

Code style: black

Basic Usage

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)

Links