I've generated a basic and generic HSB color palette with Java
The gradient has Saturation and Brightness fixed to 100%. Only the Hue varies over 300 degree.
new Color(Color.HSBtoRGB((float)value, 1f, 1f)));
My concern is that the green part of the palette seems to be much more present and similar than other color.
I'm looking for a way to get a variation on the brightness part to get darker primary colors. The suitable result would be darker RGB and light secondary color.
And of course, the gradient must stay smooth...
Is there a way to accomplish this with Java code?
Thank you very much!!!