Click here to Skip to main content
15,899,754 members
Articles / Programming Languages / C++
Article

Contrasting Colors

Rate me:
Please Sign up or sign in to vote.
4.08/5 (16 votes)
4 May 20042 min read 164.7K   2.1K   30   37
New method of calculating a contrasting color for a given color
Image 1

Introduction

The conventional way of calculating a contrasting color is to XOR the given color by 0xFFFFFF (or &HFFFFFF). However, the contrasting color obtained in this way may sometimes be similar to the original color, and our eyes can't really differentiate between the two distinctively. Thus this conventional way is not good enough. For example, grey, having the hex value of 0x808080, when XORed with 0xFFFFFF, gives 0x7F7F7F, which is very close to the original color.

I have come up with a new and simple solution that is based on this conventional method. This solution calculates a better contrasting color, but note that it is not always perfect. (Note: I'm not sure whether there already exists such a method).

The solution

This method works by testing whether each of the components (namely red, green, and blue) of the given color is close to 0x80 (128 in decimal). The closeness is defined by the compile time macro TOLERANCE, which is simply a value. If all the components are close to 0x80, then the contrasting color calculated using the old method will not be a good contrast to the original color. The new method overcomes this problem by adding 0x7F7F7F to the given color, and then to prevent overflow (because color values range only from 0x000000 to 0xFFFFFF), the result is ANDed with 0xFFFFFF.

Using the code

The main thing about this project is the function CalcContrastingColor, which is presented below.

At run time, click the "Background..." button to select a background color. Then the program will display a text using the calculated contrasting color. You can also change the font of the text.

// crBG is in 0xRRGGBB or 0xBBGGRR format.
INT CalcContrastColor (INT crBg){

    if (
        abs(((crBg ) & 0xFF) - 0x80) <= TOLERANCE &&
        abs(((crBg >> 8) & 0xFF) - 0x80) <= TOLERANCE &&
        abs(((crBg >> 16) & 0xFF) - 0x80) <= TOLERANCE

    ) return (0x7F7F7F + crBg) & 0xFFFFFF;

    else return crBg ^ 0xFFFFFF;
}

History

Improvements in version 2:
  • Display the outputs as shown in the above image.
  • Some text included in order to let user decide better whether it is a good contrasting color.
  • Windows XP theme compatible.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here



Comments and Discussions

 
GeneralContrasting color? What's new Pin
asnaghi8-Jul-04 23:02
asnaghi8-Jul-04 23:02 
The problem of locating contrasting colour of a given colour is very important not only in the WEB (have you never seen html pages with unreadable text over unreal background?) but also in user interface (sunken and raisen edges, contour of buttons, etc.). So a lot of people have tryed to resolve it. But... this problem is a physiological problem (see Ewald Hering works) not a mathematical problem! Hence, there is'nt an exact formula to determine it. The human's color sensibility is not linear and is much variables. So, cannot we do anything? No, if we take into consideration the LUMINANCE. It is
Y = (30*Red + 59*Green + 11*Blue)/255
in integer unit of colour components (i.e. 0 < Red,Green,Blue <= 255) and assume values from 0 to 100 (it is, really, a percentage).
So, if we must simply choose a color that contrast with another, we can use this step-function
if Y < 50 then color is white<br />
                else color is black<br />

This work well with any color (I believe).
But, if we also take into consideration the chromatic aspect, we must use the HUE. It is the attribute which tells us whether the colour is red, green, etc., and assume values from 0° to 360° (degrees) into the HSL (or HSB) colour space. For a given colour with HUE H (say 130°, green), the contrasting colour will have HUE
<br />
                      H' = (H + 180)mod360   (in degrees)<br />

that is, in the example, 310° (magenta). In the HSL or HSB colour spaces, ther are two other values that identify a given colour, SATURATION and BRIGHTNESS (or VALUE). This values aren't bind to corresponding perception, so luminance value is different from others. For example, if we have a colour RGB=(102,102,255) with HSB=(240°,60%,100%) and Y=46%, the algorithm used by alucardx give a contrasting colour with RGB=(153,153,0), HSB=(60°,100%,60%) and Y=53%. 53 is too close to original colour luminance, therefore it don't catch the eyes (a text coloured with it over background coloured with original colour is unreadable). But, if we adjust Saturation and Brightness (Hue is fixed) so that the difference from original colour luminance and the contrasting colour luminance be over a certain value (say 30), work is done. With difference threshold of 30, I have obtained RGB=(255,255,102), HSB=(60°,60%,100%), Y=93% (very good). I tested many other values using an appropriate program and result was appreciable.

A coloured life at all

The Ghost in the Mind Machine
GeneralRe: Contrasting color? What's new Pin
btoum.roumada12-Jul-04 8:40
btoum.roumada12-Jul-04 8:40 
GeneralRe: Contrasting color? What's new Pin
asnaghi14-Jul-04 20:29
asnaghi14-Jul-04 20:29 
QuestionRe: Contrasting color? What's new Pin
murx9-Jul-15 8:06
murx9-Jul-15 8:06 
GeneralTOLERANCE Pin
Roger657-May-04 5:18
Roger657-May-04 5:18 
GeneralRe: TOLERANCE Pin
User 10455757-May-04 20:32
User 10455757-May-04 20:32 
GeneralRGB Color Cube Pin
Todd Smith5-May-04 8:43
Todd Smith5-May-04 8:43 
GeneralBlack and White / Gray Pin
Patje5-May-04 4:33
Patje5-May-04 4:33 
GeneralRe: Black and White / Gray Pin
User 10455755-May-04 5:38
User 10455755-May-04 5:38 
GeneralRe: Black and White / Gray Pin
Henry Jacobs5-May-04 10:43
Henry Jacobs5-May-04 10:43 
GeneralRe: Black and White / Gray Pin
Samuel Gonzalo11-Jun-04 0:13
Samuel Gonzalo11-Jun-04 0:13 
GeneralRe: Black and White / Gray Pin
User 104557513-Jul-04 22:43
User 104557513-Jul-04 22:43 
QuestionSimpler? Pin
Kippesoep5-May-04 4:28
Kippesoep5-May-04 4:28 
AnswerRe: Simpler? Pin
Patje5-May-04 4:34
Patje5-May-04 4:34 
GeneralRe: Simpler? Pin
Kippesoep5-May-04 9:48
Kippesoep5-May-04 9:48 
GeneralRe: Simpler? Pin
Patje6-May-04 4:43
Patje6-May-04 4:43 
AnswerRe: Simpler? Pin
User 10455755-May-04 5:24
User 10455755-May-04 5:24 
GeneralRe: Simpler? Pin
Kippesoep5-May-04 9:47
Kippesoep5-May-04 9:47 
GeneralRe: Simpler? Pin
User 10455756-May-04 4:14
User 10455756-May-04 4:14 
GeneralRe: Simpler? Pin
Kippesoep6-May-04 5:13
Kippesoep6-May-04 5:13 
GeneralRe: Simpler? Pin
User 10455757-May-04 1:24
User 10455757-May-04 1:24 
AnswerRe: Simpler? Pin
Steve Mayfield6-May-04 13:50
Steve Mayfield6-May-04 13:50 
GeneralRe: Simpler? Pin
Kippesoep6-May-04 21:02
Kippesoep6-May-04 21:02 
GeneralSome hints about RGB->HSL Pin
Kochise4-May-04 22:39
Kochise4-May-04 22:39 
GeneralRe: Some hints about RGB-&gt;HSL Pin
Paolo Messina5-May-04 3:13
professionalPaolo Messina5-May-04 3:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.