CSS Color Names: The Tragicomedy

The CSS “Named Colors” section of the CSS Color Module Level 4—the latest specification for color values and properties within the Cascading Style Sheets language—are 141 standard colors. Each has its own name, so beyond the essentials of “black” and “white” are shades like “papaya whip,” a warm orange pastel; “lemon chiffon,” a faint, milky yellow; and “burlywood,” which has likely made an appearance on a safari tour guide’s shorts.

At first glance, these names seem fluffy, and they bear connotations of sugary, whimsical romanticism. Where do such abstract names come from, and why are they a part of something as methodical as writing code?

The answer to these questions begins in 1980s Massachusetts. Originally, the colors were a product of the X Window System (X), a graphical user interface (GUI) released by MIT in 1984. In January of 1986, the first list of GUI colors, which was tuned to the DEC VT240 series terminal, shipped with the third release of X’s tenth version (X10R3). It comprised 69 basic shades, with 138 entries to account for different cases in the color names (e.g., lowercase with spacing like “dark red” versus camel case like “DarkRed”).

In 1988, X11R2 arrived with the addition of three colors, including the identical shades “gray” and “grey.” According to Austin-based developer Alex Sexton, discussing the colors at a JavaScript Conference last year, programmers at Hewlett-Packard couldn’t remember the proper spelling (which was originally with an ‘a’). Including two names, it was thought, would prevent errors.

The most substantial release, created by Paul Raveling, came in 1989 with X11R4. This update heralded a slew of light neutral tones, and it was a response to complaints from Raveling’s coworkers about color fidelity. (In the ‘80s, colors could vary dramatically from monitor to monitor, depending on the machine vendor. As if to illustrate this, a particularly baffled employee exclaimed, “That’s Wheat???!!!” upon the sight of the hue in the previous text file.) In this version, programmers were introduced to the aforementioned “papaya whip” and “lemon chiffon,” as well as other loftily-named hues like “blanched almond” and “peach puff.”

Raveling drew these names from an unsurprising source: the (now-defunct) paint company Sinclair Paints. It was an arbitrary move; after failing to receive sanctions from the American National Standards Institute (ANSI), which issued standards for Web color properties, Raveling decided to take matters into his own hands. He calibrated the colors for his own HP monitor. “Nuts to ANSI & ‘ANSI standards,’” he complained.

Later that year, X11 gained a set of bolder colors thanks to another programmer, John C. Thomas. Just as Raveling’s update tweaked shades to assuage user confusion, Thomas’s addressed the following written objection from coworker Bruce Schuchardt in 1989:

“[I] am still shocked and horrified by the default colors in the rgb database. The ‘pink’ color in particular looks like the flesh-tone of someone who has been puking for several hours and would really rather get a bullet in the head than go on living.”

Thomas agreed. Frustrated with inconsistent displays, he started to find it futile to standardize color names. In response, he stated in an e-mail that he “sat down one evening with the handiest standard of subjective color names, a box of 72 Crayola crayons.” That birthed “aquamarine,” “orchid,” and “salmon,” to name a few.

By 2001, the World Wide Web Consortium (W3C) published the first working draft of the CSS 3 Color Module that would include the colors. In light of evolving technologies, the colors had fallen out of use, but the W3C claimed the goal was to “codify current practices.” Every browser supported the colors at this point, consequently, the W3C had been using them in compatibility tests. Incorporating the colors into CSS, then, would prevent sites from breaking.

“It was like a backwards-compatibility thing. They thought, ‘We’ve accidentally been doing this, so we might as well just not break it,’” Sexton told Ars.

Backlash ensued. The color database had been subjected to the whims of so many different programmers that it became deeply disorganized, leading some to argue it had no place in CSS. Critics attacked its naming scheme: “dark gray” was lighter than “gray”; there was a “medium violet red” but no “violet red”; “light goldenrod yellow” had no corresponding “goldenrod yellow.” In total 17 colors had dark versions, but only 13 had light ones. Color distribution was also uneven, skewing toward reds and greens and away from blues.

Perhaps the most vehement denunciation comes from a 2002 e-mail written by programmer Steven Pemberton: “The X11 colour names are an abomination that should have been stifled at birth, and adding them to CSS is a blemish on the otherwise excellent design of CSS. To say that the X11 colour set and their names have been ‘designed’ is an insult to the word ‘design.’ It is just a mess.”

Another point of contention was cultural exclusion. Some programmers took umbrage at the region-centric nature of names like “dodger blue” and the potential racial undertones of “navajo white” (from Sinclair Paints) and “indian red” (from Crayola, though the crayon has since been renamed in response to the same concerns). Others considered the English-only names alienating.

“I’m not a native English speaker. Imagine my reaction the first time I saw the ‘gainsboro’ color  or ‘papaya whip,’” Daniel Glazman, co-chairman of the CSS Working Group, told Ars.

Ostensibly, these repercussions could have been prevented. In the ‘80s, X system programmers had the option to identify colors the way many developers do today: with a hexadecimal value (AKA hex value, e.g., #FFFF00) or an RGB color code (e.g., 255,255,0). These options allow a greater degree of choice and precision, and they’re based on schematic, objective, globally legible systems. Why weren’t they used in the first place?

“It was a recognition that almost nobody likes using the numeric values. People don’t think in terms of F5B as a particular shade of color. Using a name is more natural,” said Jim Fulton, a student at MIT at the time of X’s creation and manager of Raveling’s and Thomas’s files. However, he conceded, “Not every idea works out well.”

In 2014, however, an unexpected event cast the color list in a more favorable light: a new shade. “Rebecca purple,” was introduced to honor the life of Rebecca Meyer, the daughter of Eric Meyer, a respected programmer and CSS writer. Rebecca died of brain cancer at the age of six; the hue (#663399) was chosen to reflect her favorite color. (A few developers opposed the addition, maintaining that a set of standards was no place for an emotional tribute. They were dismissed as curmudgeons.)

Still, the general consensus is that these colors’ utility is minimal; they’re best reserved as placeholders (it’s easier to type “tomato” than “#FF6347” when you need a color quickly), for beginner-level design projects, or as the butt of a joke.

“I view it with amusement that the colors seem to have migrated into CSS. I just laugh at it,” Fulton told Ars. “I think if someone were to go and crawl over the top 100 or top 1,000 sites and take a look at how various colors are specified, I’m willing to bet you’d still find close to zero percent using color names beyond ‘white’ or ‘black.’”

“If I’m doing an example to show people how to use an editor or a framework, I use hex values like #C0FFEE or #BADA55. It’s about as useful to use #C0FFEE as it is to use ‘papaya whip,’” Sexton added.

Should the colors have been left without standard names then, sparing the development community from a series of angry e-mails and micro-controversies? According to Fulton, probably. Then again, as programmers navigated the uncharted territory of color-displaying GUIs in the ‘80s, it was only natural to experiment any way they knew how.

“At the time, we were dealing with, in some ways, the very beginnings of the graphical home-computer industry,” he said. “For color devices especially, this was the very beginning.”


css color picker
css font color
css background color
css text color
font color css
css color
text color css
background color css
css color codes
css color names
css link color
css border color
border color css
css placeholder color
color css
css background color opacity
how to change text color in css
change font color css
color picker css
change text color css
css transparent background color
css change text color
which css attribute would change an element’s font color to blue?
background color opacity css
link color css
css hex color
css color wheel
change link color css
css color palette
css change font color
css color code
how to change font color in css
css color overlay
css background color transparent
css hr color
css background color gradient
css color gradient
css hover color
color gradient css
background color in css
gradient color css
css invert color
css button color
hover color css
css background-color
inline css font color
css background color code
css change background color
background-color css
which css attribute would change an element’s font color to blue
css color selector
font-color css
css for font color
css change link color
how to change text color css
font color in css
color codes css
css transparent color
css color schemes
css font-color
color overlay css
change background color css
css for background color
css color list
text-color css
button color css
css table background color
css text background color
css highlight color
css transition background color
margin color css
select the code below that uses css to configure a background color of #eaeaea for a web page.
css color opacity
css background vs background-color
css alternate row color
css div background color
css color chart
css font color inline
css overlay color
how to change font color css
css change image color
transparent background color css
body background color css
css color hex
css change color on hover
css visited link color
background color transparent css
color in css
css filter color
rgb color css
css table border color
css border-color
css foreground color
css body background color
changing text color in css
css red color
css text-color
css placeholder text color
css white color
hr color css
css margin color
placeholder color css
css underline color
color css code
css opacity background color
changing font color in css
text background color css
foreground color css
css rgb color
color palette css
transparent color css
css svg color
change image color css
background color gradient css
css color transition
highlight color css
css change svg color
css set background color
css change color
change highlight color css
css image overlay color
css color rgb
html css color
change color when hover css
change svg color css
color code css
css set text color
css hyperlink color
color numbers css
css code for background color
set background color css
color overlay image css
css black color
css font color code
css style font color
css style background color
css no background color
css background image color
css color text
css color generator
how to change link color in css
css random color
color opacity css
change color on hover css
css color transparent
css input placeholder color
color transparent css
which css property configures the color of text?
inline css background color
css remove background color
css bullet color
css color property
color wheel css
css change color of svg
jquery css background color
css rgba color
css padding color
css background color none
css image color overlay
changing link color css
css background color transition
how to change background color css
css background color rgba
change color of svg css
css color background
css change color of image
css color variables
css color red
css blue color
css style color
css background color not working
css color black
css highlight text color
css transition color
change color of text css
css background-color opacity
css gradient color
css outline color
css color scheme
css hex color codes
css how to change font color
css background image and color
css page background color
change font color in css
no background color css
change background color using css mdn
padding color css
gold css color
black css color
css darken color
change button color css
css button background color
css table color
css how to change text color
css color values
hyperlink color css
change svg color with css
underline color css
placeholder text color css
change placeholder color css
css button text color
html css background color
css animate background color
style color css
css color transparency
css set font color
change color of image css
change opacity of background color css
change hyperlink color css
css image color
css table alternate row color
change color of svg with css
css gray color
border-color css
css color grey
background color css code
hr css color
inline css text color
css selection color
color names css
div color css
inline css link color
css color gradient generator
css color rgba
remove background color css
how to change background color in css
css color white
css body background color not working
table border color css
html css font color
css change button color
css body color
how to change link color css
html font color css
set font color css
text color in css
css color change
change bullet color css
css change placeholder color
css text color gradient
css color keywords
visited link color css
css scrollbar color
set text color css
css background-color none
css gradient background color
css color fade
which css property is used to change the text color of an element?
change hover color css
change border color css
how to change the background color in css
changing text color css
css text highlight color
background color none css
css image border color
css color attribute
change color css
css filter color overlay
css change highlight color
css change bullet color
css opacity color
css fill color
css color blue
css color filter
how to change the color of text in css
svg color css
css color tag
css background image color overlay
css color alpha
css header color
color selector css
css rgba color picker
css h1 color
hex color css
css alpha color
css background color transparency
color transition css
css change hyperlink color
html css text color
how to set background color in css
css to change font color
css code for font color
css gold color
css color green
css font background color
color codes for css
css clear background color
css hover text color
gradient background color css
css for text color
css div color
css color name
css background transparent color
css background vs background color
css black color code
change text color in css
div background color css
css overlay color on background image
td background color css
color text css
css checkbox color
css list style color
css alternating row color
css inline font color
inline css color
white color css
white color code in css
css lighten color
table background color css
green color css
darken color css
css color options
grey color css
button text color css
css grey color
which of the following is the css property used to set the text color?
css color animation
css active link color
css color inherit
css changing font color
how is background color defined in a cascaded style sheets (css) file?
css button hover color
css text decoration color
html css color picker
placeholder css color
css color themes
css change hr color
css text outline color
css a color
background color css opacity
css to change background color
css font color gradient
css background color alpha
color transparency css
css define color
css color overlay image
how to change color in css
css change color on click
hover change color css
css color none
css print background color
setting background color in css
css change underline color
css how to change background color
css color numbers
css hover background color
css href color
css input text color
css class color
css color gray
css text-decoration-color
css border bottom color
change background color in css
css supports the ___ basic color names.
css table row background color
svg change color css
color overlay background image css
css cursor color
css color palette generator
css color hex codes
css changing text color
changing background color css
css link text color
how to set font color in css
css color font
css link hover color
css radio button color
jquery css color
css style text color
css background color codes
css color orange
css invert image color
css list bullet color
input color css
how to set text color in css
random color css
h1 color css
button background color css
css set color
css div border color
css background color and image
css color #fff
how to change the font color in css
css for link color
javascript css background color
css animation background color
font color css code
css text color code
css rgb color picker
css color light gray
blue color css
css fade background color
text color gradient css generator
css for color
opacity background color css
css link color inline
css background-color transparent
css checkbox background color
css font color white
css input background color
change h1 color css
css bg color
css hexadecimal color
black color css
color svg image css
css color names list
css inline background color
css color scheme generator
color for css
css color words
white css color
css background color black
css color of text
css code color
color name css
css font-color white
css color fff
how to add background color in css
css background color hex
link hover color css
css box shadow color
css color svg
css color light blue
css paragraph color
css td background color
html css color codes
css color with opacity
css input color
css background color list
css background color with opacity
css animate color
css attribute font color
image color overlay css
change color of hr tag css
css font color red
change scrollbar color css
invert color css
change color in css
gray color css
css change color of text
css text color white
css image color filter
css color hr
css text underline color
css span background color
red color css
changing svg color with css
blue css color
css color chooser
css color picker from image
color svg css
css color finder
html text color css
two color background css top and bottom
css text border color
css image background color
color white css
wordpress change font color css
change hr color css
background color css gradient
header color css
dark blue css color code
html background color css
css background image with color overlay
change underline color css
css color combinations
css button border color
css background color rgb
red css color
css change button background color
change png color css
css background color div
change color of font css
background color rgba css
css green color
css custom color
css background color linear gradient
overlay color css
css color gold
css table font color
bullet color css
css change hover color
how to add a background color in css
css header background color
how to change hover color css
fade background color css
bg color css
css color light grey
change color of link css
css for hover color
css background color animation
css code for color
css color guide
css border color gradient
change button color after click css
changing font color css
css attribute would change an element’s font color to blue
background color not working css
rgba css color picker
green css color
change header background color css
how to set background color css
opacity of background color css
how to change the color of links in css
remove link color css
box shadow color css
css background color not showing
color wheel for css
gold color css
css tr background color
css color shades
how to change color of text in css
opacity color css
color black css
css background color only behind text
css overlay color on image
svg css color
orange css color
background color with opacity css
how to change list style color in css
css change border color
css cell background color
css inline color
css inline text color
css color overlay background image
css color not working
css anchor color
css hex color picker
color css picker
rgba color css
which of the following is not one of the ways that you can specify a color in css?
background vs background-color css
css hsl color
html link color css
page background color css
p color css
how to change the color of a link in css
change cursor color css
red color code in css
change color of png css
body color css
css link visited color
css backgroun color
css set div background color
font color gradient css
css background color width
hover color transition css
css table cell background color
css div font color
css yellow color
css white color hex
css color mixer
background image and color css
text color html css
background color opacity css hex
transform color css
css bottom border color
css code for header text color transvelo theme
color values css
css style border color
javascript change css background color
change header text color css
css code for header color transvelo theme
style font color css
css html color
css class background color
css link background color
fill color css
set font color in css
css background color clear
how to add color in css
css box color
css text color transparent
box color css
change color hover css
css orange color
css html background color
css add background color
color filter css
change focus color css
color code for white in css
css text font color
css background color white
font color code css
how to color text in css
add color overlay to image css
css text shadow color
css class font color
css font color attribute
css link underline color
scrollbar color css
css table cell color
css ul bullet color
add opacity to background color css
css text color change
css strikethrough color
css change paragraph color
css select color
how to change border color css
font background color css
setting font color in css
white color code css
text color gradient css
css radio button background color
css font color tag
css font outline color
css color code generator
css change color of png
css background color text
css font color change
css color tool
css silver color
css inherit background color
header background color css
change icon color css
css shadow color
css font color transparent
css set background color opacity
css light gray color
css page color
css color table
css label color
css rgb background color
translucent background color css
w3 css color
css input border color
how to change svg color css
fade color css
color property css
text outline color css
change color of links css
css change background color on hover
css to change link color
random background color css
css div text color
css color for white
css inline link color
background-color transparent css
color rgba css
transparent css color
text color css code
css color change animation
font color codes css
css fade color
css color code picker
css body text color
gray css color
css on hover change color
checkbox color css
background color gradient css generator
background color animation css
css color reference
css inline style color
rgb css color
bootstrap css background color
css color variable
link color inline css
color codes in css
css color example
a color css
wordpress background color css
css change image color on hover
css split background color
inline font color css
change margin color css
list of css color names
css color for black
transparency css background color
css background color property
animate background color css
css color palettes
css color creator
css color value
css color class
two color background css
css backgroud color
vim css color
color chart css
add background color css
background color html css
css mouseover color
css color div
css td color
css font color property
how to change scrollbar color in firefox via css
css color effects
css background color names
inline color css
css background color table
light grey css color
color schemes css
css svg color change
gradient text color css
css color picker rgba
css lighter color
color generator css
font color inline css
css inline style font color
css a link color
css font size and color
css change radio button color
css color sheet
color rgb css
css color calculator
div css background color
css link color not changing
css color templates
html css color names
outline color css
transparent css color code
css background color generator
background color code css
clear background color css
css color percentage
css color codes generator
background image color css
css class text color
css change input placeholder color
css hover color change
css code to change background color
css color tags
css grid background color
border color in css
css form background color
css color coding
html hr color css
rgba background color css
css change svg fill color
how to change color css
css color change on hover
color css codes
color changing background css
link color in css
yellow color css
color scheme css
grey css color
color attribute css
css color syntax
css margin background color
css paragraph background color
css color default
css row background color
make background color transparent css
svg background color css
beige color css
background color transparency css
css svg stroke color
css color scheme designer
css color codes list
css color formats
background color codes css
css color darken
css background color padding
color fade css
change color of checkbox css
change color on click css
css opaque background color
text color change css
css font color black
css font color codes
color font css
cursor color css
background color overlay css
css set background color to none
change css font color
table color css
transparent color code css
css select background color
css change body background color
css gradient color generator
css background color opacity without affecting text
css random background color
change color svg css
css background color height
css change color of hr
css line color
hover color change css
css hover color transition
css table text color
color code for css
animate css background color
color animation css
light gray color css
w3schools css color
css p font color
css background color tag
css color #333
transition color css
color css rgba
background color linear gradient css
css color checker
overlay color on image css
opacity css background color
css border background color
javascript css color
css link color class
w3schools font color css
change image color on hover using css
css color to rgb
css color gradients
change all text color css
color value css
jquery css font color
css supports styles to define both the text and ______ color for each element on your page.
css flash color
css color:
cell background color css
css change color of button
color none css
color inherit css
css font color list
table text color css
css color test
background color css html
color css generator
css text color property
background color css not working
css border color transparent
color border css
red color in css
font color white css
css color light green
text fill color css
white color in css
css background color gradient generator
css background color behind image
set page background color css
full width background color css
font color html css
css set opacity of background color
color code for transparent css
code for transparent color in css
opaque background color css
green color code in css
css background color example
filter color css
navy blue css color code
hex color palette css
background color css transparent
how to change background color using css
background color for text css
text highlight color css
font css color
html css link color
color background css
w3schools css color codes
a href color css
css color picker rgb
div font color css
background color and image css

color picker
hex color picker
colors
color
transparent
rgb color picker
html color codes
color palette generator
hex color
html color picker
color codes
hex to rgb
colour
hex code
color picker from image
html colors
hex colors
color code
css colors
css color picker
color names
color chart
hex color codes
transparent definition
color hex
color hex codes
red color
html color
blue color
html code
css font color
hex codes
css background color
color finder
color generator
color code finder
rgb color
inline css
list of colors
html background color
css text color
hex code finder
green color
hexadecimal color
font color css
color picker tool
color identifier
red color code
white color code
rgba
rgb colors
html img
hsl
css color
blue colors
rgb color wheel
black color code
colour wheel
html tutorial
black hex code
yellow hex code
yellow color code
image color picker
blue color code
colores
orange color code
purple hex code
rgba color picker
brown color code
html codes
green color code
blue hex code
rgb color codes
orange hex code
rgb picker
image html
html css
green hex code
white hex code
hex code color
de colores
yellow rgb
green colors
text color css
orange rgb
hex to rgba
red color palette
color selector
color definition
html coding
color picker chrome
brown rgb
web colors
red colors
pickers
html color names
red hex
hex code color picker
background color css
hexadecimal colors
background color html
hex code picker
hex color palette
hexcode
hexadecimal color picker
blue hex
hex color finder
online color picker
css color codes
html image size
grey hex code
light blue color
hexadecimal chart
hex picker
get color from image
color hex picker
brown color palette
color code picker
rbg to hex
opacity definition
rgb yellow
hot pink hex code
green hex
grey color code
html code generator
color html
color numbers
rgb white
blue color names
purple rgb
red rgb
hex code generator
html color code
light green background
colors of blue
hex code from image
hex code for white
color wheel picker
rgb values
color picker from screen
white names
orange hex
blue rgb
rgba to hex
dark blue color
css code
orange color palette
web color picker
color code chart
css color names
define transparent
blue hex codes
colour picker
black hex
rgb orange
names of colors
hex from image
hex color code
google color picker
light blue hex
hexadecimal color codes
green color names
white rgb
color code test
find color code
hex code for black
white hex
chrome color picker
blue names
css inline
rgb brown
black rgb
css in html
green rgb
dark red color
css properties
different colors
light blue color code
color number
red definition
light blue hex code
hex color chart
color number finder
gray color code
green paint colors
colors names
rgb for white
hex code colors
html images
hex code for gold
background colors
colors of green
css link color
wheel picker
pink hex
hex color wheel
color or colour
shades of blue names
css border color
html color wheel
hex map maker
hot pink color code
cyan hex code
rgb color picker from image
green names
rgb color generator
grey hex
color value
css inline style
magenta color code
inline style
html color chart
css rgba
color identifier tool
color rgb
red hex color
interactive color wheel
cream color code
dark blue color code
black and blue background
hexadecimal code
brown hex
color chooser
peach color code
hexcolor
python water changer
html img size
light gray hex
hex colors picker
color hex code
hex definition
hexadecimal table
rgb red
english color
red orange color
color code from image
light blue rgb
hex color to rgb
hex editor online
rgb black
light grey hex
crimson hex code
dark grey hex
color hex finder
color picker html
hsl to hex
hex code for red
colors of red
hex code to rgb
dark red hex code
peach hex code
css html
color code for white
opaque color
css stylesheet
hex color black
css coding
rgb color chart
color codes html
color picker hex
royal blue rgb
sky blue hex code
border color css
sky blue color code
transparent color code
navy color code
add css to html
red names
rgb finder
rgb codes
hsl color
grey rgb
cream hex code
gray hex codes
magenta hex code
image size html
css placeholder color
light color wheel
orange rgb value
rgb blue
sky blue hex
hex value
html5 color picker
rgb code
gray rgb
names for blue
color css
blue and red background
level 4
gray hex
rgb green
hex red
lime green hex code
resize image html
navy hex code
hex for white
css style sheet
gray definition
color code for black
space colors
blue color codes
color picker online
light gray hex code
css background color opacity
hex code red
color online
img size html
html background
online hex editor
dark red color code
hex white
hex chart
link stylesheet
transparent hex code
rgb to hsl
rgb meaning
dark brown color code
w3 color picker
html image code
how to change text color in css
dark blue hex code
red color names
dark grey hex code
grid wheels
light pink color code
html add image
color palette picker
hex color generator
unique color names
pik.bg
all the colors
color sampler
change font color css
stylesheet
css resize image
light grey hex code
opacity meaning
dark green color code
external css
dark green hex
cyan rgb
color hexa
baby blue color code
off white color code
blue color chart
color code for red
rgb for black
may colors
color maker
hex values
red color codes
html color from image
style sheet
lime green hex
rgba css
colors that start with s
w3schools color picker
color name
html page
rgb scale
tan hex code
find color code from image
hex finder
green color chart
names for red
hex color white
html color codes from image
lime green color code
htmlcolorcodes
color html codes
green hex codes
cyan hex
pick color from image
color picker css
inline style css
wheel chooser
javascript html
hex code for blue
rgb hex
pink color names
rbg color
names meaning green
hexadecimal notation
css tags
dark gray hex
light green color
hex codes color
crimson rgb
hexcolor picker
colorhex
alpha value
orange hex color
change text color css
black hex color
sky blue rgb
external style sheet
hex color red
green blue color
school colors
color picker image
red color hex
#fff color chart
light blue colors
dark grey color code
crimson color code
dark red hex
css transparent background color
pixer
dark green hex code
light grey color
rgb grey
color pallete generator
colorcode
color wheel palette
light grey color code
html resize image
rgb spectrum
hsl to rgb
css change text color
light gray color
color namer
light purple color
white color hex
color spectrum wheel
baby blue hex code
rgb background
colors list
light brown color code
color palette generator from hex
color table
background html
hexcodes
white hex color
greenshade map
palette picker
gray hex code
color pallet generator
which css attribute would change an element’s font color to blue?
rgb for red
orange color names
the color
hot pink hex
color gris
define hex
hex yellow
html include css
coding html
green color codes
hex to rbg
rgb for orange
html background color code
orange names
color values
online color wheel
hex to color
background color opacity css
blue grey color
colour definition
hex blue
color to hex
lab color
hexidecimal color
rgb color code
hex tie
images in html
rbg color picker
z shade
adding css to html
link color css
web color palette
magenta rgb
red html
light brown hex code
hex code for transparent
define transparency
color picker rgb
functional notation
find color in image
html/css
color slider
rgb gray
html code for red text
hex code brown
mustard yellow hex code
colors that start with d
red html code
hex color for white
css examples with source code
hwb
colors css
rgb to hex color
hex color blue
black html code
hsla
html border color
yellow hex codes
orange color codes
rgb to html
hex grid generator
find color from image

6 Comments
  1. […] Johannes Gutenberg’s pioneering printing press in 1440. The first set of publicly-available GUI colors shipped with the 10th version of the X Window System consisted of 69 primary shades and 138 entries […]

  2. […] Johannes Gutenberg’s pioneering printing press in 1440. The first set of publicly-available GUI colors shipped with the 10th version of the X Window System consisted of 69 primary shades and 138 entries […]

  3. […] Johannes Gutenberg’s pioneering printing press in 1440. The first set of publicly-available GUI colors shipped with the 10th version of the X Window System consisted of 69 primary shades and 138 entries […]

  4. […] Johannes Gutenberg’s pioneering printing press in 1440. The first set of publicly-available GUI colors shipped with the 10th version of the X Window System consisted of 69 primary shades and 138 entries […]

  5. […] Johannes Gutenberg’s pioneering printing press in 1440. The first set of publicly-available GUI colors shipped with the 10th version of the X Window System consisted of 69 primary shades and 138 entries […]

  6. […] Johannes Gutenberg’s pioneering printing press in 1440. The primary set of publicly-available GUI colours shipped with the tenth model of the X Window System consisted of 69 main shades and 138 entries to […]

    Leave a Comment

    Web Training Guides
    Compare items
    • Total (0)
    Compare
    0