Skip to content

Instantly share code, notes, and snippets.

@enjalot
Last active November 19, 2015 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enjalot/7c0fe907ba2010fed420 to your computer and use it in GitHub Desktop.
Save enjalot/7c0fe907ba2010fed420 to your computer and use it in GitHub Desktop.
HTML Color Names
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
color
Pink
LightPink
HotPink
DeepPink
PaleVioletRed
MediumVioletRed
LightSalmon
Salmon
DarkSalmon
LightCoral
IndianRed
Crimson
FireBrick
DarkRed
Red
OrangeRed
Tomato
Coral
DarkOrange
Orange
Yellow
Yellow
LightYellow
LemonChiffon
LightGoldenrodYellow
PapayaWhip
Moccasin
PeachPuff
PaleGoldenrod
Khaki
DarkKhaki
Gold
Cornsilk
BlanchedAlmond
Bisque
NavajoWhite
Wheat
BurlyWood
Tan
RosyBrown
SandyBrown
Goldenrod
DarkGoldenrod
Peru
Chocolate
SaddleBrown
Sienna
Brown
Maroon
DarkOliveGreen
Olive
OliveDrab
YellowGreen
LimeGreen
Lime
LawnGreen
Chartreuse
GreenYellow
SpringGreen
MediumSpringGreen
LightGreen
PaleGreen
DarkSeaGreen
MediumSeaGreen
SeaGreen
ForestGreen
Green
DarkGreen
MediumAquamarine
Aqua
Cyan
LightCyan
PaleTurquoise
Aquamarine
Turquoise
MediumTurquoise
DarkTurquoise
LightSeaGreen
CadetBlue
DarkCyan
Teal
LightSteelBlue
PowderBlue
LightBlue
SkyBlue
LightSkyBlue
DeepSkyBlue
DodgerBlue
CornflowerBlue
SteelBlue
RoyalBlue
Blue
MediumBlue
DarkBlue
Navy
MidnightBlue
Lavender
Thistle
Plum
Violet
Orchid
Fuchsia
Magenta
MediumOrchid
MediumPurple
BlueViolet
DarkViolet
DarkOrchid
DarkMagenta
Purple
Indigo
DarkSlateBlue
RebeccaPurple
SlateBlue
MediumSlateBlue
White
Snow
Honeydew
MintCream
Azure
AliceBlue
GhostWhite
WhiteSmoke
Seashell
Beige
OldLace
FloralWhite
Ivory
AntiqueWhite
Linen
LavenderBlush
MistyRose
Gainsboro
LightGrey
Silver
DarkGray
Gray
DimGray
LightSlateGray
SlateGray
DarkSlateGray
Black
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<style>
body {
margin:0;position:fixed;top:0;right:0;bottom:0;left:0;
padding: 10px;
}
.color {
float: left;
padding: 3px 5px;
margin: 2px 5px;
font-family: Helvetica;
border-radius: 3px
}
</style>
</head>
<body>
<script>
var display = d3.select("body");
d3.csv("colors.csv", function(err, colors) {
var cdivs = display.selectAll("div.color")
.data(colors)
cdivs.enter()
.append("div").classed("color", true);
cdivs.text(function(d) {
//var rgb = d3.rgb(d.color);
//var hsl = rgb.hsl();
return d.color.toLowerCase()
})
.style({
"background-color": function(d) { return d.color },
color: function(d) {
var hsl = d3.hsl(d.color);
console.log(hsl)
if(hsl.l >= 0.5) {
return "black"
} else {
return "white"
}
}
})
})
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment