Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Interesting question, but I'm not sure it is a good fit for StackOverflow. Perhaps the guys at photo.stackexchange.com would know better than us about colors and how to choose them ? – ereOn Sep 1 '11 at 12:18

2 Answers

up vote 2 down vote accepted

Would it be possible for you to use this site below to help you reverse engineer the concept you are looking for?

http://colorschemedesigner.com/

It's flash so you can't see the code, it still might help though.

share|improve this answer
Thanks, this is exactly what I want to do. Not sure that reverse engineering the code would be that easy, but could definitely give it a go :) – Jordan Sep 1 '11 at 12:22
1  
Actually, looking at the site, it kinda shows you on the color wheel how it's working. Makes replicating it a bit easier! – Jordan Sep 1 '11 at 12:24
Also, and this is a shot in the dark. but I think HSL will be the easiest to convert programmatically, since hue is contained as single value. en.wikipedia.org/wiki/HSL_and_HSV – MVCylon Sep 1 '11 at 12:27

If you can figure out how to produce a colour wheel, then complementary colours are on opposite sides of the wheel.

Update

Wikipedia has useful pages on hue, hsl and hsv

http://en.wikipedia.org/wiki/Hue

http://en.wikipedia.org/wiki/HSL_and_HSV

and more on conversions

http://130.113.54.154/~monger/hsl-rgb.html

share|improve this answer
That's correct in terms of color theory, The question was to find out how to do it programmatically. – MVCylon Sep 1 '11 at 13:31

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.