Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!!!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.