public static string FormatString(Rm_UnityColors color, string text) { var formattedText = string.Format("<color={0}>{1}</color>", color.ToString(), text); return(formattedText); }
public static string Colorfy(this string t, Rm_UnityColors color) { return("<color=" + color.ToString() + ">" + t + "</color>"); }