Example #1
0
 /// <summary>
 /// Returns a format string for changing the current text color to the specified one.
 /// </summary>
 /// <returns></returns>
 public static string FormatColor(ColorRgba color)
 {
     int intClr = color.ToIntRgba();
     return string.Format("{1}{0:X8}", intClr, FormatColorTag);
 }