/// <summary> /// 富文本文字颜色 /// </summary> public static string RichTextColor(this string str, Color color) { return(string.Format("<color=#{0}>{1}</color>", ColorUtility.ToHtmlStringRGB(color), str)); }