Web Colours

The 150 named colours in tc-lib-color, with swatches, hex codes, RGB components and CSS forms, plus the name and hex lookups

Web::WEBHEX maps 150 names to hex codes: the CSS Color Module Level 4 list, plus the two Acrobat JavaScript spellings dkgray and ltgray. Any of them can be used wherever a colour string is accepted, and the lookup is case-insensitive.

Lookups

<?php

require_once __DIR__ . '/vendor/autoload.php';

$web = new \Com\Tecnick\Color\Web();

echo $web->getHexFromName('cornflowerblue'), "\n";
echo $web->getNameFromHex('#6495ed'), "\n";
echo $web->extractHexCode('#369'), "\n";
echo $web->getRgbObjFromName('cornflowerblue')->getCssColor(), "\n";
6495edff
cornflowerblue
336699ff
rgb(100,149,237)

extractHexCode() normalizes a hash: it lowercases, drops the #, and expands the three and four digit forms. getNameFromHex() is the reverse of getHexFromName() and raises for a code that is not in the table. For the closest entry rather than an exact match, see Nearest Colour.

Aliases

150 names cover 139 colours. Nine hex codes carry two or three names each: seven gray and grey spellings, plus aqua/cyan and fuchsia/magenta.

SwatchHexNamesgetNameFromHex()
#00ffffaqua, cyanaqua
#a9a9a9darkgray, darkgrey, dkgraydarkgray
#2f4f4fdarkslategray, darkslategreydarkslategray
#696969dimgray, dimgreydimgray
#ff00fffuchsia, magentafuchsia
#808080gray, greygray
#d3d3d3lightgray, lightgrey, ltgraylightgray
#778899lightslategray, lightslategreylightslategray
#708090slategray, slategreyslategray
// three names for one colour
foreach (['darkgray', 'darkgrey', 'dkgray'] as $name) {
    printf("%-10s %s\n", $name, $web->getHexFromName($name));
}

// the reverse lookup returns the first name in table order
echo $web->getNameFromHex('#a9a9a9'), "\n";
darkgray   a9a9a9ff
darkgrey   a9a9a9ff
dkgray     a9a9a9ff
darkgray

The reverse lookup returns whichever name comes first in the table, which is the gray spelling in every pair that differs only in that letter.

dkgray and ltgray are not CSS names. They are in the table so the Acrobat JavaScript colour names resolve through the parser. Pdf::JSCOLOR spells them dkGray and ltGray and matches case-sensitively. See PDF Output.

rebeccapurple is present. transparent is not: it is handled before the table lookup and returns null, as Notations describes.

The Table

SwatchNameHexRGBCSSHSL
aliceblue#f0f8ff240248255rgb(240,248,255)hsl(208,100%,97.0588%)
antiquewhite#faebd7250235215rgb(250,235,215)hsl(34.2857,77.7778%,91.1765%)
aqua#00ffff0255255rgb(0,255,255)hsl(180,100%,50%)
aquamarine#7fffd4127255212rgb(127,255,212)hsl(159.8438,100%,74.902%)
azure#f0ffff240255255rgb(240,255,255)hsl(180,100%,97.0588%)
beige#f5f5dc245245220rgb(245,245,220)hsl(60,55.5556%,91.1765%)
bisque#ffe4c4255228196rgb(255,228,196)hsl(32.5424,100%,88.4314%)
black#000000000rgb(0,0,0)hsl(0,0%,0%)
blanchedalmond#ffebcd255235205rgb(255,235,205)hsl(36,100%,90.1961%)
blue#0000ff00255rgb(0,0,255)hsl(240,100%,50%)
blueviolet#8a2be213843226rgb(138,43,226)hsl(271.1475,75.9336%,52.7451%)
brown#a52a2a1654242rgb(165,42,42)hsl(0,59.4203%,40.5882%)
burlywood#deb887222184135rgb(222,184,135)hsl(33.7931,56.8627%,70%)
cadetblue#5f9ea095158160rgb(95,158,160)hsl(181.8462,25.4902%,50%)
chartreuse#7fff001272550rgb(127,255,0)hsl(90.1176,100%,50%)
chocolate#d2691e21010530rgb(210,105,30)hsl(25,75%,47.0588%)
coral#ff7f5025512780rgb(255,127,80)hsl(16.1143,100%,65.6863%)
cornflowerblue#6495ed100149237rgb(100,149,237)hsl(218.5401,79.1908%,66.0784%)
cornsilk#fff8dc255248220rgb(255,248,220)hsl(48,100%,93.1373%)
crimson#dc143c2202060rgb(220,20,60)hsl(348,83.3333%,47.0588%)
cyan#00ffff0255255rgb(0,255,255)hsl(180,100%,50%)
darkblue#00008b00139rgb(0,0,139)hsl(240,100%,27.2549%)
darkcyan#008b8b0139139rgb(0,139,139)hsl(180,100%,27.2549%)
darkgoldenrod#b8860b18413411rgb(184,134,11)hsl(42.659,88.7179%,38.2353%)
darkgray#a9a9a9169169169rgb(169,169,169)hsl(0,0%,66.2745%)
darkgrey#a9a9a9169169169rgb(169,169,169)hsl(0,0%,66.2745%)
dkgray#a9a9a9169169169rgb(169,169,169)hsl(0,0%,66.2745%)
darkgreen#00640001000rgb(0,100,0)hsl(120,100%,19.6078%)
darkkhaki#bdb76b189183107rgb(189,183,107)hsl(55.6098,38.3178%,58.0392%)
darkmagenta#8b008b1390139rgb(139,0,139)hsl(300,100%,27.2549%)
darkolivegreen#556b2f8510747rgb(85,107,47)hsl(82,38.961%,30.1961%)
darkorange#ff8c002551400rgb(255,140,0)hsl(32.9412,100%,50%)
darkorchid#9932cc15350204rgb(153,50,204)hsl(280.1299,60.6299%,49.8039%)
darkred#8b000013900rgb(139,0,0)hsl(0,100%,27.2549%)
darksalmon#e9967a233150122rgb(233,150,122)hsl(15.1351,71.6129%,69.6078%)
darkseagreen#8fbc8f143188143rgb(143,188,143)hsl(120,25.1397%,64.902%)
darkslateblue#483d8b7261139rgb(72,61,139)hsl(248.4615,39%,39.2157%)
darkslategray#2f4f4f477979rgb(47,79,79)hsl(180,25.3968%,24.7059%)
darkslategrey#2f4f4f477979rgb(47,79,79)hsl(180,25.3968%,24.7059%)
darkturquoise#00ced10206209rgb(0,206,209)hsl(180.8612,100%,40.9804%)
darkviolet#9400d31480211rgb(148,0,211)hsl(282.0853,100%,41.3725%)
deeppink#ff149325520147rgb(255,20,147)hsl(327.5745,100%,53.9216%)
deepskyblue#00bfff0191255rgb(0,191,255)hsl(195.0588,100%,50%)
dimgray#696969105105105rgb(105,105,105)hsl(0,0%,41.1765%)
dimgrey#696969105105105rgb(105,105,105)hsl(0,0%,41.1765%)
dodgerblue#1e90ff30144255rgb(30,144,255)hsl(209.6,100%,55.8824%)
firebrick#b222221783434rgb(178,34,34)hsl(0,67.9245%,41.5686%)
floralwhite#fffaf0255250240rgb(255,250,240)hsl(40,100%,97.0588%)
forestgreen#228b223413934rgb(34,139,34)hsl(120,60.6936%,33.9216%)
fuchsia#ff00ff2550255rgb(255,0,255)hsl(300,100%,50%)
gainsboro#dcdcdc220220220rgb(220,220,220)hsl(0,0%,86.2745%)
ghostwhite#f8f8ff248248255rgb(248,248,255)hsl(240,100%,98.6275%)
gold#ffd7002552150rgb(255,215,0)hsl(50.5882,100%,50%)
goldenrod#daa52021816532rgb(218,165,32)hsl(42.9032,74.4%,49.0196%)
gray#808080128128128rgb(128,128,128)hsl(0,0%,50.1961%)
grey#808080128128128rgb(128,128,128)hsl(0,0%,50.1961%)
green#00800001280rgb(0,128,0)hsl(120,100%,25.098%)
greenyellow#adff2f17325547rgb(173,255,47)hsl(83.6538,100%,59.2157%)
honeydew#f0fff0240255240rgb(240,255,240)hsl(120,100%,97.0588%)
hotpink#ff69b4255105180rgb(255,105,180)hsl(330,100%,70.5882%)
indianred#cd5c5c2059292rgb(205,92,92)hsl(0,53.0516%,58.2353%)
indigo#4b0082750130rgb(75,0,130)hsl(274.6154,100%,25.4902%)
ivory#fffff0255255240rgb(255,255,240)hsl(60,100%,97.0588%)
khaki#f0e68c240230140rgb(240,230,140)hsl(54,76.9231%,74.5098%)
lavender#e6e6fa230230250rgb(230,230,250)hsl(240,66.6667%,94.1176%)
lavenderblush#fff0f5255240245rgb(255,240,245)hsl(340,100%,97.0588%)
lawngreen#7cfc001242520rgb(124,252,0)hsl(90.4762,100%,49.4118%)
lemonchiffon#fffacd255250205rgb(255,250,205)hsl(54,100%,90.1961%)
lightblue#add8e6173216230rgb(173,216,230)hsl(194.7368,53.271%,79.0196%)
lightcoral#f08080240128128rgb(240,128,128)hsl(0,78.8732%,72.1569%)
lightcyan#e0ffff224255255rgb(224,255,255)hsl(180,100%,93.9216%)
lightgoldenrodyellow#fafad2250250210rgb(250,250,210)hsl(60,80%,90.1961%)
lightgray#d3d3d3211211211rgb(211,211,211)hsl(0,0%,82.7451%)
lightgrey#d3d3d3211211211rgb(211,211,211)hsl(0,0%,82.7451%)
ltgray#d3d3d3211211211rgb(211,211,211)hsl(0,0%,82.7451%)
lightgreen#90ee90144238144rgb(144,238,144)hsl(120,73.4375%,74.902%)
lightpink#ffb6c1255182193rgb(255,182,193)hsl(350.9589,100%,85.6863%)
lightsalmon#ffa07a255160122rgb(255,160,122)hsl(17.1429,100%,73.9216%)
lightseagreen#20b2aa32178170rgb(32,178,170)hsl(176.7123,69.5238%,41.1765%)
lightskyblue#87cefa135206250rgb(135,206,250)hsl(202.9565,92%,75.4902%)
lightslategray#778899119136153rgb(119,136,153)hsl(210,14.2857%,53.3333%)
lightslategrey#778899119136153rgb(119,136,153)hsl(210,14.2857%,53.3333%)
lightsteelblue#b0c4de176196222rgb(176,196,222)hsl(213.913,41.0714%,78.0392%)
lightyellow#ffffe0255255224rgb(255,255,224)hsl(60,100%,93.9216%)
lime#00ff0002550rgb(0,255,0)hsl(120,100%,50%)
limegreen#32cd325020550rgb(50,205,50)hsl(120,60.7843%,50%)
linen#faf0e6250240230rgb(250,240,230)hsl(30,66.6667%,94.1176%)
magenta#ff00ff2550255rgb(255,0,255)hsl(300,100%,50%)
maroon#80000012800rgb(128,0,0)hsl(0,100%,25.098%)
mediumaquamarine#66cdaa102205170rgb(102,205,170)hsl(159.6117,50.7389%,60.1961%)
mediumblue#0000cd00205rgb(0,0,205)hsl(240,100%,40.1961%)
mediumorchid#ba55d318685211rgb(186,85,211)hsl(288.0952,58.8785%,58.0392%)
mediumpurple#9370db147112219rgb(147,112,219)hsl(259.6262,59.7765%,64.902%)
mediumseagreen#3cb37160179113rgb(60,179,113)hsl(146.7227,49.7908%,46.8627%)
mediumslateblue#7b68ee123104238rgb(123,104,238)hsl(248.5075,79.7619%,67.0588%)
mediumspringgreen#00fa9a0250154rgb(0,250,154)hsl(156.96,100%,49.0196%)
mediumturquoise#48d1cc72209204rgb(72,209,204)hsl(177.8102,59.8253%,55.098%)
mediumvioletred#c7158519921133rgb(199,21,133)hsl(322.2472,80.9091%,43.1373%)
midnightblue#1919702525112rgb(25,25,112)hsl(240,63.5036%,26.8627%)
mintcream#f5fffa245255250rgb(245,255,250)hsl(150,100%,98.0392%)
mistyrose#ffe4e1255228225rgb(255,228,225)hsl(6,100%,94.1176%)
moccasin#ffe4b5255228181rgb(255,228,181)hsl(38.1081,100%,85.4902%)
navajowhite#ffdead255222173rgb(255,222,173)hsl(35.8537,100%,83.9216%)
navy#00008000128rgb(0,0,128)hsl(240,100%,25.098%)
oldlace#fdf5e6253245230rgb(253,245,230)hsl(39.1304,85.1852%,94.7059%)
olive#8080001281280rgb(128,128,0)hsl(60,100%,25.098%)
olivedrab#6b8e2310714235rgb(107,142,35)hsl(79.6262,60.452%,34.7059%)
orange#ffa5002551650rgb(255,165,0)hsl(38.8235,100%,50%)
orangered#ff4500255690rgb(255,69,0)hsl(16.2353,100%,50%)
orchid#da70d6218112214rgb(218,112,214)hsl(302.2642,58.8889%,64.7059%)
palegoldenrod#eee8aa238232170rgb(238,232,170)hsl(54.7059,66.6667%,80%)
palegreen#98fb98152251152rgb(152,251,152)hsl(120,92.5234%,79.0196%)
paleturquoise#afeeee175238238rgb(175,238,238)hsl(180,64.9485%,80.9804%)
palevioletred#db7093219112147rgb(219,112,147)hsl(340.3738,59.7765%,64.902%)
papayawhip#ffefd5255239213rgb(255,239,213)hsl(37.1429,100%,91.7647%)
peachpuff#ffdab9255218185rgb(255,218,185)hsl(28.2857,100%,86.2745%)
peru#cd853f20513363rgb(205,133,63)hsl(29.5775,58.6777%,52.549%)
pink#ffc0cb255192203rgb(255,192,203)hsl(349.5238,100%,87.6471%)
plum#dda0dd221160221rgb(221,160,221)hsl(300,47.2868%,74.7059%)
powderblue#b0e0e6176224230rgb(176,224,230)hsl(186.6667,51.9231%,79.6078%)
purple#8000801280128rgb(128,0,128)hsl(300,100%,25.098%)
rebeccapurple#66339910251153rgb(102,51,153)hsl(270,50%,40%)
red#ff000025500rgb(255,0,0)hsl(0,100%,50%)
rosybrown#bc8f8f188143143rgb(188,143,143)hsl(0,25.1397%,64.902%)
royalblue#4169e165105225rgb(65,105,225)hsl(225,72.7273%,56.8627%)
saddlebrown#8b45131396919rgb(139,69,19)hsl(25,75.9494%,30.9804%)
salmon#fa8072250128114rgb(250,128,114)hsl(6.1765,93.1507%,71.3725%)
sandybrown#f4a46024416496rgb(244,164,96)hsl(27.5676,87.0588%,66.6667%)
seagreen#2e8b574613987rgb(46,139,87)hsl(146.4516,50.2703%,36.2745%)
seashell#fff5ee255245238rgb(255,245,238)hsl(24.7059,100%,96.6667%)
sienna#a0522d1608245rgb(160,82,45)hsl(19.3043,56.0976%,40.1961%)
silver#c0c0c0192192192rgb(192,192,192)hsl(0,0%,75.2941%)
skyblue#87ceeb135206235rgb(135,206,235)hsl(197.4,71.4286%,72.549%)
slateblue#6a5acd10690205rgb(106,90,205)hsl(248.3478,53.4884%,57.8431%)
slategray#708090112128144rgb(112,128,144)hsl(210,12.5984%,50.1961%)
slategrey#708090112128144rgb(112,128,144)hsl(210,12.5984%,50.1961%)
snow#fffafa255250250rgb(255,250,250)hsl(0,100%,99.0196%)
springgreen#00ff7f0255127rgb(0,255,127)hsl(149.8824,100%,50%)
steelblue#4682b470130180rgb(70,130,180)hsl(207.2727,44%,49.0196%)
tan#d2b48c210180140rgb(210,180,140)hsl(34.2857,43.75%,68.6275%)
teal#0080800128128rgb(0,128,128)hsl(180,100%,25.098%)
thistle#d8bfd8216191216rgb(216,191,216)hsl(300,24.2718%,79.8039%)
tomato#ff63472559971rgb(255,99,71)hsl(9.1304,100%,63.9216%)
turquoise#40e0d064224208rgb(64,224,208)hsl(174,72.0721%,56.4706%)
violet#ee82ee238130238rgb(238,130,238)hsl(300,76.0563%,72.1569%)
wheat#f5deb3245222179rgb(245,222,179)hsl(39.0909,76.7442%,83.1373%)
white#ffffff255255255rgb(255,255,255)hsl(0,0%,100%)
whitesmoke#f5f5f5245245245rgb(245,245,245)hsl(0,0%,96.0784%)
yellow#ffff002552550rgb(255,255,0)hsl(60,100%,50%)
yellowgreen#9acd3215420550rgb(154,205,50)hsl(79.7419,60.7843%,50%)

See Also