def colorize(cls, msg, color):
'''
get red string
'''
cls.tostr(msg)
if color.lower() in ['red','yellow','blue','green']:
cstr = getattr(Fore, color.upper())
return cstr + msg + Style.RESET_ALL
else:
return msg