* @param c
* @return new color list or null, if the supplied strategy name is not
* mapped to a registered implementation.
*/
public static final ColorList createUsingStrategy(String name, TColor c) {
ColorTheoryStrategy strategy = ColorTheoryRegistry
.getStrategyForName(name);
ColorList list = null;
if (strategy != null) {
list = strategy.createListFromColor(c);
}
return list;
}