Example #1
0
def yellow(x: str) -> str:
    return colored(x, 'yellow')
Example #2
0
def title(x: str) -> str:
    return colored(x, 'blue', intense=True)
Example #3
0
def green(x: str) -> str:
    return colored(x, 'green')