Given any (user selectable) color, I am trying to generate a matching color to go with it for a user interface.
Basically, it should be a color that is either similar, or complements it very well - but, it must also be easily distinguishable from the first color. So far, I have tried lightening/darkening the color, which works ok - but it doesn't look the best, I am not convinced that there is no better way to do it.
What are some alternative or better ways that I could achieve the desired effect? Any help is much appreciated!
-
Side note - I have the color in both RGB and HSL formats, although could easily convert to others if need be.