예제 #1
0
파일: helpers.py 프로젝트: kiancross/pixy
def black(text: str) -> str:
    return pring(text, foreground.black)
예제 #2
0
파일: helpers.py 프로젝트: kiancross/pixy
def cyan(text: str) -> str:
    return pring(text, foreground.cyan)
예제 #3
0
파일: helpers.py 프로젝트: kiancross/pixy
def white(text: str) -> str:
    return pring(text, foreground.white)
예제 #4
0
파일: helpers.py 프로젝트: kiancross/pixy
def magenta(text: str) -> str:
    return pring(text, foreground.magenta)
예제 #5
0
파일: helpers.py 프로젝트: kiancross/pixy
def blue(text: str) -> str:
    return pring(text, foreground.blue)
예제 #6
0
파일: helpers.py 프로젝트: kiancross/pixy
def yellow(text: str) -> str:
    return pring(text, foreground.yellow)
예제 #7
0
파일: helpers.py 프로젝트: kiancross/pixy
def green(text: str) -> str:
    return pring(text, foreground.green)
예제 #8
0
파일: helpers.py 프로젝트: kiancross/pixy
def red(text: str) -> str:
    return pring(text, foreground.red)