def sub(text, end=True): # 下标信息,浅灰色,直接打印,自定义尾换行 color = fg(239) p.text_print(color + ' (' + text + ')' + reset, end)
def vmap(text): color = fg(221) p.text_print(color + text + '\n' + reset)
def profile(text): color = fg(140) p.text_print(color + text + reset)
def index(text, end=True): color = fg(221) p.text_print(color + text + reset, end)
def label(text, end=False): # 标签名,首尾都不换行 color = fg(12) p.text_print(color + text + reset, end)
def vname(text, end=False): color = fg(140) p.text_print(color + text + reset, end)
def div(text, end=True): color = fg(240) p.text_print(color + text + reset, end)
def error(text, end=True): # 错误信息,需空一行打印 color = fg(166) p.text_print(color + '\n' + text + reset, end)
def caption(text, end=False): # 系统重要信息,如用户名,版本 color = fg(69) p.text_print(color + text + reset, end)
def info(text, end=True): # 系统信息,浅灰色,直接打印,自定义尾换行 color = fg(242) p.text_print(color + text + reset, end)
def index(text, ): color = fg(221) p.text_print(color + text + reset)