{"id":22200423,"url":"https://github.com/iaseth/html-color-names","last_synced_at":"2025-07-27T02:33:19.815Z","repository":{"id":140719230,"uuid":"367831309","full_name":"iaseth/html-color-names","owner":"iaseth","description":"148 Color Palettes based on Standard HTML Colors.","archived":false,"fork":false,"pushed_at":"2023-04-29T15:00:30.000Z","size":500,"stargazers_count":22,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-06-28T18:12:35.021Z","etag":null,"topics":["color-palette","color-scheme","colors","css","html","json","tailwindcss"],"latest_commit_sha":null,"homepage":"https://iaseth.github.io/html-color-names/","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iaseth.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-05-16T09:03:44.000Z","updated_at":"2025-04-29T05:57:11.000Z","dependencies_parsed_at":null,"dependency_job_id":"8e17244c-8841-49bf-b522-5bc3eed46d3d","html_url":"https://github.com/iaseth/html-color-names","commit_stats":{"total_commits":59,"total_committers":1,"mean_commits":59.0,"dds":0.0,"last_synced_commit":"3f7d94f3bb2f99fddb3b4c8e3ab5561d1d0272c7"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/iaseth/html-color-names","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iaseth%2Fhtml-color-names","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iaseth%2Fhtml-color-names/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iaseth%2Fhtml-color-names/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iaseth%2Fhtml-color-names/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iaseth","download_url":"https://codeload.github.com/iaseth/html-color-names/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iaseth%2Fhtml-color-names/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267289398,"owners_count":24064725,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-27T02:00:11.917Z","response_time":82,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["color-palette","color-scheme","colors","css","html","json","tailwindcss"],"created_at":"2024-12-02T15:26:52.461Z","updated_at":"2025-07-27T02:33:18.978Z","avatar_url":"https://github.com/iaseth.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# html-color-names\nHTML has [148 named colors](https://github.com/iaseth/html-color-names/blob/master/colors.json). What if you could generate a color palette using each one of them?\n\n\n\n\n## How to use it with Tailwind\n\nInstall the [`html-color-names`](https://www.npmjs.com/package/html-color-names) npm package:\n```\nnpm install --save-dev html-color-names\n```\n\nImport and add the colors to your `tailwind.config.js`\n```javascript\nconst hcn = require(\"html-color-names\");\nconst { htmlcolors } = hcn;\nconst { firebrick } = htmlcolors; // destructure all the HTML colors you want to use\n\nexport default {\n\tcontent: [],\n\ttheme: {\n\t\textend: {\n\t\t\tcolors: {\n\t\t\t\tfirebrick, // HTML color\n\t\t\t},\n\t\t},\n\t},\n\tplugins: [],\n}\n```\n\nNow you can use the following classes in you HTML:\n\n| Background | Text | Border | Outline |\n| --- | --- | --- | --- |\n| `.bg-firebrick-50` | `.text-firebrick-50` | `.border-firebrick-50` | `.outline-firebrick-50` |\n| `.bg-firebrick-100` | `.text-firebrick-100` | `.border-firebrick-100` | `.outline-firebrick-100` |\n| `.bg-firebrick-200` | `.text-firebrick-200` | `.border-firebrick-200` | `.outline-firebrick-200` |\n| `.bg-firebrick-300` | `.text-firebrick-300` | `.border-firebrick-300` | `.outline-firebrick-300` |\n| `.bg-firebrick-400` | `.text-firebrick-400` | `.border-firebrick-400` | `.outline-firebrick-400` |\n| `.bg-firebrick-500` | `.text-firebrick-500` | `.border-firebrick-500` | `.outline-firebrick-500` |\n| `.bg-firebrick-600` | `.text-firebrick-600` | `.border-firebrick-600` | `.outline-firebrick-600` |\n| `.bg-firebrick-700` | `.text-firebrick-700` | `.border-firebrick-700` | `.outline-firebrick-700` |\n| `.bg-firebrick-800` | `.text-firebrick-800` | `.border-firebrick-800` | `.outline-firebrick-800` |\n| `.bg-firebrick-900` | `.text-firebrick-900` | `.border-firebrick-900` | `.outline-firebrick-900` |\n| `.bg-firebrick-950` | `.text-firebrick-950` | `.border-firebrick-950` | `.outline-firebrick-950` |\n\n\n\n\n\n## Importing all colors\n\nYou can import all 148 colors into your Tailwind project by putting this in your `tailwind.config.js`\n```javascript\nconst tailwindcolors = require('tailwindcss/colors');\nconst { slate, blue, white } = tailwindcolors; // destructure all the tailwind colors you want to use\n\nconst hcn = require(\"html-color-names\");\nconst { htmlcolors } = hcn;\n\nexport default {\n\tcontent: [],\n\ttheme: {\n\t\tcolors: {\n\t\t\t...htmlcolors, // import all 148 color palettes\n\t\t\tslate, blue, white, // import all Tailwind colors, will overwrite colors if names clash\n\t\t},\n\t\textend: {},\n\t},\n\tplugins: [],\n}\n```\nNote that colors like`red`, `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.\n\n\n\n\n## How I generate palettes?\nI am using `python` to automatically generate palettes for each color. The basic logic for generating a palette is as follows:\n\n* Each HTML color is assumed to be the `basecolor` and gets 5 `tints` and 5 `shades` to generate the palette.\n* `tints` are colors between the `basecolor` and `White`.\n* `shades` are colors between the `basecolor` and `Black`.\n* `basecolor` is set to be `500`.\n* `tints` are named from `50`, `100`, `200`, `300` and `400`.\n* `shades` are named from `600`, `700`, `800`, `900` and `950`.\n* The higher the `number`, the darker the color.\n\n\n\n\n## Limitations\nSince 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:\n\n* Saturated colors like `Red`, `Blue` and `Green` don't always look very good.\n* Too light colors like `LightCyan` and `LightGoldenRodYellow` have too similar `tints` because there isn't enough gap between the color and `White`.\n* Too dark colors like `DarkGreen` and `DarkBlue` have too similar `shades` because there isn't enough gap between the color and `Black`.\n\n\n\n\n## List of HTML color palettes\n\n| # | Name | className | Hex | CSS | JSON |\n| --- | --- | --- | --- | --- | --- |\n| 1 | **AliceBlue** ![AliceBlue](https://github.com/iaseth/html-color-names/blob/master/png/aliceblue.png?raw=true) | `aliceblue` | `#f0f8ff` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/aliceblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/aliceblue.json) |\n| 2 | **AntiqueWhite** ![AntiqueWhite](https://github.com/iaseth/html-color-names/blob/master/png/antiquewhite.png?raw=true) | `antiquewhite` | `#faebd7` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/antiquewhite.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/antiquewhite.json) |\n| 3 | **Aqua** ![Aqua](https://github.com/iaseth/html-color-names/blob/master/png/aqua.png?raw=true) | `aqua` | `#00ffff` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/aqua.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/aqua.json) |\n| 4 | **Aquamarine** ![Aquamarine](https://github.com/iaseth/html-color-names/blob/master/png/aquamarine.png?raw=true) | `aquamarine` | `#7fffd4` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/aquamarine.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/aquamarine.json) |\n| 5 | **Azure** ![Azure](https://github.com/iaseth/html-color-names/blob/master/png/azure.png?raw=true) | `azure` | `#f0ffff` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/azure.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/azure.json) |\n| 6 | **Beige** ![Beige](https://github.com/iaseth/html-color-names/blob/master/png/beige.png?raw=true) | `beige` | `#f5f5dc` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/beige.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/beige.json) |\n| 7 | **Bisque** ![Bisque](https://github.com/iaseth/html-color-names/blob/master/png/bisque.png?raw=true) | `bisque` | `#ffe4c4` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/bisque.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/bisque.json) |\n| 8 | **Black** ![Black](https://github.com/iaseth/html-color-names/blob/master/png/black.png?raw=true) | `black` | `#000000` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/black.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/black.json) |\n| 9 | **BlanchedAlmond** ![BlanchedAlmond](https://github.com/iaseth/html-color-names/blob/master/png/blanchedalmond.png?raw=true) | `blanchedalmond` | `#ffebcd` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/blanchedalmond.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/blanchedalmond.json) |\n| 10 | **Blue** ![Blue](https://github.com/iaseth/html-color-names/blob/master/png/blue.png?raw=true) | `blue` | `#0000ff` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/blue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/blue.json) |\n| 11 | **BlueViolet** ![BlueViolet](https://github.com/iaseth/html-color-names/blob/master/png/blueviolet.png?raw=true) | `blueviolet` | `#8a2be2` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/blueviolet.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/blueviolet.json) |\n| 12 | **Brown** ![Brown](https://github.com/iaseth/html-color-names/blob/master/png/brown.png?raw=true) | `brown` | `#a52a2a` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/brown.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/brown.json) |\n| 13 | **BurlyWood** ![BurlyWood](https://github.com/iaseth/html-color-names/blob/master/png/burlywood.png?raw=true) | `burlywood` | `#deb887` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/burlywood.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/burlywood.json) |\n| 14 | **CadetBlue** ![CadetBlue](https://github.com/iaseth/html-color-names/blob/master/png/cadetblue.png?raw=true) | `cadetblue` | `#5f9ea0` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/cadetblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/cadetblue.json) |\n| 15 | **Chartreuse** ![Chartreuse](https://github.com/iaseth/html-color-names/blob/master/png/chartreuse.png?raw=true) | `chartreuse` | `#7fff00` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/chartreuse.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/chartreuse.json) |\n| 16 | **Chocolate** ![Chocolate](https://github.com/iaseth/html-color-names/blob/master/png/chocolate.png?raw=true) | `chocolate` | `#d2691e` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/chocolate.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/chocolate.json) |\n| 17 | **Coral** ![Coral](https://github.com/iaseth/html-color-names/blob/master/png/coral.png?raw=true) | `coral` | `#ff7f50` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/coral.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/coral.json) |\n| 18 | **CornflowerBlue** ![CornflowerBlue](https://github.com/iaseth/html-color-names/blob/master/png/cornflowerblue.png?raw=true) | `cornflowerblue` | `#6495ed` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/cornflowerblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/cornflowerblue.json) |\n| 19 | **Cornsilk** ![Cornsilk](https://github.com/iaseth/html-color-names/blob/master/png/cornsilk.png?raw=true) | `cornsilk` | `#fff8dc` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/cornsilk.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/cornsilk.json) |\n| 20 | **Crimson** ![Crimson](https://github.com/iaseth/html-color-names/blob/master/png/crimson.png?raw=true) | `crimson` | `#dc143c` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/crimson.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/crimson.json) |\n| 21 | **Cyan** ![Cyan](https://github.com/iaseth/html-color-names/blob/master/png/cyan.png?raw=true) | `cyan` | `#00ffff` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/cyan.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/cyan.json) |\n| 22 | **DarkBlue** ![DarkBlue](https://github.com/iaseth/html-color-names/blob/master/png/darkblue.png?raw=true) | `darkblue` | `#00008b` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkblue.json) |\n| 23 | **DarkCyan** ![DarkCyan](https://github.com/iaseth/html-color-names/blob/master/png/darkcyan.png?raw=true) | `darkcyan` | `#008b8b` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkcyan.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkcyan.json) |\n| 24 | **DarkGoldenRod** ![DarkGoldenRod](https://github.com/iaseth/html-color-names/blob/master/png/darkgoldenrod.png?raw=true) | `darkgoldenrod` | `#b8860b` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkgoldenrod.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkgoldenrod.json) |\n| 25 | **DarkGray** ![DarkGray](https://github.com/iaseth/html-color-names/blob/master/png/darkgray.png?raw=true) | `darkgray` | `#a9a9a9` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkgray.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkgray.json) |\n| 26 | **DarkGrey** ![DarkGrey](https://github.com/iaseth/html-color-names/blob/master/png/darkgrey.png?raw=true) | `darkgrey` | `#a9a9a9` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkgrey.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkgrey.json) |\n| 27 | **DarkGreen** ![DarkGreen](https://github.com/iaseth/html-color-names/blob/master/png/darkgreen.png?raw=true) | `darkgreen` | `#006400` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkgreen.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkgreen.json) |\n| 28 | **DarkKhaki** ![DarkKhaki](https://github.com/iaseth/html-color-names/blob/master/png/darkkhaki.png?raw=true) | `darkkhaki` | `#bdb76b` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkkhaki.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkkhaki.json) |\n| 29 | **DarkMagenta** ![DarkMagenta](https://github.com/iaseth/html-color-names/blob/master/png/darkmagenta.png?raw=true) | `darkmagenta` | `#8b008b` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkmagenta.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkmagenta.json) |\n| 30 | **DarkOliveGreen** ![DarkOliveGreen](https://github.com/iaseth/html-color-names/blob/master/png/darkolivegreen.png?raw=true) | `darkolivegreen` | `#556b2f` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkolivegreen.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkolivegreen.json) |\n| 31 | **DarkOrange** ![DarkOrange](https://github.com/iaseth/html-color-names/blob/master/png/darkorange.png?raw=true) | `darkorange` | `#ff8c00` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkorange.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkorange.json) |\n| 32 | **DarkOrchid** ![DarkOrchid](https://github.com/iaseth/html-color-names/blob/master/png/darkorchid.png?raw=true) | `darkorchid` | `#9932cc` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkorchid.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkorchid.json) |\n| 33 | **DarkRed** ![DarkRed](https://github.com/iaseth/html-color-names/blob/master/png/darkred.png?raw=true) | `darkred` | `#8b0000` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkred.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkred.json) |\n| 34 | **DarkSalmon** ![DarkSalmon](https://github.com/iaseth/html-color-names/blob/master/png/darksalmon.png?raw=true) | `darksalmon` | `#e9967a` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darksalmon.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darksalmon.json) |\n| 35 | **DarkSeaGreen** ![DarkSeaGreen](https://github.com/iaseth/html-color-names/blob/master/png/darkseagreen.png?raw=true) | `darkseagreen` | `#8fbc8f` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkseagreen.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkseagreen.json) |\n| 36 | **DarkSlateBlue** ![DarkSlateBlue](https://github.com/iaseth/html-color-names/blob/master/png/darkslateblue.png?raw=true) | `darkslateblue` | `#483d8b` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkslateblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkslateblue.json) |\n| 37 | **DarkSlateGray** ![DarkSlateGray](https://github.com/iaseth/html-color-names/blob/master/png/darkslategray.png?raw=true) | `darkslategray` | `#2f4f4f` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkslategray.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkslategray.json) |\n| 38 | **DarkSlateGrey** ![DarkSlateGrey](https://github.com/iaseth/html-color-names/blob/master/png/darkslategrey.png?raw=true) | `darkslategrey` | `#2f4f4f` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkslategrey.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkslategrey.json) |\n| 39 | **DarkTurquoise** ![DarkTurquoise](https://github.com/iaseth/html-color-names/blob/master/png/darkturquoise.png?raw=true) | `darkturquoise` | `#00ced1` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkturquoise.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkturquoise.json) |\n| 40 | **DarkViolet** ![DarkViolet](https://github.com/iaseth/html-color-names/blob/master/png/darkviolet.png?raw=true) | `darkviolet` | `#9400d3` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/darkviolet.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/darkviolet.json) |\n| 41 | **DeepPink** ![DeepPink](https://github.com/iaseth/html-color-names/blob/master/png/deeppink.png?raw=true) | `deeppink` | `#ff1493` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/deeppink.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/deeppink.json) |\n| 42 | **DeepSkyBlue** ![DeepSkyBlue](https://github.com/iaseth/html-color-names/blob/master/png/deepskyblue.png?raw=true) | `deepskyblue` | `#00bfff` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/deepskyblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/deepskyblue.json) |\n| 43 | **DimGray** ![DimGray](https://github.com/iaseth/html-color-names/blob/master/png/dimgray.png?raw=true) | `dimgray` | `#696969` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/dimgray.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/dimgray.json) |\n| 44 | **DimGrey** ![DimGrey](https://github.com/iaseth/html-color-names/blob/master/png/dimgrey.png?raw=true) | `dimgrey` | `#696969` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/dimgrey.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/dimgrey.json) |\n| 45 | **DodgerBlue** ![DodgerBlue](https://github.com/iaseth/html-color-names/blob/master/png/dodgerblue.png?raw=true) | `dodgerblue` | `#1e90ff` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/dodgerblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/dodgerblue.json) |\n| 46 | **FireBrick** ![FireBrick](https://github.com/iaseth/html-color-names/blob/master/png/firebrick.png?raw=true) | `firebrick` | `#b22222` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/firebrick.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/firebrick.json) |\n| 47 | **FloralWhite** ![FloralWhite](https://github.com/iaseth/html-color-names/blob/master/png/floralwhite.png?raw=true) | `floralwhite` | `#fffaf0` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/floralwhite.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/floralwhite.json) |\n| 48 | **ForestGreen** ![ForestGreen](https://github.com/iaseth/html-color-names/blob/master/png/forestgreen.png?raw=true) | `forestgreen` | `#228b22` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/forestgreen.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/forestgreen.json) |\n| 49 | **Fuchsia** ![Fuchsia](https://github.com/iaseth/html-color-names/blob/master/png/fuchsia.png?raw=true) | `fuchsia` | `#ff00ff` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/fuchsia.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/fuchsia.json) |\n| 50 | **Gainsboro** ![Gainsboro](https://github.com/iaseth/html-color-names/blob/master/png/gainsboro.png?raw=true) | `gainsboro` | `#dcdcdc` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/gainsboro.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/gainsboro.json) |\n| 51 | **GhostWhite** ![GhostWhite](https://github.com/iaseth/html-color-names/blob/master/png/ghostwhite.png?raw=true) | `ghostwhite` | `#f8f8ff` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/ghostwhite.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/ghostwhite.json) |\n| 52 | **Gold** ![Gold](https://github.com/iaseth/html-color-names/blob/master/png/gold.png?raw=true) | `gold` | `#ffd700` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/gold.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/gold.json) |\n| 53 | **GoldenRod** ![GoldenRod](https://github.com/iaseth/html-color-names/blob/master/png/goldenrod.png?raw=true) | `goldenrod` | `#daa520` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/goldenrod.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/goldenrod.json) |\n| 54 | **Gray** ![Gray](https://github.com/iaseth/html-color-names/blob/master/png/gray.png?raw=true) | `gray` | `#808080` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/gray.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/gray.json) |\n| 55 | **Grey** ![Grey](https://github.com/iaseth/html-color-names/blob/master/png/grey.png?raw=true) | `grey` | `#808080` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/grey.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/grey.json) |\n| 56 | **Green** ![Green](https://github.com/iaseth/html-color-names/blob/master/png/green.png?raw=true) | `green` | `#008000` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/green.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/green.json) |\n| 57 | **GreenYellow** ![GreenYellow](https://github.com/iaseth/html-color-names/blob/master/png/greenyellow.png?raw=true) | `greenyellow` | `#adff2f` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/greenyellow.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/greenyellow.json) |\n| 58 | **HoneyDew** ![HoneyDew](https://github.com/iaseth/html-color-names/blob/master/png/honeydew.png?raw=true) | `honeydew` | `#f0fff0` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/honeydew.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/honeydew.json) |\n| 59 | **HotPink** ![HotPink](https://github.com/iaseth/html-color-names/blob/master/png/hotpink.png?raw=true) | `hotpink` | `#ff69b4` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/hotpink.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/hotpink.json) |\n| 60 | **IndianRed** ![IndianRed](https://github.com/iaseth/html-color-names/blob/master/png/indianred.png?raw=true) | `indianred` | `#cd5c5c` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/indianred.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/indianred.json) |\n| 61 | **Indigo** ![Indigo](https://github.com/iaseth/html-color-names/blob/master/png/indigo.png?raw=true) | `indigo` | `#4b0082` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/indigo.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/indigo.json) |\n| 62 | **Ivory** ![Ivory](https://github.com/iaseth/html-color-names/blob/master/png/ivory.png?raw=true) | `ivory` | `#fffff0` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/ivory.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/ivory.json) |\n| 63 | **Khaki** ![Khaki](https://github.com/iaseth/html-color-names/blob/master/png/khaki.png?raw=true) | `khaki` | `#f0e68c` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/khaki.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/khaki.json) |\n| 64 | **Lavender** ![Lavender](https://github.com/iaseth/html-color-names/blob/master/png/lavender.png?raw=true) | `lavender` | `#e6e6fa` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lavender.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lavender.json) |\n| 65 | **LavenderBlush** ![LavenderBlush](https://github.com/iaseth/html-color-names/blob/master/png/lavenderblush.png?raw=true) | `lavenderblush` | `#fff0f5` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lavenderblush.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lavenderblush.json) |\n| 66 | **LawnGreen** ![LawnGreen](https://github.com/iaseth/html-color-names/blob/master/png/lawngreen.png?raw=true) | `lawngreen` | `#7cfc00` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lawngreen.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lawngreen.json) |\n| 67 | **LemonChiffon** ![LemonChiffon](https://github.com/iaseth/html-color-names/blob/master/png/lemonchiffon.png?raw=true) | `lemonchiffon` | `#fffacd` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lemonchiffon.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lemonchiffon.json) |\n| 68 | **LightBlue** ![LightBlue](https://github.com/iaseth/html-color-names/blob/master/png/lightblue.png?raw=true) | `lightblue` | `#add8e6` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lightblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lightblue.json) |\n| 69 | **LightCoral** ![LightCoral](https://github.com/iaseth/html-color-names/blob/master/png/lightcoral.png?raw=true) | `lightcoral` | `#f08080` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lightcoral.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lightcoral.json) |\n| 70 | **LightCyan** ![LightCyan](https://github.com/iaseth/html-color-names/blob/master/png/lightcyan.png?raw=true) | `lightcyan` | `#e0ffff` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lightcyan.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lightcyan.json) |\n| 71 | **LightGoldenRodYellow** ![LightGoldenRodYellow](https://github.com/iaseth/html-color-names/blob/master/png/lightgoldenrodyellow.png?raw=true) | `lightgoldenrodyellow` | `#fafad2` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lightgoldenrodyellow.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lightgoldenrodyellow.json) |\n| 72 | **LightGray** ![LightGray](https://github.com/iaseth/html-color-names/blob/master/png/lightgray.png?raw=true) | `lightgray` | `#d3d3d3` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lightgray.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lightgray.json) |\n| 73 | **LightGrey** ![LightGrey](https://github.com/iaseth/html-color-names/blob/master/png/lightgrey.png?raw=true) | `lightgrey` | `#d3d3d3` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lightgrey.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lightgrey.json) |\n| 74 | **LightGreen** ![LightGreen](https://github.com/iaseth/html-color-names/blob/master/png/lightgreen.png?raw=true) | `lightgreen` | `#90ee90` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lightgreen.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lightgreen.json) |\n| 75 | **LightPink** ![LightPink](https://github.com/iaseth/html-color-names/blob/master/png/lightpink.png?raw=true) | `lightpink` | `#ffb6c1` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lightpink.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lightpink.json) |\n| 76 | **LightSalmon** ![LightSalmon](https://github.com/iaseth/html-color-names/blob/master/png/lightsalmon.png?raw=true) | `lightsalmon` | `#ffa07a` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lightsalmon.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lightsalmon.json) |\n| 77 | **LightSeaGreen** ![LightSeaGreen](https://github.com/iaseth/html-color-names/blob/master/png/lightseagreen.png?raw=true) | `lightseagreen` | `#20b2aa` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lightseagreen.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lightseagreen.json) |\n| 78 | **LightSkyBlue** ![LightSkyBlue](https://github.com/iaseth/html-color-names/blob/master/png/lightskyblue.png?raw=true) | `lightskyblue` | `#87cefa` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lightskyblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lightskyblue.json) |\n| 79 | **LightSlateGray** ![LightSlateGray](https://github.com/iaseth/html-color-names/blob/master/png/lightslategray.png?raw=true) | `lightslategray` | `#778899` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lightslategray.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lightslategray.json) |\n| 80 | **LightSlateGrey** ![LightSlateGrey](https://github.com/iaseth/html-color-names/blob/master/png/lightslategrey.png?raw=true) | `lightslategrey` | `#778899` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lightslategrey.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lightslategrey.json) |\n| 81 | **LightSteelBlue** ![LightSteelBlue](https://github.com/iaseth/html-color-names/blob/master/png/lightsteelblue.png?raw=true) | `lightsteelblue` | `#b0c4de` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lightsteelblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lightsteelblue.json) |\n| 82 | **LightYellow** ![LightYellow](https://github.com/iaseth/html-color-names/blob/master/png/lightyellow.png?raw=true) | `lightyellow` | `#ffffe0` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lightyellow.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lightyellow.json) |\n| 83 | **Lime** ![Lime](https://github.com/iaseth/html-color-names/blob/master/png/lime.png?raw=true) | `lime` | `#00ff00` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/lime.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/lime.json) |\n| 84 | **LimeGreen** ![LimeGreen](https://github.com/iaseth/html-color-names/blob/master/png/limegreen.png?raw=true) | `limegreen` | `#32cd32` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/limegreen.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/limegreen.json) |\n| 85 | **Linen** ![Linen](https://github.com/iaseth/html-color-names/blob/master/png/linen.png?raw=true) | `linen` | `#faf0e6` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/linen.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/linen.json) |\n| 86 | **Magenta** ![Magenta](https://github.com/iaseth/html-color-names/blob/master/png/magenta.png?raw=true) | `magenta` | `#ff00ff` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/magenta.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/magenta.json) |\n| 87 | **Maroon** ![Maroon](https://github.com/iaseth/html-color-names/blob/master/png/maroon.png?raw=true) | `maroon` | `#800000` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/maroon.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/maroon.json) |\n| 88 | **MediumAquaMarine** ![MediumAquaMarine](https://github.com/iaseth/html-color-names/blob/master/png/mediumaquamarine.png?raw=true) | `mediumaquamarine` | `#66cdaa` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/mediumaquamarine.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/mediumaquamarine.json) |\n| 89 | **MediumBlue** ![MediumBlue](https://github.com/iaseth/html-color-names/blob/master/png/mediumblue.png?raw=true) | `mediumblue` | `#0000cd` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/mediumblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/mediumblue.json) |\n| 90 | **MediumOrchid** ![MediumOrchid](https://github.com/iaseth/html-color-names/blob/master/png/mediumorchid.png?raw=true) | `mediumorchid` | `#ba55d3` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/mediumorchid.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/mediumorchid.json) |\n| 91 | **MediumPurple** ![MediumPurple](https://github.com/iaseth/html-color-names/blob/master/png/mediumpurple.png?raw=true) | `mediumpurple` | `#9370db` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/mediumpurple.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/mediumpurple.json) |\n| 92 | **MediumSeaGreen** ![MediumSeaGreen](https://github.com/iaseth/html-color-names/blob/master/png/mediumseagreen.png?raw=true) | `mediumseagreen` | `#3cb371` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/mediumseagreen.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/mediumseagreen.json) |\n| 93 | **MediumSlateBlue** ![MediumSlateBlue](https://github.com/iaseth/html-color-names/blob/master/png/mediumslateblue.png?raw=true) | `mediumslateblue` | `#7b68ee` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/mediumslateblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/mediumslateblue.json) |\n| 94 | **MediumSpringGreen** ![MediumSpringGreen](https://github.com/iaseth/html-color-names/blob/master/png/mediumspringgreen.png?raw=true) | `mediumspringgreen` | `#00fa9a` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/mediumspringgreen.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/mediumspringgreen.json) |\n| 95 | **MediumTurquoise** ![MediumTurquoise](https://github.com/iaseth/html-color-names/blob/master/png/mediumturquoise.png?raw=true) | `mediumturquoise` | `#48d1cc` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/mediumturquoise.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/mediumturquoise.json) |\n| 96 | **MediumVioletRed** ![MediumVioletRed](https://github.com/iaseth/html-color-names/blob/master/png/mediumvioletred.png?raw=true) | `mediumvioletred` | `#c71585` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/mediumvioletred.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/mediumvioletred.json) |\n| 97 | **MidnightBlue** ![MidnightBlue](https://github.com/iaseth/html-color-names/blob/master/png/midnightblue.png?raw=true) | `midnightblue` | `#191970` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/midnightblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/midnightblue.json) |\n| 98 | **MintCream** ![MintCream](https://github.com/iaseth/html-color-names/blob/master/png/mintcream.png?raw=true) | `mintcream` | `#f5fffa` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/mintcream.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/mintcream.json) |\n| 99 | **MistyRose** ![MistyRose](https://github.com/iaseth/html-color-names/blob/master/png/mistyrose.png?raw=true) | `mistyrose` | `#ffe4e1` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/mistyrose.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/mistyrose.json) |\n| 100 | **Moccasin** ![Moccasin](https://github.com/iaseth/html-color-names/blob/master/png/moccasin.png?raw=true) | `moccasin` | `#ffe4b5` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/moccasin.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/moccasin.json) |\n| 101 | **NavajoWhite** ![NavajoWhite](https://github.com/iaseth/html-color-names/blob/master/png/navajowhite.png?raw=true) | `navajowhite` | `#ffdead` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/navajowhite.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/navajowhite.json) |\n| 102 | **Navy** ![Navy](https://github.com/iaseth/html-color-names/blob/master/png/navy.png?raw=true) | `navy` | `#000080` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/navy.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/navy.json) |\n| 103 | **OldLace** ![OldLace](https://github.com/iaseth/html-color-names/blob/master/png/oldlace.png?raw=true) | `oldlace` | `#fdf5e6` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/oldlace.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/oldlace.json) |\n| 104 | **Olive** ![Olive](https://github.com/iaseth/html-color-names/blob/master/png/olive.png?raw=true) | `olive` | `#808000` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/olive.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/olive.json) |\n| 105 | **OliveDrab** ![OliveDrab](https://github.com/iaseth/html-color-names/blob/master/png/olivedrab.png?raw=true) | `olivedrab` | `#6b8e23` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/olivedrab.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/olivedrab.json) |\n| 106 | **Orange** ![Orange](https://github.com/iaseth/html-color-names/blob/master/png/orange.png?raw=true) | `orange` | `#ffa500` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/orange.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/orange.json) |\n| 107 | **OrangeRed** ![OrangeRed](https://github.com/iaseth/html-color-names/blob/master/png/orangered.png?raw=true) | `orangered` | `#ff4500` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/orangered.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/orangered.json) |\n| 108 | **Orchid** ![Orchid](https://github.com/iaseth/html-color-names/blob/master/png/orchid.png?raw=true) | `orchid` | `#da70d6` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/orchid.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/orchid.json) |\n| 109 | **PaleGoldenRod** ![PaleGoldenRod](https://github.com/iaseth/html-color-names/blob/master/png/palegoldenrod.png?raw=true) | `palegoldenrod` | `#eee8aa` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/palegoldenrod.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/palegoldenrod.json) |\n| 110 | **PaleGreen** ![PaleGreen](https://github.com/iaseth/html-color-names/blob/master/png/palegreen.png?raw=true) | `palegreen` | `#98fb98` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/palegreen.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/palegreen.json) |\n| 111 | **PaleTurquoise** ![PaleTurquoise](https://github.com/iaseth/html-color-names/blob/master/png/paleturquoise.png?raw=true) | `paleturquoise` | `#afeeee` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/paleturquoise.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/paleturquoise.json) |\n| 112 | **PaleVioletRed** ![PaleVioletRed](https://github.com/iaseth/html-color-names/blob/master/png/palevioletred.png?raw=true) | `palevioletred` | `#db7093` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/palevioletred.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/palevioletred.json) |\n| 113 | **PapayaWhip** ![PapayaWhip](https://github.com/iaseth/html-color-names/blob/master/png/papayawhip.png?raw=true) | `papayawhip` | `#ffefd5` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/papayawhip.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/papayawhip.json) |\n| 114 | **PeachPuff** ![PeachPuff](https://github.com/iaseth/html-color-names/blob/master/png/peachpuff.png?raw=true) | `peachpuff` | `#ffdab9` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/peachpuff.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/peachpuff.json) |\n| 115 | **Peru** ![Peru](https://github.com/iaseth/html-color-names/blob/master/png/peru.png?raw=true) | `peru` | `#cd853f` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/peru.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/peru.json) |\n| 116 | **Pink** ![Pink](https://github.com/iaseth/html-color-names/blob/master/png/pink.png?raw=true) | `pink` | `#ffc0cb` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/pink.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/pink.json) |\n| 117 | **Plum** ![Plum](https://github.com/iaseth/html-color-names/blob/master/png/plum.png?raw=true) | `plum` | `#dda0dd` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/plum.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/plum.json) |\n| 118 | **PowderBlue** ![PowderBlue](https://github.com/iaseth/html-color-names/blob/master/png/powderblue.png?raw=true) | `powderblue` | `#b0e0e6` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/powderblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/powderblue.json) |\n| 119 | **Purple** ![Purple](https://github.com/iaseth/html-color-names/blob/master/png/purple.png?raw=true) | `purple` | `#800080` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/purple.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/purple.json) |\n| 120 | **RebeccaPurple** ![RebeccaPurple](https://github.com/iaseth/html-color-names/blob/master/png/rebeccapurple.png?raw=true) | `rebeccapurple` | `#663399` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/rebeccapurple.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/rebeccapurple.json) |\n| 121 | **Red** ![Red](https://github.com/iaseth/html-color-names/blob/master/png/red.png?raw=true) | `red` | `#ff0000` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/red.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/red.json) |\n| 122 | **RosyBrown** ![RosyBrown](https://github.com/iaseth/html-color-names/blob/master/png/rosybrown.png?raw=true) | `rosybrown` | `#bc8f8f` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/rosybrown.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/rosybrown.json) |\n| 123 | **RoyalBlue** ![RoyalBlue](https://github.com/iaseth/html-color-names/blob/master/png/royalblue.png?raw=true) | `royalblue` | `#4169e1` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/royalblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/royalblue.json) |\n| 124 | **SaddleBrown** ![SaddleBrown](https://github.com/iaseth/html-color-names/blob/master/png/saddlebrown.png?raw=true) | `saddlebrown` | `#8b4513` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/saddlebrown.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/saddlebrown.json) |\n| 125 | **Salmon** ![Salmon](https://github.com/iaseth/html-color-names/blob/master/png/salmon.png?raw=true) | `salmon` | `#fa8072` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/salmon.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/salmon.json) |\n| 126 | **SandyBrown** ![SandyBrown](https://github.com/iaseth/html-color-names/blob/master/png/sandybrown.png?raw=true) | `sandybrown` | `#f4a460` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/sandybrown.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/sandybrown.json) |\n| 127 | **SeaGreen** ![SeaGreen](https://github.com/iaseth/html-color-names/blob/master/png/seagreen.png?raw=true) | `seagreen` | `#2e8b57` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/seagreen.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/seagreen.json) |\n| 128 | **SeaShell** ![SeaShell](https://github.com/iaseth/html-color-names/blob/master/png/seashell.png?raw=true) | `seashell` | `#fff5ee` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/seashell.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/seashell.json) |\n| 129 | **Sienna** ![Sienna](https://github.com/iaseth/html-color-names/blob/master/png/sienna.png?raw=true) | `sienna` | `#a0522d` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/sienna.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/sienna.json) |\n| 130 | **Silver** ![Silver](https://github.com/iaseth/html-color-names/blob/master/png/silver.png?raw=true) | `silver` | `#c0c0c0` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/silver.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/silver.json) |\n| 131 | **SkyBlue** ![SkyBlue](https://github.com/iaseth/html-color-names/blob/master/png/skyblue.png?raw=true) | `skyblue` | `#87ceeb` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/skyblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/skyblue.json) |\n| 132 | **SlateBlue** ![SlateBlue](https://github.com/iaseth/html-color-names/blob/master/png/slateblue.png?raw=true) | `slateblue` | `#6a5acd` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/slateblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/slateblue.json) |\n| 133 | **SlateGray** ![SlateGray](https://github.com/iaseth/html-color-names/blob/master/png/slategray.png?raw=true) | `slategray` | `#708090` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/slategray.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/slategray.json) |\n| 134 | **SlateGrey** ![SlateGrey](https://github.com/iaseth/html-color-names/blob/master/png/slategrey.png?raw=true) | `slategrey` | `#708090` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/slategrey.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/slategrey.json) |\n| 135 | **Snow** ![Snow](https://github.com/iaseth/html-color-names/blob/master/png/snow.png?raw=true) | `snow` | `#fffafa` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/snow.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/snow.json) |\n| 136 | **SpringGreen** ![SpringGreen](https://github.com/iaseth/html-color-names/blob/master/png/springgreen.png?raw=true) | `springgreen` | `#00ff7f` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/springgreen.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/springgreen.json) |\n| 137 | **SteelBlue** ![SteelBlue](https://github.com/iaseth/html-color-names/blob/master/png/steelblue.png?raw=true) | `steelblue` | `#4682b4` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/steelblue.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/steelblue.json) |\n| 138 | **Tan** ![Tan](https://github.com/iaseth/html-color-names/blob/master/png/tan.png?raw=true) | `tan` | `#d2b48c` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/tan.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/tan.json) |\n| 139 | **Teal** ![Teal](https://github.com/iaseth/html-color-names/blob/master/png/teal.png?raw=true) | `teal` | `#008080` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/teal.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/teal.json) |\n| 140 | **Thistle** ![Thistle](https://github.com/iaseth/html-color-names/blob/master/png/thistle.png?raw=true) | `thistle` | `#d8bfd8` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/thistle.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/thistle.json) |\n| 141 | **Tomato** ![Tomato](https://github.com/iaseth/html-color-names/blob/master/png/tomato.png?raw=true) | `tomato` | `#ff6347` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/tomato.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/tomato.json) |\n| 142 | **Turquoise** ![Turquoise](https://github.com/iaseth/html-color-names/blob/master/png/turquoise.png?raw=true) | `turquoise` | `#40e0d0` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/turquoise.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/turquoise.json) |\n| 143 | **Violet** ![Violet](https://github.com/iaseth/html-color-names/blob/master/png/violet.png?raw=true) | `violet` | `#ee82ee` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/violet.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/violet.json) |\n| 144 | **Wheat** ![Wheat](https://github.com/iaseth/html-color-names/blob/master/png/wheat.png?raw=true) | `wheat` | `#f5deb3` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/wheat.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/wheat.json) |\n| 145 | **White** ![White](https://github.com/iaseth/html-color-names/blob/master/png/white.png?raw=true) | `white` | `#ffffff` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/white.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/white.json) |\n| 146 | **WhiteSmoke** ![WhiteSmoke](https://github.com/iaseth/html-color-names/blob/master/png/whitesmoke.png?raw=true) | `whitesmoke` | `#f5f5f5` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/whitesmoke.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/whitesmoke.json) |\n| 147 | **Yellow** ![Yellow](https://github.com/iaseth/html-color-names/blob/master/png/yellow.png?raw=true) | `yellow` | `#ffff00` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/yellow.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/yellow.json) |\n| 148 | **YellowGreen** ![YellowGreen](https://github.com/iaseth/html-color-names/blob/master/png/yellowgreen.png?raw=true) | `yellowgreen` | `#9acd32` | [CSS](https://github.com/iaseth/html-color-names/blob/master/css/yellowgreen.css) | [JSON](https://github.com/iaseth/html-color-names/blob/master/json/yellowgreen.json) |\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiaseth%2Fhtml-color-names","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiaseth%2Fhtml-color-names","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiaseth%2Fhtml-color-names/lists"}