ometimes, deciding on a color scheme for a site is more of a problem than is implementing it. I’ve sat on committees intended to design Web sites by consensus and I can tell you from experience: Getting more than two people to settle on a color scheme is no easy task! A little programming helps though. You can simplify color scheme selection by letting people see how their color preferences interact on-screen. ![]()
Although displaying a Web-safe color palette is relatively easy, simply displaying the colors doesn’t give users an easy way to see how selected colors interact with each other. How can you get people to choose and agree on sensible colors for a site?![]()
Make the Web-safe color display interactive, using JavaScript to apply selected colors to some sample content and let users see immediately how their chosen colors look together. Figure 1 shows how the completed application looks.
![]() |
Create a Web-safe Palette This solution has two goals?displaying the Web-safe palette and making it interactive. Displaying the palette is easy; you use some nested loops and a simple array to build a table whose cells each represent a different entry in the palette. A pair of radio buttons on the page lets users choose whether they’re selecting a foreground or a background color. Finally, to make the display interactive, you can connect the onClick event for each colored cell in the table to a function that applies the selected color to either the foreground or background color of a separate display?based on the currently selected radio button. Simple event handlers for the radio buttons maintain the foreground/background value, and a “dummy” tag holds content so users can see the effect of their chosen colors immediately.
To get started, open up your favorite text editor and add the following code:
The CSS Rules shown above position elements on the page. Next, create three tags to hold the color table, the radio button controls, and a test area where the color effects appear. Because each of the
cells will be clickable, the td rule turns the standard cursor into the hand cursor when users move the mouse over a table cell. Note that the rules don’t specify any colors?users will determine the colors in the testArea by clicking on the cells in the palette.
| Add the following between the tags:
The colorTable ‘s content will be generated by a function called createTable(). Also note that the controls
possesses two radio buttons?one to set the foreground color and one to set the background color. Each radio button has an onClick event that sets the value of a flag?colorToSet?in the script to either “fore” or “back”. The function that displays the selected colors in the testArea
will check this flag to see which property to change. The controls
also contains labels that display the current color values of the foreground and background properties of the testArea. Initially, these values are set to black text (#000000) on a white (#ffffff) background. Finally, the testArea
contains some placeholder text so users can see how the colors interact.
Make the Palette Interactive
The preceding code creates a table by using three nested for loops. The colors array holds the hexadecimal color values acceptable for each of the red, green, and blue components of a Web-safe color palette. The code then uses the nested loops to iterate through each of the values. The i loop represents the red component, the j loop represents the green component, and the k loop represents the blue component of the color to be displayed. By including the HTML table markup tags and looping through the acceptable values of the Web-safe palette stored in the colors array, the createTable() function creates a table with 6 colors and 36 rows?the 216 colors of the Web-safe color palette. You may have noticed that as the code constructs the tags, it also adds an onClick event handler that points to a function called setColor(). The setColor() function takes the
| element itself as an argument (the "this" argument). You'll need to add the setColor() function?and the colorToSetFlag mentioned earlier to the page. Add the following to the script:
|
When the page first loads, the colorToTest flag is set to 'fore', but the flag value changes from 'fore' to 'back' as users change the selected radio button. The setColor() function uses DOM properties to access the text stored in the element passed to the function. It then uses that text (the color value) to apply the selected color to either the foreground or background of the testArea
| depending on the current colorToSet flag value. Finally, the setColor() function sets the innerHTML property of either the foreground or background labels to the selected color value.
That's all there is to it! You can use this Web-safe color palette application to help select a color scheme for anything from a single element to an entire site. You could easily extend the application to let users change the font, weight, and size of the text in the test area. In fact, the closer you make the content of the test area to the actual content of the intended site, the more likely it is that the process of selecting a color scheme will go smoothly. Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience. Related Posts
About Our Editorial ProcessAt DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere. See our full editorial policy. The Future of Frontend: React Server Components, HTMX, and Svelte 5 in 2026
Rashan Dixon
June 7, 2026
6:18 AM
Multi-Cloud Strategy: How Developers Are Avoiding Vendor Lock-In
Rashan Dixon
June 6, 2026
9:26 AM
Gaming Phones Should Be Built Like This
Joe Rothwell
June 6, 2026
9:26 AM
![]() Ninja Targets Simpler Outdoor Pizza Nights
Rashan Dixon
June 5, 2026
5:01 PM
OpenAI Faces Class Action Over Tracking
Steve Gickling
June 5, 2026
4:04 PM
![]() Crowds Gather for Manhattanhenge Sunset
Rashan Dixon
June 5, 2026
12:03 PM
![]() Countable Labs Raises $26 Million
Sumit Kumar
June 5, 2026
10:35 AM
The Open-Source Funding Crisis: Sustaining Critical Software Infrastructure
Rashan Dixon
June 5, 2026
7:20 AM
![]() Trump Administration Steps Up Social Media Subpoenas
Deanna Ritchie
June 4, 2026
5:05 PM
![]() Nvidia Reports Record $81.6 Billion Quarter
Sumit Kumar
June 4, 2026
4:47 PM
![]() TechCrunch Disrupt 2026 Early-Bird Deadline Nears
Steve Gickling
June 4, 2026
3:21 PM
![]() Unframe Secures $50 Million Led By Highland Europe
Sumit Kumar
June 4, 2026
3:07 PM
![]() Iran Imposes Wartime Internet Blackout
Steve Gickling
June 4, 2026
10:50 AM
![]() SpaceX Starship Reaches Target, Explodes
Rashan Dixon
June 4, 2026
9:41 AM
![]() Odyssey Casting Prompts Global Representation Debate
Rashan Dixon
June 4, 2026
9:21 AM
Zero Trust Architecture: A Developer’s Guide to Implementation in 2026
Rashan Dixon
June 4, 2026
6:33 AM
![]() Waymo Expands Temporary Pause Amid Safety Review
Kirstie Sands
June 3, 2026
3:18 PM
![]() Berkshire-Taylor Morrison Deal Signals Bottom
Sumit Kumar
June 3, 2026
1:50 PM
![]() Questions Surround Google’s Gemini Spark Strategy
Sumit Kumar
June 3, 2026
1:05 PM
AI-Powered Testing: How Generative Models Are Replacing QA Scripts
Rashan Dixon
June 3, 2026
10:36 AM
![]() Marvell Soars After Nvidia Chief’s Endorsement
Steve Gickling
June 3, 2026
9:29 AM
Why Pocket Cameras Beat Phones for Vlogging
Joe Rothwell
June 3, 2026
9:21 AM
![]() SK Hynix Joins Trillion-Dollar Club
Deanna Ritchie
June 2, 2026
3:47 PM
![]() Cycle Secures Funding From Crypto Backers
Sumit Kumar
June 2, 2026
3:02 PM
![]() Microsoft Marks 20 Years in Quincy
Sumit Kumar
June 2, 2026
2:39 PM
|

















