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. ![]() Comedian Shifts From Social Media to Stage
Rashan Dixon
September 14, 2026
4:21 PM
![]() Fort Worth VC Firm Draws Institutional Backers
Sumit Kumar
September 14, 2026
4:15 PM
![]() Why the Future of Content Creation Is Visual-First, Not Text-First
Jordan Williams
September 14, 2026
3:25 PM
![]() Minimal Company Rethinks Its Distraction-Free Phone
Rashan Dixon
September 14, 2026
2:27 PM
![]() S301 Orbit Could Probe Black Hole Spin
Steve Gickling
September 14, 2026
2:18 PM
![]() Europe Redefines Control Over Digital Systems
Sumit Kumar
September 14, 2026
2:18 PM
![]() Why Anthropic, OpenAI, and xAI Are Calling for an AI Development Slowdown
Johannah Lopez
September 14, 2026
12:01 PM
![]() Scientists Spot Decagonal Wave Over Saturn
Deanna Ritchie
September 14, 2026
10:21 AM
![]() AI in Retail: How Smart Operations Are Rewriting the Store
Rashan Dixon
September 14, 2026
8:00 AM
![]() Building AI Governance Guardrails Before You Scale
Rashan Dixon
September 13, 2026
8:00 AM
Desktop CNC Is Finally Becoming Approachable
Joe Rothwell
September 12, 2026
1:08 PM
![]() Why Retrieval Augmented Generation Matters for Trustworthy Business AI
Rashan Dixon
September 12, 2026
8:00 AM
![]() MIT Tool Forecasts Plausible Extreme Weather
Deanna Ritchie
September 11, 2026
5:10 PM
![]() Meta Launches AI Assistant Amid Privacy Concerns
Rashan Dixon
September 11, 2026
3:26 PM
![]() Three Men Face Trial Over Ensenada Deaths
Steve Gickling
September 11, 2026
2:39 PM
![]() New York Lawmaker Pushes AI Oversight
Steve Gickling
September 11, 2026
1:11 PM
![]() Bond Market’s $160 Trillion Reach Explained
Rashan Dixon
September 11, 2026
1:03 PM
![]() AI Demand Pushes Gadget Prices Higher
Sumit Kumar
September 11, 2026
12:23 PM
![]() What Microsoft’s Tier-1 Rust Status Means for Your Team in 2026
Priya Nandakumar
September 11, 2026
12:15 PM
![]() Blank Street Raises $105 Million for Expansion
Sumit Kumar
September 11, 2026
12:10 PM
![]() Prompt Engineering for Teams: A Practical Guide to Better AI Output
Rashan Dixon
September 11, 2026
8:00 AM
AI’s Blind Spot Makes AGI Claims Premature
Joe Rothwell
September 11, 2026
7:43 AM
![]() Windows Security Teams Face Busy Summer
Deanna Ritchie
September 10, 2026
3:15 PM
![]() How Developers Build IT Infrastructure for Compliance in Financial ServicesÂ
Marcus Whitfield
September 10, 2026
3:01 PM
![]() New Findings Probe Parasite Drug Resistance
Steve Gickling
September 10, 2026
2:17 PM
|























