private static string _Cyan(string msg) { return(UseXTERM ? XTERM.cyanBright(msg) : String.Concat("<color=#ff00ff>", msg, "</color>")); }
private static string _Red(string msg) { return(UseXTERM ? XTERM.redBright(msg) : String.Concat("<color=#ff0000>", msg, "</color>")); }
private static string _Yellow(string msg) { return(UseXTERM ? XTERM.yellow(msg) : String.Concat("<color=#bbbb00>", msg, "</color>")); }
private static string _Green(string msg) { return(UseXTERM ? XTERM.green(msg) : String.Concat("<color=#22bb22>", msg, "</color>")); }
private static string _Grey(string msg) { return(UseXTERM ? XTERM.white(msg) : String.Concat("<color=#888888>", msg, "</color>")); }
private static string _White(string msg) { return(UseXTERM ? XTERM.whiteBright(msg) : String.Concat("<color=#ffffff>", msg, "</color>")); }