///Get the hex color preference for a type
 public static string GetTypeHexColor(Type type)
 {
     if (!EditorGUIUtility.isProSkin)
     {
         return("#000000");
     }
     return(EditorUtils.ColorToHex(GetTypeColor(type)));
 }