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