html-color-names
HTML has 148 named colors. What if you could generate a color palette using each one of them?
How to use it with Tailwind
Install the html-color-names
npm package:
npm install --save-dev html-color-names
Import and add the colors to your tailwind.config.js
const hcn = require("html-color-names");
const { htmlcolors } = hcn;
const { firebrick } = htmlcolors; // destructure all the HTML colors you want to use
export default {
content: [],
theme: {
extend: {
colors: {
firebrick, // HTML color
},
},
},
plugins: [],
}
Now you can use the following classes in you HTML:
Background | Text | Border | Outline |
---|
.bg-firebrick-50 | .text-firebrick-50 | .border-firebrick-50 | .outline-firebrick-50 |
.bg-firebrick-100 | .text-firebrick-100 | .border-firebrick-100 | .outline-firebrick-100 |
.bg-firebrick-200 | .text-firebrick-200 | .border-firebrick-200 | .outline-firebrick-200 |
.bg-firebrick-300 | .text-firebrick-300 | .border-firebrick-300 | .outline-firebrick-300 |
.bg-firebrick-400 | .text-firebrick-400 | .border-firebrick-400 | .outline-firebrick-400 |
.bg-firebrick-500 | .text-firebrick-500 | .border-firebrick-500 | .outline-firebrick-500 |
.bg-firebrick-600 | .text-firebrick-600 | .border-firebrick-600 | .outline-firebrick-600 |
.bg-firebrick-700 | .text-firebrick-700 | .border-firebrick-700 | .outline-firebrick-700 |
.bg-firebrick-800 | .text-firebrick-800 | .border-firebrick-800 | .outline-firebrick-800 |
.bg-firebrick-900 | .text-firebrick-900 | .border-firebrick-900 | .outline-firebrick-900 |
.bg-firebrick-950 | .text-firebrick-950 | .border-firebrick-950 | .outline-firebrick-950 |
Importing all colors
You can import all 148 colors into your Tailwind project by putting this in your tailwind.config.js
const tailwindcolors = require('tailwindcss/colors');
const { slate, blue, white } = tailwindcolors; // destructure all the tailwind colors you want to use
const hcn = require("html-color-names");
const { htmlcolors } = hcn;
export default {
content: [],
theme: {
colors: {
...htmlcolors, // import all 148 color palettes
slate, blue, white, // import all Tailwind colors, will overwrite colors if names clash
},
extend: {},
},
plugins: [],
}
Note that colors likered
, blue
and orange
are present in both htmlcolors
and tailwindcolors
, so whichever you put last will overwrite the other. I recommend putting tailwindcolors
last because its colors are handpicked and should be preferred over htmlcolors
which is auto-generated.
How I generate palettes?
I am using python
to automatically generate palettes for each color. The basic logic for generating a palette is as follows:
- Each HTML color is assumed to be the
basecolor
and gets 5 tints
and 5 shades
to generate the palette.
tints
are colors between the basecolor
and White
.
shades
are colors between the basecolor
and Black
.
basecolor
is set to be 500
.
tints
are named from 50
, 100
, 200
, 300
and 400
.
shades
are named from 600
, 700
, 800
, 900
and 950
.
- The higher the
number
, the darker the color.
Limitations
Since the palettes are automatically generated, there is no guarantee that the generated colors will look good. Some of the known problems you should watch out for, are:
- Saturated colors like
Red
, Blue
and Green
don't always look very good.
- Too light colors like
LightCyan
and LightGoldenRodYellow
have too similar tints
because there isn't enough gap between the color and White
.
- Too dark colors like
DarkGreen
and DarkBlue
have too similar shades
because there isn't enough gap between the color and Black
.
List of HTML color palettes
# | Name | className | Hex | CSS | JSON |
---|
1 | AliceBlue ![AliceBlue](https://github.com/iaseth/html-color-names/blob/master/png/aliceblue.png?raw=true) | aliceblue | #f0f8ff | CSS | JSON |
2 | AntiqueWhite ![AntiqueWhite](https://github.com/iaseth/html-color-names/blob/master/png/antiquewhite.png?raw=true) | antiquewhite | #faebd7 | CSS | JSON |
3 | Aqua ![Aqua](https://github.com/iaseth/html-color-names/blob/master/png/aqua.png?raw=true) | aqua | #00ffff | CSS | JSON |
4 | Aquamarine ![Aquamarine](https://github.com/iaseth/html-color-names/blob/master/png/aquamarine.png?raw=true) | aquamarine | #7fffd4 | CSS | JSON |
5 | Azure ![Azure](https://github.com/iaseth/html-color-names/blob/master/png/azure.png?raw=true) | azure | #f0ffff | CSS | JSON |
6 | Beige ![Beige](https://github.com/iaseth/html-color-names/blob/master/png/beige.png?raw=true) | beige | #f5f5dc | CSS | JSON |
7 | Bisque ![Bisque](https://github.com/iaseth/html-color-names/blob/master/png/bisque.png?raw=true) | bisque | #ffe4c4 | CSS | JSON |
8 | Black ![Black](https://github.com/iaseth/html-color-names/blob/master/png/black.png?raw=true) | black | #000000 | CSS | JSON |
9 | BlanchedAlmond ![BlanchedAlmond](https://github.com/iaseth/html-color-names/blob/master/png/blanchedalmond.png?raw=true) | blanchedalmond | #ffebcd | CSS | JSON |
10 | Blue ![Blue](https://github.com/iaseth/html-color-names/blob/master/png/blue.png?raw=true) | blue | #0000ff | CSS | JSON |
11 | BlueViolet ![BlueViolet](https://github.com/iaseth/html-color-names/blob/master/png/blueviolet.png?raw=true) | blueviolet | #8a2be2 | CSS | JSON |
12 | Brown ![Brown](https://github.com/iaseth/html-color-names/blob/master/png/brown.png?raw=true) | brown | #a52a2a | CSS | JSON |
13 | BurlyWood ![BurlyWood](https://github.com/iaseth/html-color-names/blob/master/png/burlywood.png?raw=true) | burlywood | #deb887 | CSS | JSON |
14 | CadetBlue ![CadetBlue](https://github.com/iaseth/html-color-names/blob/master/png/cadetblue.png?raw=true) | cadetblue | #5f9ea0 | CSS | JSON |
15 | Chartreuse ![Chartreuse](https://github.com/iaseth/html-color-names/blob/master/png/chartreuse.png?raw=true) | chartreuse | #7fff00 | CSS | JSON |
16 | Chocolate ![Chocolate](https://github.com/iaseth/html-color-names/blob/master/png/chocolate.png?raw=true) | chocolate | #d2691e | CSS | JSON |
17 | Coral ![Coral](https://github.com/iaseth/html-color-names/blob/master/png/coral.png?raw=true) | coral | #ff7f50 | CSS | JSON |
18 | CornflowerBlue ![CornflowerBlue](https://github.com/iaseth/html-color-names/blob/master/png/cornflowerblue.png?raw=true) | cornflowerblue | #6495ed | CSS | JSON |
19 | Cornsilk ![Cornsilk](https://github.com/iaseth/html-color-names/blob/master/png/cornsilk.png?raw=true) | cornsilk | #fff8dc | CSS | JSON |
20 | Crimson ![Crimson](https://github.com/iaseth/html-color-names/blob/master/png/crimson.png?raw=true) | crimson | #dc143c | CSS | JSON |
21 | Cyan ![Cyan](https://github.com/iaseth/html-color-names/blob/master/png/cyan.png?raw=true) | cyan | #00ffff | CSS | JSON |
22 | DarkBlue ![DarkBlue](https://github.com/iaseth/html-color-names/blob/master/png/darkblue.png?raw=true) | darkblue | #00008b | CSS | JSON |
23 | DarkCyan ![DarkCyan](https://github.com/iaseth/html-color-names/blob/master/png/darkcyan.png?raw=true) | darkcyan | #008b8b | CSS | JSON |
24 | DarkGoldenRod ![DarkGoldenRod](https://github.com/iaseth/html-color-names/blob/master/png/darkgoldenrod.png?raw=true) | darkgoldenrod | #b8860b | CSS | JSON |
25 | DarkGray ![DarkGray](https://github.com/iaseth/html-color-names/blob/master/png/darkgray.png?raw=true) | darkgray | #a9a9a9 | CSS | JSON |
26 | DarkGrey ![DarkGrey](https://github.com/iaseth/html-color-names/blob/master/png/darkgrey.png?raw=true) | darkgrey | #a9a9a9 | CSS | JSON |
27 | DarkGreen ![DarkGreen](https://github.com/iaseth/html-color-names/blob/master/png/darkgreen.png?raw=true) | darkgreen | #006400 | CSS | JSON |
28 | DarkKhaki ![DarkKhaki](https://github.com/iaseth/html-color-names/blob/master/png/darkkhaki.png?raw=true) | darkkhaki | #bdb76b | CSS | JSON |
29 | DarkMagenta ![DarkMagenta](https://github.com/iaseth/html-color-names/blob/master/png/darkmagenta.png?raw=true) | darkmagenta | #8b008b | CSS | JSON |
30 | DarkOliveGreen ![DarkOliveGreen](https://github.com/iaseth/html-color-names/blob/master/png/darkolivegreen.png?raw=true) | darkolivegreen | #556b2f | CSS | JSON |
31 | DarkOrange ![DarkOrange](https://github.com/iaseth/html-color-names/blob/master/png/darkorange.png?raw=true) | darkorange | #ff8c00 | CSS | JSON |
32 | DarkOrchid ![DarkOrchid](https://github.com/iaseth/html-color-names/blob/master/png/darkorchid.png?raw=true) | darkorchid | #9932cc | CSS | JSON |
33 | DarkRed ![DarkRed](https://github.com/iaseth/html-color-names/blob/master/png/darkred.png?raw=true) | darkred | #8b0000 | CSS | JSON |
34 | DarkSalmon ![DarkSalmon](https://github.com/iaseth/html-color-names/blob/master/png/darksalmon.png?raw=true) | darksalmon | #e9967a | CSS | JSON |
35 | DarkSeaGreen ![DarkSeaGreen](https://github.com/iaseth/html-color-names/blob/master/png/darkseagreen.png?raw=true) | darkseagreen | #8fbc8f | CSS | JSON |
36 | DarkSlateBlue ![DarkSlateBlue](https://github.com/iaseth/html-color-names/blob/master/png/darkslateblue.png?raw=true) | darkslateblue | #483d8b | CSS | JSON |
37 | DarkSlateGray ![DarkSlateGray](https://github.com/iaseth/html-color-names/blob/master/png/darkslategray.png?raw=true) | darkslategray | #2f4f4f | CSS | JSON |
38 | DarkSlateGrey ![DarkSlateGrey](https://github.com/iaseth/html-color-names/blob/master/png/darkslategrey.png?raw=true) | darkslategrey | #2f4f4f | CSS | JSON |
39 | DarkTurquoise ![DarkTurquoise](https://github.com/iaseth/html-color-names/blob/master/png/darkturquoise.png?raw=true) | darkturquoise | #00ced1 | CSS | JSON |
40 | DarkViolet ![DarkViolet](https://github.com/iaseth/html-color-names/blob/master/png/darkviolet.png?raw=true) | darkviolet | #9400d3 | CSS | JSON |
41 | DeepPink ![DeepPink](https://github.com/iaseth/html-color-names/blob/master/png/deeppink.png?raw=true) | deeppink | #ff1493 | CSS | JSON |
42 | DeepSkyBlue ![DeepSkyBlue](https://github.com/iaseth/html-color-names/blob/master/png/deepskyblue.png?raw=true) | deepskyblue | #00bfff | CSS | JSON |
43 | DimGray ![DimGray](https://github.com/iaseth/html-color-names/blob/master/png/dimgray.png?raw=true) | dimgray | #696969 | CSS | JSON |
44 | DimGrey ![DimGrey](https://github.com/iaseth/html-color-names/blob/master/png/dimgrey.png?raw=true) | dimgrey | #696969 | CSS | JSON |
45 | DodgerBlue ![DodgerBlue](https://github.com/iaseth/html-color-names/blob/master/png/dodgerblue.png?raw=true) | dodgerblue | #1e90ff | CSS | JSON |
46 | FireBrick ![FireBrick](https://github.com/iaseth/html-color-names/blob/master/png/firebrick.png?raw=true) | firebrick | #b22222 | CSS | JSON |
47 | FloralWhite ![FloralWhite](https://github.com/iaseth/html-color-names/blob/master/png/floralwhite.png?raw=true) | floralwhite | #fffaf0 | CSS | JSON |
48 | ForestGreen ![ForestGreen](https://github.com/iaseth/html-color-names/blob/master/png/forestgreen.png?raw=true) | forestgreen | #228b22 | CSS | JSON |
49 | Fuchsia ![Fuchsia](https://github.com/iaseth/html-color-names/blob/master/png/fuchsia.png?raw=true) | fuchsia | #ff00ff | CSS | JSON |
50 | Gainsboro ![Gainsboro](https://github.com/iaseth/html-color-names/blob/master/png/gainsboro.png?raw=true) | gainsboro | #dcdcdc | CSS | JSON |
51 | GhostWhite ![GhostWhite](https://github.com/iaseth/html-color-names/blob/master/png/ghostwhite.png?raw=true) | ghostwhite | #f8f8ff | CSS | JSON |
52 | Gold ![Gold](https://github.com/iaseth/html-color-names/blob/master/png/gold.png?raw=true) | gold | #ffd700 | CSS | JSON |
53 | GoldenRod ![GoldenRod](https://github.com/iaseth/html-color-names/blob/master/png/goldenrod.png?raw=true) | goldenrod | #daa520 | CSS | JSON |
54 | Gray ![Gray](https://github.com/iaseth/html-color-names/blob/master/png/gray.png?raw=true) | gray | #808080 | CSS | JSON |
55 | Grey ![Grey](https://github.com/iaseth/html-color-names/blob/master/png/grey.png?raw=true) | grey | #808080 | CSS | JSON |
56 | Green ![Green](https://github.com/iaseth/html-color-names/blob/master/png/green.png?raw=true) | green | #008000 | CSS | JSON |
57 | GreenYellow ![GreenYellow](https://github.com/iaseth/html-color-names/blob/master/png/greenyellow.png?raw=true) | greenyellow | #adff2f | CSS | JSON |
58 | HoneyDew ![HoneyDew](https://github.com/iaseth/html-color-names/blob/master/png/honeydew.png?raw=true) | honeydew | #f0fff0 | CSS | JSON |
59 | HotPink ![HotPink](https://github.com/iaseth/html-color-names/blob/master/png/hotpink.png?raw=true) | hotpink | #ff69b4 | CSS | JSON |
60 | IndianRed ![IndianRed](https://github.com/iaseth/html-color-names/blob/master/png/indianred.png?raw=true) | indianred | #cd5c5c | CSS | JSON |
61 | Indigo ![Indigo](https://github.com/iaseth/html-color-names/blob/master/png/indigo.png?raw=true) | indigo | #4b0082 | CSS | JSON |
62 | Ivory ![Ivory](https://github.com/iaseth/html-color-names/blob/master/png/ivory.png?raw=true) | ivory | #fffff0 | CSS | JSON |
63 | Khaki ![Khaki](https://github.com/iaseth/html-color-names/blob/master/png/khaki.png?raw=true) | khaki | #f0e68c | CSS | JSON |
64 | Lavender ![Lavender](https://github.com/iaseth/html-color-names/blob/master/png/lavender.png?raw=true) | lavender | #e6e6fa | CSS | JSON |
65 | LavenderBlush ![LavenderBlush](https://github.com/iaseth/html-color-names/blob/master/png/lavenderblush.png?raw=true) | lavenderblush | #fff0f5 | CSS | JSON |
66 | LawnGreen ![LawnGreen](https://github.com/iaseth/html-color-names/blob/master/png/lawngreen.png?raw=true) | lawngreen | #7cfc00 | CSS | JSON |
67 | LemonChiffon ![LemonChiffon](https://github.com/iaseth/html-color-names/blob/master/png/lemonchiffon.png?raw=true) | lemonchiffon | #fffacd | CSS | JSON |
68 | LightBlue ![LightBlue](https://github.com/iaseth/html-color-names/blob/master/png/lightblue.png?raw=true) | lightblue | #add8e6 | CSS | JSON |
69 | LightCoral ![LightCoral](https://github.com/iaseth/html-color-names/blob/master/png/lightcoral.png?raw=true) | lightcoral | #f08080 | CSS | JSON |
70 | LightCyan ![LightCyan](https://github.com/iaseth/html-color-names/blob/master/png/lightcyan.png?raw=true) | lightcyan | #e0ffff | CSS | JSON |
71 | LightGoldenRodYellow ![LightGoldenRodYellow](https://github.com/iaseth/html-color-names/blob/master/png/lightgoldenrodyellow.png?raw=true) | lightgoldenrodyellow | #fafad2 | CSS | JSON |
72 | LightGray ![LightGray](https://github.com/iaseth/html-color-names/blob/master/png/lightgray.png?raw=true) | lightgray | #d3d3d3 | CSS | JSON |
73 | LightGrey ![LightGrey](https://github.com/iaseth/html-color-names/blob/master/png/lightgrey.png?raw=true) | lightgrey | #d3d3d3 | CSS | JSON |
74 | LightGreen ![LightGreen](https://github.com/iaseth/html-color-names/blob/master/png/lightgreen.png?raw=true) | lightgreen | #90ee90 | CSS | JSON |
75 | LightPink ![LightPink](https://github.com/iaseth/html-color-names/blob/master/png/lightpink.png?raw=true) | lightpink | #ffb6c1 | CSS | JSON |
76 | LightSalmon ![LightSalmon](https://github.com/iaseth/html-color-names/blob/master/png/lightsalmon.png?raw=true) | lightsalmon | #ffa07a | CSS | JSON |
77 | LightSeaGreen ![LightSeaGreen](https://github.com/iaseth/html-color-names/blob/master/png/lightseagreen.png?raw=true) | lightseagreen | #20b2aa | CSS | JSON |
78 | LightSkyBlue ![LightSkyBlue](https://github.com/iaseth/html-color-names/blob/master/png/lightskyblue.png?raw=true) | lightskyblue | #87cefa | CSS | JSON |
79 | LightSlateGray ![LightSlateGray](https://github.com/iaseth/html-color-names/blob/master/png/lightslategray.png?raw=true) | lightslategray | #778899 | CSS | JSON |
80 | LightSlateGrey ![LightSlateGrey](https://github.com/iaseth/html-color-names/blob/master/png/lightslategrey.png?raw=true) | lightslategrey | #778899 | CSS | JSON |
81 | LightSteelBlue ![LightSteelBlue](https://github.com/iaseth/html-color-names/blob/master/png/lightsteelblue.png?raw=true) | lightsteelblue | #b0c4de | CSS | JSON |
82 | LightYellow ![LightYellow](https://github.com/iaseth/html-color-names/blob/master/png/lightyellow.png?raw=true) | lightyellow | #ffffe0 | CSS | JSON |
83 | Lime ![Lime](https://github.com/iaseth/html-color-names/blob/master/png/lime.png?raw=true) | lime | #00ff00 | CSS | JSON |
84 | LimeGreen ![LimeGreen](https://github.com/iaseth/html-color-names/blob/master/png/limegreen.png?raw=true) | limegreen | #32cd32 | CSS | JSON |
85 | Linen ![Linen](https://github.com/iaseth/html-color-names/blob/master/png/linen.png?raw=true) | linen | #faf0e6 | CSS | JSON |
86 | Magenta ![Magenta](https://github.com/iaseth/html-color-names/blob/master/png/magenta.png?raw=true) | magenta | #ff00ff | CSS | JSON |
87 | Maroon ![Maroon](https://github.com/iaseth/html-color-names/blob/master/png/maroon.png?raw=true) | maroon | #800000 | CSS | JSON |
88 | MediumAquaMarine ![MediumAquaMarine](https://github.com/iaseth/html-color-names/blob/master/png/mediumaquamarine.png?raw=true) | mediumaquamarine | #66cdaa | CSS | JSON |
89 | MediumBlue ![MediumBlue](https://github.com/iaseth/html-color-names/blob/master/png/mediumblue.png?raw=true) | mediumblue | #0000cd | CSS | JSON |
90 | MediumOrchid ![MediumOrchid](https://github.com/iaseth/html-color-names/blob/master/png/mediumorchid.png?raw=true) | mediumorchid | #ba55d3 | CSS | JSON |
91 | MediumPurple ![MediumPurple](https://github.com/iaseth/html-color-names/blob/master/png/mediumpurple.png?raw=true) | mediumpurple | #9370db | CSS | JSON |
92 | MediumSeaGreen ![MediumSeaGreen](https://github.com/iaseth/html-color-names/blob/master/png/mediumseagreen.png?raw=true) | mediumseagreen | #3cb371 | CSS | JSON |
93 | MediumSlateBlue ![MediumSlateBlue](https://github.com/iaseth/html-color-names/blob/master/png/mediumslateblue.png?raw=true) | mediumslateblue | #7b68ee | CSS | JSON |
94 | MediumSpringGreen ![MediumSpringGreen](https://github.com/iaseth/html-color-names/blob/master/png/mediumspringgreen.png?raw=true) | mediumspringgreen | #00fa9a | CSS | JSON |
95 | MediumTurquoise ![MediumTurquoise](https://github.com/iaseth/html-color-names/blob/master/png/mediumturquoise.png?raw=true) | mediumturquoise | #48d1cc | CSS | JSON |
96 | MediumVioletRed ![MediumVioletRed](https://github.com/iaseth/html-color-names/blob/master/png/mediumvioletred.png?raw=true) | mediumvioletred | #c71585 | CSS | JSON |
97 | MidnightBlue ![MidnightBlue](https://github.com/iaseth/html-color-names/blob/master/png/midnightblue.png?raw=true) | midnightblue | #191970 | CSS | JSON |
98 | MintCream ![MintCream](https://github.com/iaseth/html-color-names/blob/master/png/mintcream.png?raw=true) | mintcream | #f5fffa | CSS | JSON |
99 | MistyRose ![MistyRose](https://github.com/iaseth/html-color-names/blob/master/png/mistyrose.png?raw=true) | mistyrose | #ffe4e1 | CSS | JSON |
100 | Moccasin ![Moccasin](https://github.com/iaseth/html-color-names/blob/master/png/moccasin.png?raw=true) | moccasin | #ffe4b5 | CSS | JSON |
101 | NavajoWhite ![NavajoWhite](https://github.com/iaseth/html-color-names/blob/master/png/navajowhite.png?raw=true) | navajowhite | #ffdead | CSS | JSON |
102 | Navy ![Navy](https://github.com/iaseth/html-color-names/blob/master/png/navy.png?raw=true) | navy | #000080 | CSS | JSON |
103 | OldLace ![OldLace](https://github.com/iaseth/html-color-names/blob/master/png/oldlace.png?raw=true) | oldlace | #fdf5e6 | CSS | JSON |
104 | Olive ![Olive](https://github.com/iaseth/html-color-names/blob/master/png/olive.png?raw=true) | olive | #808000 | CSS | JSON |
105 | OliveDrab ![OliveDrab](https://github.com/iaseth/html-color-names/blob/master/png/olivedrab.png?raw=true) | olivedrab | #6b8e23 | CSS | JSON |
106 | Orange ![Orange](https://github.com/iaseth/html-color-names/blob/master/png/orange.png?raw=true) | orange | #ffa500 | CSS | JSON |
107 | OrangeRed ![OrangeRed](https://github.com/iaseth/html-color-names/blob/master/png/orangered.png?raw=true) | orangered | #ff4500 | CSS | JSON |
108 | Orchid ![Orchid](https://github.com/iaseth/html-color-names/blob/master/png/orchid.png?raw=true) | orchid | #da70d6 | CSS | JSON |
109 | PaleGoldenRod ![PaleGoldenRod](https://github.com/iaseth/html-color-names/blob/master/png/palegoldenrod.png?raw=true) | palegoldenrod | #eee8aa | CSS | JSON |
110 | PaleGreen ![PaleGreen](https://github.com/iaseth/html-color-names/blob/master/png/palegreen.png?raw=true) | palegreen | #98fb98 | CSS | JSON |
111 | PaleTurquoise ![PaleTurquoise](https://github.com/iaseth/html-color-names/blob/master/png/paleturquoise.png?raw=true) | paleturquoise | #afeeee | CSS | JSON |
112 | PaleVioletRed ![PaleVioletRed](https://github.com/iaseth/html-color-names/blob/master/png/palevioletred.png?raw=true) | palevioletred | #db7093 | CSS | JSON |
113 | PapayaWhip ![PapayaWhip](https://github.com/iaseth/html-color-names/blob/master/png/papayawhip.png?raw=true) | papayawhip | #ffefd5 | CSS | JSON |
114 | PeachPuff ![PeachPuff](https://github.com/iaseth/html-color-names/blob/master/png/peachpuff.png?raw=true) | peachpuff | #ffdab9 | CSS | JSON |
115 | Peru ![Peru](https://github.com/iaseth/html-color-names/blob/master/png/peru.png?raw=true) | peru | #cd853f | CSS | JSON |
116 | Pink ![Pink](https://github.com/iaseth/html-color-names/blob/master/png/pink.png?raw=true) | pink | #ffc0cb | CSS | JSON |
117 | Plum ![Plum](https://github.com/iaseth/html-color-names/blob/master/png/plum.png?raw=true) | plum | #dda0dd | CSS | JSON |
118 | PowderBlue ![PowderBlue](https://github.com/iaseth/html-color-names/blob/master/png/powderblue.png?raw=true) | powderblue | #b0e0e6 | CSS | JSON |
119 | Purple ![Purple](https://github.com/iaseth/html-color-names/blob/master/png/purple.png?raw=true) | purple | #800080 | CSS | JSON |
120 | RebeccaPurple ![RebeccaPurple](https://github.com/iaseth/html-color-names/blob/master/png/rebeccapurple.png?raw=true) | rebeccapurple | #663399 | CSS | JSON |
121 | Red ![Red](https://github.com/iaseth/html-color-names/blob/master/png/red.png?raw=true) | red | #ff0000 | CSS | JSON |
122 | RosyBrown ![RosyBrown](https://github.com/iaseth/html-color-names/blob/master/png/rosybrown.png?raw=true) | rosybrown | #bc8f8f | CSS | JSON |
123 | RoyalBlue ![RoyalBlue](https://github.com/iaseth/html-color-names/blob/master/png/royalblue.png?raw=true) | royalblue | #4169e1 | CSS | JSON |
124 | SaddleBrown ![SaddleBrown](https://github.com/iaseth/html-color-names/blob/master/png/saddlebrown.png?raw=true) | saddlebrown | #8b4513 | CSS | JSON |
125 | Salmon ![Salmon](https://github.com/iaseth/html-color-names/blob/master/png/salmon.png?raw=true) | salmon | #fa8072 | CSS | JSON |
126 | SandyBrown ![SandyBrown](https://github.com/iaseth/html-color-names/blob/master/png/sandybrown.png?raw=true) | sandybrown | #f4a460 | CSS | JSON |
127 | SeaGreen ![SeaGreen](https://github.com/iaseth/html-color-names/blob/master/png/seagreen.png?raw=true) | seagreen | #2e8b57 | CSS | JSON |
128 | SeaShell ![SeaShell](https://github.com/iaseth/html-color-names/blob/master/png/seashell.png?raw=true) | seashell | #fff5ee | CSS | JSON |
129 | Sienna ![Sienna](https://github.com/iaseth/html-color-names/blob/master/png/sienna.png?raw=true) | sienna | #a0522d | CSS | JSON |
130 | Silver ![Silver](https://github.com/iaseth/html-color-names/blob/master/png/silver.png?raw=true) | silver | #c0c0c0 | CSS | JSON |
131 | SkyBlue ![SkyBlue](https://github.com/iaseth/html-color-names/blob/master/png/skyblue.png?raw=true) | skyblue | #87ceeb | CSS | JSON |
132 | SlateBlue ![SlateBlue](https://github.com/iaseth/html-color-names/blob/master/png/slateblue.png?raw=true) | slateblue | #6a5acd | CSS | JSON |
133 | SlateGray ![SlateGray](https://github.com/iaseth/html-color-names/blob/master/png/slategray.png?raw=true) | slategray | #708090 | CSS | JSON |
134 | SlateGrey ![SlateGrey](https://github.com/iaseth/html-color-names/blob/master/png/slategrey.png?raw=true) | slategrey | #708090 | CSS | JSON |
135 | Snow ![Snow](https://github.com/iaseth/html-color-names/blob/master/png/snow.png?raw=true) | snow | #fffafa | CSS | JSON |
136 | SpringGreen ![SpringGreen](https://github.com/iaseth/html-color-names/blob/master/png/springgreen.png?raw=true) | springgreen | #00ff7f | CSS | JSON |
137 | SteelBlue ![SteelBlue](https://github.com/iaseth/html-color-names/blob/master/png/steelblue.png?raw=true) | steelblue | #4682b4 | CSS | JSON |
138 | Tan ![Tan](https://github.com/iaseth/html-color-names/blob/master/png/tan.png?raw=true) | tan | #d2b48c | CSS | JSON |
139 | Teal ![Teal](https://github.com/iaseth/html-color-names/blob/master/png/teal.png?raw=true) | teal | #008080 | CSS | JSON |
140 | Thistle ![Thistle](https://github.com/iaseth/html-color-names/blob/master/png/thistle.png?raw=true) | thistle | #d8bfd8 | CSS | JSON |
141 | Tomato ![Tomato](https://github.com/iaseth/html-color-names/blob/master/png/tomato.png?raw=true) | tomato | #ff6347 | CSS | JSON |
142 | Turquoise ![Turquoise](https://github.com/iaseth/html-color-names/blob/master/png/turquoise.png?raw=true) | turquoise | #40e0d0 | CSS | JSON |
143 | Violet ![Violet](https://github.com/iaseth/html-color-names/blob/master/png/violet.png?raw=true) | violet | #ee82ee | CSS | JSON |
144 | Wheat ![Wheat](https://github.com/iaseth/html-color-names/blob/master/png/wheat.png?raw=true) | wheat | #f5deb3 | CSS | JSON |
145 | White ![White](https://github.com/iaseth/html-color-names/blob/master/png/white.png?raw=true) | white | #ffffff | CSS | JSON |
146 | WhiteSmoke ![WhiteSmoke](https://github.com/iaseth/html-color-names/blob/master/png/whitesmoke.png?raw=true) | whitesmoke | #f5f5f5 | CSS | JSON |
147 | Yellow ![Yellow](https://github.com/iaseth/html-color-names/blob/master/png/yellow.png?raw=true) | yellow | #ffff00 | CSS | JSON |
148 | YellowGreen ![YellowGreen](https://github.com/iaseth/html-color-names/blob/master/png/yellowgreen.png?raw=true) | yellowgreen | #9acd32 | CSS | JSON |