if (colors == null)
throw new IllegalArgumentException("Color encoding cannot be null");
if (colors.length != 7)
throw new IllegalArgumentException(
"Color encoding must have 7 components");
return new BaseDarkColorScheme(name) {
public Color getUltraLightColor() {
return colors[0];
}
public Color getExtraLightColor() {