The documentation for ColorData reads:
Possible properties in ColorData["scheme","property"] include:
"ColorFunction" "ColorList" "ColorRules" "Image" "Name" "Panel" "ParameterCount" "Range" {"Range",i}
Are there any others?
The documentation for ColorData reads:
Possible properties in ColorData["scheme","property"] include:
"ColorFunction" "ColorList" "ColorRules" "Image" "Name" "Panel" "ParameterCount" "Range" {"Range",i}
Are there any others?
Evaluating ColorData["Properties"] in 10.0.2 returns:
{"AlternateNames", "ColorFunction", "ColorList", "ColorRules", "Image", "Name", "Panel", "ParameterCount", "Range", "StandardName"} This however is also incomplete. Some spelunking reveals that there are more. Here is a complete list from the function definition itself:
"StandardName" "Name" "AlternateNames" "PrivateStandardNames" "ColorFunction" "ColorList" {"ColorList", "Sorted"} "ColorRules" {"ColorRules", "Sorted"} "Range" {"Range", _Integer?Positive} "ParameterCount" "Image" "Panel" "ColorNames" {"ColorNames", "Sorted"} "BlendArgument" "PrivateNote" ColorData["Properties"], which produces {"AlternateNames", "ColorFunction", "ColorList", "ColorRules", "Image", "Name", "Panel", "ParameterCount", "Range", "StandardName"}. In general, evaluating someData["Properties"] usually produces useful info about someData`. $\endgroup$ {ColorData[#, "AlternateNames"] // First, ColorData[#, "Panel"]} & /@ ColorData["Indexed"] // Grid $\endgroup$