def format_evidence(string, color): return colorize("".join(["{bg", color, "}{black}", string, "{/black}{/bg", color, "}"]))
def format_color(string, color): return colorize("".join(["{", color, "}", string, "{/", color, "}"]))
def error(string): if settings.VERBOSE: print(colorize(" ".join(["{hired}[ FAIL ]{/red}", string])))
def warning(string): if settings.VERBOSE: print(colorize(" ".join(["{hiyellow}[ WARN ]{/yellow}", string])))
def success(string): if settings.VERBOSE: print(colorize(" ".join(["{higreen}[ OK ]{/green}", string])))