0

Traditionally, when calculating an HSV color's complement, a "quick and dirty" solution is to simply take the color's hue value and go half way around the color wheel. In most cases this strategy leads to a fairly close approximation of the color's true complement, but for shades of red, and some shades of blue, the approximation is noticeably different from the actual complement.

For instance, in the color wheel shown here, the selected red value would yield a complement of cyan - since cyan is the color directly across from red in the color wheel - instead of green, red's true complement. I'm assuming this dispersion has to do with the limitations of representing colors digitally, so I suppose I'd be looking for a way to convert an HSV/RGB color into a format that lends itself to finding complements.

  • Cyan is the complementary color to red in the RGB and CMY color models. – amd May 07 '18 at 00:50
  • @amd You're right, I did some looking around and found that what I had erroneously called a "true" complement pair was a color complement in the RYB color model. I just had to convert the RGB colors over, and find the complement in that mode. – Joshua Owens May 08 '18 at 01:52

1 Answers1

0

I did some additional research, and found that my original assumption that a color's complement would be consistent across all color modes was incorrect. What I was looking for was a color's complement in the RYB color mode, since red, yellow, and blue are the natural primary colors.

Some additional tools/reading: