Click here to Skip to main content
Licence 
First Posted 28 Nov 2006
Views 71,063
Bookmarked 93 times

Determining Ideal Text Color Based on Specified Background Color

A method for programatically determining the appropriate foreground color based on the specified background color

Introduction

Here's a little snippet for everyone that develops web pages. Today, my boss told me that the text color on a web page element did not contrast enough with the element's background color. Well, she changes her mind more often than Bush denies that Iraq is in the middle of a civil war. For that reason, we had to come up with a way that would preclude us from revisiting the code when she changes her mind about the background color.

Here's a link to an article that describes the VBScript version. I kept them separate (versus putting everything in the same article) so that a search of the appropriate code category would help you find the desired version a little faster.

The Snippet

We spent three hours trying different methods to determine whether or not the text in a HTML element should be black or white. Finally, we found a W3C compliant formula for weighting the lightness of a given color. Once we found that, the rest was fairly easy.

To determine the text color, we subtracted the bgDelta value from 255, and then tried arbitrary threshold values until the text was coming up in a reasonable color for all of our test cases. Your threshold may vary, so don't hesitate to change the value we're using.

using System.Graphics.Drawing;

public Color IdealTextColor(Color bg)
{
    int nThreshold = 105;
    int bgDelta = Convert.ToInt32((bg.R * 0.299) + (bg.G * 0.587) + 
                                  (bg.B * 0.114));

    Color foreColor = (255 - bgDelta < nThreshold) ? Color.Black : Color.White;
    return foreColor;
}

We put this function into a base class that is inherited by all of the pages on our site. If you're writing VB code, you should be able to easily port this to your site.

Disclaimers

This article is short because there's really nothing of any complexity associated with the method described herein. There's also no downloadable code because - well - this is all the code, and I'm not going to fight with VS2005 just to create a sample program for you to download.

Hopefully, it will save you a little time...

History

  • 08 May 2007 - included a link at the top of this article to the VBScript version of this article.

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

About the Author

John Simmons / outlaw programmer

Software Developer (Senior)

United States United States

Member

I've been paid as a programmer since 1982 with experience in Pascal, and C++ (both self-taught), and began writing Windows programs in 1991 using Visual C++ and MFC. In the 2nd half of 2007, I started writing C# Windows Forms and ASP.Net applications, and have since done WPF, Silverlight, WCF, web services, and Windows services.
 
My weakest point is that my moments of clarity are too brief to hold a meaningful conversation that requires more than 30 seconds to complete. Thankfully, grunts of agreement are all that is required to conduct most discussions without committing to any particular belief system.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralI prefer this method PinmemberAiscrim3:15 28 Aug '08  
public Color IdealTextColor(Color bg)
{
    return (bg.GetBrightness() > 0.5) ? Color.Black : Color.White;
}
 
The framework calculates the brightness for you, so you don't have to reinvent the wheel.
Moreover, this way you don't have to empirically determine the threshold, but simply use the mean brightness of black and of white colors (0.5).
GeneralRe: I prefer this method PinmvpJohn Simmons / outlaw programmer4:57 8 Jan '10  
GeneralThanks, John PinmvpHans Dietrich22:47 20 Aug '08  
GeneralRe: Thanks, John PinmvpJohn Simmons / outlaw programmer23:15 20 Aug '08  
QuestionColor other than Black White Pinmembera.mulay19:43 15 May '07  
AnswerRe: Color other than Black White PinmvpJohn Simmons / outlaw programmer2:10 17 May '07  
GeneralRe: Color other than Black White Pinmembera.mulay2:31 17 May '07  
GeneralRe: Color other than Black White PinmemberLiam O'Hagan17:27 15 Apr '08  
Questionwhat's the C++ echivalent code? PinmemberMihai Moga0:16 22 Dec '06  
AnswerRe: what's the C++ echivalent code? PinmemberPete O'Hanlon0:56 22 Dec '06  
AnswerRe: what's the C++ echivalent code? PinmemberDieter Hammer20:07 8 May '07  
GeneralRe: what's the C++ echivalent code? PinmvpJohn Simmons / outlaw programmer2:04 14 May '07  
GeneralNot bad, but... Pinmemberke4vtw6:50 7 Dec '06  
GeneralRe: Not bad, but... PinmemberJohn Simmons / outlaw programmer12:54 7 Dec '06  
GeneralRe: Not bad, but... Pinmemberfwsouthern15:26 8 May '07  
GeneralYou got my 5 PinmemberTarakeshwar Reddy17:18 4 Dec '06  
GeneralNice PinmemberJohn Cardinal6:28 4 Dec '06  
GeneralRe: Nice PinmemberJohn Simmons / outlaw programmer0:02 5 Dec '06  
GeneralCool trick PinmemberMike Brand6:22 4 Dec '06  
GeneralRe: Cool trick PinmvpJohn Simmons / outlaw programmer4:56 8 Jan '10  
GeneralNow I remember... PinmemberPJ Arends6:11 30 Nov '06  
GeneralCP Is Just The Greatest Thing PinmemberIlíon3:28 29 Nov '06  
GeneralGood Pinmembernorm .net0:54 29 Nov '06  
GeneralRe: Good PinmemberJohn Simmons / outlaw programmer1:56 29 Nov '06  
GeneralI am sure .. [modified] PinmemberMonty20:07 29 Nov '06  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120604.1 | Last Updated 8 May 2007
Article Copyright 2006 by John Simmons / outlaw programmer
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid