views:

24

answers:

1

If I see a particular shade of red on a website, how do I find out what the same shade will be in a different color? Example in Green or such?

+2  A: 

To see the same shade (saturation and brilliance) in different hues, convert the color to HSV or HSB, and then increment/decrement the Hue value.

This web page describes how to convert RGB to HSV, and even includes sample C code.

http://en.literateprograms.org/RGB_to_HSV_color_space_conversion_%28C%29

...Though you might find more useful algorithms/snippets on the web.

http://www.google.com/search?q=Convert+RGB+to+HSV

kbrimington