Skip to content

Instantly share code, notes, and snippets.

@rspieker
Created August 5, 2015 09:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rspieker/8d26f8615d1d3f425089 to your computer and use it in GitHub Desktop.
Save rspieker/8d26f8615d1d3f425089 to your computer and use it in GitHub Desktop.
HEX/RGB/HSL/HSV color definitions for use with CSS4 / Myth CSS preprocessor
root: {
/* red tones */
/* White */
--hex-white: #ffffff;
--rgb-white: rgb(255, 255, 255);
--hsl-white: hsl(0, 0, 100);
--hsv-white: hsv(0, 0, 100);
/* Snow */
--hex-snow: #fffafa;
--rgb-snow: rgb(255, 250, 250);
--hsl-snow: hsl(0, 100, 99);
--hsv-snow: hsv(0, 2, 100);
/* Seashell */
--hex-seashell: #fff5ee;
--rgb-seashell: rgb(255, 245, 238);
--hsl-seashell: hsl(25, 100, 97);
--hsv-seashell: hsv(25, 7, 100);
/* White Smoke */
--hex-white-smoke: #f5f5f5;
--rgb-white-smoke: rgb(245, 245, 245);
--hsl-white-smoke: hsl(0, 0, 96);
--hsv-white-smoke: hsv(0, 0, 96);
/* Rose White */
--hex-rose-white: #fbeee8;
--rgb-rose-white: rgb(251, 238, 232);
--hsl-rose-white: hsl(19, 70, 95);
--hsv-rose-white: hsv(19, 8, 98);
/* Hint Of Red */
--hex-hint-of-red: #f5efeb;
--rgb-hint-of-red: rgb(245, 239, 235);
--hsl-hint-of-red: hsl(24, 33, 94);
--hsv-hint-of-red: hsv(24, 4, 96);
/* Chablis */
--hex-chablis: #fde9e0;
--rgb-chablis: rgb(253, 233, 224);
--hsl-chablis: hsl(19, 88, 94);
--hsv-chablis: hsv(19, 11, 99);
/* Chardon */
--hex-chardon: #f8eadf;
--rgb-chardon: rgb(248, 234, 223);
--hsl-chardon: hsl(26, 64, 92);
--hsv-chardon: hsv(26, 10, 97);
/* Serenade */
--hex-serenade: #fce9d7;
--rgb-serenade: rgb(252, 233, 215);
--hsl-serenade: hsl(29, 86, 92);
--hsv-serenade: hsv(29, 15, 99);
/* Sauvignon */
--hex-sauvignon: #f4eae4;
--rgb-sauvignon: rgb(244, 234, 228);
--hsl-sauvignon: hsl(22, 42, 93);
--hsv-sauvignon: hsv(23, 7, 96);
/* Wisp Pink */
--hex-wisp-pink: #f9e8e2;
--rgb-wisp-pink: rgb(249, 232, 226);
--hsl-wisp-pink: hsl(16, 66, 93);
--hsv-wisp-pink: hsv(16, 9, 98);
/* Bridesmaid */
--hex-bridesmaid: #fae6df;
--rgb-bridesmaid: rgb(250, 230, 223);
--hsl-bridesmaid: hsl(16, 73, 93);
--hsv-bridesmaid: hsv(16, 11, 98);
/* Misty Rose */
--hex-misty-rose: #ffe4e1;
--rgb-misty-rose: rgb(255, 228, 225);
--hsl-misty-rose: hsl(6, 100, 94);
--hsv-misty-rose: hsv(6, 12, 100);
/* Tutu */
--hex-tutu: #f8e4e3;
--rgb-tutu: rgb(248, 228, 227);
--hsl-tutu: hsl(3, 60, 93);
--hsv-tutu: hsv(3, 8, 97);
/* Whisper */
--hex-whisper: #efe6e6;
--rgb-whisper: rgb(239, 230, 230);
--hsl-whisper: hsl(0, 22, 92);
--hsv-whisper: hsv(0, 4, 94);
/* Fantasy */
--hex-fantasy: #f2e6dd;
--rgb-fantasy: rgb(242, 230, 221);
--hsl-fantasy: hsl(26, 45, 91);
--hsv-fantasy: hsv(26, 9, 95);
/* Fair Pink */
--hex-fair-pink: #f3e5dc;
--rgb-fair-pink: rgb(243, 229, 220);
--hsl-fair-pink: hsl(23, 49, 91);
--hsv-fair-pink: hsv(23, 9, 95);
/* Provincial Pink */
--hex-provincial-pink: #f6e3da;
--rgb-provincial-pink: rgb(246, 227, 218);
--hsl-provincial-pink: hsl(19, 61, 91);
--hsv-provincial-pink: hsv(19, 11, 96);
/* Remy */
--hex-remy: #f6deda;
--rgb-remy: rgb(246, 222, 218);
--hsl-remy: hsl(9, 61, 91);
--hsv-remy: hsv(9, 11, 96);
/* Soft Peach */
--hex-soft-peach: #eedfde;
--rgb-soft-peach: rgb(238, 223, 222);
--hsl-soft-peach: hsl(4, 32, 90);
--hsv-soft-peach: hsv(4, 7, 93);
/* Pippin */
--hex-pippin: #fcdbd2;
--rgb-pippin: rgb(252, 219, 210);
--hsl-pippin: hsl(13, 88, 91);
--hsv-pippin: hsv(13, 17, 99);
/* Karry */
--hex-karry: #fedcc1;
--rgb-karry: rgb(254, 220, 193);
--hsl-karry: hsl(27, 97, 88);
--hsv-karry: hsv(27, 24, 100);
/* Peach Puff */
--hex-peach-puff: #ffdab9;
--rgb-peach-puff: rgb(255, 218, 185);
--hsl-peach-puff: hsl(28, 100, 86);
--hsv-peach-puff: hsv(28, 27, 100);
/* Pot Pourri */
--hex-pot-pourri: #efdcd4;
--rgb-pot-pourri: rgb(239, 220, 212);
--hsl-pot-pourri: hsl(18, 46, 88);
--hsv-pot-pourri: hsv(18, 11, 94);
/* Cinderella */
--hex-cinderella: #fbd7cc;
--rgb-cinderella: rgb(251, 215, 204);
--hsl-cinderella: hsl(14, 85, 89);
--hsv-cinderella: hsv(14, 19, 98);
/* Cosmos */
--hex-cosmos: #fcd5cf;
--rgb-cosmos: rgb(252, 213, 207);
--hsl-cosmos: hsl(8, 88, 90);
--hsv-cosmos: hsv(8, 18, 99);
/* Gainsboro */
--hex-gainsboro: #dcdcdc;
--rgb-gainsboro: rgb(220, 220, 220);
--hsl-gainsboro: hsl(0, 0, 86);
--hsv-gainsboro: hsv(0, 0, 86);
/* Ebb */
--hex-ebb: #e6d8d4;
--rgb-ebb: rgb(230, 216, 212);
--hsl-ebb: hsl(13, 26, 87);
--hsv-ebb: hsv(13, 8, 90);
/* Tuft Bush */
--hex-tuft-bush: #f9d3be;
--rgb-tuft-bush: rgb(249, 211, 190);
--hsl-tuft-bush: hsl(21, 83, 86);
--hsv-tuft-bush: hsv(21, 24, 98);
/* Dawn Pink */
--hex-dawn-pink: #e6d6cd;
--rgb-dawn-pink: rgb(230, 214, 205);
--hsl-dawn-pink: hsl(22, 33, 85);
--hsv-dawn-pink: hsv(22, 11, 90);
/* Bon Jour */
--hex-bon-jour: #dfd7d2;
--rgb-bon-jour: rgb(223, 215, 210);
--hsl-bon-jour: hsl(23, 17, 85);
--hsv-bon-jour: hsv(23, 6, 87);
/* Coral Candy */
--hex-coral-candy: #f5d0c9;
--rgb-coral-candy: rgb(245, 208, 201);
--hsl-coral-candy: hsl(10, 69, 87);
--hsv-coral-candy: hsv(10, 18, 96);
/* Vanilla Ice */
--hex-vanilla-ice: #ebd2d1;
--rgb-vanilla-ice: rgb(235, 210, 209);
--hsl-vanilla-ice: hsl(2, 39, 87);
--hsv-vanilla-ice: hsv(2, 11, 92);
/* Bizarre */
--hex-bizarre: #e7d2c8;
--rgb-bizarre: rgb(231, 210, 200);
--hsl-bizarre: hsl(19, 39, 85);
--hsv-bizarre: hsv(19, 13, 91);
/* Apricot */
--hex-apricot: #fbceb1;
--rgb-apricot: rgb(251, 206, 177);
--hsl-apricot: hsl(24, 90, 84);
--hsv-apricot: hsv(24, 29, 98);
/* Watusi */
--hex-watusi: #f2cdbb;
--rgb-watusi: rgb(242, 205, 187);
--hsl-watusi: hsl(20, 68, 84);
--hsv-watusi: hsv(20, 23, 95);
/* Peach */
--hex-peach: #ffcba4;
--rgb-peach: rgb(255, 203, 164);
--hsl-peach: hsl(26, 100, 82);
--hsv-peach: hsv(26, 36, 100);
/* Light Grey */
--hex-light-grey: #d3d3d3;
--rgb-light-grey: rgb(211, 211, 211);
--hsl-light-grey: hsl(0, 0, 83);
--hsv-light-grey: hsv(0, 0, 83);
/* Pearl Bush */
--hex-pearl-bush: #ded1c6;
--rgb-pearl-bush: rgb(222, 209, 198);
--hsl-pearl-bush: hsl(27, 27, 82);
--hsv-pearl-bush: hsv(28, 11, 87);
/* Mercury */
--hex-mercury: #d5d2d1;
--rgb-mercury: rgb(213, 210, 209);
--hsl-mercury: hsl(15, 5, 83);
--hsv-mercury: hsv(15, 2, 84);
/* Swiss Coffee */
--hex-swiss-coffee: #dbd0ca;
--rgb-swiss-coffee: rgb(219, 208, 202);
--hsl-swiss-coffee: hsl(21, 19, 83);
--hsv-swiss-coffee: hsv(21, 8, 86);
/* Your Pink */
--hex-your-pink: #ffc5bb;
--rgb-your-pink: rgb(255, 197, 187);
--hsl-your-pink: hsl(9, 100, 87);
--hsv-your-pink: hsv(9, 27, 100);
/* Romantic */
--hex-romantic: #ffc69e;
--rgb-romantic: rgb(255, 198, 158);
--hsl-romantic: hsl(25, 100, 81);
--hsv-romantic: hsv(25, 38, 100);
/* Dust Storm */
--hex-dust-storm: #e5cac0;
--rgb-dust-storm: rgb(229, 202, 192);
--hsl-dust-storm: hsl(16, 42, 83);
--hsv-dust-storm: hsv(16, 16, 90);
/* Desert Sand */
--hex-desert-sand: #edc9af;
--rgb-desert-sand: rgb(237, 201, 175);
--hsl-desert-sand: hsl(25, 63, 81);
--hsv-desert-sand: hsv(25, 26, 93);
/* Very Light Grey */
--hex-very-light-grey: #cdcdcd;
--rgb-very-light-grey: rgb(205, 205, 205);
--hsl-very-light-grey: hsl(0, 0, 80);
--hsv-very-light-grey: hsv(0, 0, 80);
/* Negroni */
--hex-negroni: #eec7a2;
--rgb-negroni: rgb(238, 199, 162);
--hsl-negroni: hsl(29, 69, 78);
--hsv-negroni: hsv(29, 32, 93);
/* Zinnwaldite */
--hex-zinnwaldite: #ebc2af;
--rgb-zinnwaldite: rgb(235, 194, 175);
--hsl-zinnwaldite: hsl(19, 60, 80);
--hsv-zinnwaldite: hsv(19, 26, 92);
/* Melon */
--hex-melon: #febaad;
--rgb-melon: rgb(254, 186, 173);
--hsl-melon: hsl(10, 98, 84);
--hsv-melon: hsv(10, 32, 100);
/* Alto */
--hex-alto: #cdc6c5;
--rgb-alto: rgb(205, 198, 197);
--hsl-alto: hsl(7, 7, 79);
--hsv-alto: hsv(8, 4, 80);
/* Bone */
--hex-bone: #dbc2ab;
--rgb-bone: rgb(219, 194, 171);
--hsl-bone: hsl(29, 40, 76);
--hsv-bone: hsv(29, 22, 86);
/* Just Right */
--hex-just-right: #dcbfac;
--rgb-just-right: rgb(220, 191, 172);
--hsl-just-right: hsl(24, 41, 77);
--hsv-just-right: hsv(24, 22, 86);
/* Macaroni And Cheese */
--hex-macaroni-and-cheese: #ffb97b;
--rgb-macaroni-and-cheese: rgb(255, 185, 123);
--hsl-macaroni-and-cheese: hsl(28, 100, 74);
--hsv-macaroni-and-cheese: hsv(28, 52, 100);
/* Beauty Bush */
--hex-beauty-bush: #ebb9b3;
--rgb-beauty-bush: rgb(235, 185, 179);
--hsl-beauty-bush: hsl(6, 58, 81);
--hsv-beauty-bush: hsv(6, 24, 92);
/* Mandys Pink */
--hex-mandys-pink: #f5b799;
--rgb-mandys-pink: rgb(245, 183, 153);
--hsl-mandys-pink: hsl(20, 82, 78);
--hsv-mandys-pink: hsv(20, 38, 96);
/* Silver */
--hex-silver: #c0c0c0;
--rgb-silver: rgb(192, 192, 192);
--hsl-silver: hsl(0, 0, 75);
--hsv-silver: hsv(0, 0, 75);
/* Cavern Pink */
--hex-cavern-pink: #e0b8b1;
--rgb-cavern-pink: rgb(224, 184, 177);
--hsl-cavern-pink: hsl(9, 43, 79);
--hsv-cavern-pink: hsv(9, 21, 88);
/* Wafer */
--hex-wafer: #d4bbb1;
--rgb-wafer: rgb(212, 187, 177);
--hsl-wafer: hsl(17, 29, 76);
--hsv-wafer: hsv(17, 17, 83);
/* Pale Slate */
--hex-pale-slate: #c3bebb;
--rgb-pale-slate: rgb(195, 190, 187);
--hsl-pale-slate: hsl(23, 6, 75);
--hsv-pale-slate: hsv(23, 4, 76);
/* Sundown */
--hex-sundown: #f8afa9;
--rgb-sundown: rgb(248, 175, 169);
--hsl-sundown: hsl(5, 85, 82);
--hsv-sundown: hsv(5, 32, 97);
/* Wax Flower */
--hex-wax-flower: #eeb39e;
--rgb-wax-flower: rgb(238, 179, 158);
--hsl-wax-flower: hsl(16, 70, 78);
--hsv-wax-flower: hsv(16, 34, 93);
/* Shilo */
--hex-shilo: #e6b2a6;
--rgb-shilo: rgb(230, 178, 166);
--hsl-shilo: hsl(11, 56, 78);
--hsv-shilo: hsv(11, 28, 90);
/* Rose Bud */
--hex-rose-bud: #feab9a;
--rgb-rose-bud: rgb(254, 171, 154);
--hsl-rose-bud: hsl(10, 98, 80);
--hsv-rose-bud: hsv(10, 39, 100);
/* Oyster Pink */
--hex-oyster-pink: #d4b5b0;
--rgb-oyster-pink: rgb(212, 181, 176);
--hsl-oyster-pink: hsl(8, 30, 76);
--hsv-oyster-pink: hsv(8, 17, 83);
/* Tacao */
--hex-tacao: #f6ae78;
--rgb-tacao: rgb(246, 174, 120);
--hsl-tacao: hsl(26, 88, 72);
--hsv-tacao: hsv(26, 51, 96);
/* Cold Turkey */
--hex-cold-turkey: #cab5b2;
--rgb-cold-turkey: rgb(202, 181, 178);
--hsl-cold-turkey: hsl(8, 18, 75);
--hsv-cold-turkey: hsv(8, 12, 79);
/* Clam Shell */
--hex-clam-shell: #d2b3a9;
--rgb-clam-shell: rgb(210, 179, 169);
--hsl-clam-shell: hsl(15, 31, 74);
--hsv-clam-shell: hsv(15, 20, 82);
/* Cashmere */
--hex-cashmere: #d1b399;
--rgb-cashmere: rgb(209, 179, 153);
--hsl-cashmere: hsl(28, 38, 71);
--hsv-cashmere: hsv(28, 27, 82);
/* Manhattan */
--hex-manhattan: #e2af80;
--rgb-manhattan: rgb(226, 175, 128);
--hsl-manhattan: hsl(29, 63, 69);
--hsv-manhattan: hsv(29, 43, 89);
/* Pink Swan */
--hex-pink-swan: #bfb3b2;
--rgb-pink-swan: rgb(191, 179, 178);
--hsl-pink-swan: hsl(5, 9, 72);
--hsv-pink-swan: hsv(5, 7, 75);
/* Tide */
--hex-tide: #beb4ab;
--rgb-tide: rgb(190, 180, 171);
--hsl-tide: hsl(28, 13, 71);
--hsv-tide: hsv(28, 10, 75);
/* Hit Pink */
--hex-hit-pink: #fda470;
--rgb-hit-pink: rgb(253, 164, 112);
--hsl-hit-pink: hsl(22, 97, 72);
--hsv-hit-pink: hsv(22, 56, 99);
/* Light Salmon */
--hex-light-salmon: #ffa07a;
--rgb-light-salmon: rgb(255, 160, 122);
--hsl-light-salmon: hsl(17, 100, 74);
--hsv-light-salmon: hsv(17, 52, 100);
/* Sandy Brown */
--hex-sandy-brown: #f4a460;
--rgb-sandy-brown: rgb(244, 164, 96);
--hsl-sandy-brown: hsl(28, 87, 67);
--hsv-sandy-brown: hsv(28, 61, 96);
/* Tumbleweed */
--hex-tumbleweed: #dea681;
--rgb-tumbleweed: rgb(222, 166, 129);
--hsl-tumbleweed: hsl(24, 58, 69);
--hsv-tumbleweed: hsv(24, 42, 87);
/* Silk */
--hex-silk: #bbada1;
--rgb-silk: rgb(187, 173, 161);
--hsl-silk: hsl(28, 16, 68);
--hsv-silk: hsv(28, 14, 73);
/* Vivid Tangerine */
--hex-vivid-tangerine: #ff9980;
--rgb-vivid-tangerine: rgb(255, 153, 128);
--hsl-vivid-tangerine: hsl(12, 100, 75);
--hsv-vivid-tangerine: hsv(12, 50, 100);
/* Eunry */
--hex-eunry: #cda59c;
--rgb-eunry: rgb(205, 165, 156);
--hsl-eunry: hsl(11, 33, 71);
--hsv-eunry: hsv(11, 24, 80);
/* Mona Lisa */
--hex-mona-lisa: #ff9889;
--rgb-mona-lisa: rgb(255, 152, 137);
--hsl-mona-lisa: hsl(8, 100, 77);
--hsv-mona-lisa: hsv(8, 46, 100);
/* Tonys Pink */
--hex-tonys-pink: #e79e88;
--rgb-tonys-pink: rgb(231, 158, 136);
--hsl-tonys-pink: hsl(14, 66, 72);
--hsv-tonys-pink: hsv(14, 41, 91);
/* Atomic Tangerine */
--hex-atomic-tangerine: #ff9966;
--rgb-atomic-tangerine: rgb(255, 153, 102);
--hsl-atomic-tangerine: hsl(20, 100, 70);
--hsv-atomic-tangerine: hsv(20, 60, 100);
/* Martini */
--hex-martini: #b7a8a3;
--rgb-martini: rgb(183, 168, 163);
--hsl-martini: hsl(15, 12, 68);
--hsv-martini: hsv(15, 11, 72);
/* Sunshade */
--hex-sunshade: #fa9d49;
--rgb-sunshade: rgb(250, 157, 73);
--hsl-sunshade: hsl(28, 95, 63);
--hsv-sunshade: hsv(28, 71, 98);
/* Rose */
--hex-rose: #d3a194;
--rgb-rose: rgb(211, 161, 148);
--hsl-rose: hsl(12, 42, 70);
--hsv-rose: hsv(12, 30, 83);
/* Cameo */
--hex-cameo: #cca483;
--rgb-cameo: rgb(204, 164, 131);
--hsl-cameo: hsl(27, 42, 66);
--hsv-cameo: hsv(27, 36, 80);
/* Dark Gray */
--hex-dark-gray: #a9a9a9;
--rgb-dark-gray: rgb(169, 169, 169);
--hsl-dark-gray: hsl(0, 0, 66);
--hsv-dark-gray: hsv(0, 0, 66);
/* Rodeo Dust */
--hex-rodeo-dust: #c7a384;
--rgb-rodeo-dust: rgb(199, 163, 132);
--hsl-rodeo-dust: hsl(28, 37, 65);
--hsv-rodeo-dust: hsv(28, 34, 78);
/* Dark Salmon */
--hex-dark-salmon: #e9967a;
--rgb-dark-salmon: rgb(233, 150, 122);
--hsl-dark-salmon: hsl(15, 72, 70);
--hsv-dark-salmon: hsv(15, 48, 91);
/* Petite Orchid */
--hex-petite-orchid: #da9790;
--rgb-petite-orchid: rgb(218, 151, 144);
--hsl-petite-orchid: hsl(6, 50, 71);
--hsv-petite-orchid: hsv(6, 34, 85);
/* Sweet Pink */
--hex-sweet-pink: #ee918d;
--rgb-sweet-pink: rgb(238, 145, 141);
--hsl-sweet-pink: hsl(2, 74, 74);
--hsv-sweet-pink: hsv(2, 41, 93);
/* Sea Buckthorn */
--hex-sea-buckthorn: #ef9548;
--rgb-sea-buckthorn: rgb(239, 149, 72);
--hsl-sea-buckthorn: hsl(28, 84, 61);
--hsv-sea-buckthorn: hsv(28, 70, 94);
/* Quicksand */
--hex-quicksand: #c3988b;
--rgb-quicksand: rgb(195, 152, 139);
--hsl-quicksand: hsl(14, 32, 65);
--hsv-quicksand: hsv(14, 29, 76);
/* Nobel */
--hex-nobel: #a99d9d;
--rgb-nobel: rgb(169, 157, 157);
--hsl-nobel: hsl(0, 7, 64);
--hsv-nobel: hsv(0, 7, 66);
/* Dusty Grey */
--hex-dusty-grey: #ac9b9b;
--rgb-dusty-grey: rgb(172, 155, 155);
--hsl-dusty-grey: hsl(0, 9, 64);
--hsv-dusty-grey: hsv(0, 10, 67);
/* Del Rio */
--hex-del-rio: #b5998e;
--rgb-del-rio: rgb(181, 153, 142);
--hsl-del-rio: hsl(17, 21, 63);
--hsv-del-rio: hsv(17, 22, 71);
/* Pale Taupe */
--hex-pale-taupe: #bc987e;
--rgb-pale-taupe: rgb(188, 152, 126);
--hsl-pale-taupe: hsl(25, 32, 62);
--hsv-pale-taupe: hsv(25, 33, 74);
/* Feldspar */
--hex-feldspar: #d19275;
--rgb-feldspar: rgb(209, 146, 117);
--hsl-feldspar: hsl(19, 50, 64);
--hsv-feldspar: hsv(19, 44, 82);
/* Sun */
--hex-sun: #ef8e38;
--rgb-sun: rgb(239, 142, 56);
--hsl-sun: hsl(28, 85, 58);
--hsv-sun: hsv(28, 77, 94);
/* Whiskey Sour */
--hex-whiskey-sour: #d4915d;
--rgb-whiskey-sour: rgb(212, 145, 93);
--hsl-whiskey-sour: hsl(26, 58, 60);
--hsv-whiskey-sour: hsv(26, 56, 83);
/* Whiskey */
--hex-whiskey: #d29062;
--rgb-whiskey: rgb(210, 144, 98);
--hsl-whiskey: hsl(25, 55, 60);
--hsv-whiskey: hsv(25, 53, 82);
/* My Pink */
--hex-my-pink: #d68b80;
--rgb-my-pink: rgb(214, 139, 128);
--hsl-my-pink: hsl(8, 51, 67);
--hsv-my-pink: hsv(8, 40, 84);
/* California */
--hex-california: #e98c3a;
--rgb-california: rgb(233, 140, 58);
--hsl-california: hsl(28, 80, 57);
--hsv-california: hsv(28, 75, 91);
/* Thatch */
--hex-thatch: #b1948f;
--rgb-thatch: rgb(177, 148, 143);
--hsl-thatch: hsl(9, 18, 63);
--hsv-thatch: hsv(9, 19, 69);
/* Crusta */
--hex-crusta: #f38653;
--rgb-crusta: rgb(243, 134, 83);
--hsl-crusta: hsl(19, 87, 64);
--hsv-crusta: hsv(19, 66, 95);
/* Salmon */
--hex-salmon: #fa8072;
--rgb-salmon: rgb(250, 128, 114);
--hsl-salmon: hsl(6, 93, 71);
--hsv-salmon: hsv(6, 54, 98);
/* Oriental Pink */
--hex-oriental-pink: #c28e88;
--rgb-oriental-pink: rgb(194, 142, 136);
--hsl-oriental-pink: hsl(6, 32, 65);
--hsv-oriental-pink: hsv(6, 30, 76);
/* Rosy Brown */
--hex-rosy-brown: #bc8f8f;
--rgb-rosy-brown: rgb(188, 143, 143);
--hsl-rosy-brown: hsl(0, 25, 65);
--hsv-rosy-brown: hsv(0, 24, 74);
/* Copper */
--hex-copper: #da8a67;
--rgb-copper: rgb(218, 138, 103);
--hsl-copper: hsl(18, 61, 63);
--hsv-copper: hsv(18, 53, 85);
/* Light Coral */
--hex-light-coral: #f08080;
--rgb-light-coral: rgb(240, 128, 128);
--hsl-light-coral: hsl(0, 79, 72);
--hsv-light-coral: hsv(0, 47, 94);
/* Sandrift */
--hex-sandrift: #af937d;
--rgb-sandrift: rgb(175, 147, 125);
--hsl-sandrift: hsl(26, 24, 59);
--hsv-sandrift: hsv(26, 29, 69);
/* Zorba */
--hex-zorba: #a29589;
--rgb-zorba: rgb(162, 149, 137);
--hsl-zorba: hsl(29, 12, 59);
--hsv-zorba: hsv(29, 15, 64);
/* Coral */
--hex-coral: #ff7f50;
--rgb-coral: rgb(255, 127, 80);
--hsl-coral: hsl(16, 100, 66);
--hsv-coral: hsv(16, 69, 100);
/* Flamenco */
--hex-flamenco: #ea8645;
--rgb-flamenco: rgb(234, 134, 69);
--hsl-flamenco: hsl(24, 80, 59);
--hsv-flamenco: hsv(24, 71, 92);
/* New York Pink */
--hex-new-york-pink: #dd8374;
--rgb-new-york-pink: rgb(221, 131, 116);
--hsl-new-york-pink: hsl(9, 61, 66);
--hsv-new-york-pink: hsv(9, 48, 87);
/* Sea Pink */
--hex-sea-pink: #db817e;
--rgb-sea-pink: rgb(219, 129, 126);
--hsl-sea-pink: hsl(2, 56, 68);
--hsv-sea-pink: hsv(2, 42, 86);
/* West Side */
--hex-west-side: #e5823a;
--rgb-west-side: rgb(229, 130, 58);
--hsl-west-side: hsl(25, 77, 56);
--hsv-west-side: hsv(25, 75, 90);
/* Geraldine */
--hex-geraldine: #e77b75;
--rgb-geraldine: rgb(231, 123, 117);
--hsl-geraldine: hsl(3, 70, 68);
--hsv-geraldine: hsv(3, 49, 91);
/* Burning Sand */
--hex-burning-sand: #d08363;
--rgb-burning-sand: rgb(208, 131, 99);
--hsl-burning-sand: hsl(18, 54, 60);
--hsv-burning-sand: hsv(18, 52, 82);
/* Tree Poppy */
--hex-tree-poppy: #e2813b;
--rgb-tree-poppy: rgb(226, 129, 59);
--hsl-tree-poppy: hsl(25, 74, 56);
--hsv-tree-poppy: hsv(25, 74, 89);
/* Pizazz */
--hex-pizazz: #e57f3d;
--rgb-pizazz: rgb(229, 127, 61);
--hsl-pizazz: hsl(24, 76, 57);
--hsv-pizazz: hsv(24, 73, 90);
/* Brandy Rose */
--hex-brandy-rose: #b6857a;
--rgb-brandy-rose: rgb(182, 133, 122);
--hsl-brandy-rose: hsl(11, 29, 60);
--hsv-brandy-rose: hsv(11, 33, 71);
/* Bittersweet */
--hex-bittersweet: #fe6f5e;
--rgb-bittersweet: rgb(254, 111, 94);
--hsl-bittersweet: hsl(6, 99, 68);
--hsv-bittersweet: hsv(6, 63, 100);
/* Pumpkin */
--hex-pumpkin: #ff7518;
--rgb-pumpkin: rgb(255, 117, 24);
--hsl-pumpkin: hsl(24, 100, 55);
--hsv-pumpkin: hsv(24, 91, 100);
/* Jaffa */
--hex-jaffa: #e27945;
--rgb-jaffa: rgb(226, 121, 69);
--hsl-jaffa: hsl(20, 73, 58);
--hsv-jaffa: hsv(20, 69, 89);
/* Raw Sienna */
--hex-raw-sienna: #d27d46;
--rgb-raw-sienna: rgb(210, 125, 70);
--hsl-raw-sienna: hsl(24, 61, 55);
--hsv-raw-sienna: hsv(24, 67, 82);
/* Burnt Sienna */
--hex-burnt-sienna: #e97451;
--rgb-burnt-sienna: rgb(233, 116, 81);
--hsl-burnt-sienna: hsl(14, 78, 62);
--hsv-burnt-sienna: hsv(14, 65, 91);
/* Burnt Orange */
--hex-burnt-orange: #ff7034;
--rgb-burnt-orange: rgb(255, 112, 52);
--hsl-burnt-orange: hsl(18, 100, 60);
--hsv-burnt-orange: hsv(18, 80, 100);
/* Almond Frost */
--hex-almond-frost: #9a8678;
--rgb-almond-frost: rgb(154, 134, 120);
--hsl-almond-frost: hsl(25, 14, 54);
--hsv-almond-frost: hsv(25, 22, 60);
/* Terra Cotta */
--hex-terra-cotta: #e2725b;
--rgb-terra-cotta: rgb(226, 114, 91);
--hsl-terra-cotta: hsl(10, 70, 62);
--hsv-terra-cotta: hsv(10, 60, 89);
/* Suva Grey */
--hex-suva-grey: #8b8685;
--rgb-suva-grey: rgb(139, 134, 133);
--hsl-suva-grey: hsl(10, 3, 53);
--hsv-suva-grey: hsv(10, 4, 55);
/* Brandy Punch */
--hex-brandy-punch: #c07c40;
--rgb-brandy-punch: rgb(192, 124, 64);
--hsl-brandy-punch: hsl(28, 50, 50);
--hsv-brandy-punch: hsv(28, 67, 75);
/* Medium Wood */
--hex-medium-wood: #a68064;
--rgb-medium-wood: rgb(166, 128, 100);
--hsl-medium-wood: hsl(25, 27, 52);
--hsv-medium-wood: hsv(25, 40, 65);
/* Japonica */
--hex-japonica: #ce7259;
--rgb-japonica: rgb(206, 114, 89);
--hsl-japonica: hsl(13, 54, 58);
--hsv-japonica: hsv(13, 57, 81);
/* Opium */
--hex-opium: #987e7e;
--rgb-opium: rgb(152, 126, 126);
--hsl-opium: hsl(0, 11, 55);
--hsv-opium: hsv(0, 17, 60);
/* Tahiti Gold */
--hex-tahiti-gold: #dc722a;
--rgb-tahiti-gold: rgb(220, 114, 42);
--hsl-tahiti-gold: hsl(24, 72, 51);
--hsv-tahiti-gold: hsv(24, 81, 86);
/* Tomato */
--hex-tomato: #ff6347;
--rgb-tomato: rgb(255, 99, 71);
--hsl-tomato: hsl(9, 100, 64);
--hsv-tomato: hsv(9, 72, 100);
/* Hemp */
--hex-hemp: #987d73;
--rgb-hemp: rgb(152, 125, 115);
--hsl-hemp: hsl(16, 15, 52);
--hsv-hemp: hsv(16, 24, 60);
/* Hurricane */
--hex-hurricane: #8b7e77;
--rgb-hurricane: rgb(139, 126, 119);
--hsl-hurricane: hsl(21, 8, 51);
--hsv-hurricane: hsv(21, 14, 55);
/* Grey */
--hex-grey: #808080;
--rgb-grey: rgb(128, 128, 128);
--hsl-grey: hsl(0, 0, 50);
--hsv-grey: hsv(0, 0, 50);
/* Tango */
--hex-tango: #d46f31;
--rgb-tango: rgb(212, 111, 49);
--hsl-tango: hsl(23, 65, 51);
--hsv-tango: hsv(23, 77, 83);
/* Contessa */
--hex-contessa: #c16f68;
--rgb-contessa: rgb(193, 111, 104);
--hsl-contessa: hsl(5, 42, 58);
--hsv-contessa: hsv(5, 46, 76);
/* Red Damask */
--hex-red-damask: #cb6f4a;
--rgb-red-damask: rgb(203, 111, 74);
--hsl-red-damask: hsl(17, 55, 54);
--hsv-red-damask: hsv(17, 64, 80);
/* Zest */
--hex-zest: #c6723b;
--rgb-zest: rgb(198, 114, 59);
--hsl-zest: hsl(24, 55, 50);
--hsv-zest: hsv(24, 70, 78);
/* Sorbus */
--hex-sorbus: #dd6b38;
--rgb-sorbus: rgb(221, 107, 56);
--hsl-sorbus: hsl(19, 71, 54);
--hsv-sorbus: hsv(19, 75, 87);
/* Safety Orange */
--hex-safety-orange: #ff6600;
--rgb-safety-orange: rgb(255, 102, 0);
--hsl-safety-orange: hsl(24, 100, 50);
--hsv-safety-orange: hsv(24, 100, 100);
/* Americano */
--hex-americano: #8a7d72;
--rgb-americano: rgb(138, 125, 114);
--hsl-americano: hsl(27, 10, 49);
--hsv-americano: hsv(28, 17, 54);
/* Outrageous Orange */
--hex-outrageous-orange: #ff6037;
--rgb-outrageous-orange: rgb(255, 96, 55);
--hsl-outrageous-orange: hsl(12, 100, 61);
--hsv-outrageous-orange: hsv(12, 78, 100);
/* Meteor */
--hex-meteor: #bb7431;
--rgb-meteor: rgb(187, 116, 49);
--hsl-meteor: hsl(29, 58, 46);
--hsv-meteor: hsv(29, 74, 73);
/* Gold Drop */
--hex-gold-drop: #d56c30;
--rgb-gold-drop: rgb(213, 108, 48);
--hsl-gold-drop: hsl(22, 66, 51);
--hsv-gold-drop: hsv(22, 77, 84);
/* Flamingo */
--hex-flamingo: #e1634f;
--rgb-flamingo: rgb(225, 99, 79);
--hsl-flamingo: hsl(8, 71, 60);
--hsv-flamingo: hsv(8, 65, 88);
/* Bazaar */
--hex-bazaar: #8f7777;
--rgb-bazaar: rgb(143, 119, 119);
--hsl-bazaar: hsl(0, 10, 51);
--hsv-bazaar: hsv(0, 17, 56);
/* Roman */
--hex-roman: #d8625b;
--rgb-roman: rgb(216, 98, 91);
--hsl-roman: hsl(3, 62, 60);
--hsv-roman: hsv(3, 58, 85);
/* Coral Tree */
--hex-coral-tree: #ab6e67;
--rgb-coral-tree: rgb(171, 110, 103);
--hsl-coral-tree: hsl(6, 29, 54);
--hsv-coral-tree: hsv(6, 40, 67);
/* Chocolate */
--hex-chocolate: #d2691e;
--rgb-chocolate: rgb(210, 105, 30);
--hsl-chocolate: hsl(25, 75, 47);
--hsv-chocolate: hsv(25, 86, 82);
/* Toast */
--hex-toast: #9f715f;
--rgb-toast: rgb(159, 113, 95);
--hsl-toast: hsl(17, 25, 50);
--hsv-toast: hsv(17, 40, 62);
/* Reno Sand */
--hex-reno-sand: #b26e33;
--rgb-reno-sand: rgb(178, 110, 51);
--hsl-reno-sand: hsl(28, 55, 45);
--hsv-reno-sand: hsv(28, 71, 70);
/* Bourbon */
--hex-bourbon: #af6c3e;
--rgb-bourbon: rgb(175, 108, 62);
--hsl-bourbon: hsl(24, 48, 46);
--hsv-bourbon: hsv(24, 65, 69);
/* Sunglo */
--hex-sunglo: #c76155;
--rgb-sunglo: rgb(199, 97, 85);
--hsl-sunglo: hsl(6, 50, 56);
--hsv-sunglo: hsv(6, 57, 78);
/* Sante Fe */
--hex-sante-fe: #a96a50;
--rgb-sante-fe: rgb(169, 106, 80);
--hsl-sante-fe: hsl(18, 36, 49);
--hsv-sante-fe: hsv(18, 53, 66);
/* Beaver */
--hex-beaver: #926f5b;
--rgb-beaver: rgb(146, 111, 91);
--hsl-beaver: hsl(22, 23, 46);
--hsv-beaver: hsv(22, 38, 57);
/* Christine */
--hex-christine: #bf652e;
--rgb-christine: rgb(191, 101, 46);
--hsl-christine: hsl(23, 61, 46);
--hsv-christine: hsv(23, 76, 75);
/* Ecstasy */
--hex-ecstasy: #c96138;
--rgb-ecstasy: rgb(201, 97, 56);
--hsl-ecstasy: hsl(17, 57, 50);
--hsv-ecstasy: hsv(17, 72, 79);
/* Indian Red */
--hex-indian-red: #cd5c5c;
--rgb-indian-red: rgb(205, 92, 92);
--hsl-indian-red: hsl(0, 53, 58);
--hsv-indian-red: hsv(0, 55, 80);
/* Chilean Fire */
--hex-chilean-fire: #d05e34;
--rgb-chilean-fire: rgb(208, 94, 52);
--hsl-chilean-fire: hsl(16, 62, 51);
--hsv-chilean-fire: hsv(16, 75, 82);
/* Dark Chestnut */
--hex-dark-chestnut: #986960;
--rgb-dark-chestnut: rgb(152, 105, 96);
--hsl-dark-chestnut: hsl(10, 23, 49);
--hsv-dark-chestnut: hsv(10, 37, 60);
/* Au Chico */
--hex-au-chico: #9e6759;
--rgb-au-chico: rgb(158, 103, 89);
--hsl-au-chico: hsl(12, 28, 48);
--hsv-au-chico: hsv(12, 44, 62);
/* Dark Coral */
--hex-dark-coral: #cd5b45;
--rgb-dark-coral: rgb(205, 91, 69);
--hsl-dark-coral: hsl(10, 58, 54);
--hsv-dark-coral: hsv(10, 66, 80);
/* Persimmon */
--hex-persimmon: #ec5800;
--rgb-persimmon: rgb(236, 88, 0);
--hsl-persimmon: hsl(22, 100, 46);
--hsv-persimmon: hsv(22, 100, 93);
/* Sunset Orange */
--hex-sunset-orange: #fe4c40;
--rgb-sunset-orange: rgb(254, 76, 64);
--hsl-sunset-orange: hsl(4, 99, 62);
--hsv-sunset-orange: hsv(4, 75, 100);
/* Valencia */
--hex-valencia: #d4574e;
--rgb-valencia: rgb(212, 87, 78);
--hsl-valencia: hsl(4, 61, 57);
--hsv-valencia: hsv(4, 63, 83);
/* Dark Tan */
--hex-dark-tan: #97694f;
--rgb-dark-tan: rgb(151, 105, 79);
--hsl-dark-tan: hsl(22, 31, 45);
--hsv-dark-tan: hsv(22, 48, 59);
/* Copper Rose */
--hex-copper-rose: #996666;
--rgb-copper-rose: rgb(153, 102, 102);
--hsl-copper-rose: hsl(0, 20, 50);
--hsv-copper-rose: hsv(0, 33, 60);
/* Donkey Brown */
--hex-donkey-brown: #816e5c;
--rgb-donkey-brown: rgb(129, 110, 92);
--hsl-donkey-brown: hsl(29, 17, 43);
--hsv-donkey-brown: hsv(29, 29, 51);
/* Leather */
--hex-leather: #906a54;
--rgb-leather: rgb(144, 106, 84);
--hsl-leather: hsl(22, 26, 45);
--hsv-leather: hsv(22, 42, 56);
/* Ferra */
--hex-ferra: #876a68;
--rgb-ferra: rgb(135, 106, 104);
--hsl-ferra: hsl(4, 13, 47);
--hsv-ferra: hsv(4, 23, 53);
/* Tuscany */
--hex-tuscany: #ad6242;
--rgb-tuscany: rgb(173, 98, 66);
--hsl-tuscany: hsl(18, 45, 47);
--hsv-tuscany: hsv(18, 62, 68);
/* Smoke Tree */
--hex-smoke-tree: #bb5f34;
--rgb-smoke-tree: rgb(187, 95, 52);
--hsl-smoke-tree: hsl(19, 56, 47);
--hsv-smoke-tree: hsv(19, 72, 73);
/* Flame Pea */
--hex-flame-pea: #be5c48;
--rgb-flame-pea: rgb(190, 92, 72);
--hsl-flame-pea: hsl(10, 48, 51);
--hsv-flame-pea: hsv(10, 62, 75);
/* Mai Tai */
--hex-mai-tai: #a56531;
--rgb-mai-tai: rgb(165, 101, 49);
--hsl-mai-tai: hsl(27, 54, 42);
--hsv-mai-tai: hsv(27, 70, 65);
/* International Orange */
--hex-international-orange: #ff4f00;
--rgb-international-orange: rgb(255, 79, 0);
--hsl-international-orange: hsl(19, 100, 50);
--hsv-international-orange: hsv(19, 100, 100);
/* Fuzzy Wuzzy Brown */
--hex-fuzzy-wuzzy-brown: #c45655;
--rgb-fuzzy-wuzzy-brown: rgb(196, 86, 85);
--hsl-fuzzy-wuzzy-brown: hsl(1, 48, 55);
--hsv-fuzzy-wuzzy-brown: hsv(1, 57, 77);
/* Vermilion */
--hex-vermilion: #ff4d00;
--rgb-vermilion: rgb(255, 77, 0);
--hsl-vermilion: hsl(18, 100, 50);
--hsv-vermilion: hsv(18, 100, 100);
/* Pharlap */
--hex-pharlap: #826663;
--rgb-pharlap: rgb(130, 102, 99);
--hsl-pharlap: hsl(6, 14, 45);
--hsv-pharlap: hsv(6, 24, 51);
/* Roman Coffee */
--hex-roman-coffee: #7d6757;
--rgb-roman-coffee: rgb(125, 103, 87);
--hsl-roman-coffee: hsl(25, 18, 42);
--hsv-roman-coffee: hsv(25, 30, 49);
/* Desert */
--hex-desert: #a15f3b;
--rgb-desert: rgb(161, 95, 59);
--hsl-desert: hsl(21, 46, 43);
--hsv-desert: hsv(21, 63, 63);
/* Light Wood */
--hex-light-wood: #856363;
--rgb-light-wood: rgb(133, 99, 99);
--hsl-light-wood: hsl(0, 15, 45);
--hsv-light-wood: hsv(0, 26, 52);
/* Tenne (Tawny) */
--hex-tenne-tawny-: #cd5700;
--rgb-tenne-tawny-: rgb(205, 87, 0);
--hsl-tenne-tawny-: hsl(25, 100, 40);
--hsv-tenne-tawny-: hsv(25, 100, 80);
/* Russett */
--hex-russett: #7d655c;
--rgb-russett: rgb(125, 101, 92);
--hsl-russett: hsl(16, 15, 43);
--hsv-russett: hsv(16, 26, 49);
/* Dim Gray */
--hex-dim-gray: #696969;
--rgb-dim-gray: rgb(105, 105, 105);
--hsl-dim-gray: hsl(0, 0, 41);
--hsv-dim-gray: hsv(0, 0, 41);
/* Fiery Orange */
--hex-fiery-orange: #b1592f;
--rgb-fiery-orange: rgb(177, 89, 47);
--hsl-fiery-orange: hsl(19, 58, 44);
--hsv-fiery-orange: hsv(19, 73, 69);
/* Coral Red */
--hex-coral-red: #ff4040;
--rgb-coral-red: rgb(255, 64, 64);
--hsl-coral-red: hsl(0, 100, 63);
--hsv-coral-red: hsv(0, 75, 100);
/* Sunset */
--hex-sunset: #c0514a;
--rgb-sunset: rgb(192, 81, 74);
--hsl-sunset: hsl(4, 48, 52);
--hsv-sunset: hsv(4, 61, 75);
/* Rose Taupe */
--hex-rose-taupe: #905d5d;
--rgb-rose-taupe: rgb(144, 93, 93);
--hsl-rose-taupe: hsl(0, 22, 46);
--hsv-rose-taupe: hsv(0, 35, 56);
/* Orange Red */
--hex-orange-red: #ff4500;
--rgb-orange-red: rgb(255, 69, 0);
--hsl-orange-red: hsl(16, 100, 50);
--hsv-orange-red: hsv(16, 100, 100);
/* Pine Cone */
--hex-pine-cone: #756556;
--rgb-pine-cone: rgb(117, 101, 86);
--hsl-pine-cone: hsl(29, 15, 40);
--hsv-pine-cone: hsv(29, 26, 46);
/* Sepia */
--hex-sepia: #9e5b40;
--rgb-sepia: rgb(158, 91, 64);
--hsl-sepia: hsl(17, 42, 44);
--hsv-sepia: hsv(17, 59, 62);
/* Spicy Mix */
--hex-spicy-mix: #8b5f4d;
--rgb-spicy-mix: rgb(139, 95, 77);
--hsl-spicy-mix: hsl(17, 29, 42);
--hsv-spicy-mix: hsv(17, 45, 55);
/* Red Orange */
--hex-red-orange: #ff3f34;
--rgb-red-orange: rgb(255, 63, 52);
--hsl-red-orange: hsl(3, 100, 60);
--hsv-red-orange: hsv(3, 80, 100);
/* Trinidad */
--hex-trinidad: #c54f33;
--rgb-trinidad: rgb(197, 79, 51);
--hsl-trinidad: hsl(12, 59, 49);
--hsv-trinidad: hsv(12, 74, 77);
/* Indochine */
--hex-indochine: #9c5b34;
--rgb-indochine: rgb(156, 91, 52);
--hsl-indochine: hsl(23, 50, 41);
--hsv-indochine: hsv(23, 67, 61);
/* Crail */
--hex-crail: #a65648;
--rgb-crail: rgb(166, 86, 72);
--hsl-crail: hsl(9, 39, 47);
--hsv-crail: hsv(9, 57, 65);
/* Chestnut */
--hex-chestnut: #b94e48;
--rgb-chestnut: rgb(185, 78, 72);
--hsl-chestnut: hsl(3, 45, 50);
--hsv-chestnut: hsv(3, 61, 73);
/* Dark Wood */
--hex-dark-wood: #855e42;
--rgb-dark-wood: rgb(133, 94, 66);
--hsl-dark-wood: hsl(25, 34, 39);
--hsv-dark-wood: hsv(25, 50, 52);
/* Vesuvius */
--hex-vesuvius: #a85533;
--rgb-vesuvius: rgb(168, 85, 51);
--hsl-vesuvius: hsl(17, 53, 43);
--hsv-vesuvius: hsv(17, 70, 66);
/* Grenadier */
--hex-grenadier: #c14d36;
--rgb-grenadier: rgb(193, 77, 54);
--hsl-grenadier: hsl(10, 56, 48);
--hsv-grenadier: hsv(10, 72, 76);
/* Apple Blossom */
--hex-apple-blossom: #a95249;
--rgb-apple-blossom: rgb(169, 82, 73);
--hsl-apple-blossom: hsl(6, 40, 47);
--hsv-apple-blossom: hsv(6, 57, 66);
/* Cinnabar */
--hex-cinnabar: #e34234;
--rgb-cinnabar: rgb(227, 66, 52);
--hsl-cinnabar: hsl(5, 76, 55);
--hsv-cinnabar: hsv(5, 77, 89);
/* Orange Roughy */
--hex-orange-roughy: #a85335;
--rgb-orange-roughy: rgb(168, 83, 53);
--hsl-orange-roughy: hsl(16, 52, 43);
--hsv-orange-roughy: hsv(16, 68, 66);
/* Red Stage */
--hex-red-stage: #ad522e;
--rgb-red-stage: rgb(173, 82, 46);
--hsl-red-stage: hsl(17, 58, 43);
--hsv-red-stage: hsv(17, 73, 68);
/* Potters Clay */
--hex-potters-clay: #845c40;
--rgb-potters-clay: rgb(132, 92, 64);
--hsl-potters-clay: hsl(25, 35, 38);
--hsv-potters-clay: hsv(25, 52, 52);
/* Rope */
--hex-rope: #8e593c;
--rgb-rope: rgb(142, 89, 60);
--hsl-rope: hsl(21, 41, 40);
--hsv-rope: hsv(21, 58, 56);
/* Rose Of Sharon */
--hex-rose-of-sharon: #ac512d;
--rgb-rose-of-sharon: rgb(172, 81, 45);
--hsl-rose-of-sharon: hsl(17, 59, 43);
--hsv-rose-of-sharon: hsv(17, 74, 67);
/* Dorado */
--hex-dorado: #6e5f56;
--rgb-dorado: rgb(110, 95, 86);
--hsl-dorado: hsl(22, 12, 38);
--hsv-dorado: hsv(23, 22, 43);
/* Piper */
--hex-piper: #9d5432;
--rgb-piper: rgb(157, 84, 50);
--hsl-piper: hsl(19, 52, 41);
--hsv-piper: hsv(19, 68, 62);
/* Kabul */
--hex-kabul: #6c5e53;
--rgb-kabul: rgb(108, 94, 83);
--hsl-kabul: hsl(26, 13, 37);
--hsv-kabul: hsv(26, 23, 42);
/* Sienna */
--hex-sienna: #a0522d;
--rgb-sienna: rgb(160, 82, 45);
--hsl-sienna: hsl(19, 56, 40);
--hsv-sienna: hsv(19, 72, 63);
/* Copper Rust */
--hex-copper-rust: #95524c;
--rgb-copper-rust: rgb(149, 82, 76);
--hsl-copper-rust: hsl(5, 32, 44);
--hsv-copper-rust: hsv(5, 49, 58);
/* Rich Gold */
--hex-rich-gold: #a15226;
--rgb-rich-gold: rgb(161, 82, 38);
--hsl-rich-gold: hsl(21, 62, 39);
--hsv-rich-gold: hsv(21, 76, 63);
/* Chelsea Gem */
--hex-chelsea-gem: #95532f;
--rgb-chelsea-gem: rgb(149, 83, 47);
--hsl-chelsea-gem: hsl(21, 52, 38);
--hsv-chelsea-gem: hsv(21, 68, 58);
/* Hawaiian Tan */
--hex-hawaiian-tan: #99522b;
--rgb-hawaiian-tan: rgb(153, 82, 43);
--hsl-hawaiian-tan: hsl(21, 56, 38);
--hsv-hawaiian-tan: hsv(21, 72, 60);
/* Zambezi */
--hex-zambezi: #6b5a5a;
--rgb-zambezi: rgb(107, 90, 90);
--hsl-zambezi: hsl(0, 9, 39);
--hsv-zambezi: hsv(0, 16, 42);
/* Domino */
--hex-domino: #6c5b4c;
--rgb-domino: rgb(108, 91, 76);
--hsl-domino: hsl(28, 17, 36);
--hsv-domino: hsv(28, 30, 42);
/* Lotus */
--hex-lotus: #8b504b;
--rgb-lotus: rgb(139, 80, 75);
--hsl-lotus: hsl(5, 30, 42);
--hsv-lotus: hsv(5, 46, 55);
/* El Salva */
--hex-el-salva: #8f4e45;
--rgb-el-salva: rgb(143, 78, 69);
--hsl-el-salva: hsl(7, 35, 42);
--hsv-el-salva: hsv(7, 52, 56);
/* Alert Tan */
--hex-alert-tan: #954e2c;
--rgb-alert-tan: rgb(149, 78, 44);
--hsl-alert-tan: hsl(19, 54, 38);
--hsv-alert-tan: hsv(19, 70, 58);
/* Ironstone */
--hex-ironstone: #865040;
--rgb-ironstone: rgb(134, 80, 64);
--hsl-ironstone: hsl(14, 35, 39);
--hsv-ironstone: hsv(14, 52, 53);
/* Matrix */
--hex-matrix: #8e4d45;
--rgb-matrix: rgb(142, 77, 69);
--hsl-matrix: hsl(7, 35, 41);
--hsv-matrix: hsv(7, 51, 56);
/* Mule Fawn */
--hex-mule-fawn: #884f40;
--rgb-mule-fawn: rgb(136, 79, 64);
--hsl-mule-fawn: hsl(13, 36, 39);
--hsv-mule-fawn: hsv(13, 53, 53);
/* Roof Terracotta */
--hex-roof-terracotta: #a14743;
--rgb-roof-terracotta: rgb(161, 71, 67);
--hsl-roof-terracotta: hsl(3, 41, 45);
--hsv-roof-terracotta: hsv(3, 58, 63);
/* Quincy */
--hex-quincy: #6a5445;
--rgb-quincy: rgb(106, 84, 69);
--hsl-quincy: hsl(24, 21, 34);
--hsv-quincy: hsv(24, 35, 42);
/* Cognac */
--hex-cognac: #9a463d;
--rgb-cognac: rgb(154, 70, 61);
--hsl-cognac: hsl(6, 43, 42);
--hsv-cognac: hsv(6, 60, 60);
/* Buccaneer */
--hex-buccaneer: #6e5150;
--rgb-buccaneer: rgb(110, 81, 80);
--hsl-buccaneer: hsl(2, 16, 37);
--hsv-buccaneer: hsv(2, 27, 43);
/* Medium Carmine */
--hex-medium-carmine: #af4035;
--rgb-medium-carmine: rgb(175, 64, 53);
--hsl-medium-carmine: hsl(5, 54, 45);
--hsv-medium-carmine: hsv(5, 70, 69);
/* Mojo */
--hex-mojo: #97463c;
--rgb-mojo: rgb(151, 70, 60);
--hsl-mojo: hsl(7, 43, 41);
--hsv-mojo: hsv(7, 60, 59);
/* Rust */
--hex-rust: #b7410e;
--rgb-rust: rgb(183, 65, 14);
--hsl-rust: hsl(18, 86, 39);
--hsv-rust: hsv(18, 92, 72);
/* Cigar */
--hex-cigar: #7d4e38;
--rgb-cigar: rgb(125, 78, 56);
--hsl-cigar: hsl(19, 38, 35);
--hsv-cigar: hsv(19, 55, 49);
/* Korma */
--hex-korma: #804e2c;
--rgb-korma: rgb(128, 78, 44);
--hsl-korma: hsl(24, 49, 34);
--hsv-korma: hsv(24, 66, 50);
/* Paarl */
--hex-paarl: #864b36;
--rgb-paarl: rgb(134, 75, 54);
--hsl-paarl: hsl(16, 43, 37);
--hsv-paarl: hsv(16, 60, 53);
/* Old Copper */
--hex-old-copper: #73503b;
--rgb-old-copper: rgb(115, 80, 59);
--hsl-old-copper: hsl(22, 32, 34);
--hsv-old-copper: hsv(23, 49, 45);
/* Rock Spray */
--hex-rock-spray: #9d442d;
--rgb-rock-spray: rgb(157, 68, 45);
--hsl-rock-spray: hsl(12, 55, 40);
--hsv-rock-spray: hsv(12, 71, 62);
/* Tundora */
--hex-tundora: #585452;
--rgb-tundora: rgb(88, 84, 82);
--hsl-tundora: hsl(20, 4, 33);
--hsv-tundora: hsv(20, 7, 35);
/* Spice */
--hex-spice: #6c4f3f;
--rgb-spice: rgb(108, 79, 63);
--hsl-spice: hsl(21, 26, 34);
--hsv-spice: hsv(21, 42, 42);
/* Nutmeg */
--hex-nutmeg: #7e4a3b;
--rgb-nutmeg: rgb(126, 74, 59);
--hsl-nutmeg: hsl(13, 36, 36);
--hsv-nutmeg: hsv(13, 53, 49);
/* Persian Red */
--hex-persian-red: #cc3333;
--rgb-persian-red: rgb(204, 51, 51);
--hsl-persian-red: hsl(0, 60, 50);
--hsv-persian-red: hsv(0, 75, 80);
/* Tia Maria */
--hex-tia-maria: #97422d;
--rgb-tia-maria: rgb(151, 66, 45);
--hsl-tia-maria: hsl(12, 54, 38);
--hsv-tia-maria: hsv(12, 70, 59);
/* Congo Brown */
--hex-congo-brown: #654d49;
--rgb-congo-brown: rgb(101, 77, 73);
--hsl-congo-brown: hsl(9, 16, 34);
--hsv-congo-brown: hsv(9, 28, 40);
/* Harley Davidson Orange */
--hex-harley-davidson-orange: #c93413;
--rgb-harley-davidson-orange: rgb(201, 52, 19);
--hsl-harley-davidson-orange: hsl(11, 83, 43);
--hsv-harley-davidson-orange: hsv(11, 91, 79);
/* Mexican Red */
--hex-mexican-red: #9b3d3d;
--rgb-mexican-red: rgb(155, 61, 61);
--hsl-mexican-red: hsl(0, 44, 42);
--hsv-mexican-red: hsv(0, 61, 61);
/* Saddle */
--hex-saddle: #5d4e46;
--rgb-saddle: rgb(93, 78, 70);
--hsl-saddle: hsl(21, 14, 32);
--hsv-saddle: hsv(21, 25, 36);
/* Saddle Brown */
--hex-saddle-brown: #8b4513;
--rgb-saddle-brown: rgb(139, 69, 19);
--hsl-saddle-brown: hsl(25, 76, 31);
--hsv-saddle-brown: hsv(25, 86, 55);
/* Scarlet */
--hex-scarlet: #ff2400;
--rgb-scarlet: rgb(255, 36, 0);
--hsl-scarlet: hsl(8, 100, 50);
--hsv-scarlet: hsv(8, 100, 100);
/* Cape Palliser */
--hex-cape-palliser: #75482f;
--rgb-cape-palliser: rgb(117, 72, 47);
--hsl-cape-palliser: hsl(21, 43, 32);
--hsv-cape-palliser: hsv(21, 60, 46);
/* Russet */
--hex-russet: #80461b;
--rgb-russet: rgb(128, 70, 27);
--hsl-russet: hsl(26, 65, 30);
--hsv-russet: hsv(26, 79, 50);
/* Rock */
--hex-rock: #5a4d41;
--rgb-rock: rgb(90, 77, 65);
--hsl-rock: hsl(29, 16, 30);
--hsv-rock: hsv(29, 28, 35);
/* Bole */
--hex-bole: #79443b;
--rgb-bole: rgb(121, 68, 59);
--hsl-bole: hsl(9, 34, 35);
--hsv-bole: hsv(9, 51, 47);
/* Fire */
--hex-fire: #8f3f2a;
--rgb-fire: rgb(143, 63, 42);
--hsl-fire: hsl(12, 55, 36);
--hsv-fire: hsv(12, 71, 56);
/* Peanut */
--hex-peanut: #7a4434;
--rgb-peanut: rgb(122, 68, 52);
--hsl-peanut: hsl(14, 40, 34);
--hsv-peanut: hsv(14, 57, 48);
/* Cork */
--hex-cork: #5a4c42;
--rgb-cork: rgb(90, 76, 66);
--hsl-cork: hsl(25, 15, 31);
--hsv-cork: hsv(25, 27, 35);
/* Cumin */
--hex-cumin: #784430;
--rgb-cumin: rgb(120, 68, 48);
--hsl-cumin: hsl(17, 43, 33);
--hsv-cumin: hsv(17, 60, 47);
/* Jambalaya */
--hex-jambalaya: #674834;
--rgb-jambalaya: rgb(103, 72, 52);
--hsl-jambalaya: hsl(24, 33, 30);
--hsv-jambalaya: hsv(24, 50, 40);
/* Red Robin */
--hex-red-robin: #7d4138;
--rgb-red-robin: rgb(125, 65, 56);
--hsl-red-robin: hsl(8, 38, 35);
--hsv-red-robin: hsv(8, 55, 49);
/* Bull Shot */
--hex-bull-shot: #75442b;
--rgb-bull-shot: rgb(117, 68, 43);
--hsl-bull-shot: hsl(20, 46, 31);
--hsv-bull-shot: hsv(20, 63, 46);
/* Matterhorn */
--hex-matterhorn: #524b4b;
--rgb-matterhorn: rgb(82, 75, 75);
--hsl-matterhorn: hsl(0, 4, 31);
--hsv-matterhorn: hsv(0, 9, 32);
/* Copper Canyon */
--hex-copper-canyon: #77422c;
--rgb-copper-canyon: rgb(119, 66, 44);
--hsl-copper-canyon: hsl(18, 46, 32);
--hsv-copper-canyon: hsv(18, 63, 47);
/* Prairie Sand */
--hex-prairie-sand: #883c32;
--rgb-prairie-sand: rgb(136, 60, 50);
--hsl-prairie-sand: hsl(7, 46, 36);
--hsv-prairie-sand: hsv(7, 63, 53);
/* Thunderbird */
--hex-thunderbird: #923830;
--rgb-thunderbird: rgb(146, 56, 48);
--hsl-thunderbird: hsl(5, 51, 38);
--hsv-thunderbird: hsv(5, 67, 57);
/* Milano Red */
--hex-milano-red: #9e3332;
--rgb-milano-red: rgb(158, 51, 50);
--hsl-milano-red: hsl(1, 52, 41);
--hsv-milano-red: hsv(1, 68, 62);
/* Semi-Sweet Chocolate */
--hex-semi-sweet-chocolate: #6b4226;
--rgb-semi-sweet-chocolate: rgb(107, 66, 38);
--hsl-semi-sweet-chocolate: hsl(24, 48, 28);
--hsv-semi-sweet-chocolate: hsv(24, 64, 42);
/* Woody Brown */
--hex-woody-brown: #554545;
--rgb-woody-brown: rgb(85, 69, 69);
--hsl-woody-brown: hsl(0, 10, 30);
--hsv-woody-brown: hsv(0, 19, 33);
/* Brown Derby */
--hex-brown-derby: #594537;
--rgb-brown-derby: rgb(89, 69, 55);
--hsl-brown-derby: hsl(25, 24, 28);
--hsv-brown-derby: hsv(25, 38, 35);
/* Crab Apple */
--hex-crab-apple: #87382f;
--rgb-crab-apple: rgb(135, 56, 47);
--hsl-crab-apple: hsl(6, 48, 36);
--hsv-crab-apple: hsv(6, 65, 53);
/* Crown Of Thorns */
--hex-crown-of-thorns: #763c33;
--rgb-crown-of-thorns: rgb(118, 60, 51);
--hsl-crown-of-thorns: hsl(8, 40, 33);
--hsv-crown-of-thorns: hsv(8, 57, 46);
/* Irish Coffee */
--hex-irish-coffee: #62422b;
--rgb-irish-coffee: rgb(98, 66, 43);
--hsl-irish-coffee: hsl(25, 39, 28);
--hsv-irish-coffee: hsv(25, 56, 38);
/* Metallic Copper */
--hex-metallic-copper: #6e3d34;
--rgb-metallic-copper: rgb(110, 61, 52);
--hsl-metallic-copper: hsl(9, 36, 32);
--hsv-metallic-copper: hsv(9, 53, 43);
/* Peru Tan */
--hex-peru-tan: #733d1f;
--rgb-peru-tan: rgb(115, 61, 31);
--hsl-peru-tan: hsl(21, 58, 29);
--hsv-peru-tan: hsv(21, 73, 45);
/* Charcoal */
--hex-charcoal: #464646;
--rgb-charcoal: rgb(70, 70, 70);
--hsl-charcoal: hsl(0, 0, 27);
--hsv-charcoal: hsv(0, 0, 27);
/* Tall Poppy */
--hex-tall-poppy: #853534;
--rgb-tall-poppy: rgb(133, 53, 52);
--hsl-tall-poppy: hsl(1, 44, 36);
--hsv-tall-poppy: hsv(1, 61, 52);
/* Very Dark Brown */
--hex-very-dark-brown: #5c4033;
--rgb-very-dark-brown: rgb(92, 64, 51);
--hsl-very-dark-brown: hsl(19, 29, 28);
--hsv-very-dark-brown: hsv(19, 45, 36);
/* Burnt Umber */
--hex-burnt-umber: #8a3324;
--rgb-burnt-umber: rgb(138, 51, 36);
--hsl-burnt-umber: hsl(9, 59, 34);
--hsv-burnt-umber: hsv(9, 74, 54);
/* Brown */
--hex-brown: #a52a2a;
--rgb-brown: rgb(165, 42, 42);
--hsl-brown: hsl(0, 59, 41);
--hsv-brown: hsv(0, 75, 65);
/* New Amber */
--hex-new-amber: #6d3b24;
--rgb-new-amber: rgb(109, 59, 36);
--hsl-new-amber: hsl(19, 50, 28);
--hsv-new-amber: hsv(19, 67, 43);
/* Paco */
--hex-paco: #4f4037;
--rgb-paco: rgb(79, 64, 55);
--hsl-paco: hsl(22, 18, 26);
--hsv-paco: hsv(23, 30, 31);
/* Sanguine Brown */
--hex-sanguine-brown: #6c3736;
--rgb-sanguine-brown: rgb(108, 55, 54);
--hsl-sanguine-brown: hsl(1, 33, 32);
--hsv-sanguine-brown: hsv(1, 50, 42);
/* Mocha */
--hex-mocha: #6f372d;
--rgb-mocha: rgb(111, 55, 45);
--hsl-mocha: hsl(9, 42, 31);
--hsv-mocha: hsv(9, 59, 44);
/* Bracken */
--hex-bracken: #5b3d27;
--rgb-bracken: rgb(91, 61, 39);
--hsl-bracken: hsl(25, 40, 25);
--hsv-bracken: hsv(25, 57, 36);
/* Cioccolato */
--hex-cioccolato: #5d3b2e;
--rgb-cioccolato: rgb(93, 59, 46);
--hsl-cioccolato: hsl(17, 34, 27);
--hsv-cioccolato: hsv(17, 51, 36);
/* Crater Brown */
--hex-crater-brown: #4d3e3c;
--rgb-crater-brown: rgb(77, 62, 60);
--hsl-crater-brown: hsl(7, 12, 27);
--hsv-crater-brown: hsv(7, 22, 30);
/* Fire Brick */
--hex-fire-brick: #b22222;
--rgb-fire-brick: rgb(178, 34, 34);
--hsl-fire-brick: hsl(0, 68, 42);
--hsv-fire-brick: hsv(0, 81, 70);
/* Carnaby Tan */
--hex-carnaby-tan: #5b3a24;
--rgb-carnaby-tan: rgb(91, 58, 36);
--hsl-carnaby-tan: hsl(24, 43, 25);
--hsv-carnaby-tan: hsv(24, 60, 36);
/* Pueblo */
--hex-pueblo: #6e3326;
--rgb-pueblo: rgb(110, 51, 38);
--hsl-pueblo: hsl(11, 49, 29);
--hsv-pueblo: hsv(11, 65, 43);
/* Persian Plum */
--hex-persian-plum: #683332;
--rgb-persian-plum: rgb(104, 51, 50);
--hsl-persian-plum: hsl(1, 35, 30);
--hsv-persian-plum: hsv(1, 52, 41);
/* Van Cleef */
--hex-van-cleef: #523936;
--rgb-van-cleef: rgb(82, 57, 54);
--hsl-van-cleef: hsl(6, 21, 27);
--hsv-van-cleef: hsv(6, 34, 32);
/* Kenyan Copper */
--hex-kenyan-copper: #6c322e;
--rgb-kenyan-copper: rgb(108, 50, 46);
--hsl-kenyan-copper: hsl(4, 40, 30);
--hsv-kenyan-copper: hsv(4, 57, 42);
/* Hairy Heath */
--hex-hairy-heath: #633528;
--rgb-hairy-heath: rgb(99, 53, 40);
--hsl-hairy-heath: hsl(13, 42, 27);
--hsv-hairy-heath: hsv(13, 60, 39);
/* Taupe */
--hex-taupe: #483c32;
--rgb-taupe: rgb(72, 60, 50);
--hsl-taupe: hsl(27, 18, 24);
--hsv-taupe: hsv(27, 31, 28);
/* Lusty */
--hex-lusty: #782e2c;
--rgb-lusty: rgb(120, 46, 44);
--hsl-lusty: hsl(2, 46, 32);
--hsv-lusty: hsv(2, 63, 47);
/* Auburn */
--hex-auburn: #712f2c;
--rgb-auburn: rgb(113, 47, 44);
--hsl-auburn: hsl(3, 44, 31);
--hsv-auburn: hsv(3, 61, 44);
/* Cocoa Bean */
--hex-cocoa-bean: #4f3835;
--rgb-cocoa-bean: rgb(79, 56, 53);
--hsl-cocoa-bean: hsl(7, 20, 26);
--hsv-cocoa-bean: hsv(7, 33, 31);
/* Redwood */
--hex-redwood: #5b342e;
--rgb-redwood: rgb(91, 52, 46);
--hsl-redwood: hsl(8, 33, 27);
--hsv-redwood: hsv(8, 49, 36);
/* Eclipse */
--hex-eclipse: #3f3939;
--rgb-eclipse: rgb(63, 57, 57);
--hsl-eclipse: hsl(0, 5, 24);
--hsv-eclipse: hsv(0, 10, 25);
/* Mandarian Orange */
--hex-mandarian-orange: #8e2323;
--rgb-mandarian-orange: rgb(142, 35, 35);
--hsl-mandarian-orange: hsl(0, 60, 35);
--hsv-mandarian-orange: hsv(0, 75, 56);
/* Baker's Chocolate */
--hex-baker-s-chocolate: #5c3317;
--rgb-baker-s-chocolate: rgb(92, 51, 23);
--hsl-baker-s-chocolate: hsl(24, 60, 23);
--hsv-baker-s-chocolate: hsv(24, 75, 36);
/* Cowboy */
--hex-cowboy: #443736;
--rgb-cowboy: rgb(68, 55, 54);
--hsl-cowboy: hsl(4, 11, 24);
--hsv-cowboy: hsv(4, 21, 27);
/* Woodburn */
--hex-woodburn: #463629;
--rgb-woodburn: rgb(70, 54, 41);
--hsl-woodburn: hsl(27, 26, 22);
--hsv-woodburn: hsv(27, 41, 27);
/* Dark Rum */
--hex-dark-rum: #45362b;
--rgb-dark-rum: rgb(69, 54, 43);
--hsl-dark-rum: hsl(25, 23, 22);
--hsv-dark-rum: hsv(25, 38, 27);
/* Tobago */
--hex-tobago: #44362d;
--rgb-tobago: rgb(68, 54, 45);
--hsl-tobago: hsl(23, 20, 22);
--hsv-tobago: hsv(23, 34, 27);
/* Brown Bramble */
--hex-brown-bramble: #53331e;
--rgb-brown-bramble: rgb(83, 51, 30);
--hsl-brown-bramble: hsl(24, 47, 22);
--hsv-brown-bramble: hsv(24, 64, 33);
/* Cedar */
--hex-cedar: #463430;
--rgb-cedar: rgb(70, 52, 48);
--hsl-cedar: hsl(11, 19, 23);
--hsv-cedar: hsv(11, 31, 27);
/* Moccaccino */
--hex-moccaccino: #582f2b;
--rgb-moccaccino: rgb(88, 47, 43);
--hsl-moccaccino: hsl(5, 34, 26);
--hsv-moccaccino: hsv(5, 51, 35);
/* Rebel */
--hex-rebel: #453430;
--rgb-rebel: rgb(69, 52, 48);
--hsl-rebel: hsl(11, 18, 23);
--hsv-rebel: hsv(11, 30, 27);
/* Espresso */
--hex-espresso: #4e312d;
--rgb-espresso: rgb(78, 49, 45);
--hsl-espresso: hsl(7, 27, 24);
--hsv-espresso: hsv(7, 42, 31);
/* Slugger */
--hex-slugger: #42342b;
--rgb-slugger: rgb(66, 52, 43);
--hsl-slugger: hsl(23, 21, 21);
--hsv-slugger: hsv(23, 35, 26);
/* Red */
--hex-red: #ff0000;
--rgb-red: rgb(255, 0, 0);
--hsl-red: hsl(0, 100, 50);
--hsv-red: hsv(0, 100, 100);
/* Kilamanjaro */
--hex-kilamanjaro: #3a3532;
--rgb-kilamanjaro: rgb(58, 53, 50);
--hsl-kilamanjaro: hsl(23, 7, 21);
--hsv-kilamanjaro: hsv(23, 14, 23);
/* Indian Tan */
--hex-indian-tan: #4f301f;
--rgb-indian-tan: rgb(79, 48, 31);
--hsl-indian-tan: hsl(21, 44, 22);
--hsv-indian-tan: hsv(21, 61, 31);
/* Gondola */
--hex-gondola: #373332;
--rgb-gondola: rgb(55, 51, 50);
--hsl-gondola: hsl(12, 5, 21);
--hsv-gondola: hsv(12, 9, 22);
/* Caput Mortuum */
--hex-caput-mortuum: #592720;
--rgb-caput-mortuum: rgb(89, 39, 32);
--hsl-caput-mortuum: hsl(7, 47, 24);
--hsv-caput-mortuum: hsv(7, 64, 35);
/* Morocco Brown */
--hex-morocco-brown: #442d21;
--rgb-morocco-brown: rgb(68, 45, 33);
--hsl-morocco-brown: hsl(21, 35, 20);
--hsv-morocco-brown: hsv(21, 51, 27);
/* Cola */
--hex-cola: #3c2f23;
--rgb-cola: rgb(60, 47, 35);
--hsl-cola: hsl(29, 26, 19);
--hsv-cola: hsv(29, 42, 24);
/* Sambuca */
--hex-sambuca: #3b2e25;
--rgb-sambuca: rgb(59, 46, 37);
--hsl-sambuca: hsl(25, 23, 19);
--hsv-sambuca: hsv(25, 37, 23);
/* Night Rider */
--hex-night-rider: #332e2e;
--rgb-night-rider: rgb(51, 46, 46);
--hsl-night-rider: hsl(0, 5, 19);
--hsv-night-rider: hsv(0, 10, 20);
/* Coffee Bean */
--hex-coffee-bean: #362d26;
--rgb-coffee-bean: rgb(54, 45, 38);
--hsl-coffee-bean: hsl(26, 17, 18);
--hsv-coffee-bean: hsv(26, 30, 21);
/* Falu Red */
--hex-falu-red: #801818;
--rgb-falu-red: rgb(128, 24, 24);
--hsl-falu-red: hsl(0, 68, 30);
--hsv-falu-red: hsv(0, 81, 50);
/* Bistre */
--hex-bistre: #3d2b1f;
--rgb-bistre: rgb(61, 43, 31);
--hsl-bistre: hsl(24, 33, 18);
--hsv-bistre: hsv(24, 49, 24);
/* Diesel */
--hex-diesel: #322c2b;
--rgb-diesel: rgb(50, 44, 43);
--hsl-diesel: hsl(9, 8, 18);
--hsv-diesel: hsv(9, 14, 20);
/* Red Oxide */
--hex-red-oxide: #5d1f1e;
--rgb-red-oxide: rgb(93, 31, 30);
--hsl-red-oxide: hsl(1, 51, 24);
--hsv-red-oxide: hsv(1, 68, 36);
/* Livid Brown */
--hex-livid-brown: #312a29;
--rgb-livid-brown: rgb(49, 42, 41);
--hsl-livid-brown: hsl(7, 9, 18);
--hsv-livid-brown: hsv(8, 16, 19);
/* Cocoa Brown */
--hex-cocoa-brown: #35281e;
--rgb-cocoa-brown: rgb(53, 40, 30);
--hsl-cocoa-brown: hsl(26, 28, 16);
--hsv-cocoa-brown: hsv(26, 43, 21);
/* Free Speech Red */
--hex-free-speech-red: #c00000;
--rgb-free-speech-red: rgb(192, 0, 0);
--hsl-free-speech-red: hsl(0, 100, 38);
--hsv-free-speech-red: hsv(0, 100, 75);
/* Brown Pod */
--hex-brown-pod: #3c241b;
--rgb-brown-pod: rgb(60, 36, 27);
--hsl-brown-pod: hsl(16, 38, 17);
--hsv-brown-pod: hsv(16, 55, 24);
/* Wood Bark */
--hex-wood-bark: #302621;
--rgb-wood-bark: rgb(48, 38, 33);
--hsl-wood-bark: hsl(20, 19, 16);
--hsv-wood-bark: hsv(20, 31, 19);
/* Bokara Grey */
--hex-bokara-grey: #2a2725;
--rgb-bokara-grey: rgb(42, 39, 37);
--hsl-bokara-grey: hsl(24, 6, 15);
--hsv-bokara-grey: hsv(24, 12, 16);
/* Nero */
--hex-nero: #252525;
--rgb-nero: rgb(37, 37, 37);
--hsl-nero: hsl(0, 0, 15);
--hsv-nero: hsv(0, 0, 15);
/* Dark Red */
--hex-dark-red: #8b0000;
--rgb-dark-red: rgb(139, 0, 0);
--hsl-dark-red: hsl(0, 100, 27);
--hsv-dark-red: hsv(0, 100, 55);
/* Maroon */
--hex-maroon: #800000;
--rgb-maroon: rgb(128, 0, 0);
--hsl-maroon: hsl(0, 100, 25);
--hsv-maroon: hsv(0, 100, 50);
/* Seal Brown */
--hex-seal-brown: #321414;
--rgb-seal-brown: rgb(50, 20, 20);
--hsl-seal-brown: hsl(0, 43, 14);
--hsv-seal-brown: hsv(0, 60, 20);
/* Black */
--hex-black: #000000;
--rgb-black: rgb(0, 0, 0);
--hsl-black: hsl(0, 0, 0);
--hsv-black: hsv(0, 0, 0);
/* orange tones */
/* Floral White */
--hex-floral-white: #fffaf0;
--rgb-floral-white: rgb(255, 250, 240);
--hsl-floral-white: hsl(40, 100, 97);
--hsv-floral-white: hsv(40, 6, 100);
/* Corn Silk */
--hex-corn-silk: #fff8dc;
--rgb-corn-silk: rgb(255, 248, 220);
--hsl-corn-silk: hsl(48, 100, 93);
--hsv-corn-silk: hsv(48, 14, 100);
/* Old Lace */
--hex-old-lace: #fdf5e6;
--rgb-old-lace: rgb(253, 245, 230);
--hsl-old-lace: hsl(39, 85, 95);
--hsv-old-lace: hsv(39, 9, 99);
/* Off Yellow */
--hex-off-yellow: #faf3dc;
--rgb-off-yellow: rgb(250, 243, 220);
--hsl-off-yellow: hsl(46, 75, 92);
--hsv-off-yellow: hsv(46, 12, 98);
/* China Ivory */
--hex-china-ivory: #fbf3d3;
--rgb-china-ivory: rgb(251, 243, 211);
--hsl-china-ivory: hsl(48, 83, 91);
--hsv-china-ivory: hsv(48, 16, 98);
/* Early Dawn */
--hex-early-dawn: #fbf2db;
--rgb-early-dawn: rgb(251, 242, 219);
--hsl-early-dawn: hsl(43, 80, 92);
--hsv-early-dawn: hsv(43, 13, 98);
/* Linen */
--hex-linen: #faf0e6;
--rgb-linen: rgb(250, 240, 230);
--hsl-linen: hsl(30, 67, 94);
--hsv-linen: hsv(30, 8, 98);
/* Forget Me Not */
--hex-forget-me-not: #fdefdb;
--rgb-forget-me-not: rgb(253, 239, 219);
--hsl-forget-me-not: hsl(35, 89, 93);
--hsv-forget-me-not: hsv(35, 13, 99);
/* Papaya Whip */
--hex-papaya-whip: #ffefd5;
--rgb-papaya-whip: rgb(255, 239, 213);
--hsl-papaya-whip: hsl(37, 100, 92);
--hsv-papaya-whip: hsv(37, 16, 100);
/* Half Dutch White */
--hex-half-dutch-white: #fbf0d6;
--rgb-half-dutch-white: rgb(251, 240, 214);
--hsl-half-dutch-white: hsl(42, 82, 91);
--hsv-half-dutch-white: hsv(42, 15, 98);
/* Romance */
--hex-romance: #f4f0e6;
--rgb-romance: rgb(244, 240, 230);
--hsl-romance: hsl(43, 39, 93);
--hsv-romance: hsv(43, 6, 96);
/* Apricot White */
--hex-apricot-white: #f7f0db;
--rgb-apricot-white: rgb(247, 240, 219);
--hsl-apricot-white: hsl(45, 64, 91);
--hsv-apricot-white: hsv(45, 11, 97);
/* Varden */
--hex-varden: #fdefd3;
--rgb-varden: rgb(253, 239, 211);
--hsl-varden: hsl(40, 91, 91);
--hsv-varden: hsv(40, 17, 99);
/* Bianca */
--hex-bianca: #f4efe0;
--rgb-bianca: rgb(244, 239, 224);
--hsl-bianca: hsl(45, 48, 92);
--hsv-bianca: hsv(45, 8, 96);
/* Island Spice */
--hex-island-spice: #f8eddb;
--rgb-island-spice: rgb(248, 237, 219);
--hsl-island-spice: hsl(37, 67, 92);
--hsv-island-spice: hsv(37, 12, 97);
/* Oasis */
--hex-oasis: #fcedc5;
--rgb-oasis: rgb(252, 237, 197);
--hsl-oasis: hsl(44, 90, 88);
--hsv-oasis: hsv(44, 22, 99);
/* Blanched Almond */
--hex-blanched-almond: #ffebcd;
--rgb-blanched-almond: rgb(255, 235, 205);
--hsl-blanched-almond: hsl(36, 100, 90);
--hsv-blanched-almond: hsv(36, 20, 100);
/* Quarter Pearl Lusta */
--hex-quarter-pearl-lusta: #f2eddd;
--rgb-quarter-pearl-lusta: rgb(242, 237, 221);
--hsl-quarter-pearl-lusta: hsl(46, 45, 91);
--hsv-quarter-pearl-lusta: hsv(46, 9, 95);
/* Bridal Heath */
--hex-bridal-heath: #f8ebdd;
--rgb-bridal-heath: rgb(248, 235, 221);
--hsl-bridal-heath: hsl(31, 66, 92);
--hsv-bridal-heath: hsv(31, 11, 97);
/* Antique White */
--hex-antique-white: #faebd7;
--rgb-antique-white: rgb(250, 235, 215);
--hsl-antique-white: hsl(34, 78, 91);
--hsv-antique-white: hsv(34, 14, 98);
/* Rice Cake */
--hex-rice-cake: #efecde;
--rgb-rice-cake: rgb(239, 236, 222);
--hsl-rice-cake: hsl(49, 35, 90);
--hsv-rice-cake: hsv(49, 7, 94);
/* Buttery White */
--hex-buttery-white: #f1ebda;
--rgb-buttery-white: rgb(241, 235, 218);
--hsl-buttery-white: hsl(44, 45, 90);
--hsv-buttery-white: hsv(44, 10, 95);
/* Orchid White */
--hex-orchid-white: #f1ebd9;
--rgb-orchid-white: rgb(241, 235, 217);
--hsl-orchid-white: hsl(45, 46, 90);
--hsv-orchid-white: hsv(45, 10, 95);
/* Gin Fizz */
--hex-gin-fizz: #f8eaca;
--rgb-gin-fizz: rgb(248, 234, 202);
--hsl-gin-fizz: hsl(42, 77, 88);
--hsv-gin-fizz: hsv(42, 19, 97);
/* Half Pearl Lusta */
--hex-half-pearl-lusta: #f1ead7;
--rgb-half-pearl-lusta: rgb(241, 234, 215);
--hsl-half-pearl-lusta: hsl(44, 48, 89);
--hsv-half-pearl-lusta: hsv(44, 11, 95);
/* Desert Storm */
--hex-desert-storm: #ede7e0;
--rgb-desert-storm: rgb(237, 231, 224);
--hsl-desert-storm: hsl(32, 27, 90);
--hsv-desert-storm: hsv(32, 5, 93);
/* White Linen */
--hex-white-linen: #eee7dc;
--rgb-white-linen: rgb(238, 231, 220);
--hsl-white-linen: hsl(37, 35, 90);
--hsv-white-linen: hsv(37, 8, 93);
/* Bisque */
--hex-bisque: #ffe4c4;
--rgb-bisque: rgb(255, 228, 196);
--hsl-bisque: hsl(33, 100, 88);
--hsv-bisque: hsv(33, 23, 100);
/* Banana Mania */
--hex-banana-mania: #fbe7b2;
--rgb-banana-mania: rgb(251, 231, 178);
--hsl-banana-mania: hsl(44, 90, 84);
--hsv-banana-mania: hsv(44, 29, 98);
/* Pipi */
--hex-pipi: #f5e6c4;
--rgb-pipi: rgb(245, 230, 196);
--hsl-pipi: hsl(42, 71, 86);
--hsv-pipi: hsv(42, 20, 96);
/* Moccasin */
--hex-moccasin: #ffe4b5;
--rgb-moccasin: rgb(255, 228, 181);
--hsl-moccasin: hsl(38, 100, 85);
--hsv-moccasin: hsv(38, 29, 100);
/* Derby */
--hex-derby: #f9e4c6;
--rgb-derby: rgb(249, 228, 198);
--hsl-derby: hsl(35, 81, 88);
--hsv-derby: hsv(35, 20, 98);
/* Scotch Mist */
--hex-scotch-mist: #eee7c8;
--rgb-scotch-mist: rgb(238, 231, 200);
--hsl-scotch-mist: hsl(49, 53, 86);
--hsv-scotch-mist: hsv(49, 16, 93);
/* Egg Sour */
--hex-egg-sour: #f9e4c5;
--rgb-egg-sour: rgb(249, 228, 197);
--hsl-egg-sour: hsl(36, 81, 87);
--hsv-egg-sour: hsv(36, 21, 98);
/* Narvik */
--hex-narvik: #e9e6dc;
--rgb-narvik: rgb(233, 230, 220);
--hsl-narvik: hsl(46, 23, 89);
--hsv-narvik: hsv(46, 6, 91);
/* Soapstone */
--hex-soapstone: #ece5da;
--rgb-soapstone: rgb(236, 229, 218);
--hsl-soapstone: hsl(37, 32, 89);
--hsv-soapstone: hsv(37, 8, 93);
/* Barley White */
--hex-barley-white: #f7e5b7;
--rgb-barley-white: rgb(247, 229, 183);
--hsl-barley-white: hsl(43, 80, 84);
--hsv-barley-white: hsv(43, 26, 97);
/* Milk Punch */
--hex-milk-punch: #f3e5c0;
--rgb-milk-punch: rgb(243, 229, 192);
--hsl-milk-punch: hsl(44, 68, 85);
--hsv-milk-punch: hsv(44, 21, 95);
/* Cararra */
--hex-cararra: #ebe5d5;
--rgb-cararra: rgb(235, 229, 213);
--hsl-cararra: hsl(44, 35, 88);
--hsv-cararra: hsv(44, 9, 92);
/* Half Colonial White */
--hex-half-colonial-white: #f2e5bf;
--rgb-half-colonial-white: rgb(242, 229, 191);
--hsl-half-colonial-white: hsl(45, 66, 85);
--hsv-half-colonial-white: hsv(45, 21, 95);
/* Pampas */
--hex-pampas: #eae4dc;
--rgb-pampas: rgb(234, 228, 220);
--hsl-pampas: hsl(34, 25, 89);
--hsv-pampas: hsv(34, 6, 92);
/* Wild Sand */
--hex-wild-sand: #e7e4de;
--rgb-wild-sand: rgb(231, 228, 222);
--hsl-wild-sand: hsl(40, 16, 89);
--hsv-wild-sand: hsv(40, 4, 91);
/* Cream Brulee */
--hex-cream-brulee: #ffe39b;
--rgb-cream-brulee: rgb(255, 227, 155);
--hsl-cream-brulee: hsl(43, 100, 80);
--hsv-cream-brulee: hsv(43, 39, 100);
/* Orange White */
--hex-orange-white: #eae3cd;
--rgb-orange-white: rgb(234, 227, 205);
--hsl-orange-white: hsl(46, 41, 86);
--hsv-orange-white: hsv(46, 12, 92);
/* Vis Vis */
--hex-vis-vis: #f9e496;
--rgb-vis-vis: rgb(249, 228, 150);
--hsl-vis-vis: hsl(47, 89, 78);
--hsv-vis-vis: hsv(47, 40, 98);
/* Quarter Spanish White */
--hex-quarter-spanish-white: #ebe2d2;
--rgb-quarter-spanish-white: rgb(235, 226, 210);
--hsl-quarter-spanish-white: hsl(38, 38, 87);
--hsv-quarter-spanish-white: hsv(38, 11, 92);
/* Spring Wood */
--hex-spring-wood: #e9e1d9;
--rgb-spring-wood: rgb(233, 225, 217);
--hsl-spring-wood: hsl(30, 27, 88);
--hsv-spring-wood: hsv(30, 7, 91);
/* Cape Honey */
--hex-cape-honey: #fee0a5;
--rgb-cape-honey: rgb(254, 224, 165);
--hsl-cape-honey: hsl(40, 98, 82);
--hsv-cape-honey: hsv(40, 35, 100);
/* Wan White */
--hex-wan-white: #e4e2dc;
--rgb-wan-white: rgb(228, 226, 220);
--hsl-wan-white: hsl(45, 13, 88);
--hsv-wan-white: hsv(45, 4, 89);
/* Bleach White */
--hex-bleach-white: #ebe1ce;
--rgb-bleach-white: rgb(235, 225, 206);
--hsl-bleach-white: hsl(39, 42, 86);
--hsv-bleach-white: hsv(39, 12, 92);
/* Navajo White */
--hex-navajo-white: #ffdead;
--rgb-navajo-white: rgb(255, 222, 173);
--hsl-navajo-white: hsl(36, 100, 84);
--hsv-navajo-white: hsv(36, 32, 100);
/* Peach-Yellow */
--hex-peach-yellow: #fadfad;
--rgb-peach-yellow: rgb(250, 223, 173);
--hsl-peach-yellow: hsl(39, 89, 83);
--hsv-peach-yellow: hsv(39, 31, 98);
/* Sazerac */
--hex-sazerac: #f5dec4;
--rgb-sazerac: rgb(245, 222, 196);
--hsl-sazerac: hsl(32, 71, 86);
--hsv-sazerac: hsv(32, 20, 96);
/* Pearl Lusta */
--hex-pearl-lusta: #eae0c8;
--rgb-pearl-lusta: rgb(234, 224, 200);
--hsl-pearl-lusta: hsl(42, 45, 85);
--hsv-pearl-lusta: hsv(42, 15, 92);
/* Buttermilk */
--hex-buttermilk: #f6e0a4;
--rgb-buttermilk: rgb(246, 224, 164);
--hsl-buttermilk: hsl(44, 82, 80);
--hsv-buttermilk: hsv(44, 33, 96);
/* Dutch White */
--hex-dutch-white: #f0dfbb;
--rgb-dutch-white: rgb(240, 223, 187);
--hsl-dutch-white: hsl(41, 64, 84);
--hsv-dutch-white: hsv(41, 22, 94);
/* Sandy Beach */
--hex-sandy-beach: #fedbb7;
--rgb-sandy-beach: rgb(254, 219, 183);
--hsl-sandy-beach: hsl(30, 97, 86);
--hsv-sandy-beach: hsv(30, 28, 100);
/* Wheat */
--hex-wheat: #f5deb3;
--rgb-wheat: rgb(245, 222, 179);
--hsl-wheat: hsl(39, 77, 83);
--hsv-wheat: hsv(39, 27, 96);
/* Vista White */
--hex-vista-white: #e3dfd9;
--rgb-vista-white: rgb(227, 223, 217);
--hsl-vista-white: hsl(36, 15, 87);
--hsv-vista-white: hsv(36, 4, 89);
/* Sweet Corn */
--hex-sweet-corn: #f9e176;
--rgb-sweet-corn: rgb(249, 225, 118);
--hsl-sweet-corn: hsl(49, 92, 72);
--hsv-sweet-corn: hsv(49, 53, 98);
/* Black Haze */
--hex-black-haze: #e0ded7;
--rgb-black-haze: rgb(224, 222, 215);
--hsl-black-haze: hsl(47, 13, 86);
--hsv-black-haze: hsv(47, 4, 88);
/* Sea Fog */
--hex-sea-fog: #dfddd6;
--rgb-sea-fog: rgb(223, 221, 214);
--hsl-sea-fog: hsl(47, 12, 86);
--hsv-sea-fog: hsv(47, 4, 87);
/* Double Pearl Lusta */
--hex-double-pearl-lusta: #e9dcbe;
--rgb-double-pearl-lusta: rgb(233, 220, 190);
--hsl-double-pearl-lusta: hsl(42, 49, 83);
--hsv-double-pearl-lusta: hsv(42, 18, 91);
/* Travertine */
--hex-travertine: #e2ddc7;
--rgb-travertine: rgb(226, 221, 199);
--hsl-travertine: hsl(49, 32, 83);
--hsv-travertine: hsv(49, 12, 89);
/* Porcelain */
--hex-porcelain: #dddcdb;
--rgb-porcelain: rgb(221, 220, 219);
--hsl-porcelain: hsl(30, 3, 86);
--hsv-porcelain: hsv(30, 1, 87);
/* Almond */
--hex-almond: #eed9c4;
--rgb-almond: rgb(238, 217, 196);
--hsl-almond: hsl(30, 55, 85);
--hsv-almond: hsv(30, 18, 93);
/* Half Spanish White */
--hex-half-spanish-white: #e6dbc7;
--rgb-half-spanish-white: rgb(230, 219, 199);
--hsl-half-spanish-white: hsl(39, 38, 84);
--hsv-half-spanish-white: hsv(39, 13, 90);
/* Solitaire */
--hex-solitaire: #eadac2;
--rgb-solitaire: rgb(234, 218, 194);
--hsl-solitaire: hsl(36, 49, 84);
--hsv-solitaire: hsv(36, 17, 92);
/* Frangipani */
--hex-frangipani: #ffd7a0;
--rgb-frangipani: rgb(255, 215, 160);
--hsl-frangipani: hsl(35, 100, 81);
--hsv-frangipani: hsv(35, 37, 100);
/* Merino */
--hex-merino: #e1dbd0;
--rgb-merino: rgb(225, 219, 208);
--hsl-merino: hsl(39, 22, 85);
--hsv-merino: hsv(39, 8, 88);
/* Champagne */
--hex-champagne: #eed9b6;
--rgb-champagne: rgb(238, 217, 182);
--hsl-champagne: hsl(37, 62, 82);
--hsv-champagne: hsv(38, 24, 93);
/* Pink Lady */
--hex-pink-lady: #f3d7b6;
--rgb-pink-lady: rgb(243, 215, 182);
--hsl-pink-lady: hsl(32, 72, 83);
--hsv-pink-lady: hsv(32, 25, 95);
/* Albescent White */
--hex-albescent-white: #e1dacb;
--rgb-albescent-white: rgb(225, 218, 203);
--hsl-albescent-white: hsl(41, 27, 84);
--hsv-albescent-white: hsv(41, 10, 88);
/* Buff */
--hex-buff: #f0dc82;
--rgb-buff: rgb(240, 220, 130);
--hsl-buff: hsl(49, 79, 73);
--hsv-buff: hsv(49, 46, 94);
/* Caramel */
--hex-caramel: #ffd59a;
--rgb-caramel: rgb(255, 213, 154);
--hsl-caramel: hsl(35, 100, 80);
--hsv-caramel: hsv(35, 40, 100);
/* Coconut Cream */
--hex-coconut-cream: #e1dabb;
--rgb-coconut-cream: rgb(225, 218, 187);
--hsl-coconut-cream: hsl(49, 39, 81);
--hsv-coconut-cream: hsv(49, 17, 88);
/* Mustard */
--hex-mustard: #ffdb58;
--rgb-mustard: rgb(255, 219, 88);
--hsl-mustard: hsl(47, 100, 67);
--hsv-mustard: hsv(47, 65, 100);
/* Sidecar */
--hex-sidecar: #e9d9a9;
--rgb-sidecar: rgb(233, 217, 169);
--hsl-sidecar: hsl(45, 59, 79);
--hsv-sidecar: hsv(45, 27, 91);
/* Milk White */
--hex-milk-white: #dcd9cd;
--rgb-milk-white: rgb(220, 217, 205);
--hsl-milk-white: hsl(48, 18, 83);
--hsv-milk-white: hsv(48, 7, 86);
/* Splash */
--hex-splash: #f1d79e;
--rgb-splash: rgb(241, 215, 158);
--hsl-splash: hsl(41, 75, 78);
--hsv-splash: hsv(41, 34, 95);
/* Salomie */
--hex-salomie: #ffd67b;
--rgb-salomie: rgb(255, 214, 123);
--hsl-salomie: hsl(41, 100, 74);
--hsv-salomie: hsv(41, 52, 100);
/* Golden Glow */
--hex-golden-glow: #f9d77e;
--rgb-golden-glow: rgb(249, 215, 126);
--hsl-golden-glow: hsl(43, 91, 74);
--hsv-golden-glow: hsv(43, 49, 98);
/* Beeswax */
--hex-beeswax: #e9d7ab;
--rgb-beeswax: rgb(233, 215, 171);
--hsl-beeswax: hsl(43, 58, 79);
--hsv-beeswax: hsv(43, 27, 91);
/* Gallery */
--hex-gallery: #dcd7d1;
--rgb-gallery: rgb(220, 215, 209);
--hsl-gallery: hsl(33, 14, 84);
--hsv-gallery: hsv(33, 5, 86);
/* Dandelion */
--hex-dandelion: #fed85d;
--rgb-dandelion: rgb(254, 216, 93);
--hsl-dandelion: hsl(46, 99, 68);
--hsv-dandelion: hsv(46, 63, 100);
/* Wheatfield */
--hex-wheatfield: #dfd7bd;
--rgb-wheatfield: rgb(223, 215, 189);
--hsl-wheatfield: hsl(46, 35, 81);
--hsv-wheatfield: hsv(46, 15, 87);
/* Astra */
--hex-astra: #edd5a6;
--rgb-astra: rgb(237, 213, 166);
--hsl-astra: hsl(40, 66, 79);
--hsv-astra: hsv(40, 30, 93);
/* Givry */
--hex-givry: #ebd4ae;
--rgb-givry: rgb(235, 212, 174);
--hsl-givry: hsl(37, 60, 80);
--hsv-givry: hsv(37, 26, 92);
/* Timberwolf */
--hex-timberwolf: #d9d6cf;
--rgb-timberwolf: rgb(217, 214, 207);
--hsl-timberwolf: hsl(42, 12, 83);
--hsv-timberwolf: hsv(42, 5, 85);
/* White Pointer */
--hex-white-pointer: #dad6cc;
--rgb-white-pointer: rgb(218, 214, 204);
--hsl-white-pointer: hsl(43, 16, 83);
--hsv-white-pointer: hsv(43, 6, 85);
/* Hampton */
--hex-hampton: #e8d4a2;
--rgb-hampton: rgb(232, 212, 162);
--hsl-hampton: hsl(43, 60, 77);
--hsv-hampton: hsv(43, 30, 91);
/* Tequila */
--hex-tequila: #f4d0a4;
--rgb-tequila: rgb(244, 208, 164);
--hsl-tequila: hsl(33, 78, 80);
--hsv-tequila: hsv(33, 33, 96);
/* Dairy Cream */
--hex-dairy-cream: #edd2a4;
--rgb-dairy-cream: rgb(237, 210, 164);
--hsl-dairy-cream: hsl(38, 67, 79);
--hsv-dairy-cream: hsv(38, 31, 93);
/* Sapling */
--hex-sapling: #e1d5a6;
--rgb-sapling: rgb(225, 213, 166);
--hsl-sapling: hsl(48, 50, 77);
--hsv-sapling: hsv(48, 26, 88);
/* Energy Yellow */
--hex-energy-yellow: #f5d752;
--rgb-energy-yellow: rgb(245, 215, 82);
--hsl-energy-yellow: hsl(49, 89, 64);
--hsv-energy-yellow: hsv(49, 67, 96);
/* Peach-Orange */
--hex-peach-orange: #ffcc99;
--rgb-peach-orange: rgb(255, 204, 153);
--hsl-peach-orange: hsl(30, 100, 80);
--hsv-peach-orange: hsv(30, 40, 100);
/* Spanish White */
--hex-spanish-white: #ded1b7;
--rgb-spanish-white: rgb(222, 209, 183);
--hsl-spanish-white: hsl(40, 37, 79);
--hsv-spanish-white: hsv(40, 18, 87);
/* Grandis */
--hex-grandis: #ffcd73;
--rgb-grandis: rgb(255, 205, 115);
--hsl-grandis: hsl(39, 100, 73);
--hsv-grandis: hsv(39, 55, 100);
/* Concrete */
--hex-concrete: #d2d1cd;
--rgb-concrete: rgb(210, 209, 205);
--hsl-concrete: hsl(48, 5, 81);
--hsv-concrete: hsv(48, 2, 82);
/* Ecru White */
--hex-ecru-white: #d6d1c0;
--rgb-ecru-white: rgb(214, 209, 192);
--hsl-ecru-white: hsl(46, 21, 80);
--hsv-ecru-white: hsv(46, 10, 84);
/* Blanc */
--hex-blanc: #d9d0c1;
--rgb-blanc: rgb(217, 208, 193);
--hsl-blanc: hsl(38, 24, 80);
--hsv-blanc: hsv(38, 11, 85);
/* Cherokee */
--hex-cherokee: #f5cd82;
--rgb-cherokee: rgb(245, 205, 130);
--hsl-cherokee: hsl(39, 85, 74);
--hsv-cherokee: hsv(39, 47, 96);
/* Kournikova */
--hex-kournikova: #f9d054;
--rgb-kournikova: rgb(249, 208, 84);
--hsl-kournikova: hsl(45, 93, 65);
--hsv-kournikova: hsv(45, 66, 98);
/* Double Colonial White */
--hex-double-colonial-white: #e4cf99;
--rgb-double-colonial-white: rgb(228, 207, 153);
--hsl-double-colonial-white: hsl(43, 58, 75);
--hsv-double-colonial-white: hsv(43, 33, 89);
/* Westar */
--hex-westar: #d4cfc5;
--rgb-westar: rgb(212, 207, 197);
--hsl-westar: hsl(40, 15, 80);
--hsv-westar: hsv(40, 7, 83);
/* Swirl */
--hex-swirl: #d7cec5;
--rgb-swirl: rgb(215, 206, 197);
--hsl-swirl: hsl(30, 18, 81);
--hsv-swirl: hsv(30, 8, 84);
/* Chamois */
--hex-chamois: #e8cd9a;
--rgb-chamois: rgb(232, 205, 154);
--hsl-chamois: hsl(39, 63, 76);
--hsv-chamois: hsv(39, 34, 91);
/* Chardonnay */
--hex-chardonnay: #ffc878;
--rgb-chardonnay: rgb(255, 200, 120);
--hsl-chardonnay: hsl(36, 100, 74);
--hsv-chardonnay: hsv(36, 53, 100);
/* Golden Sand */
--hex-golden-sand: #eace6a;
--rgb-golden-sand: rgb(234, 206, 106);
--hsl-golden-sand: hsl(47, 75, 67);
--hsv-golden-sand: hsv(47, 55, 92);
/* Sunglow */
--hex-sunglow: #ffcc33;
--rgb-sunglow: rgb(255, 204, 51);
--hsl-sunglow: hsl(45, 100, 60);
--hsv-sunglow: hsv(45, 80, 100);
/* New Tan */
--hex-new-tan: #ebc79e;
--rgb-new-tan: rgb(235, 199, 158);
--hsl-new-tan: hsl(32, 66, 77);
--hsv-new-tan: hsv(32, 33, 92);
/* Aths Special */
--hex-aths-special: #d5cbb2;
--rgb-aths-special: rgb(213, 203, 178);
--hsl-aths-special: hsl(43, 29, 77);
--hsv-aths-special: hsv(43, 16, 84);
/* Tahuna Sands */
--hex-tahuna-sands: #d8cc9b;
--rgb-tahuna-sands: rgb(216, 204, 155);
--hsl-tahuna-sands: hsl(48, 44, 73);
--hsv-tahuna-sands: hsv(48, 28, 85);
/* Marzipan */
--hex-marzipan: #ebc881;
--rgb-marzipan: rgb(235, 200, 129);
--hsl-marzipan: hsl(40, 73, 71);
--hsv-marzipan: hsv(40, 45, 92);
/* Sandwisp */
--hex-sandwisp: #decb81;
--rgb-sandwisp: rgb(222, 203, 129);
--hsl-sandwisp: hsl(48, 58, 69);
--hsv-sandwisp: hsv(48, 42, 87);
/* Festival */
--hex-festival: #eacc4a;
--rgb-festival: rgb(234, 204, 74);
--hsl-festival: hsl(49, 79, 60);
--hsv-festival: hsv(49, 68, 92);
/* Quill Grey */
--hex-quill-grey: #cbc9c0;
--rgb-quill-grey: rgb(203, 201, 192);
--hsl-quill-grey: hsl(49, 10, 77);
--hsv-quill-grey: hsv(49, 5, 80);
/* Turbo */
--hex-turbo: #f5cc23;
--rgb-turbo: rgb(245, 204, 35);
--hsl-turbo: hsl(48, 91, 55);
--hsv-turbo: hsv(48, 86, 96);
/* Golden Dream */
--hex-golden-dream: #f1cc2b;
--rgb-golden-dream: rgb(241, 204, 43);
--hsl-golden-dream: hsl(49, 88, 56);
--hsv-golden-dream: hsv(49, 82, 95);
/* Tangerine Yellow */
--hex-tangerine-yellow: #ffcc00;
--rgb-tangerine-yellow: rgb(255, 204, 0);
--hsl-tangerine-yellow: hsl(48, 100, 50);
--hsv-tangerine-yellow: hsv(48, 100, 100);
/* Parchment */
--hex-parchment: #d0c8b0;
--rgb-parchment: rgb(208, 200, 176);
--hsl-parchment: hsl(45, 25, 75);
--hsv-parchment: hsv(45, 15, 82);
/* Raffia */
--hex-raffia: #dcc6a0;
--rgb-raffia: rgb(220, 198, 160);
--hsl-raffia: hsl(38, 46, 75);
--hsv-raffia: hsv(38, 27, 86);
/* Stark White */
--hex-stark-white: #d2c6b6;
--rgb-stark-white: rgb(210, 198, 182);
--hsl-stark-white: hsl(34, 24, 77);
--hsv-stark-white: hsv(34, 13, 82);
/* Golden Tainoi */
--hex-golden-tainoi: #ffc152;
--rgb-golden-tainoi: rgb(255, 193, 82);
--hsl-golden-tainoi: hsl(38, 100, 66);
--hsv-golden-tainoi: hsv(38, 68, 100);
/* New Orleans */
--hex-new-orleans: #e4c385;
--rgb-new-orleans: rgb(228, 195, 133);
--hsl-new-orleans: hsl(39, 64, 71);
--hsv-new-orleans: hsv(39, 42, 89);
/* Double Spanish White */
--hex-double-spanish-white: #d2c3a3;
--rgb-double-spanish-white: rgb(210, 195, 163);
--hsl-double-spanish-white: hsl(41, 34, 73);
--hsv-double-spanish-white: hsv(41, 22, 82);
/* Saffron */
--hex-saffron: #f4c430;
--rgb-saffron: rgb(244, 196, 48);
--hsl-saffron: hsl(45, 90, 57);
--hsv-saffron: hsv(45, 80, 96);
/* Chalky */
--hex-chalky: #dfc281;
--rgb-chalky: rgb(223, 194, 129);
--hsl-chalky: hsl(41, 59, 69);
--hsv-chalky: hsv(41, 42, 87);
/* Zombie */
--hex-zombie: #ddc283;
--rgb-zombie: rgb(221, 194, 131);
--hsl-zombie: hsl(42, 57, 69);
--hsv-zombie: hsv(42, 41, 87);
/* Chenin */
--hex-chenin: #dec371;
--rgb-chenin: rgb(222, 195, 113);
--hsl-chenin: hsl(45, 62, 66);
--hsv-chenin: hsv(45, 49, 87);
/* Cream Can */
--hex-cream-can: #eec051;
--rgb-cream-can: rgb(238, 192, 81);
--hsl-cream-can: hsl(42, 82, 63);
--hsv-cream-can: hsv(42, 66, 93);
/* Moon Yellow */
--hex-moon-yellow: #f0c420;
--rgb-moon-yellow: rgb(240, 196, 32);
--hsl-moon-yellow: hsl(47, 87, 53);
--hsv-moon-yellow: hsv(47, 87, 94);
/* Golden Poppy */
--hex-golden-poppy: #fcc200;
--rgb-golden-poppy: rgb(252, 194, 0);
--hsl-golden-poppy: hsl(46, 100, 49);
--hsv-golden-poppy: hsv(46, 100, 99);
/* Corvette */
--hex-corvette: #e9ba81;
--rgb-corvette: rgb(233, 186, 129);
--hsl-corvette: hsl(33, 70, 71);
--hsv-corvette: hsv(33, 45, 91);
/* Soft Amber */
--hex-soft-amber: #cfbea5;
--rgb-soft-amber: rgb(207, 190, 165);
--hsl-soft-amber: hsl(36, 30, 73);
--hsv-soft-amber: hsv(36, 20, 81);
/* Straw */
--hex-straw: #dabe82;
--rgb-straw: rgb(218, 190, 130);
--hsl-straw: hsl(41, 54, 68);
--hsv-straw: hsv(41, 40, 85);
/* Amber */
--hex-amber: #ffbf00;
--rgb-amber: rgb(255, 191, 0);
--hsl-amber: hsl(45, 100, 50);
--hsv-amber: hsv(45, 100, 100);
/* Pancho */
--hex-pancho: #dfb992;
--rgb-pancho: rgb(223, 185, 146);
--hsl-pancho: hsl(30, 55, 72);
--hsv-pancho: hsv(30, 35, 87);
/* Maize */
--hex-maize: #e3b982;
--rgb-maize: rgb(227, 185, 130);
--hsl-maize: hsl(34, 63, 70);
--hsv-maize: hsv(34, 43, 89);
/* Koromiko */
--hex-koromiko: #feb552;
--rgb-koromiko: rgb(254, 181, 82);
--hsl-koromiko: hsl(35, 99, 66);
--hsv-koromiko: hsv(35, 68, 100);
/* Burly Wood */
--hex-burly-wood: #deb887;
--rgb-burly-wood: rgb(222, 184, 135);
--hsl-burly-wood: hsl(34, 57, 70);
--hsv-burly-wood: hsv(34, 39, 87);
/* Bright Sun */
--hex-bright-sun: #ecbd2c;
--rgb-bright-sun: rgb(236, 189, 44);
--hsl-bright-sun: hsl(45, 83, 55);
--hsv-bright-sun: hsv(45, 81, 93);
/* Cloud */
--hex-cloud: #c2bcb1;
--rgb-cloud: rgb(194, 188, 177);
--hsl-cloud: hsl(39, 12, 73);
--hsv-cloud: hsv(39, 9, 76);
/* Harvest Gold */
--hex-harvest-gold: #eab76a;
--rgb-harvest-gold: rgb(234, 183, 106);
--hsl-harvest-gold: hsl(36, 75, 67);
--hsv-harvest-gold: hsv(36, 55, 92);
/* Ronchi */
--hex-ronchi: #eab852;
--rgb-ronchi: rgb(234, 184, 82);
--hsl-ronchi: hsl(40, 78, 62);
--hsv-ronchi: hsv(40, 65, 92);
/* Selective Yellow */
--hex-selective-yellow: #ffba00;
--rgb-selective-yellow: rgb(255, 186, 0);
--hsl-selective-yellow: hsl(44, 100, 50);
--hsv-selective-yellow: hsv(44, 100, 100);
/* Supernova */
--hex-supernova: #ffb437;
--rgb-supernova: rgb(255, 180, 55);
--hsl-supernova: hsl(38, 100, 61);
--hsv-supernova: hsv(38, 78, 100);
/* Brandy */
--hex-brandy: #dcb68a;
--rgb-brandy: rgb(220, 182, 138);
--hsl-brandy: hsl(32, 54, 70);
--hsv-brandy: hsv(32, 37, 86);
/* Sisal */
--hex-sisal: #c5baa0;
--rgb-sisal: rgb(197, 186, 160);
--hsl-sisal: hsl(42, 24, 70);
--hsv-sisal: hsv(42, 19, 77);
/* Cotton Seed */
--hex-cotton-seed: #bfbaaf;
--rgb-cotton-seed: rgb(191, 186, 175);
--hsl-cotton-seed: hsl(41, 11, 72);
--hsv-cotton-seed: hsv(41, 8, 75);
/* Grain Brown */
--hex-grain-brown: #cab8a2;
--rgb-grain-brown: rgb(202, 184, 162);
--hsl-grain-brown: hsl(33, 27, 71);
--hsv-grain-brown: hsv(33, 20, 79);
/* Grey Nickel */
--hex-grey-nickel: #bdbaae;
--rgb-grey-nickel: rgb(189, 186, 174);
--hsl-grey-nickel: hsl(48, 10, 71);
--hsv-grey-nickel: hsv(48, 8, 74);
/* Texas Rose */
--hex-texas-rose: #fcb057;
--rgb-texas-rose: rgb(252, 176, 87);
--hsl-texas-rose: hsl(32, 96, 66);
--hsv-texas-rose: hsv(32, 65, 99);
/* Rajah */
--hex-rajah: #fcae60;
--rgb-rajah: rgb(252, 174, 96);
--hsl-rajah: hsl(30, 96, 68);
--hsv-rajah: hsv(30, 62, 99);
/* Vanilla */
--hex-vanilla: #ccb69b;
--rgb-vanilla: rgb(204, 182, 155);
--hsl-vanilla: hsl(33, 32, 70);
--hsv-vanilla: hsv(33, 24, 80);
/* Casablanca */
--hex-casablanca: #f0b253;
--rgb-casablanca: rgb(240, 178, 83);
--hsl-casablanca: hsl(36, 84, 63);
--hsv-casablanca: hsv(36, 65, 94);
/* Tacha */
--hex-tacha: #d2b960;
--rgb-tacha: rgb(210, 185, 96);
--hsl-tacha: hsl(47, 56, 60);
--hsv-tacha: hsv(47, 54, 82);
/* Tan */
--hex-tan: #d2b48c;
--rgb-tan: rgb(210, 180, 140);
--hsl-tan: hsl(34, 44, 69);
--hsv-tan: hsv(34, 33, 82);
/* Yellow Orange */
--hex-yellow-orange: #ffae42;
--rgb-yellow-orange: rgb(255, 174, 66);
--hsl-yellow-orange: hsl(34, 100, 63);
--hsv-yellow-orange: hsv(34, 74, 100);
/* Sour Dough */
--hex-sour-dough: #c9b59a;
--rgb-sour-dough: rgb(201, 181, 154);
--hsl-sour-dough: hsl(34, 30, 70);
--hsv-sour-dough: hsv(34, 23, 79);
/* Yuma */
--hex-yuma: #c7b882;
--rgb-yuma: rgb(199, 184, 130);
--hsl-yuma: hsl(47, 38, 65);
--hsv-yuma: hsv(47, 35, 78);
/* My Sin */
--hex-my-sin: #fdae45;
--rgb-my-sin: rgb(253, 174, 69);
--hsl-my-sin: hsl(34, 98, 63);
--hsv-my-sin: hsv(34, 73, 99);
/* Tea */
--hex-tea: #bfb5a2;
--rgb-tea: rgb(191, 181, 162);
--hsl-tea: hsl(39, 18, 69);
--hsv-tea: hsv(39, 15, 75);
/* Calico */
--hex-calico: #d5b185;
--rgb-calico: rgb(213, 177, 133);
--hsl-calico: hsl(33, 49, 68);
--hsv-calico: hsv(33, 38, 84);
/* Equator */
--hex-equator: #dab160;
--rgb-equator: rgb(218, 177, 96);
--hsl-equator: hsl(40, 62, 62);
--hsv-equator: hsv(40, 56, 85);
/* Akaroa */
--hex-akaroa: #beb29a;
--rgb-akaroa: rgb(190, 178, 154);
--hsl-akaroa: hsl(40, 22, 67);
--hsv-akaroa: hsv(40, 19, 75);
/* Gold Tips */
--hex-gold-tips: #e2b227;
--rgb-gold-tips: rgb(226, 178, 39);
--hsl-gold-tips: hsl(45, 76, 52);
--hsv-gold-tips: hsv(45, 83, 89);
/* Ecru */
--hex-ecru: #c2b280;
--rgb-ecru: rgb(194, 178, 128);
--hsl-ecru: hsl(45, 35, 63);
--hsv-ecru: hsv(45, 34, 76);
/* Old Gold */
--hex-old-gold: #cfb53b;
--rgb-old-gold: rgb(207, 181, 59);
--hsl-old-gold: hsl(49, 61, 52);
--hsv-old-gold: hsv(49, 71, 81);
/* Rob Roy */
--hex-rob-roy: #ddad56;
--rgb-rob-roy: rgb(221, 173, 86);
--hsl-rob-roy: hsl(39, 67, 60);
--hsv-rob-roy: hsv(39, 61, 87);
/* Putty */
--hex-putty: #cdae70;
--rgb-putty: rgb(205, 174, 112);
--hsl-putty: hsl(40, 48, 62);
--hsv-putty: hsv(40, 45, 80);
/* Tulip Tree */
--hex-tulip-tree: #e3ac3d;
--rgb-tulip-tree: rgb(227, 172, 61);
--hsl-tulip-tree: hsl(40, 75, 56);
--hsv-tulip-tree: hsv(40, 73, 89);
/* Dark Tangerine */
--hex-dark-tangerine: #ffa812;
--rgb-dark-tangerine: rgb(255, 168, 18);
--hsl-dark-tangerine: hsl(38, 100, 54);
--hsv-dark-tangerine: hsv(38, 93, 100);
/* Metallic Gold */
--hex-metallic-gold: #d4af37;
--rgb-metallic-gold: rgb(212, 175, 55);
--hsl-metallic-gold: hsl(46, 65, 52);
--hsv-metallic-gold: hsv(46, 74, 83);
/* Chino */
--hex-chino: #b8ad8a;
--rgb-chino: rgb(184, 173, 138);
--hsl-chino: hsl(46, 24, 63);
--hsv-chino: hsv(46, 25, 72);
/* Apache */
--hex-apache: #d3a95c;
--rgb-apache: rgb(211, 169, 92);
--hsl-apache: hsl(39, 57, 59);
--hsv-apache: hsv(39, 56, 83);
/* Orange */
--hex-orange: #ffa500;
--rgb-orange: rgb(255, 165, 0);
--hsl-orange: hsl(39, 100, 50);
--hsv-orange: hsv(39, 100, 100);
/* Bison Hide */
--hex-bison-hide: #b5ac94;
--rgb-bison-hide: rgb(181, 172, 148);
--hsl-bison-hide: hsl(44, 18, 65);
--hsv-bison-hide: hsv(44, 18, 71);
/* Lightning Yellow */
--hex-lightning-yellow: #f7a233;
--rgb-lightning-yellow: rgb(247, 162, 51);
--hsl-lightning-yellow: hsl(34, 92, 58);
--hsv-lightning-yellow: hsv(34, 79, 97);
/* Pavlova */
--hex-pavlova: #baab87;
--rgb-pavlova: rgb(186, 171, 135);
--hsl-pavlova: hsl(42, 27, 63);
--hsv-pavlova: hsv(42, 27, 73);
/* Cloudy */
--hex-cloudy: #b0a99f;
--rgb-cloudy: rgb(176, 169, 159);
--hsl-cloudy: hsl(35, 10, 66);
--hsv-cloudy: hsv(35, 10, 69);
/* Laser */
--hex-laser: #c6a95e;
--rgb-laser: rgb(198, 169, 94);
--hsl-laser: hsl(43, 48, 57);
--hsv-laser: hsv(43, 53, 78);
/* Yellow Sea */
--hex-yellow-sea: #f49f35;
--rgb-yellow-sea: rgb(244, 159, 53);
--hsl-yellow-sea: hsl(33, 90, 58);
--hsv-yellow-sea: hsv(33, 78, 96);
/* Sundance */
--hex-sundance: #c4aa4d;
--rgb-sundance: rgb(196, 170, 77);
--hsl-sundance: hsl(47, 50, 54);
--hsv-sundance: hsv(47, 61, 77);
/* Orange Peel */
--hex-orange-peel: #ffa000;
--rgb-orange-peel: rgb(255, 160, 0);
--hsl-orange-peel: hsl(38, 100, 50);
--hsv-orange-peel: hsv(38, 100, 100);
/* Galliano */
--hex-galliano: #d8a723;
--rgb-galliano: rgb(216, 167, 35);
--hsl-galliano: hsl(44, 72, 49);
--hsv-galliano: hsv(44, 84, 85);
/* Neon Carrot */
--hex-neon-carrot: #ff9933;
--rgb-neon-carrot: rgb(255, 153, 51);
--hsl-neon-carrot: hsl(30, 100, 60);
--hsv-neon-carrot: hsv(30, 80, 100);
/* Porsche */
--hex-porsche: #df9d5b;
--rgb-porsche: rgb(223, 157, 91);
--hsl-porsche: hsl(30, 67, 62);
--hsv-porsche: hsv(30, 59, 87);
/* Fire Bush */
--hex-fire-bush: #e09842;
--rgb-fire-bush: rgb(224, 152, 66);
--hsl-fire-bush: hsl(33, 72, 57);
--hsv-fire-bush: hsv(33, 71, 88);
/* Gamboge */
--hex-gamboge: #e49b0f;
--rgb-gamboge: rgb(228, 155, 15);
--hsl-gamboge: hsl(39, 88, 48);
--hsv-gamboge: hsv(39, 93, 89);
/* Mountain Mist */
--hex-mountain-mist: #a09f9c;
--rgb-mountain-mist: rgb(160, 159, 156);
--hsl-mountain-mist: hsl(45, 2, 62);
--hsv-mountain-mist: hsv(45, 3, 63);
/* Fallow */
--hex-fallow: #c19a6b;
--rgb-fallow: rgb(193, 154, 107);
--hsl-fallow: hsl(33, 41, 59);
--hsv-fallow: hsv(33, 45, 76);
/* Carrot Orange */
--hex-carrot-orange: #ed9121;
--rgb-carrot-orange: rgb(237, 145, 33);
--hsl-carrot-orange: hsl(33, 85, 53);
--hsv-carrot-orange: hsv(33, 86, 93);
/* Buttercup */
--hex-buttercup: #da9429;
--rgb-buttercup: rgb(218, 148, 41);
--hsl-buttercup: hsl(36, 71, 51);
--hsv-buttercup: hsv(36, 81, 85);
/* Napa */
--hex-napa: #a39a87;
--rgb-napa: rgb(163, 154, 135);
--hsl-napa: hsl(41, 13, 58);
--hsv-napa: hsv(41, 17, 64);
/* Dark Orange */
--hex-dark-orange: #ff8c00;
--rgb-dark-orange: rgb(255, 140, 0);
--hsl-dark-orange: hsl(33, 100, 50);
--hsv-dark-orange: hsv(33, 100, 100);
/* Grey Olive */
--hex-grey-olive: #a19a7f;
--rgb-grey-olive: rgb(161, 154, 127);
--hsl-grey-olive: hsl(48, 15, 56);
--hsv-grey-olive: hsv(48, 21, 63);
/* Nomad */
--hex-nomad: #a19986;
--rgb-nomad: rgb(161, 153, 134);
--hsl-nomad: hsl(42, 13, 58);
--hsv-nomad: hsv(42, 17, 63);
/* Bronco */
--hex-bronco: #a79781;
--rgb-bronco: rgb(167, 151, 129);
--hsl-bronco: hsl(35, 18, 58);
--hsv-bronco: hsv(35, 23, 65);
/* Buddha Gold */
--hex-buddha-gold: #bc9b1b;
--rgb-buddha-gold: rgb(188, 155, 27);
--hsl-buddha-gold: hsl(48, 75, 42);
--hsv-buddha-gold: hsv(48, 86, 74);
/* Husk */
--hex-husk: #b2994b;
--rgb-husk: rgb(178, 153, 75);
--hsl-husk: hsl(45, 41, 50);
--hsv-husk: hsv(45, 58, 70);
/* Tallow */
--hex-tallow: #a39977;
--rgb-tallow: rgb(163, 153, 119);
--hsl-tallow: hsl(46, 19, 55);
--hsv-tallow: hsv(46, 27, 64);
/* Malta */
--hex-malta: #a59784;
--rgb-malta: rgb(165, 151, 132);
--hsl-malta: hsl(35, 15, 58);
--hsv-malta: hsv(35, 20, 65);
/* Fuel Yellow */
--hex-fuel-yellow: #d19033;
--rgb-fuel-yellow: rgb(209, 144, 51);
--hsl-fuel-yellow: hsl(35, 63, 51);
--hsv-fuel-yellow: hsv(35, 76, 82);
/* Twine */
--hex-twine: #c19156;
--rgb-twine: rgb(193, 145, 86);
--hsl-twine: hsl(33, 46, 55);
--hsv-twine: hsv(33, 55, 76);
/* Roti */
--hex-roti: #b69642;
--rgb-roti: rgb(182, 150, 66);
--hsl-roti: hsl(43, 47, 49);
--hsv-roti: hsv(43, 64, 71);
/* Barley Corn */
--hex-barley-corn: #b6935c;
--rgb-barley-corn: rgb(182, 147, 92);
--hsl-barley-corn: hsl(37, 38, 54);
--hsv-barley-corn: hsv(37, 49, 71);
/* Sahara */
--hex-sahara: #b79826;
--rgb-sahara: rgb(183, 152, 38);
--hsl-sahara: hsl(47, 66, 43);
--hsv-sahara: hsv(47, 79, 72);
/* Tussock */
--hex-tussock: #bf914b;
--rgb-tussock: rgb(191, 145, 75);
--hsl-tussock: hsl(36, 48, 52);
--hsv-tussock: hsv(36, 61, 75);
/* Anzac */
--hex-anzac: #c68e3f;
--rgb-anzac: rgb(198, 142, 63);
--hsl-anzac: hsl(35, 54, 51);
--hsv-anzac: hsv(35, 68, 78);
/* Nugget */
--hex-nugget: #bc9229;
--rgb-nugget: rgb(188, 146, 41);
--hsl-nugget: hsl(43, 64, 45);
--hsv-nugget: hsv(43, 78, 74);
/* Tangerine */
--hex-tangerine: #f28500;
--rgb-tangerine: rgb(242, 133, 0);
--hsl-tangerine: hsl(33, 100, 47);
--hsv-tangerine: hsv(33, 100, 95);
/* Pizza */
--hex-pizza: #bf8d3c;
--rgb-pizza: rgb(191, 141, 60);
--hsl-pizza: hsl(37, 52, 49);
--hsv-pizza: hsv(37, 69, 75);
/* Hokey Pokey */
--hex-hokey-pokey: #bb8e34;
--rgb-hokey-pokey: rgb(187, 142, 52);
--hsl-hokey-pokey: hsl(40, 56, 47);
--hsv-hokey-pokey: hsv(40, 72, 73);
/* Turmeric */
--hex-turmeric: #ae9041;
--rgb-turmeric: rgb(174, 144, 65);
--hsl-turmeric: hsl(43, 46, 47);
--hsv-turmeric: hsv(43, 63, 68);
/* Gurkha */
--hex-gurkha: #989171;
--rgb-gurkha: rgb(152, 145, 113);
--hsl-gurkha: hsl(49, 16, 52);
--hsv-gurkha: hsv(49, 26, 60);
/* Peru */
--hex-peru: #cd853f;
--rgb-peru: rgb(205, 133, 63);
--hsl-peru: hsl(30, 59, 53);
--hsv-peru: hsv(30, 69, 80);
/* Mongoose */
--hex-mongoose: #a58b6f;
--rgb-mongoose: rgb(165, 139, 111);
--hsl-mongoose: hsl(31, 23, 54);
--hsv-mongoose: hsv(31, 33, 65);
/* Pale Oyster */
--hex-pale-oyster: #9c8d72;
--rgb-pale-oyster: rgb(156, 141, 114);
--hsl-pale-oyster: hsl(39, 18, 53);
--hsv-pale-oyster: hsv(39, 27, 61);
/* Marigold */
--hex-marigold: #b88a3d;
--rgb-marigold: rgb(184, 138, 61);
--hsl-marigold: hsl(38, 50, 48);
--hsv-marigold: hsv(38, 67, 72);
/* Luxor Gold */
--hex-luxor-gold: #ab8d3f;
--rgb-luxor-gold: rgb(171, 141, 63);
--hsl-luxor-gold: hsl(43, 46, 46);
--hsv-luxor-gold: hsv(43, 63, 67);
/* Dixie */
--hex-dixie: #cd8431;
--rgb-dixie: rgb(205, 132, 49);
--hsl-dixie: hsl(32, 61, 50);
--hsv-dixie: hsv(32, 76, 80);
/* Heathered Grey */
--hex-heathered-grey: #948c7e;
--rgb-heathered-grey: rgb(148, 140, 126);
--hsl-heathered-grey: hsl(38, 9, 54);
--hsv-heathered-grey: hsv(38, 15, 58);
/* Reef Gold */
--hex-reef-gold: #a98d36;
--rgb-reef-gold: rgb(169, 141, 54);
--hsl-reef-gold: hsl(45, 52, 44);
--hsv-reef-gold: hsv(45, 68, 66);
/* Teak */
--hex-teak: #ab8953;
--rgb-teak: rgb(171, 137, 83);
--hsl-teak: hsl(37, 35, 50);
--hsv-teak: hsv(37, 51, 67);
/* Alpine */
--hex-alpine: #ad8a3b;
--rgb-alpine: rgb(173, 138, 59);
--hsl-alpine: hsl(42, 49, 45);
--hsv-alpine: hsv(42, 66, 68);
/* Golden Bell */
--hex-golden-bell: #ca8136;
--rgb-golden-bell: rgb(202, 129, 54);
--hsl-golden-bell: hsl(30, 58, 50);
--hsv-golden-bell: hsv(30, 73, 79);
/* Geebung */
--hex-geebung: #c5832e;
--rgb-geebung: rgb(197, 131, 46);
--hsl-geebung: hsl(34, 62, 48);
--hsv-geebung: hsv(34, 77, 77);
/* Sandal */
--hex-sandal: #a3876a;
--rgb-sandal: rgb(163, 135, 106);
--hsl-sandal: hsl(31, 24, 53);
--hsv-sandal: hsv(31, 35, 64);
/* Bronze */
--hex-bronze: #cd7f32;
--rgb-bronze: rgb(205, 127, 50);
--hsl-bronze: hsl(30, 61, 50);
--hsv-bronze: hsv(30, 76, 80);
/* Muddy Waters */
--hex-muddy-waters: #a9844f;
--rgb-muddy-waters: rgb(169, 132, 79);
--hsl-muddy-waters: hsl(35, 36, 49);
--hsv-muddy-waters: hsv(35, 53, 66);
/* Dark Goldenrod */
--hex-dark-goldenrod: #b8860b;
--rgb-dark-goldenrod: rgb(184, 134, 11);
--hsl-dark-goldenrod: hsl(43, 89, 38);
--hsv-dark-goldenrod: hsv(43, 94, 72);
/* Schooner */
--hex-schooner: #8d8478;
--rgb-schooner: rgb(141, 132, 120);
--hsl-schooner: hsl(34, 8, 51);
--hsv-schooner: hsv(34, 15, 55);
/* Sorrell Brown */
--hex-sorrell-brown: #9d7f61;
--rgb-sorrell-brown: rgb(157, 127, 97);
--hsl-sorrell-brown: hsl(30, 24, 50);
--hsv-sorrell-brown: hsv(30, 38, 62);
/* Friar Grey */
--hex-friar-grey: #86837a;
--rgb-friar-grey: rgb(134, 131, 122);
--hsl-friar-grey: hsl(45, 5, 50);
--hsv-friar-grey: hsv(45, 9, 53);
/* Ochre */
--hex-ochre: #cc7722;
--rgb-ochre: rgb(204, 119, 34);
--hsl-ochre: hsl(30, 71, 47);
--hsv-ochre: hsv(30, 83, 80);
/* Mango Tango */
--hex-mango-tango: #e77200;
--rgb-mango-tango: rgb(231, 114, 0);
--hsl-mango-tango: hsl(30, 100, 45);
--hsv-mango-tango: hsv(30, 100, 91);
/* Granite Green */
--hex-granite-green: #8b8265;
--rgb-granite-green: rgb(139, 130, 101);
--hsl-granite-green: hsl(46, 16, 47);
--hsv-granite-green: hsv(46, 27, 55);
/* Mandalay */
--hex-mandalay: #b57b2e;
--rgb-mandalay: rgb(181, 123, 46);
--hsl-mandalay: hsl(34, 59, 45);
--hsv-mandalay: hsv(34, 75, 71);
/* Muesli */
--hex-muesli: #9e7e53;
--rgb-muesli: rgb(158, 126, 83);
--hsl-muesli: hsl(34, 31, 47);
--hsv-muesli: hsv(34, 47, 62);
/* Pirate Gold */
--hex-pirate-gold: #ba782a;
--rgb-pirate-gold: rgb(186, 120, 42);
--hsl-pirate-gold: hsl(33, 63, 45);
--hsv-pirate-gold: hsv(33, 77, 73);
/* Olive Haze */
--hex-olive-haze: #888064;
--rgb-olive-haze: rgb(136, 128, 100);
--hsl-olive-haze: hsl(47, 15, 46);
--hsv-olive-haze: hsv(47, 26, 53);
/* Hacienda */
--hex-hacienda: #9e8022;
--rgb-hacienda: rgb(158, 128, 34);
--hsl-hacienda: hsl(45, 65, 38);
--hsv-hacienda: hsv(45, 78, 62);
/* Squirrel */
--hex-squirrel: #8f7d6b;
--rgb-squirrel: rgb(143, 125, 107);
--hsl-squirrel: hsl(30, 14, 49);
--hsv-squirrel: hsv(30, 25, 56);
/* Concord */
--hex-concord: #827f79;
--rgb-concord: rgb(130, 127, 121);
--hsl-concord: hsl(40, 4, 49);
--hsv-concord: hsv(40, 7, 51);
/* Clay Creek */
--hex-clay-creek: #897e59;
--rgb-clay-creek: rgb(137, 126, 89);
--hsl-clay-creek: hsl(46, 21, 44);
--hsv-clay-creek: hsv(46, 35, 54);
/* Pale Brown */
--hex-pale-brown: #987654;
--rgb-pale-brown: rgb(152, 118, 84);
--hsl-pale-brown: hsl(30, 29, 46);
--hsv-pale-brown: hsv(30, 45, 60);
/* Hot Toddy */
--hex-hot-toddy: #a7752c;
--rgb-hot-toddy: rgb(167, 117, 44);
--hsl-hot-toddy: hsl(36, 58, 41);
--hsv-hot-toddy: hsv(36, 74, 65);
/* Arrowtown */
--hex-arrowtown: #827a67;
--rgb-arrowtown: rgb(130, 122, 103);
--hsl-arrowtown: hsl(42, 12, 46);
--hsv-arrowtown: hsv(42, 21, 51);
/* Sand Dune */
--hex-sand-dune: #867665;
--rgb-sand-dune: rgb(134, 118, 101);
--hsl-sand-dune: hsl(31, 14, 46);
--hsv-sand-dune: hsv(31, 25, 53);
/* Stonewall */
--hex-stonewall: #807661;
--rgb-stonewall: rgb(128, 118, 97);
--hsl-stonewall: hsl(41, 14, 44);
--hsv-stonewall: hsv(41, 24, 50);
/* Dove Grey */
--hex-dove-grey: #777672;
--rgb-dove-grey: rgb(119, 118, 114);
--hsl-dove-grey: hsl(48, 2, 46);
--hsv-dove-grey: hsv(48, 4, 47);
/* Buttered Rum */
--hex-buttered-rum: #9d702e;
--rgb-buttered-rum: rgb(157, 112, 46);
--hsl-buttered-rum: hsl(36, 55, 40);
--hsv-buttered-rum: hsv(36, 71, 62);
/* Cement */
--hex-cement: #857158;
--rgb-cement: rgb(133, 113, 88);
--hsl-cement: hsl(33, 20, 43);
--hsv-cement: hsv(33, 34, 52);
/* Shadow */
--hex-shadow: #837050;
--rgb-shadow: rgb(131, 112, 80);
--hsl-shadow: hsl(38, 24, 41);
--hsv-shadow: hsv(38, 39, 51);
/* Pablo */
--hex-pablo: #7a715c;
--rgb-pablo: rgb(122, 113, 92);
--hsl-pablo: hsl(42, 14, 42);
--hsv-pablo: hsv(42, 25, 48);
/* Corn Harvest */
--hex-corn-harvest: #8d702a;
--rgb-corn-harvest: rgb(141, 112, 42);
--hsl-corn-harvest: hsl(42, 54, 36);
--hsv-corn-harvest: hsv(42, 70, 55);
/* Sandstone */
--hex-sandstone: #786d5f;
--rgb-sandstone: rgb(120, 109, 95);
--hsl-sandstone: hsl(34, 12, 42);
--hsv-sandstone: hsv(34, 21, 47);
/* Ironside Grey */
--hex-ironside-grey: #706e66;
--rgb-ironside-grey: rgb(112, 110, 102);
--hsl-ironside-grey: hsl(48, 5, 42);
--hsv-ironside-grey: hsv(48, 9, 44);
/* Flint */
--hex-flint: #716e61;
--rgb-flint: rgb(113, 110, 97);
--hsl-flint: hsl(49, 8, 41);
--hsv-flint: hsv(49, 14, 44);
/* Go Ben */
--hex-go-ben: #786e4c;
--rgb-go-ben: rgb(120, 110, 76);
--hsl-go-ben: hsl(46, 22, 38);
--hsv-go-ben: hsv(46, 37, 47);
/* Peat */
--hex-peat: #766d52;
--rgb-peat: rgb(118, 109, 82);
--hsl-peat: hsl(45, 18, 39);
--hsv-peat: hsv(45, 31, 46);
/* Golden Brown */
--hex-golden-brown: #996515;
--rgb-golden-brown: rgb(153, 101, 21);
--hsl-golden-brown: hsl(36, 76, 34);
--hsv-golden-brown: hsv(36, 86, 60);
/* Yukon Gold */
--hex-yukon-gold: #826a21;
--rgb-yukon-gold: rgb(130, 106, 33);
--hsl-yukon-gold: hsl(45, 60, 32);
--hsv-yukon-gold: hsv(45, 75, 51);
/* Crocodile */
--hex-crocodile: #706950;
--rgb-crocodile: rgb(112, 105, 80);
--hsl-crocodile: hsl(47, 17, 38);
--hsv-crocodile: hsv(47, 29, 44);
/* McKenzie */
--hex-mckenzie: #8c6338;
--rgb-mckenzie: rgb(140, 99, 56);
--hsl-mckenzie: hsl(31, 43, 38);
--hsv-mckenzie: hsv(31, 60, 55);
/* Coffee */
--hex-coffee: #726751;
--rgb-coffee: rgb(114, 103, 81);
--hsl-coffee: hsl(40, 17, 38);
--hsv-coffee: hsv(40, 29, 45);
/* Rusty Nail */
--hex-rusty-nail: #8d5f2c;
--rgb-rusty-nail: rgb(141, 95, 44);
--hsl-rusty-nail: hsl(32, 52, 36);
--hsv-rusty-nail: hsv(32, 69, 55);
/* Afghan Tan */
--hex-afghan-tan: #905e26;
--rgb-afghan-tan: rgb(144, 94, 38);
--hsl-afghan-tan: hsl(32, 58, 36);
--hsv-afghan-tan: hsv(32, 74, 56);
/* Soya Bean */
--hex-soya-bean: #6f634b;
--rgb-soya-bean: rgb(111, 99, 75);
--hsl-soya-bean: hsl(40, 19, 36);
--hsv-soya-bean: hsv(40, 32, 44);
/* Yellow Metal */
--hex-yellow-metal: #73633e;
--rgb-yellow-metal: rgb(115, 99, 62);
--hsl-yellow-metal: hsl(42, 30, 35);
--hsv-yellow-metal: hsv(42, 46, 45);
/* Himalaya */
--hex-himalaya: #736330;
--rgb-himalaya: rgb(115, 99, 48);
--hsl-himalaya: hsl(46, 41, 32);
--hsv-himalaya: hsv(46, 58, 45);
/* Makara */
--hex-makara: #695f50;
--rgb-makara: rgb(105, 95, 80);
--hsl-makara: hsl(36, 14, 36);
--hsv-makara: hsv(36, 24, 41);
/* Hot Curry */
--hex-hot-curry: #815b28;
--rgb-hot-curry: rgb(129, 91, 40);
--hsl-hot-curry: hsl(34, 53, 33);
--hsv-hot-curry: hsv(34, 69, 51);
/* Shingle Fawn */
--hex-shingle-fawn: #745937;
--rgb-shingle-fawn: rgb(116, 89, 55);
--hsl-shingle-fawn: hsl(33, 36, 34);
--hsv-shingle-fawn: hsv(33, 53, 45);
/* Tobacco Brown */
--hex-tobacco-brown: #6d5843;
--rgb-tobacco-brown: rgb(109, 88, 67);
--hsl-tobacco-brown: hsl(30, 24, 35);
--hsv-tobacco-brown: hsv(30, 39, 43);
/* Horses Neck */
--hex-horses-neck: #6d562c;
--rgb-horses-neck: rgb(109, 86, 44);
--hsl-horses-neck: hsl(39, 42, 30);
--hsv-horses-neck: hsv(39, 60, 43);
/* Millbrook */
--hex-millbrook: #595648;
--rgb-millbrook: rgb(89, 86, 72);
--hsl-millbrook: hsl(49, 11, 32);
--hsv-millbrook: hsv(49, 19, 35);
/* Judge Grey */
--hex-judge-grey: #5d5346;
--rgb-judge-grey: rgb(93, 83, 70);
--hsl-judge-grey: hsl(34, 14, 32);
--hsv-judge-grey: hsv(34, 25, 36);
/* Masala */
--hex-masala: #57534b;
--rgb-masala: rgb(87, 83, 75);
--hsl-masala: hsl(40, 7, 32);
--hsv-masala: hsv(40, 14, 34);
/* West Coast */
--hex-west-coast: #5c512f;
--rgb-west-coast: rgb(92, 81, 47);
--hsl-west-coast: hsl(45, 32, 27);
--hsv-west-coast: hsv(45, 49, 36);
/* Dune */
--hex-dune: #514f4a;
--rgb-dune: rgb(81, 79, 74);
--hsl-dune: hsl(43, 5, 30);
--hsv-dune: hsv(43, 9, 32);
/* Raw Umber */
--hex-raw-umber: #734a12;
--rgb-raw-umber: rgb(115, 74, 18);
--hsl-raw-umber: hsl(35, 73, 26);
--hsv-raw-umber: hsv(35, 84, 45);
/* Panda */
--hex-panda: #544f3a;
--rgb-panda: rgb(84, 79, 58);
--hsl-panda: hsl(48, 18, 28);
--hsv-panda: hsv(48, 31, 33);
/* Mondo */
--hex-mondo: #554d42;
--rgb-mondo: rgb(85, 77, 66);
--hsl-mondo: hsl(35, 13, 30);
--hsv-mondo: hsv(35, 22, 33);
/* Dallas */
--hex-dallas: #664a2d;
--rgb-dallas: rgb(102, 74, 45);
--hsl-dallas: hsl(31, 39, 29);
--hsv-dallas: hsv(31, 56, 40);
/* Cafe Royale */
--hex-cafe-royale: #6a4928;
--rgb-cafe-royale: rgb(106, 73, 40);
--hsl-cafe-royale: hsl(30, 45, 29);
--hsv-cafe-royale: hsv(30, 62, 42);
/* Bronze Olive */
--hex-bronze-olive: #584c25;
--rgb-bronze-olive: rgb(88, 76, 37);
--hsl-bronze-olive: hsl(46, 41, 25);
--hsv-bronze-olive: hsv(46, 58, 35);
/* Metallic Bronze */
--hex-metallic-bronze: #554a3c;
--rgb-metallic-bronze: rgb(85, 74, 60);
--hsl-metallic-bronze: hsl(34, 17, 28);
--hsv-metallic-bronze: hsv(34, 29, 33);
/* Antique Brass */
--hex-antique-brass: #6c461f;
--rgb-antique-brass: rgb(108, 70, 31);
--hsl-antique-brass: hsl(30, 55, 27);
--hsv-antique-brass: hsv(30, 71, 42);
/* Punga */
--hex-punga: #534931;
--rgb-punga: rgb(83, 73, 49);
--hsl-punga: hsl(42, 26, 26);
--hsv-punga: hsv(42, 41, 33);
/* Dark Brown */
--hex-dark-brown: #654321;
--rgb-dark-brown: rgb(101, 67, 33);
--hsl-dark-brown: hsl(30, 51, 26);
--hsv-dark-brown: hsv(30, 67, 40);
/* Space Shuttle */
--hex-space-shuttle: #4b433b;
--rgb-space-shuttle: rgb(75, 67, 59);
--hsl-space-shuttle: hsl(30, 12, 26);
--hsv-space-shuttle: hsv(30, 21, 29);
/* Deep Bronze */
--hex-deep-bronze: #51412d;
--rgb-deep-bronze: rgb(81, 65, 45);
--hsl-deep-bronze: hsl(33, 29, 25);
--hsv-deep-bronze: hsv(33, 44, 32);
/* Onion */
--hex-onion: #48412b;
--rgb-onion: rgb(72, 65, 43);
--hsl-onion: hsl(46, 25, 23);
--hsv-onion: hsv(46, 40, 28);
/* Woodrush */
--hex-woodrush: #45402b;
--rgb-woodrush: rgb(69, 64, 43);
--hsl-woodrush: hsl(48, 23, 22);
--hsv-woodrush: hsv(48, 38, 27);
/* Madras */
--hex-madras: #473e23;
--rgb-madras: rgb(71, 62, 35);
--hsl-madras: hsl(45, 34, 21);
--hsv-madras: hsv(45, 51, 28);
/* Clinker */
--hex-clinker: #463623;
--rgb-clinker: rgb(70, 54, 35);
--hsl-clinker: hsl(33, 33, 21);
--hsv-clinker: hsv(33, 50, 27);
/* Birch */
--hex-birch: #3f3726;
--rgb-birch: rgb(63, 55, 38);
--hsl-birch: hsl(41, 25, 20);
--hsv-birch: hsv(41, 40, 25);
/* Jacko Bean */
--hex-jacko-bean: #413628;
--rgb-jacko-bean: rgb(65, 54, 40);
--hsl-jacko-bean: hsl(34, 24, 21);
--hsv-jacko-bean: hsv(34, 38, 25);
/* Mikado */
--hex-mikado: #3f3623;
--rgb-mikado: rgb(63, 54, 35);
--hsl-mikado: hsl(41, 29, 19);
--hsv-mikado: hsv(41, 44, 25);
/* Graphite */
--hex-graphite: #383428;
--rgb-graphite: rgb(56, 52, 40);
--hsl-graphite: hsl(45, 17, 19);
--hsv-graphite: hsv(45, 29, 22);
/* Creole */
--hex-creole: #393227;
--rgb-creole: rgb(57, 50, 39);
--hsl-creole: hsl(37, 19, 19);
--hsv-creole: hsv(37, 32, 22);
/* Acadia */
--hex-acadia: #35312c;
--rgb-acadia: rgb(53, 49, 44);
--hsl-acadia: hsl(33, 9, 19);
--hsv-acadia: hsv(33, 17, 21);
/* Black Magic */
--hex-black-magic: #332c22;
--rgb-black-magic: rgb(51, 44, 34);
--hsl-black-magic: hsl(35, 20, 17);
--hsv-black-magic: hsv(35, 33, 20);
/* yellow tones */
/* Ivory */
--hex-ivory: #fffff0;
--rgb-ivory: rgb(255, 255, 240);
--hsl-ivory: hsl(60, 100, 97);
--hsv-ivory: hsv(60, 6, 100);
/* Light Yellow */
--hex-light-yellow: #ffffe0;
--rgb-light-yellow: rgb(255, 255, 224);
--hsl-light-yellow: hsl(60, 100, 94);
--hsv-light-yellow: hsv(60, 12, 100);
/* Cream */
--hex-cream: #fffdd0;
--rgb-cream: rgb(255, 253, 208);
--hsl-cream: hsl(57, 100, 91);
--hsv-cream: hsv(57, 18, 100);
/* Lemon Chiffon */
--hex-lemon-chiffon: #fffacd;
--rgb-lemon-chiffon: rgb(255, 250, 205);
--hsl-lemon-chiffon: hsl(54, 100, 90);
--hsv-lemon-chiffon: hsv(54, 20, 100);
/* Canary */
--hex-canary: #ffff99;
--rgb-canary: rgb(255, 255, 153);
--hsl-canary: hsl(60, 100, 80);
--hsv-canary: hsv(60, 40, 100);
/* Light Goldenrod Yellow */
--hex-light-goldenrod-yellow: #fafad2;
--rgb-light-goldenrod-yellow: rgb(250, 250, 210);
--hsl-light-goldenrod-yellow: hsl(60, 80, 90);
--hsv-light-goldenrod-yellow: hsv(60, 16, 98);
/* Chilean Heath */
--hex-chilean-heath: #f9f7de;
--rgb-chilean-heath: rgb(249, 247, 222);
--hsl-chilean-heath: hsl(56, 69, 92);
--hsv-chilean-heath: hsv(56, 11, 98);
/* Twilight Blue */
--hex-twilight-blue: #f4f6ec;
--rgb-twilight-blue: rgb(244, 246, 236);
--hsl-twilight-blue: hsl(72, 36, 95);
--hsv-twilight-blue: hsv(72, 4, 96);
/* Carla */
--hex-carla: #f5f9cb;
--rgb-carla: rgb(245, 249, 203);
--hsl-carla: hsl(65, 79, 89);
--hsv-carla: hsv(65, 18, 98);
/* Promenade */
--hex-promenade: #f8f6df;
--rgb-promenade: rgb(248, 246, 223);
--hsl-promenade: hsl(55, 64, 92);
--hsv-promenade: hsv(55, 10, 97);
/* White Nectar */
--hex-white-nectar: #f8f6d8;
--rgb-white-nectar: rgb(248, 246, 216);
--hsl-white-nectar: hsl(56, 70, 91);
--hsv-white-nectar: hsv(56, 13, 97);
/* Laser Lemon */
--hex-laser-lemon: #ffff66;
--rgb-laser-lemon: rgb(255, 255, 102);
--hsl-laser-lemon: hsl(60, 100, 70);
--hsv-laser-lemon: hsv(60, 60, 100);
/* Beige */
--hex-beige: #f5f5dc;
--rgb-beige: rgb(245, 245, 220);
--hsl-beige: hsl(60, 56, 91);
--hsv-beige: hsv(60, 10, 96);
/* Hint Of Yellow */
--hex-hint-of-yellow: #f6f5d7;
--rgb-hint-of-yellow: rgb(246, 245, 215);
--hsl-hint-of-yellow: hsl(58, 63, 90);
--hsv-hint-of-yellow: hsv(58, 13, 96);
/* Mimosa */
--hex-mimosa: #f5f5cc;
--rgb-mimosa: rgb(245, 245, 204);
--hsl-mimosa: hsl(60, 67, 88);
--hsv-mimosa: hsv(60, 17, 96);
/* Rice Flower */
--hex-rice-flower: #eff5d1;
--rgb-rice-flower: rgb(239, 245, 209);
--hsl-rice-flower: hsl(70, 64, 89);
--hsv-rice-flower: hsv(70, 15, 96);
/* Shalimar */
--hex-shalimar: #f8f6a8;
--rgb-shalimar: rgb(248, 246, 168);
--hsl-shalimar: hsl(59, 85, 82);
--hsv-shalimar: hsv(59, 32, 97);
/* Moon Glow */
--hex-moon-glow: #f5f3ce;
--rgb-moon-glow: rgb(245, 243, 206);
--hsl-moon-glow: hsl(57, 66, 88);
--hsv-moon-glow: hsv(57, 16, 96);
/* Corn Field */
--hex-corn-field: #f8f3c4;
--rgb-corn-field: rgb(248, 243, 196);
--hsl-corn-field: hsl(54, 79, 87);
--hsv-corn-field: hsv(54, 21, 97);
/* Cumulus */
--hex-cumulus: #f5f4c1;
--rgb-cumulus: rgb(245, 244, 193);
--hsl-cumulus: hsl(59, 72, 86);
--hsv-cumulus: hsv(59, 21, 96);
/* Australian Mint */
--hex-australian-mint: #eff8aa;
--rgb-australian-mint: rgb(239, 248, 170);
--hsl-australian-mint: hsl(67, 85, 82);
--hsv-australian-mint: hsv(67, 31, 97);
/* Chiffon */
--hex-chiffon: #f0f5bb;
--rgb-chiffon: rgb(240, 245, 187);
--hsl-chiffon: hsl(65, 74, 85);
--hsv-chiffon: hsv(65, 24, 96);
/* Alabaster */
--hex-alabaster: #f2f0e6;
--rgb-alabaster: rgb(242, 240, 230);
--hsl-alabaster: hsl(50, 32, 93);
--hsv-alabaster: hsv(50, 5, 95);
/* Pale Prim */
--hex-pale-prim: #f9f59f;
--rgb-pale-prim: rgb(249, 245, 159);
--hsl-pale-prim: hsl(57, 88, 80);
--hsv-pale-prim: hsv(57, 36, 98);
/* Spring Sun */
--hex-spring-sun: #f1f1c6;
--rgb-spring-sun: rgb(241, 241, 198);
--hsl-spring-sun: hsl(60, 61, 86);
--hsv-spring-sun: hsv(60, 18, 95);
/* Sugar Cane */
--hex-sugar-cane: #eeefdf;
--rgb-sugar-cane: rgb(238, 239, 223);
--hsl-sugar-cane: hsl(64, 33, 91);
--hsv-sugar-cane: hsv(64, 7, 94);
/* Milan */
--hex-milan: #f6f493;
--rgb-milan: rgb(246, 244, 147);
--hsl-milan: hsl(59, 85, 77);
--hsv-milan: hsv(59, 40, 96);
/* Tidal */
--hex-tidal: #f0f590;
--rgb-tidal: rgb(240, 245, 144);
--hsl-tidal: hsl(63, 83, 76);
--hsv-tidal: hsv(63, 41, 96);
/* Yellow */
--hex-yellow: #ffff00;
--rgb-yellow: rgb(255, 255, 0);
--hsl-yellow: hsl(60, 100, 50);
--hsv-yellow: hsv(60, 100, 100);
/* Rum Swizzle */
--hex-rum-swizzle: #f1edd4;
--rgb-rum-swizzle: rgb(241, 237, 212);
--hsl-rum-swizzle: hsl(52, 51, 89);
--hsv-rum-swizzle: hsv(52, 12, 95);
/* Portafino */
--hex-portafino: #f4f09b;
--rgb-portafino: rgb(244, 240, 155);
--hsl-portafino: hsl(57, 80, 78);
--hsv-portafino: hsv(57, 36, 96);
/* Jonquil */
--hex-jonquil: #eef293;
--rgb-jonquil: rgb(238, 242, 147);
--hsl-jonquil: hsl(63, 79, 76);
--hsv-jonquil: hsv(63, 39, 95);
/* Witch Haze */
--hex-witch-haze: #fbf073;
--rgb-witch-haze: rgb(251, 240, 115);
--hsl-witch-haze: hsl(55, 94, 72);
--hsv-witch-haze: hsv(55, 54, 98);
/* Drover */
--hex-drover: #fbeb9b;
--rgb-drover: rgb(251, 235, 155);
--hsl-drover: hsl(50, 92, 80);
--hsv-drover: hsv(50, 38, 98);
/* Dolly */
--hex-dolly: #f5f171;
--rgb-dolly: rgb(245, 241, 113);
--hsl-dolly: hsl(58, 87, 70);
--hsv-dolly: hsv(58, 54, 96);
/* Picasso */
--hex-picasso: #f8ea97;
--rgb-picasso: rgb(248, 234, 151);
--hsl-picasso: hsl(51, 87, 78);
--hsv-picasso: hsv(51, 39, 97);
/* Half And Half */
--hex-half-and-half: #ede7c8;
--rgb-half-and-half: rgb(237, 231, 200);
--hsl-half-and-half: hsl(50, 51, 86);
--hsv-half-and-half: hsv(50, 16, 93);
/* Chartreuse Yellow */
--hex-chartreuse-yellow: #dfff00;
--rgb-chartreuse-yellow: rgb(223, 255, 0);
--hsl-chartreuse-yellow: hsl(68, 100, 50);
--hsv-chartreuse-yellow: hsv(68, 100, 100);
/* Medium Goldenrod */
--hex-medium-goldenrod: #eaeaae;
--rgb-medium-goldenrod: rgb(234, 234, 174);
--hsl-medium-goldenrod: hsl(60, 59, 80);
--hsv-medium-goldenrod: hsv(60, 26, 92);
/* Black Squeeze */
--hex-black-squeeze: #e5e6df;
--rgb-black-squeeze: rgb(229, 230, 223);
--hsl-black-squeeze: hsl(69, 12, 89);
--hsv-black-squeeze: hsv(69, 3, 90);
/* Corn */
--hex-corn: #fbec5d;
--rgb-corn: rgb(251, 236, 93);
--hsl-corn: hsl(54, 95, 67);
--hsv-corn: hsv(54, 63, 98);
/* Pale Goldenrod */
--hex-pale-goldenrod: #eee8aa;
--rgb-pale-goldenrod: rgb(238, 232, 170);
--hsl-pale-goldenrod: hsl(55, 67, 80);
--hsv-pale-goldenrod: hsv(55, 29, 93);
/* Black White */
--hex-black-white: #e5e4db;
--rgb-black-white: rgb(229, 228, 219);
--hsl-black-white: hsl(54, 16, 88);
--hsv-black-white: hsv(54, 4, 90);
/* Paris Daisy */
--hex-paris-daisy: #fbeb50;
--rgb-paris-daisy: rgb(251, 235, 80);
--hsl-paris-daisy: hsl(54, 96, 65);
--hsv-paris-daisy: hsv(54, 68, 98);
/* Snow Drift */
--hex-snow-drift: #e3e3dc;
--rgb-snow-drift: rgb(227, 227, 220);
--hsl-snow-drift: hsl(60, 11, 88);
--hsv-snow-drift: hsv(60, 3, 89);
/* Honeysuckle */
--hex-honeysuckle: #e8ed69;
--rgb-honeysuckle: rgb(232, 237, 105);
--hsl-honeysuckle: hsl(62, 79, 67);
--hsv-honeysuckle: hsv(62, 56, 93);
/* Electric Lime */
--hex-electric-lime: #ccff00;
--rgb-electric-lime: rgb(204, 255, 0);
--hsl-electric-lime: hsl(72, 100, 50);
--hsv-electric-lime: hsv(72, 100, 100);
/* Khaki */
--hex-khaki: #f0e68c;
--rgb-khaki: rgb(240, 230, 140);
--hsl-khaki: hsl(54, 77, 75);
--hsv-khaki: hsv(54, 42, 94);
/* Frost */
--hex-frost: #e1e4c5;
--rgb-frost: rgb(225, 228, 197);
--hsl-frost: hsl(66, 36, 83);
--hsv-frost: hsv(66, 14, 89);
/* Tusk */
--hex-tusk: #e3e5b1;
--rgb-tusk: rgb(227, 229, 177);
--hsl-tusk: hsl(62, 50, 80);
--hsv-tusk: hsv(62, 23, 90);
/* Texas */
--hex-texas: #ece67e;
--rgb-texas: rgb(236, 230, 126);
--hsl-texas: hsl(57, 74, 71);
--hsv-texas: hsv(57, 47, 93);
/* Mindaro */
--hex-mindaro: #daea6f;
--rgb-mindaro: rgb(218, 234, 111);
--hsl-mindaro: hsl(68, 75, 68);
--hsv-mindaro: hsv(68, 53, 92);
/* Lemon */
--hex-lemon: #fde910;
--rgb-lemon: rgb(253, 233, 16);
--hsl-lemon: hsl(55, 98, 53);
--hsv-lemon: hsv(55, 94, 99);
/* Gorse */
--hex-gorse: #fde336;
--rgb-gorse: rgb(253, 227, 54);
--hsl-gorse: hsl(52, 98, 60);
--hsv-gorse: hsv(52, 79, 99);
/* Green White */
--hex-green-white: #deddcb;
--rgb-green-white: rgb(222, 221, 203);
--hsl-green-white: hsl(57, 22, 83);
--hsv-green-white: hsv(57, 9, 87);
/* Light Goldenrod */
--hex-light-goldenrod: #eedd82;
--rgb-light-goldenrod: rgb(238, 221, 130);
--hsl-light-goldenrod: hsl(51, 76, 72);
--hsv-light-goldenrod: hsv(51, 45, 93);
/* Primrose */
--hex-primrose: #e4de8e;
--rgb-primrose: rgb(228, 222, 142);
--hsl-primrose: hsl(56, 61, 73);
--hsv-primrose: hsv(56, 38, 89);
/* Flax */
--hex-flax: #eedc82;
--rgb-flax: rgb(238, 220, 130);
--hsl-flax: hsl(50, 76, 72);
--hsv-flax: hsv(50, 45, 93);
/* Loafer */
--hex-loafer: #dbd9c2;
--rgb-loafer: rgb(219, 217, 194);
--hsl-loafer: hsl(55, 26, 81);
--hsv-loafer: hsv(55, 11, 86);
/* Mint Julep */
--hex-mint-julep: #e0d8a7;
--rgb-mint-julep: rgb(224, 216, 167);
--hsl-mint-julep: hsl(52, 48, 77);
--hsv-mint-julep: hsv(52, 25, 88);
/* Golden Yellow */
--hex-golden-yellow: #ffdf00;
--rgb-golden-yellow: rgb(255, 223, 0);
--hsl-golden-yellow: hsl(52, 100, 50);
--hsv-golden-yellow: hsv(52, 100, 100);
/* Golden Fizz */
--hex-golden-fizz: #ebde31;
--rgb-golden-fizz: rgb(235, 222, 49);
--hsl-golden-fizz: hsl(56, 82, 56);
--hsv-golden-fizz: hsv(56, 79, 92);
/* Goldenrod */
--hex-goldenrod: #dbdb70;
--rgb-goldenrod: rgb(219, 219, 112);
--hsl-goldenrod: hsl(60, 60, 65);
--hsv-goldenrod: hsv(60, 49, 86);
/* Manz */
--hex-manz: #e4db55;
--rgb-manz: rgb(228, 219, 85);
--hsl-manz: hsl(56, 73, 61);
--hsv-manz: hsv(56, 63, 89);
/* Starship */
--hex-starship: #e3dd39;
--rgb-starship: rgb(227, 221, 57);
--hsl-starship: hsl(58, 75, 56);
--hsv-starship: hsv(58, 75, 89);
/* Pear */
--hex-pear: #d1e231;
--rgb-pear: rgb(209, 226, 49);
--hsl-pear: hsl(66, 75, 54);
--hsv-pear: hsv(66, 78, 89);
/* Portica */
--hex-portica: #f0d555;
--rgb-portica: rgb(240, 213, 85);
--hsl-portica: hsl(50, 84, 64);
--hsv-portica: hsv(50, 65, 94);
/* Celeste */
--hex-celeste: #d2d2c0;
--rgb-celeste: rgb(210, 210, 192);
--hsl-celeste: hsl(60, 17, 79);
--hsv-celeste: hsv(60, 9, 82);
/* School Bus Yellow */
--hex-school-bus-yellow: #ffd800;
--rgb-school-bus-yellow: rgb(255, 216, 0);
--hsl-school-bus-yellow: hsl(51, 100, 50);
--hsv-school-bus-yellow: hsv(51, 100, 100);
/* Orinoco */
--hex-orinoco: #d2d3b3;
--rgb-orinoco: rgb(210, 211, 179);
--hsl-orinoco: hsl(62, 27, 76);
--hsv-orinoco: hsv(62, 15, 83);
/* Wild Rice */
--hex-wild-rice: #e3d474;
--rgb-wild-rice: rgb(227, 212, 116);
--hsl-wild-rice: hsl(52, 66, 67);
--hsv-wild-rice: hsv(52, 49, 89);
/* Gold */
--hex-gold: #ffd700;
--rgb-gold: rgb(255, 215, 0);
--hsl-gold: hsl(51, 100, 50);
--hsv-gold: hsv(51, 100, 100);
/* White Rock */
--hex-white-rock: #d4cfb4;
--rgb-white-rock: rgb(212, 207, 180);
--hsl-white-rock: hsl(51, 27, 77);
--hsv-white-rock: hsv(51, 15, 83);
/* Bitter Lemon */
--hex-bitter-lemon: #d2db32;
--rgb-bitter-lemon: rgb(210, 219, 50);
--hsl-bitter-lemon: hsl(63, 70, 53);
--hsv-bitter-lemon: hsv(63, 77, 86);
/* Harp */
--hex-harp: #cbcec0;
--rgb-harp: rgb(203, 206, 192);
--hsl-harp: hsl(73, 13, 78);
--hsv-harp: hsv(73, 7, 81);
/* Moon Mist */
--hex-moon-mist: #cecdb8;
--rgb-moon-mist: rgb(206, 205, 184);
--hsl-moon-mist: hsl(57, 18, 76);
--hsv-moon-mist: hsv(57, 11, 81);
/* Las Palmas */
--hex-las-palmas: #c6da36;
--rgb-las-palmas: rgb(198, 218, 54);
--hsl-las-palmas: hsl(67, 69, 53);
--hsv-las-palmas: hsv(67, 75, 85);
/* Deco */
--hex-deco: #cccf82;
--rgb-deco: rgb(204, 207, 130);
--hsl-deco: hsl(62, 45, 66);
--hsv-deco: hsv(62, 37, 81);
/* Broom */
--hex-broom: #eecc24;
--rgb-broom: rgb(238, 204, 36);
--hsl-broom: hsl(50, 86, 54);
--hsv-broom: hsv(50, 85, 93);
/* Chrome White */
--hex-chrome-white: #cac7b7;
--rgb-chrome-white: rgb(202, 199, 183);
--hsl-chrome-white: hsl(51, 15, 75);
--hsv-chrome-white: hsv(51, 9, 79);
/* Fuego */
--hex-fuego: #c2d62e;
--rgb-fuego: rgb(194, 214, 46);
--hsl-fuego: hsl(67, 67, 51);
--hsv-fuego: hsv(67, 79, 84);
/* Confetti */
--hex-confetti: #ddcb46;
--rgb-confetti: rgb(221, 203, 70);
--hsl-confetti: hsl(53, 69, 57);
--hsv-confetti: hsv(53, 68, 87);
/* Wattle */
--hex-wattle: #d6ca3d;
--rgb-wattle: rgb(214, 202, 61);
--hsl-wattle: hsl(55, 65, 54);
--hsv-wattle: hsv(55, 71, 84);
/* Kangaroo */
--hex-kangaroo: #c5c3b0;
--rgb-kangaroo: rgb(197, 195, 176);
--hsl-kangaroo: hsl(54, 15, 73);
--hsv-kangaroo: hsv(54, 11, 77);
/* Winter Hazel */
--hex-winter-hazel: #d0c383;
--rgb-winter-hazel: rgb(208, 195, 131);
--hsl-winter-hazel: hsl(50, 45, 66);
--hsv-winter-hazel: hsv(50, 37, 82);
/* Wild Willow */
--hex-wild-willow: #beca60;
--rgb-wild-willow: rgb(190, 202, 96);
--hsl-wild-willow: hsl(67, 50, 58);
--hsv-wild-willow: hsv(67, 52, 79);
/* Green Mist */
--hex-green-mist: #bfc298;
--rgb-green-mist: rgb(191, 194, 152);
--hsl-green-mist: hsl(64, 26, 68);
--hsv-green-mist: hsv(64, 22, 76);
/* Kidnapper */
--hex-kidnapper: #bfc0ab;
--rgb-kidnapper: rgb(191, 192, 171);
--hsl-kidnapper: hsl(63, 14, 71);
--hsv-kidnapper: hsv(63, 11, 75);
/* Silver Sand */
--hex-silver-sand: #bebdb6;
--rgb-silver-sand: rgb(190, 189, 182);
--hsl-silver-sand: hsl(53, 6, 73);
--hsv-silver-sand: hsv(53, 4, 75);
/* Beryl Green */
--hex-beryl-green: #bcbfa8;
--rgb-beryl-green: rgb(188, 191, 168);
--hsl-beryl-green: hsl(68, 15, 70);
--hsv-beryl-green: hsv(68, 12, 75);
/* Barberry */
--hex-barberry: #d2c61f;
--rgb-barberry: rgb(210, 198, 31);
--hsl-barberry: hsl(56, 74, 47);
--hsv-barberry: hsv(56, 85, 82);
/* Pine Glade */
--hex-pine-glade: #bdc07e;
--rgb-pine-glade: rgb(189, 192, 126);
--hsl-pine-glade: hsl(63, 34, 62);
--hsv-pine-glade: hsv(63, 34, 75);
/* Sunflower */
--hex-sunflower: #dac01a;
--rgb-sunflower: rgb(218, 192, 26);
--hsl-sunflower: hsl(52, 79, 48);
--hsv-sunflower: hsv(52, 88, 85);
/* Ash */
--hex-ash: #bebaa7;
--rgb-ash: rgb(190, 186, 167);
--hsl-ash: hsl(50, 15, 70);
--hsv-ash: hsv(50, 12, 75);
/* Mist Grey */
--hex-mist-grey: #bab9a9;
--rgb-mist-grey: rgb(186, 185, 169);
--hsl-mist-grey: hsl(56, 11, 70);
--hsv-mist-grey: hsv(56, 9, 73);
/* Bird Flower */
--hex-bird-flower: #d0c117;
--rgb-bird-flower: rgb(208, 193, 23);
--hsl-bird-flower: hsl(55, 80, 45);
--hsv-bird-flower: hsv(55, 89, 82);
/* Rio Grande */
--hex-rio-grande: #b7c61a;
--rgb-rio-grande: rgb(183, 198, 26);
--hsl-rio-grande: hsl(65, 77, 44);
--hsv-rio-grande: hsv(65, 87, 78);
/* Celery */
--hex-celery: #b4c04c;
--rgb-celery: rgb(180, 192, 76);
--hsl-celery: hsl(66, 48, 53);
--hsv-celery: hsv(66, 60, 75);
/* Tana */
--hex-tana: #b8b5a1;
--rgb-tana: rgb(184, 181, 161);
--hsl-tana: hsl(52, 14, 68);
--hsv-tana: hsv(52, 13, 72);
/* Coriander */
--hex-coriander: #bbb58d;
--rgb-coriander: rgb(187, 181, 141);
--hsl-coriander: hsl(52, 25, 64);
--hsv-coriander: hsv(52, 25, 73);
/* Dark Khaki */
--hex-dark-khaki: #bdb76b;
--rgb-dark-khaki: rgb(189, 183, 107);
--hsl-dark-khaki: hsl(56, 38, 58);
--hsv-dark-khaki: hsv(56, 43, 74);
/* La Rioja */
--hex-la-rioja: #bac00e;
--rgb-la-rioja: rgb(186, 192, 14);
--hsl-la-rioja: hsl(62, 86, 40);
--hsv-la-rioja: hsv(62, 93, 75);
/* Bahia */
--hex-bahia: #a9c01c;
--rgb-bahia: rgb(169, 192, 28);
--hsl-bahia: hsl(68, 75, 43);
--hsv-bahia: hsv(68, 85, 75);
/* Bombay */
--hex-bombay: #aeaead;
--rgb-bombay: rgb(174, 174, 173);
--hsl-bombay: hsl(60, 1, 68);
--hsv-bombay: hsv(60, 1, 68);
/* Olive Green */
--hex-olive-green: #b5b35c;
--rgb-olive-green: rgb(181, 179, 92);
--hsl-olive-green: hsl(59, 38, 54);
--hsv-olive-green: hsv(59, 49, 71);
/* Eagle */
--hex-eagle: #b0ac94;
--rgb-eagle: rgb(176, 172, 148);
--hsl-eagle: hsl(51, 15, 64);
--hsv-eagle: hsv(51, 16, 69);
/* Gimblet */
--hex-gimblet: #b9ad61;
--rgb-gimblet: rgb(185, 173, 97);
--hsl-gimblet: hsl(52, 39, 55);
--hsv-gimblet: hsv(52, 48, 73);
/* Foggy Grey */
--hex-foggy-grey: #a7a69d;
--rgb-foggy-grey: rgb(167, 166, 157);
--hsl-foggy-grey: hsl(54, 5, 64);
--hsv-foggy-grey: hsv(54, 6, 65);
/* Bud */
--hex-bud: #a5a88f;
--rgb-bud: rgb(165, 168, 143);
--hsl-bud: hsl(67, 13, 61);
--hsv-bud: hsv(67, 15, 66);
/* Citrus */
--hex-citrus: #9fb70a;
--rgb-citrus: rgb(159, 183, 10);
--hsl-citrus: hsl(68, 90, 38);
--hsv-citrus: hsv(68, 95, 72);
/* Neutral Green */
--hex-neutral-green: #aaa583;
--rgb-neutral-green: rgb(170, 165, 131);
--hsl-neutral-green: hsl(52, 19, 59);
--hsv-neutral-green: hsv(52, 23, 67);
/* Brass */
--hex-brass: #b5a642;
--rgb-brass: rgb(181, 166, 66);
--hsl-brass: hsl(52, 47, 48);
--hsv-brass: hsv(52, 64, 71);
/* Locust */
--hex-locust: #a2a580;
--rgb-locust: rgb(162, 165, 128);
--hsl-locust: hsl(65, 17, 57);
--hsv-locust: hsv(65, 22, 65);
/* Earls Green */
--hex-earls-green: #b8a722;
--rgb-earls-green: rgb(184, 167, 34);
--hsl-earls-green: hsl(53, 69, 43);
--hsv-earls-green: hsv(53, 82, 72);
/* Star Dust */
--hex-star-dust: #a0a197;
--rgb-star-dust: rgb(160, 161, 151);
--hsl-star-dust: hsl(66, 5, 61);
--hsv-star-dust: hsv(66, 6, 63);
/* Green Smoke */
--hex-green-smoke: #9ca664;
--rgb-green-smoke: rgb(156, 166, 100);
--hsl-green-smoke: hsl(69, 27, 52);
--hsv-green-smoke: hsv(69, 40, 65);
/* Hillary */
--hex-hillary: #a7a07e;
--rgb-hillary: rgb(167, 160, 126);
--hsl-hillary: hsl(50, 19, 57);
--hsv-hillary: hsv(50, 25, 65);
/* Dawn */
--hex-dawn: #9f9d91;
--rgb-dawn: rgb(159, 157, 145);
--hsl-dawn: hsl(51, 7, 60);
--hsv-dawn: hsv(51, 9, 62);
/* Sage */
--hex-sage: #989f7a;
--rgb-sage: rgb(152, 159, 122);
--hsl-sage: hsl(71, 16, 55);
--hsv-sage: hsv(71, 23, 62);
/* Lemon Grass */
--hex-lemon-grass: #999a86;
--rgb-lemon-grass: rgb(153, 154, 134);
--hsl-lemon-grass: hsl(63, 9, 56);
--hsv-lemon-grass: hsv(63, 13, 60);
/* Lucky */
--hex-lucky: #ab9a1c;
--rgb-lucky: rgb(171, 154, 28);
--hsl-lucky: hsl(53, 72, 39);
--hsv-lucky: hsv(53, 84, 67);
/* Avocado */
--hex-avocado: #95986b;
--rgb-avocado: rgb(149, 152, 107);
--hsl-avocado: hsl(64, 18, 51);
--hsv-avocado: hsv(64, 30, 60);
/* Malachite Green */
--hex-malachite-green: #97976f;
--rgb-malachite-green: rgb(151, 151, 111);
--hsl-malachite-green: hsl(60, 16, 51);
--hsv-malachite-green: hsv(60, 26, 59);
/* Citron */
--hex-citron: #8e9a21;
--rgb-citron: rgb(142, 154, 33);
--hsl-citron: hsl(66, 65, 37);
--hsv-citron: hsv(66, 79, 60);
/* Wasabi */
--hex-wasabi: #849137;
--rgb-wasabi: rgb(132, 145, 55);
--hsl-wasabi: hsl(69, 45, 39);
--hsv-wasabi: hsv(69, 62, 57);
/* Highball */
--hex-highball: #928c3c;
--rgb-highball: rgb(146, 140, 60);
--hsl-highball: hsl(56, 42, 40);
--hsv-highball: hsv(56, 59, 57);
/* Jumbo */
--hex-jumbo: #878785;
--rgb-jumbo: rgb(135, 135, 133);
--hsl-jumbo: hsl(60, 1, 53);
--hsv-jumbo: hsv(60, 1, 53);
/* Bitter */
--hex-bitter: #88896c;
--rgb-bitter: rgb(136, 137, 108);
--hsl-bitter: hsl(62, 12, 48);
--hsv-bitter: hsv(62, 21, 54);
/* Schist */
--hex-schist: #87876f;
--rgb-schist: rgb(135, 135, 111);
--hsl-schist: hsl(60, 10, 48);
--hsv-schist: hsv(60, 18, 53);
/* Bandicoot */
--hex-bandicoot: #878466;
--rgb-bandicoot: rgb(135, 132, 102);
--hsl-bandicoot: hsl(55, 14, 46);
--hsv-bandicoot: hsv(55, 24, 53);
/* Lemon Ginger */
--hex-lemon-ginger: #968428;
--rgb-lemon-ginger: rgb(150, 132, 40);
--hsl-lemon-ginger: hsl(50, 58, 37);
--hsv-lemon-ginger: hsv(50, 73, 59);
/* Trendy Green */
--hex-trendy-green: #7e8424;
--rgb-trendy-green: rgb(126, 132, 36);
--hsl-trendy-green: hsl(64, 57, 33);
--hsv-trendy-green: hsv(64, 73, 52);
/* Tapa */
--hex-tapa: #7c7c72;
--rgb-tapa: rgb(124, 124, 114);
--hsl-tapa: hsl(60, 4, 47);
--hsv-tapa: hsv(60, 8, 49);
/* Olive */
--hex-olive: #808000;
--rgb-olive: rgb(128, 128, 0);
--hsl-olive: hsl(60, 100, 25);
--hsv-olive: hsv(60, 100, 50);
/* Kokoda */
--hex-kokoda: #7b785a;
--rgb-kokoda: rgb(123, 120, 90);
--hsl-kokoda: hsl(55, 15, 42);
--hsv-kokoda: hsv(55, 27, 48);
/* Finch */
--hex-finch: #75785a;
--rgb-finch: rgb(117, 120, 90);
--hsl-finch: hsl(66, 14, 41);
--hsv-finch: hsv(66, 25, 47);
/* Pesto */
--hex-pesto: #7a7229;
--rgb-pesto: rgb(122, 114, 41);
--hsl-pesto: hsl(54, 50, 32);
--hsv-pesto: hsv(54, 66, 48);
/* Crete */
--hex-crete: #77712b;
--rgb-crete: rgb(119, 113, 43);
--hsl-crete: hsl(55, 47, 32);
--hsv-crete: hsv(55, 64, 47);
/* Olivetone */
--hex-olivetone: #747028;
--rgb-olivetone: rgb(116, 112, 40);
--hsl-olivetone: hsl(57, 49, 31);
--hsv-olivetone: hsv(57, 66, 45);
/* Rain Forest */
--hex-rain-forest: #667028;
--rgb-rain-forest: rgb(102, 112, 40);
--hsl-rain-forest: hsl(68, 47, 30);
--hsv-rain-forest: hsv(68, 64, 44);
/* Siam */
--hex-siam: #686b50;
--rgb-siam: rgb(104, 107, 80);
--hsl-siam: hsl(67, 14, 37);
--hsv-siam: hsv(67, 25, 42);
/* Fiji Green */
--hex-fiji-green: #636f22;
--rgb-fiji-green: rgb(99, 111, 34);
--hsl-fiji-green: hsl(69, 53, 28);
--hsv-fiji-green: hsv(69, 69, 44);
/* Hemlock */
--hex-hemlock: #69684b;
--rgb-hemlock: rgb(105, 104, 75);
--hsl-hemlock: hsl(58, 17, 35);
--hsv-hemlock: hsv(58, 29, 41);
/* Storm Dust */
--hex-storm-dust: #65645f;
--rgb-storm-dust: rgb(101, 100, 95);
--hsl-storm-dust: hsl(50, 3, 38);
--hsv-storm-dust: hsv(50, 6, 40);
/* Woodland */
--hex-woodland: #626746;
--rgb-woodland: rgb(98, 103, 70);
--hsl-woodland: hsl(69, 19, 34);
--hsv-woodland: hsv(69, 32, 40);
/* Verdigris */
--hex-verdigris: #62603e;
--rgb-verdigris: rgb(98, 96, 62);
--hsl-verdigris: hsl(57, 23, 31);
--hsv-verdigris: hsv(57, 37, 38);
/* Costa Del Sol */
--hex-costa-del-sol: #625d2a;
--rgb-costa-del-sol: rgb(98, 93, 42);
--hsl-costa-del-sol: hsl(55, 40, 27);
--hsv-costa-del-sol: hsv(55, 57, 38);
/* Saratoga */
--hex-saratoga: #555b2c;
--rgb-saratoga: rgb(85, 91, 44);
--hsl-saratoga: hsl(68, 35, 26);
--hsv-saratoga: hsv(68, 52, 36);
/* Kelp */
--hex-kelp: #4d503c;
--rgb-kelp: rgb(77, 80, 60);
--hsl-kelp: hsl(69, 14, 27);
--hsv-kelp: hsv(69, 25, 31);
/* Ship Grey */
--hex-ship-grey: #4e4e4c;
--rgb-ship-grey: rgb(78, 78, 76);
--hsl-ship-grey: hsl(60, 1, 30);
--hsv-ship-grey: hsv(60, 3, 31);
/* Merlin */
--hex-merlin: #4f4e48;
--rgb-merlin: rgb(79, 78, 72);
--hsl-merlin: hsl(51, 5, 30);
--hsv-merlin: hsv(51, 9, 31);
/* Army green */
--hex-army-green: #4b5320;
--rgb-army-green: rgb(75, 83, 32);
--hsl-army-green: hsl(69, 44, 23);
--hsv-army-green: hsv(69, 61, 33);
/* Thatch Green */
--hex-thatch-green: #544e31;
--rgb-thatch-green: rgb(84, 78, 49);
--hsl-thatch-green: hsl(50, 26, 26);
--hsv-thatch-green: hsv(50, 42, 33);
/* Thunder */
--hex-thunder: #4d4d4b;
--rgb-thunder: rgb(77, 77, 75);
--hsl-thunder: hsl(60, 1, 30);
--hsv-thunder: hsv(60, 3, 30);
/* Verdun Green */
--hex-verdun-green: #48531a;
--rgb-verdun-green: rgb(72, 83, 26);
--hsl-verdun-green: hsl(72, 52, 21);
--hsv-verdun-green: hsv(72, 69, 33);
/* Waiouru */
--hex-waiouru: #4c4e31;
--rgb-waiouru: rgb(76, 78, 49);
--hsl-waiouru: hsl(64, 23, 25);
--hsv-waiouru: hsv(64, 37, 31);
/* Camouflage */
--hex-camouflage: #4f4d32;
--rgb-camouflage: rgb(79, 77, 50);
--hsl-camouflage: hsl(56, 22, 25);
--hsv-camouflage: hsv(56, 37, 31);
/* Gravel */
--hex-gravel: #4a4b46;
--rgb-gravel: rgb(74, 75, 70);
--hsl-gravel: hsl(72, 3, 28);
--hsv-gravel: hsv(72, 7, 29);
/* Heavy Metal */
--hex-heavy-metal: #46473e;
--rgb-heavy-metal: rgb(70, 71, 62);
--hsl-heavy-metal: hsl(67, 7, 26);
--hsv-heavy-metal: hsv(67, 13, 28);
/* Scrub */
--hex-scrub: #3d4031;
--rgb-scrub: rgb(61, 64, 49);
--hsl-scrub: hsl(72, 13, 22);
--hsv-scrub: hsv(72, 23, 25);
/* Green Kelp */
--hex-green-kelp: #393d2a;
--rgb-green-kelp: rgb(57, 61, 42);
--hsl-green-kelp: hsl(73, 18, 20);
--hsv-green-kelp: hsv(73, 31, 24);
/* El Paso */
--hex-el-paso: #39392c;
--rgb-el-paso: rgb(57, 57, 44);
--hsl-el-paso: hsl(60, 13, 20);
--hsv-el-paso: hsv(60, 23, 22);
/* Karaka */
--hex-karaka: #2d2d24;
--rgb-karaka: rgb(45, 45, 36);
--hsl-karaka: hsl(60, 11, 16);
--hsv-karaka: hsv(60, 20, 18);
/* Green Waterloo */
--hex-green-waterloo: #2c2d24;
--rgb-green-waterloo: rgb(44, 45, 36);
--hsl-green-waterloo: hsl(67, 11, 16);
--hsv-green-waterloo: hsv(67, 20, 18);
/* Maire */
--hex-maire: #2a2922;
--rgb-maire: rgb(42, 41, 34);
--hsl-maire: hsl(53, 11, 15);
--hsv-maire: hsv(53, 19, 16);
/* lime tones */
/* Saltpan */
--hex-saltpan: #eef3e5;
--rgb-saltpan: rgb(238, 243, 229);
--hsl-saltpan: hsl(81, 37, 93);
--hsv-saltpan: hsv(81, 6, 95);
/* Snow Flurry */
--hex-snow-flurry: #eaf7c9;
--rgb-snow-flurry: rgb(234, 247, 201);
--hsl-snow-flurry: hsl(77, 74, 88);
--hsv-snow-flurry: hsv(77, 19, 97);
/* Willow Brook */
--hex-willow-brook: #dfe6cf;
--rgb-willow-brook: rgb(223, 230, 207);
--hsl-willow-brook: hsl(78, 32, 86);
--hsv-willow-brook: hsv(78, 10, 90);
/* Reef */
--hex-reef: #d1ef9f;
--rgb-reef: rgb(209, 239, 159);
--hsl-reef: hsl(83, 71, 78);
--hsv-reef: hsv(83, 33, 94);
/* Green Yellow */
--hex-green-yellow: #adff2f;
--rgb-green-yellow: rgb(173, 255, 47);
--hsl-green-yellow: hsl(84, 100, 59);
--hsv-green-yellow: hsv(84, 82, 100);
/* Feta */
--hex-feta: #dbe0d0;
--rgb-feta: rgb(219, 224, 208);
--hsl-feta: hsl(79, 21, 85);
--hsv-feta: hsv(79, 7, 88);
/* Gin */
--hex-gin: #d9dfcd;
--rgb-gin: rgb(217, 223, 205);
--hsl-gin: hsl(80, 22, 84);
--hsv-gin: hsv(80, 8, 87);
/* Sulu */
--hex-sulu: #c6ea80;
--rgb-sulu: rgb(198, 234, 128);
--hsl-sulu: hsl(80, 72, 71);
--hsv-sulu: hsv(80, 45, 92);
/* Spring Bud */
--hex-spring-bud: #a7fc00;
--rgb-spring-bud: rgb(167, 252, 0);
--hsl-spring-bud: hsl(80, 100, 49);
--hsv-spring-bud: hsv(80, 100, 99);
/* Grey Nurse */
--hex-grey-nurse: #d1d3cc;
--rgb-grey-nurse: rgb(209, 211, 204);
--hsl-grey-nurse: hsl(77, 7, 81);
--hsv-grey-nurse: hsv(77, 3, 83);
/* Conifer */
--hex-conifer: #b1dd52;
--rgb-conifer: rgb(177, 221, 82);
--hsl-conifer: hsl(79, 67, 59);
--hsv-conifer: hsv(79, 63, 87);
/* Inch Worm */
--hex-inch-worm: #b0e313;
--rgb-inch-worm: rgb(176, 227, 19);
--hsl-inch-worm: hsl(75, 85, 48);
--hsv-inch-worm: hsv(75, 92, 89);
/* Pixie Green */
--hex-pixie-green: #bbcda5;
--rgb-pixie-green: rgb(187, 205, 165);
--hsl-pixie-green: hsl(87, 29, 73);
--hsv-pixie-green: hsv(87, 20, 80);
/* Pale Leaf */
--hex-pale-leaf: #bdcaa8;
--rgb-pale-leaf: rgb(189, 202, 168);
--hsl-pale-leaf: hsl(83, 24, 73);
--hsv-pale-leaf: hsv(83, 17, 79);
/* Sprout */
--hex-sprout: #b8ca9d;
--rgb-sprout: rgb(184, 202, 157);
--hsl-sprout: hsl(84, 30, 70);
--hsv-sprout: hsv(84, 22, 79);
/* Tasman */
--hex-tasman: #bac0b3;
--rgb-tasman: rgb(186, 192, 179);
--hsl-tasman: hsl(88, 9, 73);
--hsv-tasman: hsv(88, 7, 75);
/* Atlantis */
--hex-atlantis: #9cd03b;
--rgb-atlantis: rgb(156, 208, 59);
--hsl-atlantis: hsl(81, 61, 52);
--hsv-atlantis: hsv(81, 72, 82);
/* Caper */
--hex-caper: #afc182;
--rgb-caper: rgb(175, 193, 130);
--hsl-caper: hsl(77, 34, 63);
--hsv-caper: hsv(77, 33, 76);
/* Yellow Green */
--hex-yellow-green: #9acd32;
--rgb-yellow-green: rgb(154, 205, 50);
--hsl-yellow-green: hsl(80, 61, 50);
--hsv-yellow-green: hsv(80, 76, 80);
/* Norway */
--hex-norway: #a4b88f;
--rgb-norway: rgb(164, 184, 143);
--hsl-norway: hsl(89, 22, 64);
--hsv-norway: hsv(89, 22, 72);
/* Olivine */
--hex-olivine: #9ab973;
--rgb-olivine: rgb(154, 185, 115);
--hsl-olivine: hsl(87, 33, 59);
--hsv-olivine: hsv(87, 38, 73);
/* Silver Chalice */
--hex-silver-chalice: #acaea9;
--rgb-silver-chalice: rgb(172, 174, 169);
--hsl-silver-chalice: hsl(84, 3, 67);
--hsv-silver-chalice: hsv(84, 3, 68);
/* Green Spring */
--hex-green-spring: #a9af99;
--rgb-green-spring: rgb(169, 175, 153);
--hsl-green-spring: hsl(76, 12, 64);
--hsv-green-spring: hsv(76, 13, 69);
/* Chelsea Cucumber */
--hex-chelsea-cucumber: #88a95b;
--rgb-chelsea-cucumber: rgb(136, 169, 91);
--hsl-chelsea-cucumber: hsl(85, 31, 51);
--hsv-chelsea-cucumber: hsv(85, 46, 66);
/* Limerick */
--hex-limerick: #89ac27;
--rgb-limerick: rgb(137, 172, 39);
--hsl-limerick: hsl(76, 63, 41);
--hsv-limerick: hsv(76, 77, 67);
/* Delta */
--hex-delta: #999b95;
--rgb-delta: rgb(153, 155, 149);
--hsl-delta: hsl(80, 3, 60);
--hsv-delta: hsv(80, 4, 61);
/* Lima */
--hex-lima: #7aac21;
--rgb-lima: rgb(122, 172, 33);
--hsl-lima: hsl(82, 68, 40);
--hsv-lima: hsv(82, 81, 67);
/* Christi */
--hex-christi: #71a91d;
--rgb-christi: rgb(113, 169, 29);
--hsl-christi: hsl(84, 71, 39);
--hsv-christi: hsv(84, 83, 66);
/* Sushi */
--hex-sushi: #7c9f2f;
--rgb-sushi: rgb(124, 159, 47);
--hsl-sushi: hsl(79, 54, 40);
--hsv-sushi: hsv(79, 70, 62);
/* Vida Loca */
--hex-vida-loca: #5f9228;
--rgb-vida-loca: rgb(95, 146, 40);
--hsl-vida-loca: hsl(89, 57, 36);
--hsv-vida-loca: hsv(89, 73, 57);
/* Olive Drab */
--hex-olive-drab: #6b8e23;
--rgb-olive-drab: rgb(107, 142, 35);
--hsl-olive-drab: hsl(80, 60, 35);
--hsv-olive-drab: hsv(80, 75, 56);
/* Gunsmoke */
--hex-gunsmoke: #7a7c76;
--rgb-gunsmoke: rgb(122, 124, 118);
--hsl-gunsmoke: hsl(80, 2, 47);
--hsv-gunsmoke: hsv(80, 5, 49);
/* Willow Grove */
--hex-willow-grove: #69755c;
--rgb-willow-grove: rgb(105, 117, 92);
--hsl-willow-grove: hsl(89, 12, 41);
--hsv-willow-grove: hsv(89, 21, 46);
/* Chalet Green */
--hex-chalet-green: #5a6e41;
--rgb-chalet-green: rgb(90, 110, 65);
--hsl-chalet-green: hsl(87, 26, 34);
--hsv-chalet-green: hsv(87, 41, 43);
/* Dark Olive Green */
--hex-dark-olive-green: #556b2f;
--rgb-dark-olive-green: rgb(85, 107, 47);
--hsl-dark-olive-green: hsl(82, 39, 30);
--hsv-dark-olive-green: hsv(82, 56, 42);
/* Green Leaf */
--hex-green-leaf: #526b2d;
--rgb-green-leaf: rgb(82, 107, 45);
--hsl-green-leaf: hsl(84, 41, 30);
--hsv-green-leaf: hsv(84, 58, 42);
/* Chicago */
--hex-chicago: #5b5d56;
--rgb-chicago: rgb(91, 93, 86);
--hsl-chicago: hsl(77, 4, 35);
--hsv-chicago: hsv(77, 8, 36);
/* Lunar Green */
--hex-lunar-green: #4e5541;
--rgb-lunar-green: rgb(78, 85, 65);
--hsl-lunar-green: hsl(81, 13, 29);
--hsv-lunar-green: hsv(81, 24, 33);
/* Clover */
--hex-clover: #47562f;
--rgb-clover: rgb(71, 86, 47);
--hsl-clover: hsl(83, 29, 26);
--hsv-clover: hsv(83, 45, 34);
/* Bronzetone */
--hex-bronzetone: #434c28;
--rgb-bronzetone: rgb(67, 76, 40);
--hsl-bronzetone: hsl(75, 31, 23);
--hsv-bronzetone: hsv(75, 47, 30);
/* Tuatara */
--hex-tuatara: #454642;
--rgb-tuatara: rgb(69, 70, 66);
--hsl-tuatara: hsl(75, 3, 27);
--hsv-tuatara: hsv(75, 6, 27);
/* Seaweed */
--hex-seaweed: #37412a;
--rgb-seaweed: rgb(55, 65, 42);
--hsl-seaweed: hsl(86, 21, 21);
--hsv-seaweed: hsv(86, 35, 25);
/* Log Cabin */
--hex-log-cabin: #393e2e;
--rgb-log-cabin: rgb(57, 62, 46);
--hsl-log-cabin: hsl(79, 15, 21);
--hsv-log-cabin: hsv(79, 26, 24);
/* Zeus */
--hex-zeus: #3b3c38;
--rgb-zeus: rgb(59, 60, 56);
--hsl-zeus: hsl(75, 3, 23);
--hsv-zeus: hsv(75, 7, 24);
/* Turtle Green */
--hex-turtle-green: #363e1d;
--rgb-turtle-green: rgb(54, 62, 29);
--hsl-turtle-green: hsl(75, 36, 18);
--hsv-turtle-green: hsv(75, 53, 24);
/* Eternity */
--hex-eternity: #2d2f28;
--rgb-eternity: rgb(45, 47, 40);
--hsl-eternity: hsl(77, 8, 17);
--hsv-eternity: hsv(77, 15, 18);
/* Pine Tree */
--hex-pine-tree: #2a2f23;
--rgb-pine-tree: rgb(42, 47, 35);
--hsl-pine-tree: hsl(85, 15, 16);
--hsv-pine-tree: hsv(85, 26, 18);
/* Marshland */
--hex-marshland: #2b2e26;
--rgb-marshland: rgb(43, 46, 38);
--hsl-marshland: hsl(82, 10, 16);
--hsv-marshland: hsv(83, 17, 18);
/* Rangoon Green */
--hex-rangoon-green: #2b2e25;
--rgb-rangoon-green: rgb(43, 46, 37);
--hsl-rangoon-green: hsl(80, 11, 16);
--hsv-rangoon-green: hsv(80, 20, 18);
/* green tones */
/* Mint Cream */
--hex-mint-cream: #f5fffa;
--rgb-mint-cream: rgb(245, 255, 250);
--hsl-mint-cream: hsl(150, 100, 98);
--hsv-mint-cream: hsv(150, 4, 100);
/* Honeydew */
--hex-honeydew: #f0fff0;
--rgb-honeydew: rgb(240, 255, 240);
--hsl-honeydew: hsl(120, 100, 97);
--hsv-honeydew: hsv(120, 6, 100);
/* Panache */
--hex-panache: #ebf7e4;
--rgb-panache: rgb(235, 247, 228);
--hsl-panache: hsl(98, 54, 93);
--hsv-panache: hsv(98, 8, 97);
/* Cosmic Latte */
--hex-cosmic-latte: #e1f8e7;
--rgb-cosmic-latte: rgb(225, 248, 231);
--hsl-cosmic-latte: hsl(136, 62, 93);
--hsv-cosmic-latte: hsv(136, 9, 97);
/* Aqua Spring */
--hex-aqua-spring: #e8f3e8;
--rgb-aqua-spring: rgb(232, 243, 232);
--hsl-aqua-spring: hsl(120, 31, 93);
--hsv-aqua-spring: hsv(120, 5, 95);
/* Dew */
--hex-dew: #e7f2e9;
--rgb-dew: rgb(231, 242, 233);
--hsl-dew: hsl(131, 30, 93);
--hsv-dew: hsv(131, 5, 95);
/* Bubbles */
--hex-bubbles: #e6f2ea;
--rgb-bubbles: rgb(230, 242, 234);
--hsl-bubbles: hsl(140, 32, 93);
--hsv-bubbles: hsv(140, 5, 95);
/* Polar */
--hex-polar: #e5f2e7;
--rgb-polar: rgb(229, 242, 231);
--hsl-polar: hsl(129, 33, 92);
--hsv-polar: hsv(129, 5, 95);
/* Frosted Mint */
--hex-frosted-mint: #e2f2e4;
--rgb-frosted-mint: rgb(226, 242, 228);
--hsl-frosted-mint: hsl(128, 38, 92);
--hsv-frosted-mint: hsv(128, 7, 95);
/* Lily White */
--hex-lily-white: #e9eeeb;
--rgb-lily-white: rgb(233, 238, 235);
--hsl-lily-white: hsl(144, 13, 92);
--hsv-lily-white: hsv(144, 2, 93);
/* Tara */
--hex-tara: #def1dd;
--rgb-tara: rgb(222, 241, 221);
--hsl-tara: hsl(117, 42, 91);
--hsv-tara: hsv(117, 8, 95);
/* Off Green */
--hex-off-green: #dff0e2;
--rgb-off-green: rgb(223, 240, 226);
--hsl-off-green: hsl(131, 36, 91);
--hsv-off-green: hsv(131, 7, 94);
/* Clear Day */
--hex-clear-day: #dfefea;
--rgb-clear-day: rgb(223, 239, 234);
--hsl-clear-day: hsl(161, 33, 91);
--hsv-clear-day: hsv(161, 7, 94);
/* Hint Of Green */
--hex-hint-of-green: #dff1d6;
--rgb-hint-of-green: rgb(223, 241, 214);
--hsl-hint-of-green: hsl(100, 49, 89);
--hsv-hint-of-green: hsv(100, 11, 95);
/* Tranquil */
--hex-tranquil: #ddede9;
--rgb-tranquil: rgb(221, 237, 233);
--hsl-tranquil: hsl(165, 31, 90);
--hsv-tranquil: hsv(165, 7, 93);
/* Blue Romance */
--hex-blue-romance: #d8f0d2;
--rgb-blue-romance: rgb(216, 240, 210);
--hsl-blue-romance: hsl(108, 50, 88);
--hsv-blue-romance: hsv(108, 13, 94);
/* White Ice */
--hex-white-ice: #d7eee4;
--rgb-white-ice: rgb(215, 238, 228);
--hsl-white-ice: hsl(154, 40, 89);
--hsv-white-ice: hsv(154, 10, 93);
/* Snowy Mint */
--hex-snowy-mint: #d6f0cd;
--rgb-snowy-mint: rgb(214, 240, 205);
--hsl-snowy-mint: hsl(105, 54, 87);
--hsv-snowy-mint: hsv(105, 15, 94);
/* Humming Bird */
--hex-humming-bird: #ceefe4;
--rgb-humming-bird: rgb(206, 239, 228);
--hsl-humming-bird: hsl(160, 51, 87);
--hsv-humming-bird: hsv(160, 14, 94);
/* Apple Green */
--hex-apple-green: #deeadc;
--rgb-apple-green: rgb(222, 234, 220);
--hsl-apple-green: hsl(111, 25, 89);
--hsv-apple-green: hsv(111, 6, 92);
/* Tea Green */
--hex-tea-green: #d0f0c0;
--rgb-tea-green: rgb(208, 240, 192);
--hsl-tea-green: hsl(100, 62, 85);
--hsv-tea-green: hsv(100, 20, 94);
/* Swans Down */
--hex-swans-down: #dae6dd;
--rgb-swans-down: rgb(218, 230, 221);
--hsl-swans-down: hsl(135, 19, 88);
--hsv-swans-down: hsv(135, 5, 90);
/* Catskill White */
--hex-catskill-white: #e0e4dc;
--rgb-catskill-white: rgb(224, 228, 220);
--hsl-catskill-white: hsl(90, 13, 88);
--hsv-catskill-white: hsv(90, 4, 89);
/* Peppermint */
--hex-peppermint: #d7e7d0;
--rgb-peppermint: rgb(215, 231, 208);
--hsl-peppermint: hsl(102, 32, 86);
--hsv-peppermint: hsv(102, 10, 91);
/* Mint Green */
--hex-mint-green: #98ff98;
--rgb-mint-green: rgb(152, 255, 152);
--hsl-mint-green: hsl(120, 100, 80);
--hsv-mint-green: hsv(120, 40, 100);
/* Aqua Squeeze */
--hex-aqua-squeeze: #dbe4dc;
--rgb-aqua-squeeze: rgb(219, 228, 220);
--hsl-aqua-squeeze: hsl(127, 14, 88);
--hsv-aqua-squeeze: hsv(127, 4, 89);
/* Frostee */
--hex-frostee: #dbe5d2;
--rgb-frostee: rgb(219, 229, 210);
--hsl-frostee: hsl(92, 27, 86);
--hsv-frostee: hsv(92, 8, 90);
/* Mint Tulip */
--hex-mint-tulip: #c6eadd;
--rgb-mint-tulip: rgb(198, 234, 221);
--hsl-mint-tulip: hsl(158, 46, 85);
--hsv-mint-tulip: hsv(158, 15, 92);
/* Aquamarine */
--hex-aquamarine: #7fffd4;
--rgb-aquamarine: rgb(127, 255, 212);
--hsl-aquamarine: hsl(160, 100, 75);
--hsv-aquamarine: hsv(160, 50, 100);
/* Jagged Ice */
--hex-jagged-ice: #cae7e2;
--rgb-jagged-ice: rgb(202, 231, 226);
--hsl-jagged-ice: hsl(170, 38, 85);
--hsv-jagged-ice: hsv(170, 13, 91);
/* Water Leaf */
--hex-water-leaf: #b6ecde;
--rgb-water-leaf: rgb(182, 236, 222);
--hsl-water-leaf: hsl(164, 59, 82);
--hsv-water-leaf: hsv(164, 23, 93);
/* Magic Mint */
--hex-magic-mint: #aaf0d1;
--rgb-magic-mint: rgb(170, 240, 209);
--hsl-magic-mint: hsl(153, 70, 80);
--hsv-magic-mint: hsv(153, 29, 94);
/* Pale Green */
--hex-pale-green: #98fb98;
--rgb-pale-green: rgb(152, 251, 152);
--hsl-pale-green: hsl(120, 93, 79);
--hsv-pale-green: hsv(120, 39, 98);
/* Aero Blue */
--hex-aero-blue: #c0e8d5;
--rgb-aero-blue: rgb(192, 232, 213);
--hsl-aero-blue: hsl(152, 47, 83);
--hsv-aero-blue: hsv(152, 17, 91);
/* Granny Apple */
--hex-granny-apple: #c5e7cd;
--rgb-granny-apple: rgb(197, 231, 205);
--hsl-granny-apple: hsl(134, 41, 84);
--hsv-granny-apple: hsv(134, 15, 91);
/* Mystic */
--hex-mystic: #d8ddda;
--rgb-mystic: rgb(216, 221, 218);
--hsl-mystic: hsl(144, 7, 86);
--hsv-mystic: hsv(144, 2, 87);
/* Aqua Haze */
--hex-aqua-haze: #d9ddd5;
--rgb-aqua-haze: rgb(217, 221, 213);
--hsl-aqua-haze: hsl(90, 11, 85);
--hsv-aqua-haze: hsv(90, 4, 87);
/* Iceberg */
--hex-iceberg: #cae1d9;
--rgb-iceberg: rgb(202, 225, 217);
--hsl-iceberg: hsl(159, 28, 84);
--hsv-iceberg: hsv(159, 10, 88);
/* Ottoman */
--hex-ottoman: #d3dbcb;
--rgb-ottoman: rgb(211, 219, 203);
--hsl-ottoman: hsl(90, 18, 83);
--hsv-ottoman: hsv(90, 7, 86);
/* Cruise */
--hex-cruise: #b4e2d5;
--rgb-cruise: rgb(180, 226, 213);
--hsl-cruise: hsl(163, 44, 80);
--hsv-cruise: hsv(163, 20, 89);
/* Ice Cold */
--hex-ice-cold: #afe3d6;
--rgb-ice-cold: rgb(175, 227, 214);
--hsl-ice-cold: hsl(165, 48, 79);
--hsv-ice-cold: hsv(165, 23, 89);
/* Madang */
--hex-madang: #b7e3a8;
--rgb-madang: rgb(183, 227, 168);
--hsl-madang: hsl(105, 51, 77);
--hsv-madang: hsv(105, 26, 89);
/* Fringy Flower */
--hex-fringy-flower: #b4e1bb;
--rgb-fringy-flower: rgb(180, 225, 187);
--hsl-fringy-flower: hsl(129, 43, 79);
--hsv-fringy-flower: hsv(129, 20, 88);
/* Screamin' Green */
--hex-screamin-green: #66ff66;
--rgb-screamin-green: rgb(102, 255, 102);
--hsl-screamin-green: hsl(120, 100, 70);
--hsv-screamin-green: hsv(120, 60, 100);
/* Light Green */
--hex-light-green: #90ee90;
--rgb-light-green: rgb(144, 238, 144);
--hsl-light-green: hsl(120, 73, 75);
--hsv-light-green: hsv(120, 39, 93);
/* Celadon */
--hex-celadon: #ace1af;
--rgb-celadon: rgb(172, 225, 175);
--hsl-celadon: hsl(123, 47, 78);
--hsv-celadon: hsv(123, 24, 88);
/* Edgewater */
--hex-edgewater: #c1d8c5;
--rgb-edgewater: rgb(193, 216, 197);
--hsl-edgewater: hsl(130, 23, 80);
--hsv-edgewater: hsv(130, 11, 85);
/* Chartreuse */
--hex-chartreuse: #7fff00;
--rgb-chartreuse: rgb(127, 255, 0);
--hsl-chartreuse: hsl(90, 100, 50);
--hsv-chartreuse: hsv(90, 100, 100);
/* Moss Green */
--hex-moss-green: #addfad;
--rgb-moss-green: rgb(173, 223, 173);
--hsl-moss-green: hsl(120, 44, 78);
--hsv-moss-green: hsv(120, 22, 87);
/* Surf Crest */
--hex-surf-crest: #c3d6bd;
--rgb-surf-crest: rgb(195, 214, 189);
--hsl-surf-crest: hsl(106, 23, 79);
--hsv-surf-crest: hsv(106, 12, 84);
/* Sea Mist */
--hex-sea-mist: #c2d5c4;
--rgb-sea-mist: rgb(194, 213, 196);
--hsl-sea-mist: hsl(126, 18, 80);
--hsv-sea-mist: hsv(126, 9, 84);
/* Scandal */
--hex-scandal: #add9d1;
--rgb-scandal: rgb(173, 217, 209);
--hsl-scandal: hsl(169, 37, 76);
--hsv-scandal: hsv(169, 20, 85);
/* Geyser */
--hex-geyser: #cbd0cf;
--rgb-geyser: rgb(203, 208, 207);
--hsl-geyser: hsl(168, 5, 81);
--hsv-geyser: hsv(168, 2, 82);
/* Lawn Green */
--hex-lawn-green: #7cfc00;
--rgb-lawn-green: rgb(124, 252, 0);
--hsl-lawn-green: hsl(90, 100, 49);
--hsv-lawn-green: hsv(90, 100, 99);
/* Surf */
--hex-surf: #b8d4bb;
--rgb-surf: rgb(184, 212, 187);
--hsl-surf: hsl(126, 25, 78);
--hsv-surf: hsv(126, 13, 83);
/* Granny Smith Apple */
--hex-granny-smith-apple: #9de093;
--rgb-granny-smith-apple: rgb(157, 224, 147);
--hsl-granny-smith-apple: hsl(112, 55, 73);
--hsv-granny-smith-apple: hsv(112, 34, 88);
/* Bright Green */
--hex-bright-green: #66ff00;
--rgb-bright-green: rgb(102, 255, 0);
--hsl-bright-green: hsl(96, 100, 50);
--hsv-bright-green: hsv(96, 100, 100);
/* Jet Stream */
--hex-jet-stream: #bbd0c9;
--rgb-jet-stream: rgb(187, 208, 201);
--hsl-jet-stream: hsl(160, 18, 77);
--hsv-jet-stream: hsv(160, 10, 82);
/* Sinbad */
--hex-sinbad: #a6d5d0;
--rgb-sinbad: rgb(166, 213, 208);
--hsl-sinbad: hsl(174, 36, 74);
--hsv-sinbad: hsv(174, 22, 84);
/* Paris White */
--hex-paris-white: #bfcdc0;
--rgb-paris-white: rgb(191, 205, 192);
--hsl-paris-white: hsl(124, 12, 78);
--hsv-paris-white: hsv(124, 7, 80);
/* Riptide */
--hex-riptide: #89d9c8;
--rgb-riptide: rgb(137, 217, 200);
--hsl-riptide: hsl(167, 51, 69);
--hsv-riptide: hsv(167, 37, 85);
/* Feijoa */
--hex-feijoa: #a5d785;
--rgb-feijoa: rgb(165, 215, 133);
--hsl-feijoa: hsl(97, 51, 68);
--hsv-feijoa: hsv(97, 38, 84);
/* Vista Blue */
--hex-vista-blue: #97d5b3;
--rgb-vista-blue: rgb(151, 213, 179);
--hsl-vista-blue: hsl(147, 42, 71);
--hsv-vista-blue: hsv(147, 29, 84);
/* Chinook */
--hex-chinook: #9dd3a8;
--rgb-chinook: rgb(157, 211, 168);
--hsl-chinook: hsl(132, 38, 72);
--hsv-chinook: hsv(132, 26, 83);
/* Harlequin */
--hex-harlequin: #3fff00;
--rgb-harlequin: rgb(63, 255, 0);
--hsl-harlequin: hsl(105, 100, 50);
--hsv-harlequin: hsv(105, 100, 100);
/* Nebula */
--hex-nebula: #b8c6be;
--rgb-nebula: rgb(184, 198, 190);
--hsl-nebula: hsl(146, 11, 75);
--hsv-nebula: hsv(146, 7, 78);
/* Gossip */
--hex-gossip: #9fd385;
--rgb-gossip: rgb(159, 211, 133);
--hsl-gossip: hsl(100, 47, 67);
--hsv-gossip: hsv(100, 37, 83);
/* Gum Leaf */
--hex-gum-leaf: #acc9b2;
--rgb-gum-leaf: rgb(172, 201, 178);
--hsl-gum-leaf: hsl(132, 21, 73);
--hsv-gum-leaf: hsv(132, 14, 79);
/* Bermuda */
--hex-bermuda: #86d2c1;
--rgb-bermuda: rgb(134, 210, 193);
--hsl-bermuda: hsl(167, 46, 67);
--hsv-bermuda: hsv(167, 36, 82);
/* Tiara */
--hex-tiara: #b9c3be;
--rgb-tiara: rgb(185, 195, 190);
--hsl-tiara: hsl(150, 8, 75);
--hsv-tiara: hsv(150, 5, 76);
/* Zanah */
--hex-zanah: #b2c6b1;
--rgb-zanah: rgb(178, 198, 177);
--hsl-zanah: hsl(117, 16, 74);
--hsv-zanah: hsv(117, 11, 78);
/* Pastel Green */
--hex-pastel-green: #77dd77;
--rgb-pastel-green: rgb(119, 221, 119);
--hsl-pastel-green: hsl(120, 60, 67);
--hsv-pastel-green: hsv(120, 46, 87);
/* Spring Green */
--hex-spring-green: #00ff7f;
--rgb-spring-green: rgb(0, 255, 127);
--hsl-spring-green: hsl(150, 100, 50);
--hsv-spring-green: hsv(150, 100, 100);
/* Medium Spring Green */
--hex-medium-spring-green: #00fa9a;
--rgb-medium-spring-green: rgb(0, 250, 154);
--hsl-medium-spring-green: hsl(157, 100, 49);
--hsv-medium-spring-green: hsv(157, 100, 98);
/* Pumice */
--hex-pumice: #bac0b4;
--rgb-pumice: rgb(186, 192, 180);
--hsl-pumice: hsl(90, 9, 73);
--hsv-pumice: hsv(90, 6, 75);
/* Rainee */
--hex-rainee: #b3c1b1;
--rgb-rainee: rgb(179, 193, 177);
--hsl-rainee: hsl(113, 11, 73);
--hsv-rainee: hsv(113, 8, 76);
/* Turquoise */
--hex-turquoise: #40e0d0;
--rgb-turquoise: rgb(64, 224, 208);
--hsl-turquoise: hsl(174, 72, 56);
--hsv-turquoise: hsv(174, 71, 88);
/* Opal */
--hex-opal: #a8c3bc;
--rgb-opal: rgb(168, 195, 188);
--hsl-opal: hsl(164, 18, 71);
--hsv-opal: hsv(164, 14, 76);
/* Downy */
--hex-downy: #6fd2be;
--rgb-downy: rgb(111, 210, 190);
--hsl-downy: hsl(168, 52, 63);
--hsv-downy: hsv(168, 47, 82);
/* Loblolly */
--hex-loblolly: #b3bbb7;
--rgb-loblolly: rgb(179, 187, 183);
--hsl-loblolly: hsl(150, 6, 72);
--hsv-loblolly: hsv(150, 4, 73);
/* Shadow Green */
--hex-shadow-green: #9ac0b6;
--rgb-shadow-green: rgb(154, 192, 182);
--hsl-shadow-green: hsl(164, 23, 68);
--hsv-shadow-green: hsv(164, 20, 75);
/* De York */
--hex-de-york: #85ca87;
--rgb-de-york: rgb(133, 202, 135);
--hsl-de-york: hsl(122, 39, 66);
--hsv-de-york: hsv(122, 34, 79);
/* Lime */
--hex-lime: #00ff00;
--rgb-lime: rgb(0, 255, 0);
--hsl-lime: hsl(120, 100, 50);
--hsv-lime: hsv(120, 100, 100);
/* Free Speech Green */
--hex-free-speech-green: #09f911;
--rgb-free-speech-green: rgb(9, 249, 17);
--hsl-free-speech-green: hsl(122, 95, 51);
--hsv-free-speech-green: hsv(122, 96, 98);
/* Spring Rain */
--hex-spring-rain: #a3bd9c;
--rgb-spring-rain: rgb(163, 189, 156);
--hsl-spring-rain: hsl(107, 20, 68);
--hsv-spring-rain: hsv(107, 17, 74);
/* Medium Aquamarine */
--hex-medium-aquamarine: #66cdaa;
--rgb-medium-aquamarine: rgb(102, 205, 170);
--hsl-medium-aquamarine: hsl(160, 51, 60);
--hsv-medium-aquamarine: hsv(160, 50, 80);
/* Monte Carlo */
--hex-monte-carlo: #7ac5b4;
--rgb-monte-carlo: rgb(122, 197, 180);
--hsl-monte-carlo: hsl(166, 39, 63);
--hsv-monte-carlo: hsv(166, 38, 77);
/* Periglacial Blue */
--hex-periglacial-blue: #acb6b2;
--rgb-periglacial-blue: rgb(172, 182, 178);
--hsl-periglacial-blue: hsl(156, 6, 69);
--hsv-periglacial-blue: hsv(156, 5, 71);
/* Dark Sea Green */
--hex-dark-sea-green: #8fbc8f;
--rgb-dark-sea-green: rgb(143, 188, 143);
--hsl-dark-sea-green: hsl(120, 25, 65);
--hsv-dark-sea-green: hsv(120, 24, 74);
/* Skeptic */
--hex-skeptic: #9db4aa;
--rgb-skeptic: rgb(157, 180, 170);
--hsl-skeptic: hsl(154, 13, 66);
--hsv-skeptic: hsv(154, 13, 71);
/* Conch */
--hex-conch: #a0b1ae;
--rgb-conch: rgb(160, 177, 174);
--hsl-conch: hsl(169, 10, 66);
--hsv-conch: hsv(169, 10, 69);
/* Summer Green */
--hex-summer-green: #8fb69c;
--rgb-summer-green: rgb(143, 182, 156);
--hsl-summer-green: hsl(140, 21, 64);
--hsv-summer-green: hsv(140, 21, 71);
/* Mantis */
--hex-mantis: #7fc15c;
--rgb-mantis: rgb(127, 193, 92);
--hsl-mantis: hsl(99, 45, 56);
--hsv-mantis: hsv(99, 52, 76);
/* Emerald */
--hex-emerald: #50c878;
--rgb-emerald: rgb(80, 200, 120);
--hsl-emerald: hsl(140, 52, 55);
--hsv-emerald: hsv(140, 60, 78);
/* Silver Tree */
--hex-silver-tree: #67be90;
--rgb-silver-tree: rgb(103, 190, 144);
--hsl-silver-tree: hsl(148, 40, 57);
--hsv-silver-tree: hsv(148, 46, 75);
/* Tower Grey */
--hex-tower-grey: #9caca5;
--rgb-tower-grey: rgb(156, 172, 165);
--hsl-tower-grey: hsl(154, 9, 64);
--hsv-tower-grey: hsv(154, 9, 67);
/* Shamrock */
--hex-shamrock: #33cc99;
--rgb-shamrock: rgb(51, 204, 153);
--hsl-shamrock: hsl(160, 60, 50);
--hsv-shamrock: hsv(160, 75, 80);
/* Hit Grey */
--hex-hit-grey: #a1a9a8;
--rgb-hit-grey: rgb(161, 169, 168);
--hsl-hit-grey: hsl(173, 4, 65);
--hsv-hit-grey: hsv(173, 5, 66);
/* Sea Nymph */
--hex-sea-nymph: #8aaea4;
--rgb-sea-nymph: rgb(138, 174, 164);
--hsl-sea-nymph: hsl(163, 18, 61);
--hsv-sea-nymph: hsv(163, 21, 68);
/* Padua */
--hex-padua: #7eb394;
--rgb-padua: rgb(126, 179, 148);
--hsl-padua: hsl(145, 26, 60);
--hsv-padua: hsv(145, 30, 70);
/* Malachite */
--hex-malachite: #0bda51;
--rgb-malachite: rgb(11, 218, 81);
--hsl-malachite: hsl(140, 90, 45);
--hsv-malachite: hsv(140, 95, 85);
/* Gulf Stream */
--hex-gulf-stream: #74b2a8;
--rgb-gulf-stream: rgb(116, 178, 168);
--hsl-gulf-stream: hsl(170, 29, 58);
--hsv-gulf-stream: hsv(170, 35, 70);
/* Puerto Rico */
--hex-puerto-rico: #59baa3;
--rgb-puerto-rico: rgb(89, 186, 163);
--hsl-puerto-rico: hsl(166, 41, 54);
--hsv-puerto-rico: hsv(166, 52, 73);
/* Bay Leaf */
--hex-bay-leaf: #7bb18d;
--rgb-bay-leaf: rgb(123, 177, 141);
--hsl-bay-leaf: hsl(140, 26, 59);
--hsv-bay-leaf: hsv(140, 31, 69);
/* Mantle */
--hex-mantle: #96a793;
--rgb-mantle: rgb(150, 167, 147);
--hsl-mantle: hsl(111, 10, 62);
--hsv-mantle: hsv(111, 12, 65);
/* Keppel */
--hex-keppel: #5fb69c;
--rgb-keppel: rgb(95, 182, 156);
--hsl-keppel: hsl(162, 37, 54);
--hsv-keppel: hsv(162, 48, 71);
/* Cascade */
--hex-cascade: #8ca8a0;
--rgb-cascade: rgb(140, 168, 160);
--hsl-cascade: hsl(163, 14, 60);
--hsv-cascade: hsv(163, 17, 66);
/* Lime Green */
--hex-lime-green: #32cd32;
--rgb-lime-green: rgb(50, 205, 50);
--hsl-lime-green: hsl(120, 61, 50);
--hsv-lime-green: hsv(120, 76, 80);
/* Edward */
--hex-edward: #97a49a;
--rgb-edward: rgb(151, 164, 154);
--hsl-edward: hsl(134, 7, 62);
--hsv-edward: hsv(134, 8, 64);
/* Tradewind */
--hex-tradewind: #6dafa7;
--rgb-tradewind: rgb(109, 175, 167);
--hsl-tradewind: hsl(173, 29, 56);
--hsv-tradewind: hsv(173, 38, 69);
/* Fern */
--hex-fern: #63b76c;
--rgb-fern: rgb(99, 183, 108);
--hsl-fern: hsl(126, 37, 55);
--hsv-fern: hsv(126, 46, 72);
/* Envy */
--hex-envy: #8ba58f;
--rgb-envy: rgb(139, 165, 143);
--hsl-envy: hsl(129, 13, 60);
--hsv-envy: hsv(129, 16, 65);
/* Acapulco */
--hex-acapulco: #75aa94;
--rgb-acapulco: rgb(117, 170, 148);
--hsl-acapulco: hsl(155, 24, 56);
--hsv-acapulco: hsv(155, 31, 67);
/* Caribbean Green */
--hex-caribbean-green: #00cc99;
--rgb-caribbean-green: rgb(0, 204, 153);
--hsl-caribbean-green: hsl(165, 100, 40);
--hsv-caribbean-green: hsv(165, 100, 80);
/* Pewter */
--hex-pewter: #91a092;
--rgb-pewter: rgb(145, 160, 146);
--hsl-pewter: hsl(124, 7, 60);
--hsv-pewter: hsv(124, 9, 63);
/* Apple */
--hex-apple: #66b348;
--rgb-apple: rgb(102, 179, 72);
--hsl-apple: hsl(103, 43, 49);
--hsv-apple: hsv(103, 60, 70);
/* Kelly Green */
--hex-kelly-green: #4cbb17;
--rgb-kelly-green: rgb(76, 187, 23);
--hsl-kelly-green: hsl(101, 78, 41);
--hsv-kelly-green: hsv(101, 88, 73);
/* Medium Sea Green */
--hex-medium-sea-green: #3cb371;
--rgb-medium-sea-green: rgb(60, 179, 113);
--hsl-medium-sea-green: hsl(147, 50, 47);
--hsv-medium-sea-green: hsv(147, 66, 70);
/* Asparagus */
--hex-asparagus: #7ba05b;
--rgb-asparagus: rgb(123, 160, 91);
--hsl-asparagus: hsl(92, 27, 49);
--hsv-asparagus: hsv(92, 43, 63);
/* Amulet */
--hex-amulet: #7d9d72;
--rgb-amulet: rgb(125, 157, 114);
--hsl-amulet: hsl(105, 18, 53);
--hsv-amulet: hsv(105, 27, 62);
/* Ocean Green */
--hex-ocean-green: #4ca973;
--rgb-ocean-green: rgb(76, 169, 115);
--hsl-ocean-green: hsl(145, 38, 48);
--hsv-ocean-green: hsv(145, 55, 66);
/* Mountain Meadow */
--hex-mountain-meadow: #1ab385;
--rgb-mountain-meadow: rgb(26, 179, 133);
--hsl-mountain-meadow: hsl(162, 75, 40);
--hsv-mountain-meadow: hsv(162, 85, 70);
/* Dark Pastel Green */
--hex-dark-pastel-green: #03c03c;
--rgb-dark-pastel-green: rgb(3, 192, 60);
--hsl-dark-pastel-green: hsl(138, 97, 38);
--hsv-dark-pastel-green: hsv(138, 98, 75);
/* Granny Smith */
--hex-granny-smith: #7b948c;
--rgb-granny-smith: rgb(123, 148, 140);
--hsl-granny-smith: hsl(161, 10, 53);
--hsv-granny-smith: hsv(161, 17, 58);
/* Oxley */
--hex-oxley: #6d9a78;
--rgb-oxley: rgb(109, 154, 120);
--hsl-oxley: hsl(135, 18, 52);
--hsv-oxley: hsv(135, 29, 60);
/* Jungle Green */
--hex-jungle-green: #29ab87;
--rgb-jungle-green: rgb(41, 171, 135);
--hsl-jungle-green: hsl(163, 61, 42);
--hsv-jungle-green: hsv(163, 76, 67);
/* Niagara */
--hex-niagara: #29a98b;
--rgb-niagara: rgb(41, 169, 139);
--hsl-niagara: hsl(166, 61, 41);
--hsv-niagara: hsv(166, 76, 66);
/* Highland */
--hex-highland: #7a9461;
--rgb-highland: rgb(122, 148, 97);
--hsl-highland: hsl(91, 21, 48);
--hsv-highland: hsv(91, 34, 58);
/* Juniper */
--hex-juniper: #74918e;
--rgb-juniper: rgb(116, 145, 142);
--hsl-juniper: hsl(174, 12, 51);
--hsv-juniper: hsv(174, 20, 57);
/* Fruit Salad */
--hex-fruit-salad: #4ba351;
--rgb-fruit-salad: rgb(75, 163, 81);
--hsl-fruit-salad: hsl(124, 37, 47);
--hsv-fruit-salad: hsv(124, 54, 64);
/* Gumbo */
--hex-gumbo: #718f8a;
--rgb-gumbo: rgb(113, 143, 138);
--hsl-gumbo: hsl(170, 12, 50);
--hsv-gumbo: hsv(170, 21, 56);
/* Gossamer */
--hex-gossamer: #399f86;
--rgb-gossamer: rgb(57, 159, 134);
--hsl-gossamer: hsl(165, 47, 42);
--hsv-gossamer: hsv(165, 64, 62);
/* Oslo Grey */
--hex-oslo-grey: #818988;
--rgb-oslo-grey: rgb(129, 137, 136);
--hsl-oslo-grey: hsl(173, 3, 52);
--hsv-oslo-grey: hsv(173, 6, 54);
/* Stack */
--hex-stack: #858885;
--rgb-stack: rgb(133, 136, 133);
--hsl-stack: hsl(120, 1, 53);
--hsv-stack: hsv(120, 2, 53);
/* Patina */
--hex-patina: #639283;
--rgb-patina: rgb(99, 146, 131);
--hsl-patina: hsl(161, 19, 48);
--hsv-patina: hsv(161, 32, 57);
/* Chateau Green */
--hex-chateau-green: #419f59;
--rgb-chateau-green: rgb(65, 159, 89);
--hsl-chateau-green: hsl(135, 42, 44);
--hsv-chateau-green: hsv(135, 59, 62);
/* Spanish Green */
--hex-spanish-green: #7b8976;
--rgb-spanish-green: rgb(123, 137, 118);
--hsl-spanish-green: hsl(104, 7, 50);
--hsv-spanish-green: hsv(104, 14, 54);
/* Laurel */
--hex-laurel: #6e8d71;
--rgb-laurel: rgb(110, 141, 113);
--hsl-laurel: hsl(126, 12, 49);
--hsv-laurel: hsv(126, 22, 55);
/* Davy's Grey */
--hex-davy-s-grey: #788878;
--rgb-davy-s-grey: rgb(120, 136, 120);
--hsl-davy-s-grey: hsl(120, 6, 50);
--hsv-davy-s-grey: hsv(120, 12, 53);
/* Limeade */
--hex-limeade: #5f9727;
--rgb-limeade: rgb(95, 151, 39);
--hsl-limeade: hsl(90, 59, 37);
--hsv-limeade: hsv(90, 74, 59);
/* Blue Smoke */
--hex-blue-smoke: #78857a;
--rgb-blue-smoke: rgb(120, 133, 122);
--hsl-blue-smoke: hsl(129, 5, 50);
--hsv-blue-smoke: hsv(129, 10, 52);
/* Xanadu */
--hex-xanadu: #75876e;
--rgb-xanadu: rgb(117, 135, 110);
--hsl-xanadu: hsl(103, 10, 48);
--hsv-xanadu: hsv(103, 19, 53);
/* Persian Green */
--hex-persian-green: #00a693;
--rgb-persian-green: rgb(0, 166, 147);
--hsl-persian-green: hsl(173, 100, 33);
--hsv-persian-green: hsv(173, 100, 65);
/* Camouflage Green */
--hex-camouflage-green: #78866b;
--rgb-camouflage-green: rgb(120, 134, 107);
--hsl-camouflage-green: hsl(91, 11, 47);
--hsv-camouflage-green: hsv(91, 20, 53);
/* Jade */
--hex-jade: #00a86b;
--rgb-jade: rgb(0, 168, 107);
--hsl-jade: hsl(158, 100, 33);
--hsv-jade: hsv(158, 100, 66);
/* Lochinvar */
--hex-lochinvar: #489084;
--rgb-lochinvar: rgb(72, 144, 132);
--hsl-lochinvar: hsl(170, 33, 42);
--hsv-lochinvar: hsv(170, 50, 56);
/* Boulder */
--hex-boulder: #7c817c;
--rgb-boulder: rgb(124, 129, 124);
--hsl-boulder: hsl(120, 2, 50);
--hsv-boulder: hsv(120, 4, 51);
/* Hippie Green */
--hex-hippie-green: #608a5a;
--rgb-hippie-green: rgb(96, 138, 90);
--hsl-hippie-green: hsl(113, 21, 45);
--hsv-hippie-green: hsv(113, 35, 54);
/* Eucalyptus */
--hex-eucalyptus: #329760;
--rgb-eucalyptus: rgb(50, 151, 96);
--hsl-eucalyptus: hsl(147, 50, 39);
--hsv-eucalyptus: hsv(147, 67, 59);
/* Pigment Green */
--hex-pigment-green: #00a550;
--rgb-pigment-green: rgb(0, 165, 80);
--hsl-pigment-green: hsl(149, 100, 32);
--hsv-pigment-green: hsv(149, 100, 65);
/* Free Speech Aquamarine */
--hex-free-speech-aquamarine: #029d74;
--rgb-free-speech-aquamarine: rgb(2, 157, 116);
--hsl-free-speech-aquamarine: hsl(164, 97, 31);
--hsv-free-speech-aquamarine: hsv(164, 99, 62);
/* Cutty Sark */
--hex-cutty-sark: #5c8173;
--rgb-cutty-sark: rgb(92, 129, 115);
--hsl-cutty-sark: hsl(157, 17, 43);
--hsv-cutty-sark: hsv(157, 29, 51);
/* Shamrock Green */
--hex-shamrock-green: #009e60;
--rgb-shamrock-green: rgb(0, 158, 96);
--hsl-shamrock-green: hsl(156, 100, 31);
--hsv-shamrock-green: hsv(156, 100, 62);
/* Glade Green */
--hex-glade-green: #5f8151;
--rgb-glade-green: rgb(95, 129, 81);
--hsl-glade-green: hsl(103, 23, 41);
--hsv-glade-green: hsv(103, 37, 51);
/* Rolling Stone */
--hex-rolling-stone: #6d7876;
--rgb-rolling-stone: rgb(109, 120, 118);
--hsl-rolling-stone: hsl(169, 5, 45);
--hsv-rolling-stone: hsv(169, 9, 47);
/* Sea Green */
--hex-sea-green: #2e8b57;
--rgb-sea-green: rgb(46, 139, 87);
--hsl-sea-green: hsl(146, 50, 36);
--hsv-sea-green: hsv(146, 67, 55);
/* La Palma */
--hex-la-palma: #428929;
--rgb-la-palma: rgb(66, 137, 41);
--hsl-la-palma: hsl(104, 54, 35);
--hsv-la-palma: hsv(104, 70, 54);
/* Viridian */
--hex-viridian: #40826d;
--rgb-viridian: rgb(64, 130, 109);
--hsl-viridian: hsl(161, 34, 38);
--hsv-viridian: hsv(161, 51, 51);
/* Sirocco */
--hex-sirocco: #68766e;
--rgb-sirocco: rgb(104, 118, 110);
--hsl-sirocco: hsl(146, 6, 44);
--hsv-sirocco: hsv(146, 12, 46);
/* Dingley */
--hex-dingley: #607c47;
--rgb-dingley: rgb(96, 124, 71);
--hsl-dingley: hsl(92, 27, 38);
--hsv-dingley: hsv(92, 43, 49);
/* Axolotl */
--hex-axolotl: #63775a;
--rgb-axolotl: rgb(99, 119, 90);
--hsl-axolotl: hsl(101, 14, 41);
--hsv-axolotl: hsv(101, 24, 47);
/* Elf Green */
--hex-elf-green: #1b8a6b;
--rgb-elf-green: rgb(27, 138, 107);
--hsl-elf-green: hsl(163, 67, 32);
--hsv-elf-green: hsv(163, 80, 54);
/* Finlandia */
--hex-finlandia: #61755b;
--rgb-finlandia: rgb(97, 117, 91);
--hsl-finlandia: hsl(106, 12, 41);
--hsv-finlandia: hsv(106, 22, 46);
/* Observatory */
--hex-observatory: #008f70;
--rgb-observatory: rgb(0, 143, 112);
--hsl-observatory: hsl(167, 100, 28);
--hsv-observatory: hsv(167, 100, 56);
/* Islamic Green */
--hex-islamic-green: #009900;
--rgb-islamic-green: rgb(0, 153, 0);
--hsl-islamic-green: hsl(120, 100, 30);
--hsv-islamic-green: hsv(120, 100, 60);
/* Forest Green */
--hex-forest-green: #228b22;
--rgb-forest-green: rgb(34, 139, 34);
--hsl-forest-green: hsl(120, 61, 34);
--hsv-forest-green: hsv(120, 76, 55);
/* Como */
--hex-como: #4c785c;
--rgb-como: rgb(76, 120, 92);
--hsl-como: hsl(142, 22, 38);
--hsv-como: hsv(142, 37, 47);
/* Fern Green */
--hex-fern-green: #4f7942;
--rgb-fern-green: rgb(79, 121, 66);
--hsl-fern-green: hsl(106, 29, 37);
--hsv-fern-green: hsv(106, 45, 47);
/* Dark Green Copper */
--hex-dark-green-copper: #4a766e;
--rgb-dark-green-copper: rgb(74, 118, 110);
--hsl-dark-green-copper: hsl(169, 23, 38);
--hsv-dark-green-copper: hsv(169, 37, 46);
/* William */
--hex-william: #53736f;
--rgb-william: rgb(83, 115, 111);
--hsl-william: hsl(173, 16, 39);
--hsv-william: hsv(173, 28, 45);
/* Bilbao */
--hex-bilbao: #3e8027;
--rgb-bilbao: rgb(62, 128, 39);
--hsl-bilbao: hsl(104, 53, 33);
--hsv-bilbao: hsv(104, 70, 50);
/* Amazon */
--hex-amazon: #387b54;
--rgb-amazon: rgb(56, 123, 84);
--hsl-amazon: hsl(145, 37, 35);
--hsv-amazon: hsv(145, 54, 48);
/* Killarney */
--hex-killarney: #49764f;
--rgb-killarney: rgb(73, 118, 79);
--hsl-killarney: hsl(128, 24, 37);
--hsv-killarney: hsv(128, 38, 46);
/* Cactus */
--hex-cactus: #5b6f55;
--rgb-cactus: rgb(91, 111, 85);
--hsl-cactus: hsl(106, 13, 38);
--hsv-cactus: hsv(106, 23, 44);
/* Genoa */
--hex-genoa: #31796d;
--rgb-genoa: rgb(49, 121, 109);
--hsl-genoa: hsl(170, 42, 33);
--hsv-genoa: hsv(170, 60, 47);
/* Deep Sea */
--hex-deep-sea: #167e65;
--rgb-deep-sea: rgb(22, 126, 101);
--hsl-deep-sea: hsl(166, 70, 29);
--hsv-deep-sea: hsv(166, 83, 49);
/* Salem */
--hex-salem: #177b4d;
--rgb-salem: rgb(23, 123, 77);
--hsl-salem: hsl(152, 68, 29);
--hsv-salem: hsv(152, 81, 48);
/* Japanese Laurel */
--hex-japanese-laurel: #2f7532;
--rgb-japanese-laurel: rgb(47, 117, 50);
--hsl-japanese-laurel: hsl(123, 43, 32);
--hsv-japanese-laurel: hsv(123, 60, 46);
/* Mineral Green */
--hex-mineral-green: #506355;
--rgb-mineral-green: rgb(80, 99, 85);
--hsl-mineral-green: hsl(136, 11, 35);
--hsv-mineral-green: hsv(136, 19, 39);
/* Tom Thumb */
--hex-tom-thumb: #4f6348;
--rgb-tom-thumb: rgb(79, 99, 72);
--hsl-tom-thumb: hsl(104, 16, 34);
--hsv-tom-thumb: hsv(104, 27, 39);
/* San Felix */
--hex-san-felix: #2c6e31;
--rgb-san-felix: rgb(44, 110, 49);
--hsl-san-felix: hsl(125, 43, 30);
--hsv-san-felix: hsv(125, 60, 43);
/* Green */
--hex-green: #008000;
--rgb-green: rgb(0, 128, 0);
--hsl-green: hsl(120, 100, 25);
--hsv-green: hsv(120, 100, 50);
/* Dark Spring Green */
--hex-dark-spring-green: #177245;
--rgb-dark-spring-green: rgb(23, 114, 69);
--hsl-dark-spring-green: hsl(150, 66, 27);
--hsv-dark-spring-green: hsv(150, 80, 45);
/* Dell */
--hex-dell: #486531;
--rgb-dell: rgb(72, 101, 49);
--hsl-dell: hsl(93, 35, 29);
--hsv-dell: hsv(93, 51, 40);
/* Stromboli */
--hex-stromboli: #406356;
--rgb-stromboli: rgb(64, 99, 86);
--hsl-stromboli: hsl(158, 21, 32);
--hsv-stromboli: hsv(158, 35, 39);
/* Tropical Rain Forest */
--hex-tropical-rain-forest: #00755e;
--rgb-tropical-rain-forest: rgb(0, 117, 94);
--hsl-tropical-rain-forest: hsl(168, 100, 23);
--hsv-tropical-rain-forest: hsv(168, 100, 46);
/* Viridian Green */
--hex-viridian-green: #4b5f56;
--rgb-viridian-green: rgb(75, 95, 86);
--hsl-viridian-green: hsl(153, 12, 33);
--hsv-viridian-green: hsv(153, 21, 37);
/* Feldgrau */
--hex-feldgrau: #4d5d53;
--rgb-feldgrau: rgb(77, 93, 83);
--hsl-feldgrau: hsl(143, 9, 33);
--hsv-feldgrau: hsv(143, 17, 36);
/* Nandor */
--hex-nandor: #4e5d4e;
--rgb-nandor: rgb(78, 93, 78);
--hsl-nandor: hsl(120, 9, 34);
--hsv-nandor: hsv(120, 16, 36);
/* Green House */
--hex-green-house: #3e6334;
--rgb-green-house: rgb(62, 99, 52);
--hsl-green-house: hsl(107, 31, 30);
--hsv-green-house: hsv(107, 47, 39);
/* Camarone */
--hex-camarone: #206937;
--rgb-camarone: rgb(32, 105, 55);
--hsl-camarone: hsl(139, 53, 27);
--hsv-camarone: hsv(139, 70, 41);
/* Battleship Grey */
--hex-battleship-grey: #51574f;
--rgb-battleship-grey: rgb(81, 87, 79);
--hsl-battleship-grey: hsl(105, 5, 33);
--hsv-battleship-grey: hsv(105, 9, 34);
/* Eden */
--hex-eden: #266255;
--rgb-eden: rgb(38, 98, 85);
--hsl-eden: hsl(167, 44, 27);
--hsv-eden: hsv(167, 61, 38);
/* Watercourse */
--hex-watercourse: #006e4e;
--rgb-watercourse: rgb(0, 110, 78);
--hsl-watercourse: hsl(163, 100, 22);
--hsv-watercourse: hsv(163, 100, 43);
/* Spectra */
--hex-spectra: #375d4f;
--rgb-spectra: rgb(55, 93, 79);
--hsl-spectra: hsl(158, 26, 29);
--hsv-spectra: hsv(158, 41, 36);
/* Grey-Asparagus */
--hex-grey-asparagus: #465945;
--rgb-grey-asparagus: rgb(70, 89, 69);
--hsl-grey-asparagus: hsl(117, 13, 31);
--hsv-grey-asparagus: hsv(117, 22, 35);
/* Cape Cod */
--hex-cape-cod: #4e5552;
--rgb-cape-cod: rgb(78, 85, 82);
--hsl-cape-cod: hsl(154, 4, 32);
--hsv-cape-cod: hsv(154, 8, 33);
/* Jewel */
--hex-jewel: #136843;
--rgb-jewel: rgb(19, 104, 67);
--hsl-jewel: hsl(154, 69, 24);
--hsv-jewel: hsv(154, 82, 41);
/* Green Pea */
--hex-green-pea: #266242;
--rgb-green-pea: rgb(38, 98, 66);
--hsl-green-pea: hsl(148, 44, 27);
--hsv-green-pea: hsv(148, 61, 38);
/* Hunter Green */
--hex-hunter-green: #355e3b;
--rgb-hunter-green: rgb(53, 94, 59);
--hsl-hunter-green: hsl(129, 28, 29);
--hsv-hunter-green: hsv(129, 44, 37);
/* Evening Sea */
--hex-evening-sea: #26604f;
--rgb-evening-sea: rgb(38, 96, 79);
--hsl-evening-sea: hsl(162, 43, 26);
--hsv-evening-sea: hsv(162, 60, 38);
/* Plantation */
--hex-plantation: #3e594c;
--rgb-plantation: rgb(62, 89, 76);
--hsl-plantation: hsl(151, 18, 30);
--hsv-plantation: hsv(151, 30, 35);
/* Cabbage Pont */
--hex-cabbage-pont: #4c5544;
--rgb-cabbage-pont: rgb(76, 85, 68);
--hsl-cabbage-pont: hsl(92, 11, 30);
--hsv-cabbage-pont: hsv(92, 20, 33);
/* Parsley */
--hex-parsley: #305d35;
--rgb-parsley: rgb(48, 93, 53);
--hsl-parsley: hsl(127, 32, 28);
--hsv-parsley: hsv(127, 48, 36);
/* Fun Green */
--hex-fun-green: #15633d;
--rgb-fun-green: rgb(21, 99, 61);
--hsl-fun-green: hsl(151, 65, 24);
--hsv-fun-green: hsv(151, 79, 39);
/* Goblin */
--hex-goblin: #34533d;
--rgb-goblin: rgb(52, 83, 61);
--hsl-goblin: hsl(137, 23, 26);
--hsv-goblin: hsv(137, 37, 33);
/* Corduroy */
--hex-corduroy: #404d49;
--rgb-corduroy: rgb(64, 77, 73);
--hsl-corduroy: hsl(162, 9, 28);
--hsv-corduroy: hsv(162, 17, 30);
/* Crusoe */
--hex-crusoe: #165b31;
--rgb-crusoe: rgb(22, 91, 49);
--hsl-crusoe: hsl(143, 61, 22);
--hsv-crusoe: hsv(143, 76, 36);
/* Armadillo */
--hex-armadillo: #484a46;
--rgb-armadillo: rgb(72, 74, 70);
--hsl-armadillo: hsl(90, 3, 28);
--hsv-armadillo: hsv(90, 5, 29);
/* Kaitoke Green */
--hex-kaitoke-green: #245336;
--rgb-kaitoke-green: rgb(36, 83, 54);
--hsl-kaitoke-green: hsl(143, 39, 23);
--hsv-kaitoke-green: hsv(143, 57, 33);
/* Te Papa Green */
--hex-te-papa-green: #2b4b40;
--rgb-te-papa-green: rgb(43, 75, 64);
--hsl-te-papa-green: hsl(159, 27, 23);
--hsv-te-papa-green: hsv(159, 43, 29);
/* Palm Leaf */
--hex-palm-leaf: #36482f;
--rgb-palm-leaf: rgb(54, 72, 47);
--hsl-palm-leaf: hsl(103, 21, 23);
--hsv-palm-leaf: hsv(103, 35, 28);
/* Firefly */
--hex-firefly: #314643;
--rgb-firefly: rgb(49, 70, 67);
--hsl-firefly: hsl(171, 18, 23);
--hsv-firefly: hsv(171, 30, 27);
/* Mallard */
--hex-mallard: #3a4531;
--rgb-mallard: rgb(58, 69, 49);
--hsl-mallard: hsl(93, 17, 23);
--hsv-mallard: hsv(93, 29, 27);
/* Gable Green */
--hex-gable-green: #2c4641;
--rgb-gable-green: rgb(44, 70, 65);
--hsl-gable-green: hsl(168, 23, 22);
--hsv-gable-green: hsv(168, 37, 27);
/* County Green */
--hex-county-green: #1b4b35;
--rgb-county-green: rgb(27, 75, 53);
--hsl-county-green: hsl(153, 47, 20);
--hsv-county-green: hsv(153, 64, 29);
/* Timber Green */
--hex-timber-green: #324336;
--rgb-timber-green: rgb(50, 67, 54);
--hsl-timber-green: hsl(134, 15, 23);
--hsv-timber-green: hsv(134, 25, 26);
/* Bottle Green */
--hex-bottle-green: #254636;
--rgb-bottle-green: rgb(37, 70, 54);
--hsl-bottle-green: hsl(151, 31, 21);
--hsv-bottle-green: hsv(151, 47, 27);
/* Burnham */
--hex-burnham: #234537;
--rgb-burnham: rgb(35, 69, 55);
--hsl-burnham: hsl(155, 33, 20);
--hsv-burnham: hsv(155, 49, 27);
/* Everglade */
--hex-everglade: #264334;
--rgb-everglade: rgb(38, 67, 52);
--hsl-everglade: hsl(149, 28, 21);
--hsv-everglade: hsv(149, 43, 26);
/* Sherwood Green */
--hex-sherwood-green: #1b4636;
--rgb-sherwood-green: rgb(27, 70, 54);
--hsl-sherwood-green: hsl(158, 44, 19);
--hsv-sherwood-green: hsv(158, 61, 27);
/* English Holly */
--hex-english-holly: #274234;
--rgb-english-holly: rgb(39, 66, 52);
--hsl-english-holly: hsl(149, 26, 21);
--hsv-english-holly: hsv(149, 41, 26);
/* Deep Teal */
--hex-deep-teal: #19443c;
--rgb-deep-teal: rgb(25, 68, 60);
--hsl-deep-teal: hsl(169, 46, 18);
--hsv-deep-teal: hsv(169, 63, 27);
/* Zuccini */
--hex-zuccini: #17462e;
--rgb-zuccini: rgb(23, 70, 46);
--hsl-zuccini: hsl(149, 51, 18);
--hsv-zuccini: hsv(149, 67, 27);
/* Celtic */
--hex-celtic: #2b3f36;
--rgb-celtic: rgb(43, 63, 54);
--hsl-celtic: hsl(153, 19, 21);
--hsv-celtic: hsv(153, 32, 25);
/* Myrtle */
--hex-myrtle: #21421e;
--rgb-myrtle: rgb(33, 66, 30);
--hsl-myrtle: hsl(115, 38, 19);
--hsv-myrtle: hsv(115, 55, 26);
/* Palm Green */
--hex-palm-green: #20392c;
--rgb-palm-green: rgb(32, 57, 44);
--hsl-palm-green: hsl(149, 28, 17);
--hsv-palm-green: hsv(149, 44, 22);
/* Oil */
--hex-oil: #313330;
--rgb-oil: rgb(49, 51, 48);
--hsl-oil: hsl(100, 3, 19);
--hsv-oil: hsv(100, 6, 20);
/* British Racing Green */
--hex-british-racing-green: #004225;
--rgb-british-racing-green: rgb(0, 66, 37);
--hsl-british-racing-green: hsl(154, 100, 13);
--hsv-british-racing-green: hsv(154, 100, 26);
/* Aztec */
--hex-aztec: #293432;
--rgb-aztec: rgb(41, 52, 50);
--hsl-aztec: hsl(169, 12, 18);
--hsv-aztec: hsv(169, 21, 20);
/* Deep Fir */
--hex-deep-fir: #193925;
--rgb-deep-fir: rgb(25, 57, 37);
--hsl-deep-fir: hsl(143, 39, 16);
--hsv-deep-fir: hsv(143, 56, 22);
/* Woodsmoke */
--hex-woodsmoke: #2b3230;
--rgb-woodsmoke: rgb(43, 50, 48);
--hsl-woodsmoke: hsl(163, 8, 18);
--hsv-woodsmoke: hsv(163, 14, 20);
/* Gordons Green */
--hex-gordons-green: #29332b;
--rgb-gordons-green: rgb(41, 51, 43);
--hsl-gordons-green: hsl(132, 11, 18);
--hsv-gordons-green: hsv(132, 20, 20);
/* Holly */
--hex-holly: #25342b;
--rgb-holly: rgb(37, 52, 43);
--hsl-holly: hsl(144, 17, 17);
--hsv-holly: hsv(144, 29, 20);
/* Black Forest */
--hex-black-forest: #2c3227;
--rgb-black-forest: rgb(44, 50, 39);
--hsl-black-forest: hsl(93, 12, 17);
--hsv-black-forest: hsv(93, 22, 20);
/* Cardin Green */
--hex-cardin-green: #1b3427;
--rgb-cardin-green: rgb(27, 52, 39);
--hsl-cardin-green: hsl(149, 32, 15);
--hsv-cardin-green: hsv(149, 48, 20);
/* Racing Green */
--hex-racing-green: #232f2c;
--rgb-racing-green: rgb(35, 47, 44);
--hsl-racing-green: hsl(165, 15, 16);
--hsv-racing-green: hsv(165, 26, 18);
/* Midnight Moss */
--hex-midnight-moss: #242e28;
--rgb-midnight-moss: rgb(36, 46, 40);
--hsl-midnight-moss: hsl(144, 12, 16);
--hsv-midnight-moss: hsv(144, 22, 18);
/* Black Bean */
--hex-black-bean: #232e26;
--rgb-black-bean: rgb(35, 46, 38);
--hsl-black-bean: hsl(136, 14, 16);
--hsv-black-bean: hsv(136, 24, 18);
/* Dark Green */
--hex-dark-green: #013220;
--rgb-dark-green: rgb(1, 50, 32);
--hsl-dark-green: hsl(158, 96, 10);
--hsv-dark-green: hsv(158, 98, 20);
/* cyan tones */
/* Azure */
--hex-azure: #f0ffff;
--rgb-azure: rgb(240, 255, 255);
--hsl-azure: hsl(180, 100, 97);
--hsv-azure: hsv(180, 6, 100);
/* Light Cyan */
--hex-light-cyan: #e0ffff;
--rgb-light-cyan: rgb(224, 255, 255);
--hsl-light-cyan: hsl(180, 100, 94);
--hsv-light-cyan: hsv(180, 12, 100);
/* Oyster Bay */
--hex-oyster-bay: #d1eaea;
--rgb-oyster-bay: rgb(209, 234, 234);
--hsl-oyster-bay: hsl(180, 37, 87);
--hsv-oyster-bay: hsv(180, 11, 92);
/* Foam */
--hex-foam: #d0eae8;
--rgb-foam: rgb(208, 234, 232);
--hsl-foam: hsl(175, 38, 87);
--hsv-foam: hsv(175, 11, 92);
/* Zircon */
--hex-zircon: #dee3e3;
--rgb-zircon: rgb(222, 227, 227);
--hsl-zircon: hsl(180, 8, 88);
--hsv-zircon: hsv(180, 2, 89);
/* Mabel */
--hex-mabel: #cbe8e8;
--rgb-mabel: rgb(203, 232, 232);
--hsl-mabel: hsl(180, 39, 85);
--hsv-mabel: hsv(180, 13, 91);
/* Pale Turquoise */
--hex-pale-turquoise: #afeeee;
--rgb-pale-turquoise: rgb(175, 238, 238);
--hsl-pale-turquoise: hsl(180, 65, 81);
--hsv-pale-turquoise: hsv(180, 26, 93);
/* Baby Blue */
--hex-baby-blue: #6fffff;
--rgb-baby-blue: rgb(111, 255, 255);
--hsl-baby-blue: hsl(180, 100, 72);
--hsv-baby-blue: hsv(180, 56, 100);
/* Electric Blue */
--hex-electric-blue: #7df9ff;
--rgb-electric-blue: rgb(125, 249, 255);
--hsl-electric-blue: hsl(183, 100, 75);
--hsv-electric-blue: hsv(183, 51, 100);
/* Onahau */
--hex-onahau: #c2e6ec;
--rgb-onahau: rgb(194, 230, 236);
--hsl-onahau: hsl(189, 53, 84);
--hsv-onahau: hsv(189, 18, 93);
/* Athens Grey */
--hex-athens-grey: #dcdddd;
--rgb-athens-grey: rgb(220, 221, 221);
--hsl-athens-grey: hsl(180, 1, 86);
--hsv-athens-grey: hsv(180, 0, 87);
/* Powder Blue */
--hex-powder-blue: #b0e0e6;
--rgb-powder-blue: rgb(176, 224, 230);
--hsl-powder-blue: hsl(187, 52, 80);
--hsv-powder-blue: hsv(187, 23, 90);
/* Blizzard Blue */
--hex-blizzard-blue: #a3e3ed;
--rgb-blizzard-blue: rgb(163, 227, 237);
--hsl-blizzard-blue: hsl(188, 67, 78);
--hsv-blizzard-blue: hsv(188, 31, 93);
/* Zumthor */
--hex-zumthor: #cdd5d5;
--rgb-zumthor: rgb(205, 213, 213);
--hsl-zumthor: hsl(180, 9, 82);
--hsv-zumthor: hsv(180, 4, 84);
/* Charlotte */
--hex-charlotte: #a4dce6;
--rgb-charlotte: rgb(164, 220, 230);
--hsl-charlotte: hsl(189, 57, 77);
--hsv-charlotte: hsv(189, 29, 90);
/* Light Blue */
--hex-light-blue: #add8e6;
--rgb-light-blue: rgb(173, 216, 230);
--hsl-light-blue: hsl(195, 53, 79);
--hsv-light-blue: hsv(195, 25, 90);
/* Iron */
--hex-iron: #cbcdcd;
--rgb-iron: rgb(203, 205, 205);
--hsl-iron: hsl(180, 2, 80);
--hsv-iron: hsv(180, 1, 80);
/* French Pass */
--hex-french-pass: #a4d2e0;
--rgb-french-pass: rgb(164, 210, 224);
--hsl-french-pass: hsl(194, 49, 76);
--hsv-french-pass: hsv(194, 27, 88);
/* Aqua */
--hex-aqua: #00ffff;
--rgb-aqua: rgb(0, 255, 255);
--hsl-aqua: hsl(180, 100, 50);
--hsv-aqua: hsv(180, 100, 100);
/* Morning Glory */
--hex-morning-glory: #9ed1d3;
--rgb-morning-glory: rgb(158, 209, 211);
--hsl-morning-glory: hsl(182, 38, 72);
--hsv-morning-glory: hsv(182, 25, 83);
/* Regent St Blue */
--hex-regent-st-blue: #a0cdd9;
--rgb-regent-st-blue: rgb(160, 205, 217);
--hsl-regent-st-blue: hsl(193, 43, 74);
--hsv-regent-st-blue: hsv(193, 26, 85);
/* Turquoise Blue */
--hex-turquoise-blue: #6cdae7;
--rgb-turquoise-blue: rgb(108, 218, 231);
--hsl-turquoise-blue: hsl(186, 72, 66);
--hsv-turquoise-blue: hsv(186, 53, 91);
/* Jungle Mist */
--hex-jungle-mist: #b0c4c4;
--rgb-jungle-mist: rgb(176, 196, 196);
--hsl-jungle-mist: hsl(180, 14, 73);
--hsv-jungle-mist: hsv(180, 10, 77);
/* Spray */
--hex-spray: #7ecddd;
--rgb-spray: rgb(126, 205, 221);
--hsl-spray: hsl(190, 58, 68);
--hsv-spray: hsv(190, 43, 87);
/* Bright Turquoise */
--hex-bright-turquoise: #08e8de;
--rgb-bright-turquoise: rgb(8, 232, 222);
--hsl-bright-turquoise: hsl(177, 93, 47);
--hsv-bright-turquoise: hsv(177, 97, 91);
/* Medium Turquoise */
--hex-medium-turquoise: #48d1cc;
--rgb-medium-turquoise: rgb(72, 209, 204);
--hsl-medium-turquoise: hsl(178, 60, 55);
--hsv-medium-turquoise: hsv(178, 66, 82);
/* Casper */
--hex-casper: #aab5b8;
--rgb-casper: rgb(170, 181, 184);
--hsl-casper: hsl(193, 9, 69);
--hsv-casper: hsv(193, 8, 72);
/* Gull Grey */
--hex-gull-grey: #a4adb0;
--rgb-gull-grey: rgb(164, 173, 176);
--hsl-gull-grey: hsl(195, 7, 67);
--hsv-gull-grey: hsv(195, 7, 69);
/* Botticelli */
--hex-botticelli: #92acb4;
--rgb-botticelli: rgb(146, 172, 180);
--hsl-botticelli: hsl(194, 18, 64);
--hsv-botticelli: hsv(194, 19, 71);
/* Glacier */
--hex-glacier: #78b1bf;
--rgb-glacier: rgb(120, 177, 191);
--hsl-glacier: hsl(192, 36, 61);
--hsv-glacier: hsv(192, 37, 75);
/* Dark Turquoise */
--hex-dark-turquoise: #00ced1;
--rgb-dark-turquoise: rgb(0, 206, 209);
--hsl-dark-turquoise: hsl(181, 100, 41);
--hsv-dark-turquoise: hsv(181, 100, 82);
/* Robin's Egg Blue */
--hex-robin-s-egg-blue: #00cccc;
--rgb-robin-s-egg-blue: rgb(0, 204, 204);
--hsl-robin-s-egg-blue: hsl(180, 100, 40);
--hsv-robin-s-egg-blue: hsv(180, 100, 80);
/* Ziggurat */
--hex-ziggurat: #81a6aa;
--rgb-ziggurat: rgb(129, 166, 170);
--hsl-ziggurat: hsl(186, 19, 59);
--hsv-ziggurat: hsv(186, 24, 67);
/* Fountain Blue */
--hex-fountain-blue: #65adb2;
--rgb-fountain-blue: rgb(101, 173, 178);
--hsl-fountain-blue: hsl(184, 33, 55);
--hsv-fountain-blue: hsv(184, 43, 70);
/* Neptune */
--hex-neptune: #77a8ab;
--rgb-neptune: rgb(119, 168, 171);
--hsl-neptune: hsl(183, 24, 57);
--hsv-neptune: hsv(183, 30, 67);
/* Viking */
--hex-viking: #4db1c8;
--rgb-viking: rgb(77, 177, 200);
--hsl-viking: hsl(191, 53, 54);
--hsv-viking: hsv(191, 62, 78);
/* Deep Sky Blue */
--hex-deep-sky-blue: #00bfff;
--rgb-deep-sky-blue: rgb(0, 191, 255);
--hsl-deep-sky-blue: hsl(195, 100, 50);
--hsv-deep-sky-blue: hsv(195, 100, 100);
/* Submarine */
--hex-submarine: #8c9c9c;
--rgb-submarine: rgb(140, 156, 156);
--hsl-submarine: hsl(180, 7, 58);
--hsv-submarine: hsv(180, 10, 61);
/* Light Sea Green */
--hex-light-sea-green: #20b2aa;
--rgb-light-sea-green: rgb(32, 178, 170);
--hsl-light-sea-green: hsl(177, 70, 41);
--hsv-light-sea-green: hsv(177, 82, 70);
/* Cadet Blue */
--hex-cadet-blue: #5f9ea0;
--rgb-cadet-blue: rgb(95, 158, 160);
--hsl-cadet-blue: hsl(182, 25, 50);
--hsv-cadet-blue: hsv(182, 41, 63);
/* Iris Blue */
--hex-iris-blue: #03b4c8;
--rgb-iris-blue: rgb(3, 180, 200);
--hsl-iris-blue: hsl(186, 97, 40);
--hsv-iris-blue: hsv(186, 99, 78);
/* Half Baked */
--hex-half-baked: #558f93;
--rgb-half-baked: rgb(85, 143, 147);
--hsl-half-baked: hsl(184, 27, 45);
--hsv-half-baked: hsv(184, 42, 58);
/* Pelorous */
--hex-pelorous: #2599b2;
--rgb-pelorous: rgb(37, 153, 178);
--hsl-pelorous: hsl(191, 66, 42);
--hsv-pelorous: hsv(191, 79, 70);
/* Gothic */
--hex-gothic: #698890;
--rgb-gothic: rgb(105, 136, 144);
--hsl-gothic: hsl(192, 16, 49);
--hsv-gothic: hsv(192, 27, 56);
/* Regent Grey */
--hex-regent-grey: #798488;
--rgb-regent-grey: rgb(121, 132, 136);
--hsl-regent-grey: hsl(196, 6, 50);
--hsv-regent-grey: hsv(196, 11, 53);
/* Horizon */
--hex-horizon: #648894;
--rgb-horizon: rgb(100, 136, 148);
--hsl-horizon: hsl(195, 19, 49);
--hsv-horizon: hsv(195, 32, 58);
/* Java */
--hex-java: #259797;
--rgb-java: rgb(37, 151, 151);
--hsl-java: hsl(180, 61, 37);
--hsv-java: hsv(180, 75, 59);
/* Pacific Blue */
--hex-pacific-blue: #009dc4;
--rgb-pacific-blue: rgb(0, 157, 196);
--hsl-pacific-blue: hsl(192, 100, 38);
--hsv-pacific-blue: hsv(192, 100, 77);
/* Blue Chill */
--hex-blue-chill: #408f90;
--rgb-blue-chill: rgb(64, 143, 144);
--hsl-blue-chill: hsl(181, 38, 41);
--hsv-blue-chill: hsv(181, 56, 56);
/* Hippie Blue */
--hex-hippie-blue: #49889a;
--rgb-hippie-blue: rgb(73, 136, 154);
--hsl-hippie-blue: hsl(193, 36, 45);
--hsv-hippie-blue: hsv(193, 53, 60);
/* Scooter */
--hex-scooter: #308ea0;
--rgb-scooter: rgb(48, 142, 160);
--hsl-scooter: hsl(190, 54, 41);
--hsv-scooter: hsv(190, 70, 63);
/* Hoki */
--hex-hoki: #647d86;
--rgb-hoki: rgb(100, 125, 134);
--hsl-hoki: hsl(196, 15, 46);
--hsv-hoki: hsv(196, 25, 53);
/* Bondi Blue */
--hex-bondi-blue: #0095b6;
--rgb-bondi-blue: rgb(0, 149, 182);
--hsl-bondi-blue: hsl(191, 100, 36);
--hsv-bondi-blue: hsv(191, 100, 71);
/* Paradiso */
--hex-paradiso: #488084;
--rgb-paradiso: rgb(72, 128, 132);
--hsl-paradiso: hsl(184, 29, 40);
--hsv-paradiso: hsv(184, 45, 52);
/* Blue Bayoux */
--hex-blue-bayoux: #62777e;
--rgb-blue-bayoux: rgb(98, 119, 126);
--hsl-blue-bayoux: hsl(195, 13, 44);
--hsv-blue-bayoux: hsv(195, 22, 49);
/* Breaker Bay */
--hex-breaker-bay: #517b78;
--rgb-breaker-bay: rgb(81, 123, 120);
--hsl-breaker-bay: hsl(176, 21, 40);
--hsv-breaker-bay: hsv(176, 34, 48);
/* Dark Cyan */
--hex-dark-cyan: #008b8b;
--rgb-dark-cyan: rgb(0, 139, 139);
--hsl-dark-cyan: hsl(180, 100, 27);
--hsv-dark-cyan: hsv(180, 100, 55);
/* Nevada */
--hex-nevada: #666f6f;
--rgb-nevada: rgb(102, 111, 111);
--hsl-nevada: hsl(180, 4, 42);
--hsv-nevada: hsv(180, 8, 44);
/* Eastern Blue */
--hex-eastern-blue: #00879f;
--rgb-eastern-blue: rgb(0, 135, 159);
--hsl-eastern-blue: hsl(189, 100, 31);
--hsv-eastern-blue: hsv(189, 100, 62);
/* Pale Sky */
--hex-pale-sky: #636d70;
--rgb-pale-sky: rgb(99, 109, 112);
--hsl-pale-sky: hsl(194, 6, 41);
--hsv-pale-sky: hsv(194, 12, 44);
/* Ming */
--hex-ming: #407577;
--rgb-ming: rgb(64, 117, 119);
--hsl-ming: hsl(182, 30, 36);
--hsv-ming: hsv(182, 46, 47);
/* Elm */
--hex-elm: #297b76;
--rgb-elm: rgb(41, 123, 118);
--hsl-elm: hsl(176, 50, 32);
--hsv-elm: hsv(176, 67, 48);
/* Atoll */
--hex-atoll: #2b797a;
--rgb-atoll: rgb(43, 121, 122);
--hsl-atoll: hsl(181, 48, 32);
--hsv-atoll: hsv(181, 65, 48);
/* Teal */
--hex-teal: #008080;
--rgb-teal: rgb(0, 128, 128);
--hsl-teal: hsl(180, 100, 25);
--hsv-teal: hsv(180, 100, 50);
/* Cerulean */
--hex-cerulean: #007ba7;
--rgb-cerulean: rgb(0, 123, 167);
--hsl-cerulean: hsl(196, 100, 33);
--hsv-cerulean: hsv(196, 100, 65);
/* Surfie Green */
--hex-surfie-green: #007b77;
--rgb-surfie-green: rgb(0, 123, 119);
--hsl-surfie-green: hsl(178, 100, 24);
--hsv-surfie-green: hsv(178, 100, 48);
/* Tax Break */
--hex-tax-break: #496569;
--rgb-tax-break: rgb(73, 101, 105);
--hsl-tax-break: hsl(188, 18, 35);
--hsv-tax-break: hsv(188, 30, 41);
/* Pine Green */
--hex-pine-green: #01796f;
--rgb-pine-green: rgb(1, 121, 111);
--hsl-pine-green: hsl(175, 98, 24);
--hsv-pine-green: hsv(175, 99, 47);
/* River Bed */
--hex-river-bed: #556061;
--rgb-river-bed: rgb(85, 96, 97);
--hsl-river-bed: hsl(185, 7, 36);
--hsv-river-bed: hsv(185, 12, 38);
/* Smalt Blue */
--hex-smalt-blue: #496267;
--rgb-smalt-blue: rgb(73, 98, 103);
--hsl-smalt-blue: hsl(190, 17, 35);
--hsv-smalt-blue: hsv(190, 29, 40);
/* Allports */
--hex-allports: #1f6a7d;
--rgb-allports: rgb(31, 106, 125);
--hsl-allports: hsl(192, 60, 31);
--hsv-allports: hsv(192, 75, 49);
/* Mako */
--hex-mako: #505555;
--rgb-mako: rgb(80, 85, 85);
--hsl-mako: hsl(180, 3, 32);
--hsv-mako: hsv(180, 6, 33);
/* Blue Stone */
--hex-blue-stone: #166461;
--rgb-blue-stone: rgb(22, 100, 97);
--hsl-blue-stone: hsl(178, 64, 24);
--hsv-blue-stone: hsv(178, 78, 39);
/* Dark Slate */
--hex-dark-slate: #465352;
--rgb-dark-slate: rgb(70, 83, 82);
--hsl-dark-slate: hsl(175, 8, 30);
--hsv-dark-slate: hsv(175, 16, 33);
/* Casal */
--hex-casal: #3f545a;
--rgb-casal: rgb(63, 84, 90);
--hsl-casal: hsl(193, 18, 30);
--hsv-casal: hsv(193, 30, 35);
/* Oracle */
--hex-oracle: #395555;
--rgb-oracle: rgb(57, 85, 85);
--hsl-oracle: hsl(180, 20, 28);
--hsv-oracle: hsv(180, 33, 33);
/* Blue Lagoon */
--hex-blue-lagoon: #00626f;
--rgb-blue-lagoon: rgb(0, 98, 111);
--hsl-blue-lagoon: hsl(187, 100, 22);
--hsv-blue-lagoon: hsv(187, 100, 44);
/* Blue Dianne */
--hex-blue-dianne: #35514f;
--rgb-blue-dianne: rgb(53, 81, 79);
--hsl-blue-dianne: hsl(176, 21, 26);
--hsv-blue-dianne: hsv(176, 35, 32);
/* Mosque */
--hex-mosque: #005f5b;
--rgb-mosque: rgb(0, 95, 91);
--hsl-mosque: hsl(177, 100, 19);
--hsv-mosque: hsv(177, 100, 37);
/* Dark Slate Grey */
--hex-dark-slate-grey: #2f4f4f;
--rgb-dark-slate-grey: rgb(47, 79, 79);
--hsl-dark-slate-grey: hsl(180, 25, 25);
--hsv-dark-slate-grey: hsv(180, 41, 31);
/* Teal Blue */
--hex-teal-blue: #254855;
--rgb-teal-blue: rgb(37, 72, 85);
--hsl-teal-blue: hsl(196, 39, 24);
--hsv-teal-blue: hsv(196, 56, 33);
/* Cyprus */
--hex-cyprus: #0f4645;
--rgb-cyprus: rgb(15, 70, 69);
--hsl-cyprus: hsl(179, 65, 17);
--hsv-cyprus: hsv(179, 79, 27);
/* Tiber */
--hex-tiber: #184343;
--rgb-tiber: rgb(24, 67, 67);
--hsl-tiber: hsl(180, 47, 18);
--hsv-tiber: hsv(180, 64, 26);
/* Sherpa Blue */
--hex-sherpa-blue: #00494e;
--rgb-sherpa-blue: rgb(0, 73, 78);
--hsl-sherpa-blue: hsl(184, 100, 15);
--hsv-sherpa-blue: hsv(184, 100, 31);
/* Outer Space */
--hex-outer-space: #2d383a;
--rgb-outer-space: rgb(45, 56, 58);
--hsl-outer-space: hsl(189, 13, 20);
--hsv-outer-space: hsv(189, 22, 23);
/* Nordic */
--hex-nordic: #1d393c;
--rgb-nordic: rgb(29, 57, 60);
--hsl-nordic: hsl(186, 35, 17);
--hsv-nordic: hsv(186, 52, 24);
/* Swamp */
--hex-swamp: #252f2f;
--rgb-swamp: rgb(37, 47, 47);
--hsl-swamp: hsl(180, 12, 16);
--hsv-swamp: hsv(180, 21, 18);
/* blue tones */
/* Ghost White */
--hex-ghost-white: #f8f8ff;
--rgb-ghost-white: rgb(248, 248, 255);
--hsl-ghost-white: hsl(240, 100, 99);
--hsv-ghost-white: hsv(240, 3, 100);
/* Alice Blue */
--hex-alice-blue: #f0f8ff;
--rgb-alice-blue: rgb(240, 248, 255);
--hsl-alice-blue: hsl(208, 100, 97);
--hsv-alice-blue: hsv(208, 6, 100);
/* Solitude */
--hex-solitude: #e9ecf1;
--rgb-solitude: rgb(233, 236, 241);
--hsl-solitude: hsl(217, 22, 93);
--hsv-solitude: hsv(218, 3, 95);
/* Lavender */
--hex-lavender: #e6e6fa;
--rgb-lavender: rgb(230, 230, 250);
--hsl-lavender: hsl(240, 67, 94);
--hsv-lavender: hsv(240, 8, 98);
/* Pattens Blue */
--hex-pattens-blue: #d3e5ef;
--rgb-pattens-blue: rgb(211, 229, 239);
--hsl-pattens-blue: hsl(201, 47, 88);
--hsv-pattens-blue: hsv(201, 12, 94);
/* Quartz */
--hex-quartz: #d9d9f3;
--rgb-quartz: rgb(217, 217, 243);
--hsl-quartz: hsl(240, 52, 90);
--hsv-quartz: hsv(240, 11, 95);
/* Hawkes Blue */
--hex-hawkes-blue: #d2daed;
--rgb-hawkes-blue: rgb(210, 218, 237);
--hsl-hawkes-blue: hsl(222, 43, 88);
--hsv-hawkes-blue: hsv(222, 11, 93);
/* Columbia Blue */
--hex-columbia-blue: #9bddff;
--rgb-columbia-blue: rgb(155, 221, 255);
--hsl-columbia-blue: hsl(200, 100, 80);
--hsv-columbia-blue: hsv(200, 39, 100);
/* Lavender Blue */
--hex-lavender-blue: #ccccff;
--rgb-lavender-blue: rgb(204, 204, 255);
--hsl-lavender-blue: hsl(240, 100, 90);
--hsv-lavender-blue: hsv(240, 20, 100);
/* Periwinkle */
--hex-periwinkle: #c3cde6;
--rgb-periwinkle: rgb(195, 205, 230);
--hsl-periwinkle: hsl(223, 41, 83);
--hsv-periwinkle: hsv(223, 15, 90);
/* Link Water */
--hex-link-water: #c7cdd8;
--rgb-link-water: rgb(199, 205, 216);
--hsl-link-water: hsl(219, 18, 81);
--hsv-link-water: hsv(219, 8, 85);
/* Pale Cornflower Blue */
--hex-pale-cornflower-blue: #abcdef;
--rgb-pale-cornflower-blue: rgb(171, 205, 239);
--hsl-pale-cornflower-blue: hsl(210, 68, 80);
--hsv-pale-cornflower-blue: hsv(210, 28, 94);
/* Sail */
--hex-sail: #a5ceec;
--rgb-sail: rgb(165, 206, 236);
--hsl-sail: hsl(205, 65, 79);
--hsv-sail: hsv(205, 30, 93);
/* Tropical Blue */
--hex-tropical-blue: #aec9eb;
--rgb-tropical-blue: rgb(174, 201, 235);
--hsl-tropical-blue: hsl(213, 60, 80);
--hsv-tropical-blue: hsv(213, 26, 92);
/* Light Sky Blue */
--hex-light-sky-blue: #87cefa;
--rgb-light-sky-blue: rgb(135, 206, 250);
--hsl-light-sky-blue: hsl(203, 92, 75);
--hsv-light-sky-blue: hsv(203, 46, 98);
/* Cornflower */
--hex-cornflower: #93ccea;
--rgb-cornflower: rgb(147, 204, 234);
--hsl-cornflower: hsl(201, 67, 75);
--hsv-cornflower: hsv(201, 37, 92);
/* Anakiwa */
--hex-anakiwa: #8cceea;
--rgb-anakiwa: rgb(140, 206, 234);
--hsl-anakiwa: hsl(198, 69, 73);
--hsv-anakiwa: hsv(198, 40, 92);
/* Spindle */
--hex-spindle: #b3c4d8;
--rgb-spindle: rgb(179, 196, 216);
--hsl-spindle: hsl(212, 32, 77);
--hsv-spindle: hsv(212, 17, 85);
/* Light Steel Blue */
--hex-light-steel-blue: #b0c4de;
--rgb-light-steel-blue: rgb(176, 196, 222);
--hsl-light-steel-blue: hsl(214, 41, 78);
--hsv-light-steel-blue: hsv(214, 21, 87);
/* Sky Blue */
--hex-sky-blue: #87ceeb;
--rgb-sky-blue: rgb(135, 206, 235);
--hsl-sky-blue: hsl(197, 71, 73);
--hsv-sky-blue: hsv(197, 43, 92);
/* Perano */
--hex-perano: #acb9e8;
--rgb-perano: rgb(172, 185, 232);
--hsl-perano: hsl(227, 57, 79);
--hsv-perano: hsv(227, 26, 91);
/* Heather */
--hex-heather: #aebbc1;
--rgb-heather: rgb(174, 187, 193);
--hsl-heather: hsl(199, 13, 72);
--hsv-heather: hsv(199, 10, 76);
/* Maya Blue */
--hex-maya-blue: #73c2fb;
--rgb-maya-blue: rgb(115, 194, 251);
--hsl-maya-blue: hsl(205, 94, 72);
--hsv-maya-blue: hsv(205, 54, 98);
/* Echo Blue */
--hex-echo-blue: #a4afcd;
--rgb-echo-blue: rgb(164, 175, 205);
--hsl-echo-blue: hsl(224, 29, 72);
--hsv-echo-blue: hsv(224, 20, 80);
/* Seagull */
--hex-seagull: #77b7d0;
--rgb-seagull: rgb(119, 183, 208);
--hsl-seagull: hsl(197, 49, 64);
--hsv-seagull: hsv(197, 43, 82);
/* Malibu */
--hex-malibu: #66b7e1;
--rgb-malibu: rgb(102, 183, 225);
--hsl-malibu: hsl(200, 67, 64);
--hsv-malibu: hsv(200, 55, 88);
/* Mischka */
--hex-mischka: #a5a9b2;
--rgb-mischka: rgb(165, 169, 178);
--hsl-mischka: hsl(222, 8, 67);
--hsv-mischka: hsv(222, 7, 70);
/* Nepal */
--hex-nepal: #93aab9;
--rgb-nepal: rgb(147, 170, 185);
--hsl-nepal: hsl(204, 21, 65);
--hsv-nepal: hsv(204, 21, 73);
/* Jordy Blue */
--hex-jordy-blue: #7aaae0;
--rgb-jordy-blue: rgb(122, 170, 224);
--hsl-jordy-blue: hsl(212, 62, 68);
--hsv-jordy-blue: hsv(212, 46, 88);
/* Polo Blue */
--hex-polo-blue: #8aa7cc;
--rgb-polo-blue: rgb(138, 167, 204);
--hsl-polo-blue: hsl(214, 39, 67);
--hsv-polo-blue: hsv(214, 32, 80);
/* Grey Chateau */
--hex-grey-chateau: #9fa3a7;
--rgb-grey-chateau: rgb(159, 163, 167);
--hsl-grey-chateau: hsl(210, 4, 64);
--hsv-grey-chateau: hsv(210, 5, 65);
/* Rock Blue */
--hex-rock-blue: #93a2ba;
--rgb-rock-blue: rgb(147, 162, 186);
--hsl-rock-blue: hsl(217, 22, 65);
--hsv-rock-blue: hsv(217, 21, 73);
/* Logan */
--hex-logan: #9d9cb4;
--rgb-logan: rgb(157, 156, 180);
--hsl-logan: hsl(242, 14, 66);
--hsv-logan: hsv(243, 13, 71);
/* Blue Bell */
--hex-blue-bell: #9999cc;
--rgb-blue-bell: rgb(153, 153, 204);
--hsl-blue-bell: hsl(240, 33, 70);
--hsv-blue-bell: hsv(240, 25, 80);
/* Portage */
--hex-portage: #8b98d8;
--rgb-portage: rgb(139, 152, 216);
--hsl-portage: hsl(230, 50, 70);
--hsv-portage: hsv(230, 36, 85);
/* Summer Sky */
--hex-summer-sky: #38b0de;
--rgb-summer-sky: rgb(56, 176, 222);
--hsl-summer-sky: hsl(197, 72, 55);
--hsv-summer-sky: hsv(197, 75, 87);
/* Bali Hai */
--hex-bali-hai: #849ca9;
--rgb-bali-hai: rgb(132, 156, 169);
--hsl-bali-hai: hsl(201, 18, 59);
--hsv-bali-hai: hsv(201, 22, 66);
/* Picton Blue */
--hex-picton-blue: #5ba0d0;
--rgb-picton-blue: rgb(91, 160, 208);
--hsl-picton-blue: hsl(205, 55, 59);
--hsv-picton-blue: hsv(205, 56, 82);
/* Cornflower Blue */
--hex-cornflower-blue: #6495ed;
--rgb-cornflower-blue: rgb(100, 149, 237);
--hsl-cornflower-blue: hsl(219, 79, 66);
--hsv-cornflower-blue: hsv(219, 58, 93);
/* Manatee */
--hex-manatee: #8d90a1;
--rgb-manatee: rgb(141, 144, 161);
--hsl-manatee: hsl(231, 10, 59);
--hsv-manatee: hsv(231, 12, 63);
/* Shakespeare */
--hex-shakespeare: #609ab8;
--rgb-shakespeare: rgb(96, 154, 184);
--hsl-shakespeare: hsl(200, 38, 55);
--hsv-shakespeare: hsv(200, 48, 72);
/* Wild Blue Yonder */
--hex-wild-blue-yonder: #7a89b8;
--rgb-wild-blue-yonder: rgb(122, 137, 184);
--hsl-wild-blue-yonder: hsl(225, 30, 60);
--hsv-wild-blue-yonder: hsv(225, 34, 72);
/* Ship Cove */
--hex-ship-cove: #7988ab;
--rgb-ship-cove: rgb(121, 136, 171);
--hsl-ship-cove: hsl(222, 23, 57);
--hsv-ship-cove: hsv(222, 29, 67);
/* Bermuda Grey */
--hex-bermuda-grey: #6f8c9f;
--rgb-bermuda-grey: rgb(111, 140, 159);
--hsl-bermuda-grey: hsl(204, 20, 53);
--hsv-bermuda-grey: hsv(204, 30, 62);
/* Aluminium */
--hex-aluminium: #848789;
--rgb-aluminium: rgb(132, 135, 137);
--hsl-aluminium: hsl(204, 2, 53);
--hsv-aluminium: hsv(204, 4, 54);
/* Light Slate Grey */
--hex-light-slate-grey: #778899;
--rgb-light-slate-grey: rgb(119, 136, 153);
--hsl-light-slate-grey: hsl(210, 14, 53);
--hsv-light-slate-grey: hsv(210, 22, 60);
/* Danube */
--hex-danube: #5b89c0;
--rgb-danube: rgb(91, 137, 192);
--hsl-danube: hsl(213, 44, 55);
--hsv-danube: hsv(213, 53, 75);
/* Air Force Blue */
--hex-air-force-blue: #5d8aa8;
--rgb-air-force-blue: rgb(93, 138, 168);
--hsl-air-force-blue: hsl(204, 30, 51);
--hsv-air-force-blue: hsv(204, 45, 66);
/* Boston Blue */
--hex-boston-blue: #438eac;
--rgb-boston-blue: rgb(67, 142, 172);
--hsl-boston-blue: hsl(197, 44, 47);
--hsv-boston-blue: hsv(197, 61, 67);
/* Dodger Blue */
--hex-dodger-blue: #1e90ff;
--rgb-dodger-blue: rgb(30, 144, 255);
--hsl-dodger-blue: hsl(210, 100, 56);
--hsv-dodger-blue: hsv(210, 88, 100);
/* Havelock Blue */
--hex-havelock-blue: #5784c1;
--rgb-havelock-blue: rgb(87, 132, 193);
--hsl-havelock-blue: hsl(215, 46, 55);
--hsv-havelock-blue: hsv(215, 55, 76);
/* Slate Grey */
--hex-slate-grey: #708090;
--rgb-slate-grey: rgb(112, 128, 144);
--hsl-slate-grey: hsl(210, 13, 50);
--hsv-slate-grey: hsv(210, 22, 56);
/* Lynch */
--hex-lynch: #697d89;
--rgb-lynch: rgb(105, 125, 137);
--hsl-lynch: hsl(203, 13, 47);
--hsv-lynch: hsv(203, 23, 54);
/* Curious Blue */
--hex-curious-blue: #3d85b8;
--rgb-curious-blue: rgb(61, 133, 184);
--hsl-curious-blue: hsl(205, 50, 48);
--hsv-curious-blue: hsv(205, 67, 72);
/* Steel Blue */
--hex-steel-blue: #4682b4;
--rgb-steel-blue: rgb(70, 130, 180);
--hsl-steel-blue: hsl(207, 44, 49);
--hsv-steel-blue: hsv(207, 61, 71);
/* Storm Grey */
--hex-storm-grey: #747880;
--rgb-storm-grey: rgb(116, 120, 128);
--hsl-storm-grey: hsl(220, 5, 48);
--hsv-storm-grey: hsv(220, 9, 50);
/* Raven */
--hex-raven: #6f747b;
--rgb-raven: rgb(111, 116, 123);
--hsl-raven: hsl(215, 5, 46);
--hsv-raven: hsv(215, 10, 48);
/* Chetwode Blue */
--hex-chetwode-blue: #666fb4;
--rgb-chetwode-blue: rgb(102, 111, 180);
--hsl-chetwode-blue: hsl(233, 34, 55);
--hsv-chetwode-blue: hsv(233, 43, 71);
/* Jelly Bean */
--hex-jelly-bean: #44798e;
--rgb-jelly-bean: rgb(68, 121, 142);
--hsl-jelly-bean: hsl(197, 35, 41);
--hsv-jelly-bean: hsv(197, 52, 56);
/* Waikawa Grey */
--hex-waikawa-grey: #5b6e91;
--rgb-waikawa-grey: rgb(91, 110, 145);
--hsl-waikawa-grey: hsl(219, 23, 46);
--hsv-waikawa-grey: hsv(219, 37, 57);
/* Kashmir Blue */
--hex-kashmir-blue: #576d8e;
--rgb-kashmir-blue: rgb(87, 109, 142);
--hsl-kashmir-blue: hsl(216, 24, 45);
--hsv-kashmir-blue: hsv(216, 39, 56);
/* Mid Grey */
--hex-mid-grey: #666a6d;
--rgb-mid-grey: rgb(102, 106, 109);
--hsl-mid-grey: hsl(206, 3, 41);
--hsv-mid-grey: hsv(206, 6, 43);
/* Royal Blue */
--hex-royal-blue: #4169e1;
--rgb-royal-blue: rgb(65, 105, 225);
--hsl-royal-blue: hsl(225, 73, 57);
--hsv-royal-blue: hsv(225, 71, 88);
/* San Marino */
--hex-san-marino: #4e6c9d;
--rgb-san-marino: rgb(78, 108, 157);
--hsl-san-marino: hsl(217, 34, 46);
--hsv-san-marino: hsv(217, 50, 62);
/* Calypso */
--hex-calypso: #3d7188;
--rgb-calypso: rgb(61, 113, 136);
--hsl-calypso: hsl(198, 38, 39);
--hsv-calypso: hsv(198, 55, 53);
/* Wedgewood */
--hex-wedgewood: #4c6b88;
--rgb-wedgewood: rgb(76, 107, 136);
--hsl-wedgewood: hsl(209, 28, 42);
--hsv-wedgewood: hsv(209, 44, 53);
/* Bismark */
--hex-bismark: #486c7a;
--rgb-bismark: rgb(72, 108, 122);
--hsl-bismark: hsl(197, 26, 38);
--hsv-bismark: hsv(197, 41, 48);
/* Shuttle Grey */
--hex-shuttle-grey: #61666b;
--rgb-shuttle-grey: rgb(97, 102, 107);
--hsl-shuttle-grey: hsl(210, 5, 40);
--hsv-shuttle-grey: hsv(210, 9, 42);
/* Astral */
--hex-astral: #376f89;
--rgb-astral: rgb(55, 111, 137);
--hsl-astral: hsl(199, 43, 38);
--hsv-astral: hsv(199, 60, 54);
/* Lochmara */
--hex-lochmara: #316ea0;
--rgb-lochmara: rgb(49, 110, 160);
--hsl-lochmara: hsl(207, 53, 41);
--hsv-lochmara: hsv(207, 69, 63);
/* Comet */
--hex-comet: #636373;
--rgb-comet: rgb(99, 99, 115);
--hsl-comet: hsl(240, 7, 42);
--hsv-comet: hsv(240, 14, 45);
/* Mariner */
--hex-mariner: #42639f;
--rgb-mariner: rgb(66, 99, 159);
--hsl-mariner: hsl(219, 41, 44);
--hsv-mariner: hsv(219, 58, 62);
/* Rich Blue */
--hex-rich-blue: #5959ab;
--rgb-rich-blue: rgb(89, 89, 171);
--hsl-rich-blue: hsl(240, 33, 51);
--hsv-rich-blue: hsv(240, 48, 67);
/* Neon Blue */
--hex-neon-blue: #4d4dff;
--rgb-neon-blue: rgb(77, 77, 255);
--hsl-neon-blue: hsl(240, 100, 65);
--hsv-neon-blue: hsv(240, 70, 100);
/* Free Speech Blue */
--hex-free-speech-blue: #4156c5;
--rgb-free-speech-blue: rgb(65, 86, 197);
--hsl-free-speech-blue: hsl(230, 53, 51);
--hsv-free-speech-blue: hsv(230, 67, 77);
/* Governor Bay */
--hex-governor-bay: #51559b;
--rgb-governor-bay: rgb(81, 85, 155);
--hsl-governor-bay: hsl(237, 31, 46);
--hsv-governor-bay: hsv(237, 48, 61);
/* Bright Grey */
--hex-bright-grey: #57595d;
--rgb-bright-grey: rgb(87, 89, 93);
--hsl-bright-grey: hsl(220, 3, 35);
--hsv-bright-grey: hsv(220, 6, 36);
/* Navy Blue */
--hex-navy-blue: #0066cc;
--rgb-navy-blue: rgb(0, 102, 204);
--hsl-navy-blue: hsl(210, 100, 40);
--hsv-navy-blue: hsv(210, 100, 80);
/* Fiord */
--hex-fiord: #4b5a62;
--rgb-fiord: rgb(75, 90, 98);
--hsl-fiord: hsl(201, 13, 34);
--hsv-fiord: hsv(201, 23, 38);
/* Denim */
--hex-denim: #1560bd;
--rgb-denim: rgb(21, 96, 189);
--hsl-denim: hsl(213, 80, 41);
--hsv-denim: hsv(213, 89, 74);
/* Chambray */
--hex-chambray: #475877;
--rgb-chambray: rgb(71, 88, 119);
--hsl-chambray: hsl(219, 25, 37);
--hsv-chambray: hsv(219, 40, 47);
/* Matisse */
--hex-matisse: #365c7d;
--rgb-matisse: rgb(54, 92, 125);
--hsl-matisse: hsl(208, 40, 35);
--hsv-matisse: hsv(208, 57, 49);
/* Blumine */
--hex-blumine: #305c71;
--rgb-blumine: rgb(48, 92, 113);
--hsl-blumine: hsl(199, 40, 32);
--hsv-blumine: hsv(199, 58, 44);
/* San Juan */
--hex-san-juan: #445761;
--rgb-san-juan: rgb(68, 87, 97);
--hsl-san-juan: hsl(201, 18, 32);
--hsv-san-juan: hsv(201, 30, 38);
/* Endeavour */
--hex-endeavour: #29598b;
--rgb-endeavour: rgb(41, 89, 139);
--hsl-endeavour: hsl(211, 54, 35);
--hsv-endeavour: hsv(211, 71, 55);
/* Trout */
--hex-trout: #4c5356;
--rgb-trout: rgb(76, 83, 86);
--hsl-trout: hsl(198, 6, 32);
--hsv-trout: hsv(198, 12, 34);
/* East Bay */
--hex-east-bay: #47526e;
--rgb-east-bay: rgb(71, 82, 110);
--hsl-east-bay: hsl(223, 22, 35);
--hsv-east-bay: hsv(223, 35, 43);
/* Orient */
--hex-orient: #255b77;
--rgb-orient: rgb(37, 91, 119);
--hsl-orient: hsl(200, 53, 31);
--hsv-orient: hsv(200, 69, 47);
/* Cerulean Blue */
--hex-cerulean-blue: #2a52be;
--rgb-cerulean-blue: rgb(42, 82, 190);
--hsl-cerulean-blue: hsl(224, 64, 45);
--hsv-cerulean-blue: hsv(224, 78, 75);
/* Chathams Blue */
--hex-chathams-blue: #2c5971;
--rgb-chathams-blue: rgb(44, 89, 113);
--hsl-chathams-blue: hsl(201, 44, 31);
--hsv-chathams-blue: hsv(201, 61, 44);
/* Bahama Blue */
--hex-bahama-blue: #25597f;
--rgb-bahama-blue: rgb(37, 89, 127);
--hsl-bahama-blue: hsl(205, 55, 32);
--hsv-bahama-blue: hsv(205, 71, 50);
/* Astronaut */
--hex-astronaut: #445172;
--rgb-astronaut: rgb(68, 81, 114);
--hsl-astronaut: hsl(223, 25, 36);
--hsv-astronaut: hsv(223, 40, 45);
/* Venice Blue */
--hex-venice-blue: #2c5778;
--rgb-venice-blue: rgb(44, 87, 120);
--hsl-venice-blue: hsl(206, 46, 32);
--hsv-venice-blue: hsv(206, 63, 47);
/* St Tropaz */
--hex-st-tropaz: #325482;
--rgb-st-tropaz: rgb(50, 84, 130);
--hsl-st-tropaz: hsl(215, 44, 35);
--hsv-st-tropaz: hsv(215, 62, 51);
/* Fun Blue */
--hex-fun-blue: #335083;
--rgb-fun-blue: rgb(51, 80, 131);
--hsl-fun-blue: hsl(218, 44, 36);
--hsv-fun-blue: hsv(218, 61, 51);
/* Tory Blue */
--hex-tory-blue: #374e88;
--rgb-tory-blue: rgb(55, 78, 136);
--hsl-tory-blue: hsl(223, 42, 37);
--hsv-tory-blue: hsv(223, 60, 53);
/* Cello */
--hex-cello: #3a4e5f;
--rgb-cello: rgb(58, 78, 95);
--hsl-cello: hsl(208, 24, 30);
--hsv-cello: hsv(208, 39, 37);
/* Tuna */
--hex-tuna: #46494e;
--rgb-tuna: rgb(70, 73, 78);
--hsl-tuna: hsl(218, 5, 29);
--hsv-tuna: hsv(218, 10, 31);
/* Atomic */
--hex-atomic: #3d4b52;
--rgb-atomic: rgb(61, 75, 82);
--hsl-atomic: hsl(200, 15, 28);
--hsv-atomic: hsv(200, 26, 32);
/* Steel Grey */
--hex-steel-grey: #43464b;
--rgb-steel-grey: rgb(67, 70, 75);
--hsl-steel-grey: hsl(217, 6, 28);
--hsv-steel-grey: hsv(218, 11, 29);
/* Corn Flower Blue */
--hex-corn-flower-blue: #42426f;
--rgb-corn-flower-blue: rgb(66, 66, 111);
--hsl-corn-flower-blue: hsl(240, 25, 35);
--hsv-corn-flower-blue: hsv(240, 41, 44);
/* Rhino */
--hex-rhino: #3d4653;
--rgb-rhino: rgb(61, 70, 83);
--hsl-rhino: hsl(215, 15, 28);
--hsv-rhino: hsv(215, 27, 33);
/* Port Gore */
--hex-port-gore: #3b436c;
--rgb-port-gore: rgb(59, 67, 108);
--hsl-port-gore: hsl(230, 29, 33);
--hsv-port-gore: hsv(230, 45, 42);
/* Arapawa */
--hex-arapawa: #274a5d;
--rgb-arapawa: rgb(39, 74, 93);
--hsl-arapawa: hsl(201, 41, 26);
--hsv-arapawa: hsv(201, 58, 36);
/* Jacksons Purple */
--hex-jacksons-purple: #3d3f7d;
--rgb-jacksons-purple: rgb(61, 63, 125);
--hsl-jacksons-purple: hsl(238, 34, 36);
--hsv-jacksons-purple: hsv(238, 51, 49);
/* Blue Zodiac */
--hex-blue-zodiac: #3c4354;
--rgb-blue-zodiac: rgb(60, 67, 84);
--hsl-blue-zodiac: hsl(222, 17, 28);
--hsv-blue-zodiac: hsv(223, 29, 33);
/* Arsenic */
--hex-arsenic: #3b444b;
--rgb-arsenic: rgb(59, 68, 75);
--hsl-arsenic: hsl(206, 12, 26);
--hsv-arsenic: hsv(206, 21, 29);
/* Payne's Grey */
--hex-payne-s-grey: #404048;
--rgb-payne-s-grey: rgb(64, 64, 72);
--hsl-payne-s-grey: hsl(240, 6, 27);
--hsv-payne-s-grey: hsv(240, 11, 28);
/* Resolution Blue */
--hex-resolution-blue: #323f75;
--rgb-resolution-blue: rgb(50, 63, 117);
--hsl-resolution-blue: hsl(228, 40, 33);
--hsv-resolution-blue: hsv(228, 57, 46);
/* Torea Bay */
--hex-torea-bay: #353d75;
--rgb-torea-bay: rgb(53, 61, 117);
--hsl-torea-bay: hsl(233, 38, 33);
--hsv-torea-bay: hsv(233, 55, 46);
/* Cobalt */
--hex-cobalt: #0047ab;
--rgb-cobalt: rgb(0, 71, 171);
--hsl-cobalt: hsl(215, 100, 34);
--hsv-cobalt: hsv(215, 100, 67);
/* Bay Of Many */
--hex-bay-of-many: #353e64;
--rgb-bay-of-many: rgb(53, 62, 100);
--hsl-bay-of-many: hsl(229, 31, 30);
--hsv-bay-of-many: hsv(229, 47, 39);
/* Astronaut Blue */
--hex-astronaut-blue: #214559;
--rgb-astronaut-blue: rgb(33, 69, 89);
--hsl-astronaut-blue: hsl(201, 46, 24);
--hsv-astronaut-blue: hsv(201, 63, 35);
/* Gulf Blue */
--hex-gulf-blue: #343f5c;
--rgb-gulf-blue: rgb(52, 63, 92);
--hsl-gulf-blue: hsl(224, 28, 28);
--hsv-gulf-blue: hsv(224, 43, 36);
/* Charade */
--hex-charade: #394043;
--rgb-charade: rgb(57, 64, 67);
--hsl-charade: hsl(198, 8, 24);
--hsv-charade: hsv(198, 15, 26);
/* Big Stone */
--hex-big-stone: #334046;
--rgb-big-stone: rgb(51, 64, 70);
--hsl-big-stone: hsl(199, 16, 24);
--hsv-big-stone: hsv(199, 27, 27);
/* Mirage */
--hex-mirage: #373f43;
--rgb-mirage: rgb(55, 63, 67);
--hsl-mirage: hsl(200, 10, 24);
--hsv-mirage: hsv(200, 18, 26);
/* Cloud Burst */
--hex-cloud-burst: #353e4f;
--rgb-cloud-burst: rgb(53, 62, 79);
--hsl-cloud-burst: hsl(219, 20, 26);
--hsv-cloud-burst: hsv(219, 33, 31);
/* Baltic Sea */
--hex-baltic-sea: #3c3d3e;
--rgb-baltic-sea: rgb(60, 61, 62);
--hsl-baltic-sea: hsl(210, 2, 24);
--hsv-baltic-sea: hsv(210, 3, 24);
/* Mine Shaft */
--hex-mine-shaft: #373e41;
--rgb-mine-shaft: rgb(55, 62, 65);
--hsl-mine-shaft: hsl(198, 8, 24);
--hsv-mine-shaft: hsv(198, 15, 25);
/* Persian Blue */
--hex-persian-blue: #1c39bb;
--rgb-persian-blue: rgb(28, 57, 187);
--hsl-persian-blue: hsl(229, 74, 42);
--hsv-persian-blue: hsv(229, 85, 73);
/* Dark Cerulean */
--hex-dark-cerulean: #08457e;
--rgb-dark-cerulean: rgb(8, 69, 126);
--hsl-dark-cerulean: hsl(209, 88, 26);
--hsv-dark-cerulean: hsv(209, 94, 49);
/* Green Vogue */
--hex-green-vogue: #23414e;
--rgb-green-vogue: rgb(35, 65, 78);
--hsl-green-vogue: hsl(198, 38, 22);
--hsv-green-vogue: hsv(198, 55, 31);
/* Biscay */
--hex-biscay: #2f3c53;
--rgb-biscay: rgb(47, 60, 83);
--hsl-biscay: hsl(218, 28, 25);
--hsv-biscay: hsv(218, 43, 33);
/* Montana */
--hex-montana: #393b3c;
--rgb-montana: rgb(57, 59, 60);
--hsl-montana: hsl(200, 3, 23);
--hsv-montana: hsv(200, 5, 24);
/* Nile Blue */
--hex-nile-blue: #253f4e;
--rgb-nile-blue: rgb(37, 63, 78);
--hsl-nile-blue: hsl(202, 36, 23);
--hsv-nile-blue: hsv(202, 53, 31);
/* Madison */
--hex-madison: #2d3c54;
--rgb-madison: rgb(45, 60, 84);
--hsl-madison: hsl(217, 30, 25);
--hsv-madison: hsv(217, 46, 33);
/* Regal Blue */
--hex-regal-blue: #203f58;
--rgb-regal-blue: rgb(32, 63, 88);
--hsl-regal-blue: hsl(207, 47, 24);
--hsv-regal-blue: hsv(207, 64, 35);
/* Catalina Blue */
--hex-catalina-blue: #273c5a;
--rgb-catalina-blue: rgb(39, 60, 90);
--hsl-catalina-blue: hsl(215, 40, 25);
--hsv-catalina-blue: hsv(215, 57, 35);
/* Tarawera */
--hex-tarawera: #253c48;
--rgb-tarawera: rgb(37, 60, 72);
--hsl-tarawera: hsl(201, 32, 21);
--hsv-tarawera: hsv(201, 49, 28);
/* Vulcan */
--hex-vulcan: #36383c;
--rgb-vulcan: rgb(54, 56, 60);
--hsl-vulcan: hsl(220, 5, 22);
--hsv-vulcan: hsv(220, 10, 24);
/* Deep Koamaru */
--hex-deep-koamaru: #343467;
--rgb-deep-koamaru: rgb(52, 52, 103);
--hsl-deep-koamaru: hsl(240, 33, 30);
--hsv-deep-koamaru: hsv(240, 50, 40);
/* Licorice */
--hex-licorice: #2e3749;
--rgb-licorice: rgb(46, 55, 73);
--hsl-licorice: hsl(220, 23, 23);
--hsv-licorice: hsv(220, 37, 29);
/* Shark */
--hex-shark: #34363a;
--rgb-shark: rgb(52, 54, 58);
--hsl-shark: hsl(220, 5, 22);
--hsv-shark: hsv(220, 10, 23);
/* Egyptian Blue */
--hex-egyptian-blue: #1034a6;
--rgb-egyptian-blue: rgb(16, 52, 166);
--hsl-egyptian-blue: hsl(226, 82, 36);
--hsv-egyptian-blue: hsv(226, 90, 65);
/* Ebony Clay */
--hex-ebony-clay: #323438;
--rgb-ebony-clay: rgb(50, 52, 56);
--hsl-ebony-clay: hsl(220, 6, 21);
--hsv-ebony-clay: hsv(220, 11, 22);
/* Bunting */
--hex-bunting: #2b3449;
--rgb-bunting: rgb(43, 52, 73);
--hsl-bunting: hsl(222, 26, 23);
--hsv-bunting: hsv(222, 41, 29);
/* Gunmetal */
--hex-gunmetal: #2c3539;
--rgb-gunmetal: rgb(44, 53, 57);
--hsl-gunmetal: hsl(198, 13, 20);
--hsv-gunmetal: hsv(198, 23, 22);
/* Elephant */
--hex-elephant: #243640;
--rgb-elephant: rgb(36, 54, 64);
--hsl-elephant: hsl(201, 28, 20);
--hsv-elephant: hsv(201, 44, 25);
/* Ebony */
--hex-ebony: #313337;
--rgb-ebony: rgb(49, 51, 55);
--hsl-ebony: hsl(220, 6, 20);
--hsv-ebony: hsv(220, 11, 22);
/* Oxford Blue */
--hex-oxford-blue: #28353a;
--rgb-oxford-blue: rgb(40, 53, 58);
--hsl-oxford-blue: hsl(197, 18, 19);
--hsv-oxford-blue: hsv(197, 31, 23);
/* Blue Whale */
--hex-blue-whale: #1e3442;
--rgb-blue-whale: rgb(30, 52, 66);
--hsl-blue-whale: hsl(203, 38, 19);
--hsv-blue-whale: hsv(203, 55, 26);
/* Smalt */
--hex-smalt: #003399;
--rgb-smalt: rgb(0, 51, 153);
--hsl-smalt: hsl(220, 100, 30);
--hsv-smalt: hsv(220, 100, 60);
/* Cod Grey */
--hex-cod-grey: #2d3032;
--rgb-cod-grey: rgb(45, 48, 50);
--hsl-cod-grey: hsl(204, 5, 19);
--hsv-cod-grey: hsv(204, 10, 20);
/* Lucky Point */
--hex-lucky-point: #292d4f;
--rgb-lucky-point: rgb(41, 45, 79);
--hsl-lucky-point: hsl(234, 32, 24);
--hsv-lucky-point: hsv(234, 48, 31);
/* Black Rock */
--hex-black-rock: #2c2d3c;
--rgb-black-rock: rgb(44, 45, 60);
--hsl-black-rock: hsl(236, 15, 20);
--hsv-black-rock: hsv(236, 27, 24);
/* Midnight */
--hex-midnight: #21303e;
--rgb-midnight: rgb(33, 48, 62);
--hsl-midnight: hsl(209, 31, 19);
--hsv-midnight: hsv(209, 47, 24);
/* International Klein Blue */
--hex-international-klein-blue: #002fa7;
--rgb-international-klein-blue: rgb(0, 47, 167);
--hsl-international-klein-blue: hsl(223, 100, 33);
--hsv-international-klein-blue: hsv(223, 100, 65);
/* Bastille */
--hex-bastille: #2c2c32;
--rgb-bastille: rgb(44, 44, 50);
--hsl-bastille: hsl(240, 6, 18);
--hsv-bastille: hsv(240, 12, 20);
/* Valhalla */
--hex-valhalla: #2a2b41;
--rgb-valhalla: rgb(42, 43, 65);
--hsl-valhalla: hsl(237, 21, 21);
--hsv-valhalla: hsv(237, 35, 25);
/* Tangaroa */
--hex-tangaroa: #1e2f3c;
--rgb-tangaroa: rgb(30, 47, 60);
--hsl-tangaroa: hsl(206, 33, 18);
--hsv-tangaroa: hsv(206, 50, 24);
/* Prussian Blue */
--hex-prussian-blue: #003366;
--rgb-prussian-blue: rgb(0, 51, 102);
--hsl-prussian-blue: hsl(210, 100, 20);
--hsv-prussian-blue: hsv(210, 100, 40);
/* Bunker */
--hex-bunker: #292c2f;
--rgb-bunker: rgb(41, 44, 47);
--hsl-bunker: hsl(210, 7, 17);
--hsv-bunker: hsv(210, 13, 18);
/* Blue Charcoal */
--hex-blue-charcoal: #262b2f;
--rgb-blue-charcoal: rgb(38, 43, 47);
--hsl-blue-charcoal: hsl(207, 11, 17);
--hsv-blue-charcoal: hsv(207, 19, 18);
/* Jaguar */
--hex-jaguar: #29292f;
--rgb-jaguar: rgb(41, 41, 47);
--hsl-jaguar: hsl(240, 7, 17);
--hsv-jaguar: hsv(240, 13, 18);
/* Cinder */
--hex-cinder: #242a2e;
--rgb-cinder: rgb(36, 42, 46);
--hsl-cinder: hsl(204, 12, 16);
--hsv-cinder: hsv(204, 22, 18);
/* Midnight Express */
--hex-midnight-express: #21263a;
--rgb-midnight-express: rgb(33, 38, 58);
--hsl-midnight-express: hsl(228, 27, 18);
--hsv-midnight-express: hsv(228, 43, 23);
/* Black Pearl */
--hex-black-pearl: #1e272c;
--rgb-black-pearl: rgb(30, 39, 44);
--hsl-black-pearl: hsl(201, 19, 15);
--hsv-black-pearl: hsv(201, 32, 17);
/* Black Russian */
--hex-black-russian: #24252b;
--rgb-black-russian: rgb(36, 37, 43);
--hsl-black-russian: hsl(231, 9, 15);
--hsv-black-russian: hsv(231, 16, 17);
/* Sapphire */
--hex-sapphire: #082567;
--rgb-sapphire: rgb(8, 37, 103);
--hsl-sapphire: hsl(222, 86, 22);
--hsv-sapphire: hsv(222, 92, 40);
/* Midnight Blue */
--hex-midnight-blue: #191970;
--rgb-midnight-blue: rgb(25, 25, 112);
--hsl-midnight-blue: hsl(240, 64, 27);
--hsv-midnight-blue: hsv(240, 78, 44);
/* Blue */
--hex-blue: #0000ff;
--rgb-blue: rgb(0, 0, 255);
--hsl-blue: hsl(240, 100, 50);
--hsv-blue: hsv(240, 100, 100);
/* Medium Blue */
--hex-medium-blue: #0000cd;
--rgb-medium-blue: rgb(0, 0, 205);
--hsl-medium-blue: hsl(240, 100, 40);
--hsv-medium-blue: hsv(240, 100, 80);
/* New Midnight Blue */
--hex-new-midnight-blue: #00009c;
--rgb-new-midnight-blue: rgb(0, 0, 156);
--hsl-new-midnight-blue: hsl(240, 100, 31);
--hsv-new-midnight-blue: hsv(240, 100, 61);
/* Dark Blue */
--hex-dark-blue: #00008b;
--rgb-dark-blue: rgb(0, 0, 139);
--hsl-dark-blue: hsl(240, 100, 27);
--hsv-dark-blue: hsv(240, 100, 55);
/* Navy */
--hex-navy: #000080;
--rgb-navy: rgb(0, 0, 128);
--hsl-navy: hsl(240, 100, 25);
--hsv-navy: hsv(240, 100, 50);
/* indigo tones */
/* Magnolia */
--hex-magnolia: #f8f4ff;
--rgb-magnolia: rgb(248, 244, 255);
--hsl-magnolia: hsl(262, 100, 98);
--hsv-magnolia: hsv(262, 4, 100);
/* Fog */
--hex-fog: #d5c7e8;
--rgb-fog: rgb(213, 199, 232);
--hsl-fog: hsl(265, 42, 85);
--hsv-fog: hsv(265, 14, 91);
/* Mauve */
--hex-mauve: #e0b0ff;
--rgb-mauve: rgb(224, 176, 255);
--hsl-mauve: hsl(276, 100, 85);
--hsv-mauve: hsv(276, 31, 100);
/* Ghost */
--hex-ghost: #c0bfc7;
--rgb-ghost: rgb(192, 191, 199);
--hsl-ghost: hsl(248, 7, 76);
--hsv-ghost: hsv(248, 4, 78);
/* Melrose */
--hex-melrose: #c3b9dd;
--rgb-melrose: rgb(195, 185, 221);
--hsl-melrose: hsl(257, 35, 80);
--hsv-melrose: hsv(257, 16, 87);
/* French Grey */
--hex-french-grey: #bfbdc1;
--rgb-french-grey: rgb(191, 189, 193);
--hsl-french-grey: hsl(270, 3, 75);
--hsv-french-grey: hsv(270, 2, 76);
/* Lavender Grey */
--hex-lavender-grey: #bdbbd7;
--rgb-lavender-grey: rgb(189, 187, 215);
--hsl-lavender-grey: hsl(244, 26, 79);
--hsv-lavender-grey: hsv(244, 13, 84);
/* Blue Haze */
--hex-blue-haze: #bdbace;
--rgb-blue-haze: rgb(189, 186, 206);
--hsl-blue-haze: hsl(249, 17, 77);
--hsv-blue-haze: hsv(249, 10, 81);
/* Moon Raker */
--hex-moon-raker: #c0b2d7;
--rgb-moon-raker: rgb(192, 178, 215);
--hsl-moon-raker: hsl(263, 32, 77);
--hsv-moon-raker: hsv(263, 17, 84);
/* Perfume */
--hex-perfume: #c2a9db;
--rgb-perfume: rgb(194, 169, 219);
--hsl-perfume: hsl(270, 41, 76);
--hsv-perfume: hsv(270, 23, 86);
/* Wistful */
--hex-wistful: #a29ecd;
--rgb-wistful: rgb(162, 158, 205);
--hsl-wistful: hsl(245, 32, 71);
--hsv-wistful: hsv(245, 23, 80);
/* Spun Pearl */
--hex-spun-pearl: #a2a1ac;
--rgb-spun-pearl: rgb(162, 161, 172);
--hsl-spun-pearl: hsl(245, 6, 65);
--hsv-spun-pearl: hsv(245, 6, 67);
/* Biloba Flower */
--hex-biloba-flower: #ae99d2;
--rgb-biloba-flower: rgb(174, 153, 210);
--hsl-biloba-flower: hsl(262, 39, 71);
--hsv-biloba-flower: hsv(262, 27, 82);
/* Santas Grey */
--hex-santas-grey: #9998a7;
--rgb-santas-grey: rgb(153, 152, 167);
--hsl-santas-grey: hsl(244, 8, 63);
--hsv-santas-grey: hsv(244, 9, 65);
/* Grey Suit */
--hex-grey-suit: #9391a0;
--rgb-grey-suit: rgb(147, 145, 160);
--hsl-grey-suit: hsl(248, 7, 60);
--hsv-grey-suit: hsv(248, 9, 63);
/* Cold Purple */
--hex-cold-purple: #9d8abf;
--rgb-cold-purple: rgb(157, 138, 191);
--hsl-cold-purple: hsl(262, 29, 65);
--hsv-cold-purple: hsv(262, 28, 75);
/* Purple Mountain's Majesty */
--hex-purple-mountain-s-majesty: #9678b6;
--rgb-purple-mountain-s-majesty: rgb(150, 120, 182);
--hsl-purple-mountain-s-majesty: hsl(269, 30, 59);
--hsv-purple-mountain-s-majesty: hsv(269, 34, 71);
/* Moody Blue */
--hex-moody-blue: #8378c7;
--rgb-moody-blue: rgb(131, 120, 199);
--hsl-moody-blue: hsl(248, 41, 63);
--hsv-moody-blue: hsv(248, 40, 78);
/* Medium Purple */
--hex-medium-purple: #9370db;
--rgb-medium-purple: rgb(147, 112, 219);
--hsl-medium-purple: hsl(260, 60, 65);
--hsv-medium-purple: hsv(260, 49, 86);
/* Light Slate Blue */
--hex-light-slate-blue: #8470ff;
--rgb-light-slate-blue: rgb(132, 112, 255);
--hsl-light-slate-blue: hsl(248, 100, 72);
--hsv-light-slate-blue: hsv(248, 56, 100);
/* True V */
--hex-true-v: #8e72c7;
--rgb-true-v: rgb(142, 114, 199);
--hsl-true-v: hsl(260, 43, 61);
--hsv-true-v: hsv(260, 43, 78);
/* Topaz */
--hex-topaz: #817c87;
--rgb-topaz: rgb(129, 124, 135);
--hsl-topaz: hsl(267, 4, 51);
--hsv-topaz: hsv(267, 8, 53);
/* Lilac Bush */
--hex-lilac-bush: #9470c4;
--rgb-lilac-bush: rgb(148, 112, 196);
--hsl-lilac-bush: hsl(266, 42, 60);
--hsv-lilac-bush: hsv(266, 43, 77);
/* Deluge */
--hex-deluge: #8272a4;
--rgb-deluge: rgb(130, 114, 164);
--hsl-deluge: hsl(259, 22, 55);
--hsv-deluge: hsv(259, 30, 64);
/* Amethyst */
--hex-amethyst: #9966cc;
--rgb-amethyst: rgb(153, 102, 204);
--hsl-amethyst: hsl(270, 50, 60);
--hsv-amethyst: hsv(270, 50, 80);
/* Medium Slate Blue */
--hex-medium-slate-blue: #7b68ee;
--rgb-medium-slate-blue: rgb(123, 104, 238);
--hsl-medium-slate-blue: hsl(249, 80, 67);
--hsv-medium-slate-blue: hsv(249, 56, 93);
/* Mamba */
--hex-mamba: #766d7c;
--rgb-mamba: rgb(118, 109, 124);
--hsl-mamba: hsl(276, 6, 46);
--hsv-mamba: hsv(276, 12, 49);
/* Scarpa Flow */
--hex-scarpa-flow: #6b6a6c;
--rgb-scarpa-flow: rgb(107, 106, 108);
--hsl-scarpa-flow: hsl(270, 1, 42);
--hsv-scarpa-flow: hsv(270, 2, 42);
/* Scampi */
--hex-scampi: #6f63a0;
--rgb-scampi: rgb(111, 99, 160);
--hsl-scampi: hsl(252, 24, 51);
--hsv-scampi: hsv(252, 38, 63);
/* Dolphin */
--hex-dolphin: #6a6873;
--rgb-dolphin: rgb(106, 104, 115);
--hsl-dolphin: hsl(251, 5, 43);
--hsv-dolphin: hsv(251, 10, 45);
/* Slate Blue */
--hex-slate-blue: #6a5acd;
--rgb-slate-blue: rgb(106, 90, 205);
--hsl-slate-blue: hsl(248, 53, 58);
--hsv-slate-blue: hsv(248, 56, 80);
/* Blue Marguerite */
--hex-blue-marguerite: #6a5bb1;
--rgb-blue-marguerite: rgb(106, 91, 177);
--hsl-blue-marguerite: hsl(250, 36, 53);
--hsv-blue-marguerite: hsv(250, 49, 69);
/* Kimberly */
--hex-kimberly: #695d87;
--rgb-kimberly: rgb(105, 93, 135);
--hsl-kimberly: hsl(257, 18, 45);
--hsv-kimberly: hsv(257, 31, 53);
/* Smoky */
--hex-smoky: #605d6b;
--rgb-smoky: rgb(96, 93, 107);
--hsl-smoky: hsl(253, 7, 39);
--hsv-smoky: hsv(253, 13, 42);
/* Butterfly Bush */
--hex-butterfly-bush: #68578c;
--rgb-butterfly-bush: rgb(104, 87, 140);
--hsl-butterfly-bush: hsl(259, 23, 45);
--hsv-butterfly-bush: hsv(259, 38, 55);
/* Mobster */
--hex-mobster: #605a67;
--rgb-mobster: rgb(96, 90, 103);
--hsl-mobster: hsl(268, 7, 38);
--hsv-mobster: hsv(268, 13, 40);
/* Studio */
--hex-studio: #724aa1;
--rgb-studio: rgb(114, 74, 161);
--hsl-studio: hsl(268, 37, 46);
--hsv-studio: hsv(268, 54, 63);
/* Victoria */
--hex-victoria: #564985;
--rgb-victoria: rgb(86, 73, 133);
--hsl-victoria: hsl(253, 29, 40);
--hsv-victoria: hsv(253, 45, 52);
/* Royal Purple */
--hex-royal-purple: #6b3fa0;
--rgb-royal-purple: rgb(107, 63, 160);
--hsl-royal-purple: hsl(267, 43, 44);
--hsv-royal-purple: hsv(267, 61, 63);
/* Mulled Wine */
--hex-mulled-wine: #524d5b;
--rgb-mulled-wine: rgb(82, 77, 91);
--hsl-mulled-wine: hsl(261, 8, 33);
--hsv-mulled-wine: hsv(261, 15, 36);
/* Gigas */
--hex-gigas: #564786;
--rgb-gigas: rgb(86, 71, 134);
--hsl-gigas: hsl(254, 31, 40);
--hsv-gigas: hsv(254, 47, 53);
/* Blue Violet */
--hex-blue-violet: #8a2be2;
--rgb-blue-violet: rgb(138, 43, 226);
--hsl-blue-violet: hsl(271, 76, 53);
--hsv-blue-violet: hsv(271, 81, 89);
/* Daisy Bush */
--hex-daisy-bush: #5b3e90;
--rgb-daisy-bush: rgb(91, 62, 144);
--hsl-daisy-bush: hsl(261, 40, 40);
--hsv-daisy-bush: hsv(261, 57, 56);
/* Gun Powder */
--hex-gun-powder: #484753;
--rgb-gun-powder: rgb(72, 71, 83);
--hsl-gun-powder: hsl(245, 8, 30);
--hsv-gun-powder: hsv(245, 14, 33);
/* Blue Gem */
--hex-blue-gem: #4b3c8e;
--rgb-blue-gem: rgb(75, 60, 142);
--hsl-blue-gem: hsl(251, 41, 40);
--hsv-blue-gem: hsv(251, 58, 56);
/* Dark Slate Blue */
--hex-dark-slate-blue: #483d8b;
--rgb-dark-slate-blue: rgb(72, 61, 139);
--hsl-dark-slate-blue: hsl(248, 39, 39);
--hsv-dark-slate-blue: hsv(248, 56, 55);
/* Purple Heart */
--hex-purple-heart: #652dc1;
--rgb-purple-heart: rgb(101, 45, 193);
--hsl-purple-heart: hsl(263, 62, 47);
--hsv-purple-heart: hsv(263, 77, 76);
/* Kingfisher Daisy */
--hex-kingfisher-daisy: #583580;
--rgb-kingfisher-daisy: rgb(88, 53, 128);
--hsl-kingfisher-daisy: hsl(268, 41, 35);
--hsv-kingfisher-daisy: hsv(268, 59, 50);
/* Meteorite */
--hex-meteorite: #4a3b6a;
--rgb-meteorite: rgb(74, 59, 106);
--hsl-meteorite: hsl(259, 28, 32);
--hsv-meteorite: hsv(259, 44, 42);
/* Grape */
--hex-grape: #413d4b;
--rgb-grape: rgb(65, 61, 75);
--hsl-grape: hsl(257, 10, 27);
--hsv-grape: hsv(257, 19, 29);
/* Martinique */
--hex-martinique: #3c3748;
--rgb-martinique: rgb(60, 55, 72);
--hsl-martinique: hsl(258, 13, 25);
--hsv-martinique: hsv(258, 24, 28);
/* Minsk */
--hex-minsk: #3e3267;
--rgb-minsk: rgb(62, 50, 103);
--hsl-minsk: hsl(254, 35, 30);
--hsv-minsk: hsv(254, 51, 40);
/* Blue Diamond */
--hex-blue-diamond: #4b2d72;
--rgb-blue-diamond: rgb(75, 45, 114);
--hsl-blue-diamond: hsl(266, 43, 31);
--hsv-blue-diamond: hsv(266, 61, 45);
/* Black Marlin */
--hex-black-marlin: #383740;
--rgb-black-marlin: rgb(56, 55, 64);
--hsl-black-marlin: hsl(247, 8, 23);
--hsv-black-marlin: hsv(247, 14, 25);
/* Jacarta */
--hex-jacarta: #3d325d;
--rgb-jacarta: rgb(61, 50, 93);
--hsl-jacarta: hsl(255, 30, 28);
--hsv-jacarta: hsv(255, 46, 36);
/* Windsor */
--hex-windsor: #462c77;
--rgb-windsor: rgb(70, 44, 119);
--hsl-windsor: hsl(261, 46, 32);
--hsv-windsor: hsv(261, 63, 47);
/* Revolver */
--hex-revolver: #37363f;
--rgb-revolver: rgb(55, 54, 63);
--hsl-revolver: hsl(247, 8, 23);
--hsv-revolver: hsv(247, 14, 25);
/* Han Purple */
--hex-han-purple: #5218fa;
--rgb-han-purple: rgb(82, 24, 250);
--hsl-han-purple: hsl(255, 96, 54);
--hsv-han-purple: hsv(255, 90, 98);
/* Jagger */
--hex-jagger: #3f2e4c;
--rgb-jagger: rgb(63, 46, 76);
--hsl-jagger: hsl(274, 25, 24);
--hsv-jagger: hsv(274, 39, 30);
/* Cherry Pie */
--hex-cherry-pie: #372d52;
--rgb-cherry-pie: rgb(55, 45, 82);
--hsl-cherry-pie: hsl(256, 29, 25);
--hsv-cherry-pie: hsv(256, 45, 32);
/* Paris M */
--hex-paris-m: #312760;
--rgb-paris-m: rgb(49, 39, 96);
--hsl-paris-m: hsl(251, 42, 26);
--hsv-paris-m: hsv(251, 59, 38);
/* Haiti */
--hex-haiti: #2c2a35;
--rgb-haiti: rgb(44, 42, 53);
--hsl-haiti: hsl(251, 12, 19);
--hsv-haiti: hsv(251, 21, 21);
/* Christalle */
--hex-christalle: #382161;
--rgb-christalle: rgb(56, 33, 97);
--hsl-christalle: hsl(262, 49, 25);
--hsv-christalle: hsv(262, 66, 38);
/* Paua */
--hex-paua: #2a2551;
--rgb-paua: rgb(42, 37, 81);
--hsl-paua: hsl(247, 37, 23);
--hsv-paua: hsv(247, 54, 32);
/* Tolopea */
--hex-tolopea: #2d2541;
--rgb-tolopea: rgb(45, 37, 65);
--hsl-tolopea: hsl(257, 27, 20);
--hsv-tolopea: hsv(257, 43, 25);
/* Electric Indigo */
--hex-electric-indigo: #6600ff;
--rgb-electric-indigo: rgb(102, 0, 255);
--hsl-electric-indigo: hsl(264, 100, 50);
--hsv-electric-indigo: hsv(264, 100, 100);
/* Violent Violet */
--hex-violent-violet: #2e2249;
--rgb-violent-violet: rgb(46, 34, 73);
--hsl-violent-violet: hsl(258, 36, 21);
--hsv-violent-violet: hsv(258, 53, 29);
/* Persian Indigo */
--hex-persian-indigo: #32127a;
--rgb-persian-indigo: rgb(50, 18, 122);
--hsl-persian-indigo: hsl(258, 74, 27);
--hsv-persian-indigo: hsv(258, 85, 48);
/* Indigo */
--hex-indigo: #4b0082;
--rgb-indigo: rgb(75, 0, 130);
--hsl-indigo: hsl(275, 100, 25);
--hsv-indigo: hsv(275, 100, 51);
/* Ultramarine */
--hex-ultramarine: #120a8f;
--rgb-ultramarine: rgb(18, 10, 143);
--hsl-ultramarine: hsl(244, 87, 30);
--hsv-ultramarine: hsv(244, 93, 56);
/* violet tones */
/* Lavender Blush */
--hex-lavender-blush: #fff0f5;
--rgb-lavender-blush: rgb(255, 240, 245);
--hsl-lavender-blush: hsl(340, 100, 97);
--hsv-lavender-blush: hsv(340, 6, 100);
/* Amour */
--hex-amour: #f5e6ea;
--rgb-amour: rgb(245, 230, 234);
--hsl-amour: hsl(344, 43, 93);
--hsv-amour: hsv(344, 6, 96);
/* White Lilac */
--hex-white-lilac: #e7e5e8;
--rgb-white-lilac: rgb(231, 229, 232);
--hsl-white-lilac: hsl(280, 6, 90);
--hsv-white-lilac: hsv(280, 1, 91);
/* Carousel Pink */
--hex-carousel-pink: #f8dbe0;
--rgb-carousel-pink: rgb(248, 219, 224);
--hsl-carousel-pink: hsl(350, 67, 92);
--hsv-carousel-pink: hsv(350, 12, 97);
/* Selago */
--hex-selago: #e6dfe7;
--rgb-selago: rgb(230, 223, 231);
--hsl-selago: hsl(293, 14, 89);
--hsv-selago: hsv(293, 3, 91);
/* Pale Pink */
--hex-pale-pink: #fadadd;
--rgb-pale-pink: rgb(250, 218, 221);
--hsl-pale-pink: hsl(354, 76, 92);
--hsv-pale-pink: hsv(354, 13, 98);
/* Pig Pink */
--hex-pig-pink: #fdd7e4;
--rgb-pig-pink: rgb(253, 215, 228);
--hsl-pig-pink: hsl(339, 90, 92);
--hsv-pig-pink: hsv(339, 15, 99);
/* We Peep */
--hex-we-peep: #fdd7d8;
--rgb-we-peep: rgb(253, 215, 216);
--hsl-we-peep: hsl(358, 90, 92);
--hsv-we-peep: hsv(358, 15, 99);
/* Cherub */
--hex-cherub: #f5d7dc;
--rgb-cherub: rgb(245, 215, 220);
--hsl-cherub: hsl(350, 60, 90);
--hsv-cherub: hsv(350, 12, 96);
/* Pale Rose */
--hex-pale-rose: #efd6da;
--rgb-pale-rose: rgb(239, 214, 218);
--hsl-pale-rose: hsl(350, 44, 89);
--hsv-pale-rose: hsv(350, 10, 94);
/* Snuff */
--hex-snuff: #e4d7e5;
--rgb-snuff: rgb(228, 215, 229);
--hsl-snuff: hsl(296, 21, 87);
--hsv-snuff: hsv(296, 6, 90);
/* Blue Chalk */
--hex-blue-chalk: #e3d6e9;
--rgb-blue-chalk: rgb(227, 214, 233);
--hsl-blue-chalk: hsl(281, 30, 88);
--hsv-blue-chalk: hsv(281, 8, 91);
/* Titan White */
--hex-titan-white: #ddd6e1;
--rgb-titan-white: rgb(221, 214, 225);
--hsl-titan-white: hsl(278, 15, 86);
--hsv-titan-white: hsv(278, 5, 88);
/* Pink Lace */
--hex-pink-lace: #f6ccd7;
--rgb-pink-lace: rgb(246, 204, 215);
--hsl-pink-lace: hsl(344, 70, 88);
--hsv-pink-lace: hsv(344, 17, 96);
/* Classic Rose */
--hex-classic-rose: #f4c8db;
--rgb-classic-rose: rgb(244, 200, 219);
--hsl-classic-rose: hsl(334, 67, 87);
--hsv-classic-rose: hsv(334, 18, 96);
/* Prim */
--hex-prim: #e2cdd5;
--rgb-prim: rgb(226, 205, 213);
--hsl-prim: hsl(337, 27, 85);
--hsv-prim: hsv(337, 9, 89);
/* Pink */
--hex-pink: #ffc0cb;
--rgb-pink: rgb(255, 192, 203);
--hsl-pink: hsl(350, 100, 88);
--hsv-pink: hsv(350, 25, 100);
/* Azalea */
--hex-azalea: #f9c0c4;
--rgb-azalea: rgb(249, 192, 196);
--hsl-azalea: hsl(356, 83, 86);
--hsv-azalea: hsv(356, 23, 98);
/* Cotton Candy */
--hex-cotton-candy: #ffb7d5;
--rgb-cotton-candy: rgb(255, 183, 213);
--hsl-cotton-candy: hsl(335, 100, 86);
--hsv-cotton-candy: hsv(335, 28, 100);
/* Twilight */
--hex-twilight: #dac0cd;
--rgb-twilight: rgb(218, 192, 205);
--hsl-twilight: hsl(330, 26, 80);
--hsv-twilight: hsv(330, 12, 85);
/* Light Pink */
--hex-light-pink: #ffb6c1;
--rgb-light-pink: rgb(255, 182, 193);
--hsl-light-pink: hsl(351, 100, 86);
--hsv-light-pink: hsv(351, 29, 100);
/* Thistle */
--hex-thistle: #d8bfd8;
--rgb-thistle: rgb(216, 191, 216);
--hsl-thistle: hsl(300, 24, 80);
--hsv-thistle: hsv(300, 12, 85);
/* Chantilly */
--hex-chantilly: #edb8c7;
--rgb-chantilly: rgb(237, 184, 199);
--hsl-chantilly: hsl(343, 60, 83);
--hsv-chantilly: hsv(343, 22, 93);
/* French Lilac */
--hex-french-lilac: #deb7d9;
--rgb-french-lilac: rgb(222, 183, 217);
--hsl-french-lilac: hsl(308, 37, 79);
--hsv-french-lilac: hsv(308, 18, 87);
/* Cupid */
--hex-cupid: #f5b2c5;
--rgb-cupid: rgb(245, 178, 197);
--hsl-cupid: hsl(343, 77, 83);
--hsv-cupid: hsv(343, 27, 96);
/* Lavender Pink */
--hex-lavender-pink: #fbaed2;
--rgb-lavender-pink: rgb(251, 174, 210);
--hsl-lavender-pink: hsl(332, 91, 83);
--hsv-lavender-pink: hsv(332, 31, 98);
/* Melanie */
--hex-melanie: #e0b7c2;
--rgb-melanie: rgb(224, 183, 194);
--hsl-melanie: hsl(344, 40, 80);
--hsv-melanie: hsv(344, 18, 88);
/* Pink Flare */
--hex-pink-flare: #d8b4b6;
--rgb-pink-flare: rgb(216, 180, 182);
--hsl-pink-flare: hsl(357, 32, 78);
--hsv-pink-flare: hsv(357, 17, 85);
/* Carnation Pink */
--hex-carnation-pink: #ffa6c9;
--rgb-carnation-pink: rgb(255, 166, 201);
--hsl-carnation-pink: hsl(336, 100, 83);
--hsv-carnation-pink: hsv(336, 35, 100);
/* Blossom */
--hex-blossom: #dfb1b6;
--rgb-blossom: rgb(223, 177, 182);
--hsl-blossom: hsl(353, 42, 78);
--hsv-blossom: hsv(353, 21, 87);
/* Prelude */
--hex-prelude: #cab4d4;
--rgb-prelude: rgb(202, 180, 212);
--hsl-prelude: hsl(281, 27, 77);
--hsv-prelude: hsv(281, 15, 83);
/* Lavender Rose */
--hex-lavender-rose: #fba0e3;
--rgb-lavender-rose: rgb(251, 160, 227);
--hsl-lavender-rose: hsl(316, 92, 81);
--hsv-lavender-rose: hsv(316, 36, 98);
/* Pale Chestnut */
--hex-pale-chestnut: #ddadaf;
--rgb-pale-chestnut: rgb(221, 173, 175);
--hsl-pale-chestnut: hsl(358, 41, 77);
--hsv-pale-chestnut: hsv(358, 22, 87);
/* Maverick */
--hex-maverick: #c8b1c0;
--rgb-maverick: rgb(200, 177, 192);
--hsl-maverick: hsl(321, 17, 74);
--hsv-maverick: hsv(321, 12, 78);
/* Plum */
--hex-plum: #dda0dd;
--rgb-plum: rgb(221, 160, 221);
--hsl-plum: hsl(300, 47, 75);
--hsv-plum: hsv(300, 28, 87);
/* Lola */
--hex-lola: #b9acbb;
--rgb-lola: rgb(185, 172, 187);
--hsl-lola: hsl(292, 10, 70);
--hsv-lola: hsv(292, 8, 73);
/* Chatelle */
--hex-chatelle: #b3abb6;
--rgb-chatelle: rgb(179, 171, 182);
--hsl-chatelle: hsl(284, 7, 69);
--hsv-chatelle: hsv(284, 6, 71);
/* Wisteria */
--hex-wisteria: #c9a0dc;
--rgb-wisteria: rgb(201, 160, 220);
--hsl-wisteria: hsl(281, 46, 75);
--hsv-wisteria: hsv(281, 27, 86);
/* Lilac */
--hex-lilac: #c8a2c8;
--rgb-lilac: rgb(200, 162, 200);
--hsl-lilac: hsl(300, 26, 71);
--hsv-lilac: hsv(300, 19, 78);
/* Shocking */
--hex-shocking: #e899be;
--rgb-shocking: rgb(232, 153, 190);
--hsl-shocking: hsl(332, 63, 75);
--hsv-shocking: hsv(332, 34, 91);
/* Illusion */
--hex-illusion: #ef95ae;
--rgb-illusion: rgb(239, 149, 174);
--hsl-illusion: hsl(343, 74, 76);
--hsv-illusion: hsv(343, 38, 94);
/* Lily */
--hex-lily: #c19fb3;
--rgb-lily: rgb(193, 159, 179);
--hsl-lily: hsl(325, 22, 69);
--hsv-lily: hsv(325, 18, 76);
/* Mauvelous */
--hex-mauvelous: #f091a9;
--rgb-mauvelous: rgb(240, 145, 169);
--hsl-mauvelous: hsl(345, 76, 75);
--hsv-mauvelous: hsv(345, 40, 94);
/* Wewak */
--hex-wewak: #f1919a;
--rgb-wewak: rgb(241, 145, 154);
--hsl-wewak: hsl(354, 77, 76);
--hsv-wewak: hsv(354, 40, 95);
/* Kobi */
--hex-kobi: #e093ab;
--rgb-kobi: rgb(224, 147, 171);
--hsl-kobi: hsl(341, 55, 73);
--hsv-kobi: hsv(341, 34, 88);
/* Careys Pink */
--hex-careys-pink: #c99aa0;
--rgb-careys-pink: rgb(201, 154, 160);
--hsl-careys-pink: hsl(352, 30, 70);
--hsv-careys-pink: hsv(352, 23, 79);
/* Pale Magenta */
--hex-pale-magenta: #f984e5;
--rgb-pale-magenta: rgb(249, 132, 229);
--hsl-pale-magenta: hsl(310, 91, 75);
--hsv-pale-magenta: hsv(310, 47, 98);
/* Violet */
--hex-violet: #ee82ee;
--rgb-violet: rgb(238, 130, 238);
--hsl-violet: hsl(300, 76, 72);
--hsv-violet: hsv(300, 45, 93);
/* Tea Rose */
--hex-tea-rose: #f883c2;
--rgb-tea-rose: rgb(248, 131, 194);
--hsl-tea-rose: hsl(328, 89, 74);
--hsv-tea-rose: hsv(328, 47, 97);
/* Fuchsia Pink */
--hex-fuchsia-pink: #ff77ff;
--rgb-fuchsia-pink: rgb(255, 119, 255);
--hsl-fuchsia-pink: hsl(300, 100, 73);
--hsv-fuchsia-pink: hsv(300, 53, 100);
/* Persian Pink */
--hex-persian-pink: #f77fbe;
--rgb-persian-pink: rgb(247, 127, 190);
--hsl-persian-pink: hsl(329, 88, 73);
--hsv-persian-pink: hsv(329, 49, 97);
/* Tickle Me Pink */
--hex-tickle-me-pink: #fc80a5;
--rgb-tickle-me-pink: rgb(252, 128, 165);
--hsl-tickle-me-pink: hsl(342, 95, 75);
--hsv-tickle-me-pink: hsv(342, 49, 99);
/* Shady Lady */
--hex-shady-lady: #9f9b9d;
--rgb-shady-lady: rgb(159, 155, 157);
--hsl-shady-lady: hsl(330, 2, 62);
--hsv-shady-lady: hsv(330, 3, 62);
/* Viola */
--hex-viola: #c58f9d;
--rgb-viola: rgb(197, 143, 157);
--hsl-viola: hsl(344, 32, 67);
--hsv-viola: hsv(344, 27, 77);
/* London Hue */
--hex-london-hue: #ae94ab;
--rgb-london-hue: rgb(174, 148, 171);
--hsl-london-hue: hsl(307, 14, 63);
--hsv-london-hue: hsv(307, 15, 68);
/* Can Can */
--hex-can-can: #d08a9b;
--rgb-can-can: rgb(208, 138, 155);
--hsl-can-can: hsl(345, 43, 68);
--hsv-can-can: hsv(345, 34, 82);
/* Ultra Pink */
--hex-ultra-pink: #ff6fff;
--rgb-ultra-pink: rgb(255, 111, 255);
--hsl-ultra-pink: hsl(300, 100, 72);
--hsv-ultra-pink: hsv(300, 56, 100);
/* Puce */
--hex-puce: #cc8899;
--rgb-puce: rgb(204, 136, 153);
--hsl-puce: hsl(345, 40, 67);
--hsv-puce: hsv(345, 33, 80);
/* Carissma */
--hex-carissma: #e68095;
--rgb-carissma: rgb(230, 128, 149);
--hsl-carissma: hsl(348, 67, 70);
--hsv-carissma: hsv(348, 44, 90);
/* East Side */
--hex-east-side: #aa8cbc;
--rgb-east-side: rgb(170, 140, 188);
--hsl-east-side: hsl(278, 26, 64);
--hsv-east-side: hsv(278, 26, 74);
/* Heliotrope */
--hex-heliotrope: #df73ff;
--rgb-heliotrope: rgb(223, 115, 255);
--hsl-heliotrope: hsl(286, 100, 73);
--hsv-heliotrope: hsv(286, 55, 100);
/* Neon Pink */
--hex-neon-pink: #ff6ec7;
--rgb-neon-pink: rgb(255, 110, 199);
--hsl-neon-pink: hsl(323, 100, 72);
--hsv-neon-pink: hsv(323, 57, 100);
/* Pink Flamingo */
--hex-pink-flamingo: #ff66ff;
--rgb-pink-flamingo: rgb(255, 102, 255);
--hsl-pink-flamingo: hsl(300, 100, 70);
--hsv-pink-flamingo: hsv(300, 60, 100);
/* Hot Pink */
--hex-hot-pink: #ff69b4;
--rgb-hot-pink: rgb(255, 105, 180);
--hsl-hot-pink: hsl(330, 100, 71);
--hsv-hot-pink: hsv(330, 59, 100);
/* Orchid */
--hex-orchid: #da70d6;
--rgb-orchid: rgb(218, 112, 214);
--hsl-orchid: hsl(302, 59, 65);
--hsv-orchid: hsv(302, 49, 85);
/* Amethyst Smoke */
--hex-amethyst-smoke: #95879c;
--rgb-amethyst-smoke: rgb(149, 135, 156);
--hsl-amethyst-smoke: hsl(280, 10, 57);
--hsv-amethyst-smoke: hsv(280, 13, 61);
/* Bouquet */
--hex-bouquet: #a78199;
--rgb-bouquet: rgb(167, 129, 153);
--hsl-bouquet: hsl(322, 18, 58);
--hsv-bouquet: hsv(322, 23, 65);
/* Deep Blush */
--hex-deep-blush: #e36f8a;
--rgb-deep-blush: rgb(227, 111, 138);
--hsl-deep-blush: hsl(346, 67, 66);
--hsv-deep-blush: hsv(346, 51, 89);
/* Pale Violet Red */
--hex-pale-violet-red: #db7093;
--rgb-pale-violet-red: rgb(219, 112, 147);
--hsl-pale-violet-red: hsl(340, 60, 65);
--hsv-pale-violet-red: hsv(340, 49, 86);
/* Charm */
--hex-charm: #d0748b;
--rgb-charm: rgb(208, 116, 139);
--hsl-charm: hsl(345, 49, 64);
--hsv-charm: hsv(345, 44, 82);
/* Froly */
--hex-froly: #e56d75;
--rgb-froly: rgb(229, 109, 117);
--hsl-froly: hsl(356, 70, 66);
--hsv-froly: hsv(356, 52, 90);
/* Taupe Grey */
--hex-taupe-grey: #8b8589;
--rgb-taupe-grey: rgb(139, 133, 137);
--hsl-taupe-grey: hsl(320, 3, 53);
--hsv-taupe-grey: hsv(320, 4, 55);
/* Hopbush */
--hex-hopbush: #cd6d93;
--rgb-hopbush: rgb(205, 109, 147);
--hsl-hopbush: hsl(336, 49, 62);
--hsv-hopbush: hsv(336, 47, 80);
/* Brink Pink */
--hex-brink-pink: #fb607f;
--rgb-brink-pink: rgb(251, 96, 127);
--hsl-brink-pink: hsl(348, 95, 68);
--hsv-brink-pink: hsv(348, 62, 98);
/* Mountbatten Pink */
--hex-mountbatten-pink: #997a8d;
--rgb-mountbatten-pink: rgb(153, 122, 141);
--hsl-mountbatten-pink: hsl(323, 13, 54);
--hsv-mountbatten-pink: hsv(323, 20, 60);
/* Free Speech Magenta */
--hex-free-speech-magenta: #e35bd8;
--rgb-free-speech-magenta: rgb(227, 91, 216);
--hsl-free-speech-magenta: hsl(305, 71, 62);
--hsv-free-speech-magenta: hsv(305, 60, 89);
/* Venus */
--hex-venus: #8b7d82;
--rgb-venus: rgb(139, 125, 130);
--hsl-venus: hsl(339, 6, 52);
--hsv-venus: hsv(339, 10, 55);
/* Tapestry */
--hex-tapestry: #b37084;
--rgb-tapestry: rgb(179, 112, 132);
--hsl-tapestry: hsl(342, 31, 57);
--hsv-tapestry: hsv(342, 37, 70);
/* Wild Watermelon */
--hex-wild-watermelon: #fd5b78;
--rgb-wild-watermelon: rgb(253, 91, 120);
--hsl-wild-watermelon: hsl(349, 98, 67);
--hsv-wild-watermelon: hsv(349, 64, 99);
/* Brilliant Rose */
--hex-brilliant-rose: #ff55a3;
--rgb-brilliant-rose: rgb(255, 85, 163);
--hsl-brilliant-rose: hsl(332, 100, 67);
--hsv-brilliant-rose: hsv(332, 67, 100);
/* Ce Soir */
--hex-ce-soir: #9271a7;
--rgb-ce-soir: rgb(146, 113, 167);
--hsl-ce-soir: hsl(277, 23, 55);
--hsv-ce-soir: hsv(277, 32, 65);
/* Turkish Rose */
--hex-turkish-rose: #a56e75;
--rgb-turkish-rose: rgb(165, 110, 117);
--hsl-turkish-rose: hsl(352, 23, 54);
--hsv-turkish-rose: hsv(352, 33, 65);
/* Monsoon */
--hex-monsoon: #7a7679;
--rgb-monsoon: rgb(122, 118, 121);
--hsl-monsoon: hsl(315, 2, 47);
--hsv-monsoon: hsv(315, 3, 48);
/* Dark Pink */
--hex-dark-pink: #e75480;
--rgb-dark-pink: rgb(231, 84, 128);
--hsl-dark-pink: hsl(342, 75, 62);
--hsv-dark-pink: hsv(342, 64, 91);
/* Strikemaster */
--hex-strikemaster: #946a81;
--rgb-strikemaster: rgb(148, 106, 129);
--hsl-strikemaster: hsl(327, 17, 50);
--hsv-strikemaster: hsv(327, 28, 58);
/* Medium Orchid */
--hex-medium-orchid: #ba55d3;
--rgb-medium-orchid: rgb(186, 85, 211);
--hsl-medium-orchid: hsl(288, 59, 58);
--hsv-medium-orchid: hsv(288, 60, 83);
/* Empress */
--hex-empress: #7c7173;
--rgb-empress: rgb(124, 113, 115);
--hsl-empress: hsl(349, 5, 46);
--hsv-empress: hsv(349, 9, 49);
/* French Rose */
--hex-french-rose: #f64a8a;
--rgb-french-rose: rgb(246, 74, 138);
--hsl-french-rose: hsl(338, 91, 63);
--hsv-french-rose: hsv(338, 70, 96);
/* Fuchsia */
--hex-fuchsia: #c154c1;
--rgb-fuchsia: rgb(193, 84, 193);
--hsl-fuchsia: hsl(300, 47, 54);
--hsv-fuchsia: hsv(300, 56, 76);
/* Violet Blue */
--hex-violet-blue: #9f5f9f;
--rgb-violet-blue: rgb(159, 95, 159);
--hsl-violet-blue: hsl(300, 25, 50);
--hsv-violet-blue: hsv(300, 40, 62);
/* Violet Red */
--hex-violet-red: #f7468a;
--rgb-violet-red: rgb(247, 70, 138);
--hsl-violet-red: hsl(337, 92, 62);
--hsv-violet-red: hsv(337, 72, 97);
/* Cranberry */
--hex-cranberry: #db5079;
--rgb-cranberry: rgb(219, 80, 121);
--hsl-cranberry: hsl(342, 66, 59);
--hsv-cranberry: hsv(342, 63, 86);
/* Cabaret */
--hex-cabaret: #cd526c;
--rgb-cabaret: rgb(205, 82, 108);
--hsl-cabaret: hsl(347, 55, 56);
--hsv-cabaret: hsv(347, 60, 80);
/* Mandy */
--hex-mandy: #cd525b;
--rgb-mandy: rgb(205, 82, 91);
--hsl-mandy: hsl(356, 55, 56);
--hsv-mandy: hsv(356, 60, 80);
/* Old Lavender */
--hex-old-lavender: #796878;
--rgb-old-lavender: rgb(121, 104, 120);
--hsl-old-lavender: hsl(304, 8, 44);
--hsv-old-lavender: hsv(304, 14, 47);
/* Deep Lilac */
--hex-deep-lilac: #9955bb;
--rgb-deep-lilac: rgb(153, 85, 187);
--hsl-deep-lilac: hsl(280, 43, 53);
--hsv-deep-lilac: hsv(280, 55, 73);
/* Mauve Taupe */
--hex-mauve-taupe: #915f6d;
--rgb-mauve-taupe: rgb(145, 95, 109);
--hsl-mauve-taupe: hsl(343, 21, 47);
--hsv-mauve-taupe: hsv(343, 34, 57);
/* Mulberry */
--hex-mulberry: #c54b8c;
--rgb-mulberry: rgb(197, 75, 140);
--hsl-mulberry: hsl(328, 51, 53);
--hsv-mulberry: hsv(328, 62, 77);
/* Rum */
--hex-rum: #716675;
--rgb-rum: rgb(113, 102, 117);
--hsl-rum: hsl(284, 7, 43);
--hsv-rum: hsv(284, 13, 46);
/* Razzle Dazzle Rose */
--hex-razzle-dazzle-rose: #ff33cc;
--rgb-razzle-dazzle-rose: rgb(255, 51, 204);
--hsl-razzle-dazzle-rose: hsl(315, 100, 60);
--hsv-razzle-dazzle-rose: hsv(315, 80, 100);
/* Blush */
--hex-blush: #b55067;
--rgb-blush: rgb(181, 80, 103);
--hsl-blush: hsl(346, 41, 51);
--hsv-blush: hsv(346, 56, 71);
/* Trendy Pink */
--hex-trendy-pink: #805d80;
--rgb-trendy-pink: rgb(128, 93, 128);
--hsl-trendy-pink: hsl(300, 16, 43);
--hsv-trendy-pink: hsv(300, 27, 50);
/* Wild Strawberry */
--hex-wild-strawberry: #ff3399;
--rgb-wild-strawberry: rgb(255, 51, 153);
--hsl-wild-strawberry: hsl(330, 100, 60);
--hsv-wild-strawberry: hsv(330, 80, 100);
/* Scorpion */
--hex-scorpion: #6a6466;
--rgb-scorpion: rgb(106, 100, 102);
--hsl-scorpion: hsl(340, 3, 40);
--hsv-scorpion: hsv(340, 6, 42);
/* Royal Heath */
--hex-royal-heath: #b54b73;
--rgb-royal-heath: rgb(181, 75, 115);
--hsl-royal-heath: hsl(337, 42, 50);
--hsv-royal-heath: hsv(337, 59, 71);
/* Salt Box */
--hex-salt-box: #696268;
--rgb-salt-box: rgb(105, 98, 104);
--hsl-salt-box: hsl(309, 3, 40);
--hsv-salt-box: hsv(309, 7, 41);
/* Radical Red */
--hex-radical-red: #ff355e;
--rgb-radical-red: rgb(255, 53, 94);
--hsl-radical-red: hsl(348, 100, 60);
--hsv-radical-red: hsv(348, 79, 100);
/* Vin Rouge */
--hex-vin-rouge: #955264;
--rgb-vin-rouge: rgb(149, 82, 100);
--hsl-vin-rouge: hsl(344, 29, 45);
--hsv-vin-rouge: hsv(344, 45, 58);
/* Cannon Pink */
--hex-cannon-pink: #8e5164;
--rgb-cannon-pink: rgb(142, 81, 100);
--hsl-cannon-pink: hsl(341, 27, 44);
--hsv-cannon-pink: hsv(341, 43, 56);
/* Hippie Pink */
--hex-hippie-pink: #ab495c;
--rgb-hippie-pink: rgb(171, 73, 92);
--hsl-hippie-pink: hsl(348, 40, 48);
--hsv-hippie-pink: hsv(348, 57, 67);
/* Falcon */
--hex-falcon: #6e5a5b;
--rgb-falcon: rgb(110, 90, 91);
--hsl-falcon: hsl(357, 10, 39);
--hsv-falcon: hsv(357, 18, 43);
/* Persian Rose */
--hex-persian-rose: #fe28a2;
--rgb-persian-rose: rgb(254, 40, 162);
--hsl-persian-rose: hsl(326, 99, 58);
--hsv-persian-rose: hsv(326, 84, 100);
/* Deep Cerise */
--hex-deep-cerise: #da3287;
--rgb-deep-cerise: rgb(218, 50, 135);
--hsl-deep-cerise: hsl(330, 69, 53);
--hsv-deep-cerise: hsv(330, 77, 85);
/* Cadillac */
--hex-cadillac: #984961;
--rgb-cadillac: rgb(152, 73, 97);
--hsl-cadillac: hsl(342, 35, 44);
--hsv-cadillac: hsv(342, 52, 60);
/* Affair */
--hex-affair: #745085;
--rgb-affair: rgb(116, 80, 133);
--hsl-affair: hsl(281, 25, 42);
--hsv-affair: hsv(281, 40, 52);
/* Fedora */
--hex-fedora: #625665;
--rgb-fedora: rgb(98, 86, 101);
--hsl-fedora: hsl(288, 8, 37);
--hsv-fedora: hsv(288, 15, 40);
/* Cerise */
--hex-cerise: #de3163;
--rgb-cerise: rgb(222, 49, 99);
--hsl-cerise: hsl(343, 72, 53);
--hsv-cerise: hsv(343, 78, 87);
/* Rouge */
--hex-rouge: #a94064;
--rgb-rouge: rgb(169, 64, 100);
--hsl-rouge: hsl(339, 45, 46);
--hsv-rouge: hsv(339, 62, 66);
/* Cosmic */
--hex-cosmic: #794d60;
--rgb-cosmic: rgb(121, 77, 96);
--hsl-cosmic: hsl(334, 22, 39);
--hsv-cosmic: hsv(334, 36, 47);
/* Spicy Pink */
--hex-spicy-pink: #ff1cae;
--rgb-spicy-pink: rgb(255, 28, 174);
--hsl-spicy-pink: hsl(321, 100, 55);
--hsv-spicy-pink: hsv(321, 89, 100);
/* Solid Pink */
--hex-solid-pink: #85494c;
--rgb-solid-pink: rgb(133, 73, 76);
--hsl-solid-pink: hsl(357, 29, 40);
--hsv-solid-pink: hsv(357, 45, 52);
/* Medium Red Violet */
--hex-medium-red-violet: #bb3385;
--rgb-medium-red-violet: rgb(187, 51, 133);
--hsl-medium-red-violet: hsl(324, 57, 47);
--hsv-medium-red-violet: hsv(324, 73, 73);
/* Amaranth */
--hex-amaranth: #e52b50;
--rgb-amaranth: rgb(229, 43, 80);
--hsl-amaranth: hsl(348, 78, 53);
--hsv-amaranth: hsv(348, 81, 90);
/* Night Shadz */
--hex-night-shadz: #a23d54;
--rgb-night-shadz: rgb(162, 61, 84);
--hsl-night-shadz: hsl(346, 45, 44);
--hsv-night-shadz: hsv(346, 62, 64);
/* Mahogany */
--hex-mahogany: #ca3435;
--rgb-mahogany: rgb(202, 52, 53);
--hsl-mahogany: hsl(360, 59, 50);
--hsv-mahogany: hsv(360, 74, 79);
/* Dark Orchid */
--hex-dark-orchid: #9932cc;
--rgb-dark-orchid: rgb(153, 50, 204);
--hsl-dark-orchid: hsl(280, 61, 50);
--hsv-dark-orchid: hsv(280, 75, 80);
/* Don Juan */
--hex-don-juan: #5a4f51;
--rgb-don-juan: rgb(90, 79, 81);
--hsl-don-juan: hsl(349, 7, 33);
--hsv-don-juan: hsv(349, 12, 35);
/* Mortar */
--hex-mortar: #565051;
--rgb-mortar: rgb(86, 80, 81);
--hsl-mortar: hsl(350, 4, 33);
--hsv-mortar: hsv(350, 7, 34);
/* Alizarin */
--hex-alizarin: #e32636;
--rgb-alizarin: rgb(227, 38, 54);
--hsl-alizarin: hsl(355, 77, 52);
--hsv-alizarin: hsv(355, 83, 89);
/* Old Rose */
--hex-old-rose: #c02e4c;
--rgb-old-rose: rgb(192, 46, 76);
--hsl-old-rose: hsl(348, 61, 47);
--hsv-old-rose: hsv(348, 76, 75);
/* Deep Pink */
--hex-deep-pink: #ff1493;
--rgb-deep-pink: rgb(255, 20, 147);
--hsl-deep-pink: hsl(328, 100, 54);
--hsv-deep-pink: hsv(328, 92, 100);
/* Brick Red */
--hex-brick-red: #c62d42;
--rgb-brick-red: rgb(198, 45, 66);
--hsl-brick-red: hsl(352, 63, 48);
--hsv-brick-red: hsv(352, 77, 78);
/* Shocking Pink */
--hex-shocking-pink: #fc0fc0;
--rgb-shocking-pink: rgb(252, 15, 192);
--hsl-shocking-pink: hsl(315, 98, 52);
--hsv-shocking-pink: hsv(315, 94, 99);
/* Finn */
--hex-finn: #694554;
--rgb-finn: rgb(105, 69, 84);
--hsl-finn: hsl(335, 21, 34);
--hsv-finn: hsv(335, 34, 41);
/* Liver */
--hex-liver: #534b4f;
--rgb-liver: rgb(83, 75, 79);
--hsl-liver: hsl(330, 5, 31);
--hsv-liver: hsv(330, 10, 33);
/* Vivid Violet */
--hex-vivid-violet: #803790;
--rgb-vivid-violet: rgb(128, 55, 144);
--hsl-vivid-violet: hsl(289, 45, 39);
--hsv-vivid-violet: hsv(289, 62, 56);
/* Stiletto */
--hex-stiletto: #833d3e;
--rgb-stiletto: rgb(131, 61, 62);
--hsl-stiletto: hsl(359, 36, 38);
--hsv-stiletto: hsv(359, 53, 51);
/* Tosca */
--hex-tosca: #744042;
--rgb-tosca: rgb(116, 64, 66);
--hsl-tosca: hsl(358, 29, 35);
--hsv-tosca: hsv(358, 45, 45);
/* Emperor */
--hex-emperor: #50494a;
--rgb-emperor: rgb(80, 73, 74);
--hsl-emperor: hsl(351, 5, 30);
--hsv-emperor: hsv(351, 9, 31);
/* Camelot */
--hex-camelot: #803a4b;
--rgb-camelot: rgb(128, 58, 75);
--hsl-camelot: hsl(345, 38, 36);
--hsv-camelot: hsv(345, 55, 50);
/* Magenta */
--hex-magenta: #ff00ff;
--rgb-magenta: rgb(255, 0, 255);
--hsl-magenta: hsl(300, 100, 50);
--hsv-magenta: hsv(300, 100, 100);
/* Eminence */
--hex-eminence: #6e3974;
--rgb-eminence: rgb(110, 57, 116);
--hsl-eminence: hsl(294, 34, 34);
--hsv-eminence: hsv(294, 51, 45);
/* Well Read */
--hex-well-read: #8e3537;
--rgb-well-read: rgb(142, 53, 55);
--hsl-well-read: hsl(359, 46, 38);
--hsv-well-read: hsv(359, 63, 56);
/* Honey Flower */
--hex-honey-flower: #5c3c6d;
--rgb-honey-flower: rgb(92, 60, 109);
--hsl-honey-flower: hsl(279, 29, 33);
--hsv-honey-flower: hsv(279, 45, 43);
/* Old Brick */
--hex-old-brick: #8a3335;
--rgb-old-brick: rgb(138, 51, 53);
--hsl-old-brick: hsl(359, 46, 37);
--hsv-old-brick: hsv(359, 63, 54);
/* Lipstick */
--hex-lipstick: #962c54;
--rgb-lipstick: rgb(150, 44, 84);
--hsl-lipstick: hsl(337, 55, 38);
--hsv-lipstick: hsv(337, 71, 59);
/* Hot Magenta */
--hex-hot-magenta: #ff00cc;
--rgb-hot-magenta: rgb(255, 0, 204);
--hsl-hot-magenta: hsl(312, 100, 50);
--hsv-hot-magenta: hsv(312, 100, 100);
/* Purple Taupe */
--hex-purple-taupe: #50404d;
--rgb-purple-taupe: rgb(80, 64, 77);
--hsl-purple-taupe: hsl(311, 11, 28);
--hsv-purple-taupe: hsv(311, 20, 31);
/* Guardsman Red */
--hex-guardsman-red: #952e31;
--rgb-guardsman-red: rgb(149, 46, 49);
--hsl-guardsman-red: hsl(358, 53, 38);
--hsv-guardsman-red: hsv(358, 69, 58);
/* Tawny Port */
--hex-tawny-port: #643a48;
--rgb-tawny-port: rgb(100, 58, 72);
--hsl-tawny-port: hsl(340, 27, 31);
--hsv-tawny-port: hsv(340, 42, 39);
/* Torch Red */
--hex-torch-red: #fd0e35;
--rgb-torch-red: rgb(253, 14, 53);
--hsl-torch-red: hsl(350, 98, 52);
--hsv-torch-red: hsv(350, 94, 99);
/* Rose Bud Cherry */
--hex-rose-bud-cherry: #8a2d52;
--rgb-rose-bud-cherry: rgb(138, 45, 82);
--hsl-rose-bud-cherry: hsl(336, 51, 36);
--hsv-rose-bud-cherry: hsv(336, 67, 54);
/* Cardinal */
--hex-cardinal: #c41e3a;
--rgb-cardinal: rgb(196, 30, 58);
--hsl-cardinal: hsl(350, 73, 44);
--hsv-cardinal: hsv(350, 85, 77);
/* Disco */
--hex-disco: #892d4f;
--rgb-disco: rgb(137, 45, 79);
--hsl-disco: hsl(338, 51, 36);
--hsv-disco: hsv(338, 67, 54);
/* Medium Violet Red */
--hex-medium-violet-red: #c71585;
--rgb-medium-violet-red: rgb(199, 21, 133);
--hsl-medium-violet-red: hsl(322, 81, 43);
--hsv-medium-violet-red: hsv(322, 89, 78);
/* Ruby */
--hex-ruby: #e0115f;
--rgb-ruby: rgb(224, 17, 95);
--hsl-ruby: hsl(337, 86, 47);
--hsv-ruby: hsv(337, 92, 88);
/* Seance */
--hex-seance: #69326e;
--rgb-seance: rgb(105, 50, 110);
--hsl-seance: hsl(295, 38, 31);
--hsv-seance: hsv(295, 55, 43);
/* Merlot */
--hex-merlot: #73343a;
--rgb-merlot: rgb(115, 52, 58);
--hsl-merlot: hsl(354, 38, 33);
--hsv-merlot: hsv(354, 55, 45);
/* Bossanova */
--hex-bossanova: #4c3d4e;
--rgb-bossanova: rgb(76, 61, 78);
--hsl-bossanova: hsl(293, 12, 27);
--hsv-bossanova: hsv(293, 22, 31);
/* Crimson */
--hex-crimson: #dc143c;
--rgb-crimson: rgb(220, 20, 60);
--hsl-crimson: hsl(348, 83, 47);
--hsv-crimson: hsv(348, 91, 86);
/* Psychedelic Purple */
--hex-psychedelic-purple: #dd00ff;
--rgb-psychedelic-purple: rgb(221, 0, 255);
--hsl-psychedelic-purple: hsl(292, 100, 50);
--hsv-psychedelic-purple: hsv(292, 100, 100);
/* Bright Red */
--hex-bright-red: #922a31;
--rgb-bright-red: rgb(146, 42, 49);
--hsl-bright-red: hsl(356, 55, 37);
--hsv-bright-red: hsv(356, 71, 57);
/* Flirt */
--hex-flirt: #7a2e4d;
--rgb-flirt: rgb(122, 46, 77);
--hsl-flirt: hsl(336, 45, 33);
--hsv-flirt: hsv(336, 62, 48);
/* Hollywood Cerise */
--hex-hollywood-cerise: #f400a1;
--rgb-hollywood-cerise: rgb(244, 0, 161);
--hsl-hollywood-cerise: hsl(320, 100, 48);
--hsv-hollywood-cerise: hsv(320, 100, 96);
/* Jon */
--hex-jon: #463d3e;
--rgb-jon: rgb(70, 61, 62);
--hsl-jon: hsl(353, 7, 26);
--hsv-jon: hsv(353, 13, 27);
/* Razzmatazz */
--hex-razzmatazz: #e30b5c;
--rgb-razzmatazz: rgb(227, 11, 92);
--hsl-razzmatazz: hsl(338, 91, 47);
--hsv-razzmatazz: hsv(338, 95, 89);
/* Paprika */
--hex-paprika: #7c2d37;
--rgb-paprika: rgb(124, 45, 55);
--hsl-paprika: hsl(352, 47, 33);
--hsv-paprika: hsv(352, 64, 49);
/* Fire Engine Red */
--hex-fire-engine-red: #ce1620;
--rgb-fire-engine-red: rgb(206, 22, 32);
--hsl-fire-engine-red: hsl(357, 81, 45);
--hsv-fire-engine-red: hsv(357, 89, 81);
/* Flame Red */
--hex-flame-red: #86282e;
--rgb-flame-red: rgb(134, 40, 46);
--hsl-flame-red: hsl(356, 54, 34);
--hsv-flame-red: hsv(356, 70, 53);
/* Shiraz */
--hex-shiraz: #842833;
--rgb-shiraz: rgb(132, 40, 51);
--hsl-shiraz: hsl(353, 53, 34);
--hsv-shiraz: hsv(353, 70, 52);
/* Dark Purple */
--hex-dark-purple: #871f78;
--rgb-dark-purple: rgb(135, 31, 120);
--hsl-dark-purple: hsl(309, 63, 33);
--hsv-dark-purple: hsv(309, 77, 53);
/* Fuscous Grey */
--hex-fuscous-grey: #3c3b3c;
--rgb-fuscous-grey: rgb(60, 59, 60);
--hsl-fuscous-grey: hsl(300, 1, 23);
--hsv-fuscous-grey: hsv(300, 2, 24);
/* Tamarillo */
--hex-tamarillo: #752b2f;
--rgb-tamarillo: rgb(117, 43, 47);
--hsl-tamarillo: hsl(357, 46, 31);
--hsv-tamarillo: hsv(357, 63, 46);
/* Electric Purple */
--hex-electric-purple: #bf00ff;
--rgb-electric-purple: rgb(191, 0, 255);
--hsl-electric-purple: hsl(285, 100, 50);
--hsv-electric-purple: hsv(285, 100, 100);
/* Deep Magenta */
--hex-deep-magenta: #cc00cc;
--rgb-deep-magenta: rgb(204, 0, 204);
--hsl-deep-magenta: hsl(300, 100, 40);
--hsv-deep-magenta: hsv(300, 100, 80);
/* Loulou */
--hex-loulou: #4c3347;
--rgb-loulou: rgb(76, 51, 71);
--hsl-loulou: hsl(312, 20, 25);
--hsv-loulou: hsv(312, 33, 30);
/* Palatinate Purple */
--hex-palatinate-purple: #682860;
--rgb-palatinate-purple: rgb(104, 40, 96);
--hsl-palatinate-purple: hsl(308, 44, 28);
--hsv-palatinate-purple: hsv(308, 62, 41);
/* Scarlett */
--hex-scarlett: #7e2530;
--rgb-scarlett: rgb(126, 37, 48);
--hsl-scarlett: hsl(353, 55, 32);
--hsv-scarlett: hsv(353, 71, 49);
/* Siren */
--hex-siren: #69293b;
--rgb-siren: rgb(105, 41, 59);
--hsl-siren: hsl(343, 44, 29);
--hsv-siren: hsv(343, 61, 41);
/* Hot Purple */
--hex-hot-purple: #4e2e53;
--rgb-hot-purple: rgb(78, 46, 83);
--hsl-hot-purple: hsl(292, 29, 25);
--hsv-hot-purple: hsv(292, 45, 33);
/* Jazz */
--hex-jazz: #5f2c2f;
--rgb-jazz: rgb(95, 44, 47);
--hsl-jazz: hsl(356, 37, 27);
--hsv-jazz: hsv(356, 54, 37);
/* Red Devil */
--hex-red-devil: #662a2c;
--rgb-red-devil: rgb(102, 42, 44);
--hsl-red-devil: hsl(358, 42, 28);
--hsv-red-devil: hsv(358, 59, 40);
/* Voodoo */
--hex-voodoo: #443240;
--rgb-voodoo: rgb(68, 50, 64);
--hsl-voodoo: hsl(313, 15, 23);
--hsv-voodoo: hsv(313, 26, 27);
/* Scarlet Gum */
--hex-scarlet-gum: #4a2d57;
--rgb-scarlet-gum: rgb(74, 45, 87);
--hsl-scarlet-gum: hsl(281, 32, 26);
--hsv-scarlet-gum: hsv(281, 48, 34);
/* Wine Berry */
--hex-wine-berry: #522c35;
--rgb-wine-berry: rgb(82, 44, 53);
--hsl-wine-berry: hsl(346, 30, 25);
--hsv-wine-berry: hsv(346, 46, 32);
/* Monarch */
--hex-monarch: #6b252c;
--rgb-monarch: rgb(107, 37, 44);
--hsl-monarch: hsl(354, 49, 28);
--hsv-monarch: hsv(354, 65, 42);
/* Cab Sav */
--hex-cab-sav: #4a2e32;
--rgb-cab-sav: rgb(74, 46, 50);
--hsl-cab-sav: hsl(351, 23, 24);
--hsv-cab-sav: hsv(351, 38, 29);
/* Barossa */
--hex-barossa: #452e39;
--rgb-barossa: rgb(69, 46, 57);
--hsl-barossa: hsl(331, 20, 23);
--hsv-barossa: hsv(331, 33, 27);
/* Claret */
--hex-claret: #6e2233;
--rgb-claret: rgb(110, 34, 51);
--hsl-claret: hsl(347, 53, 28);
--hsv-claret: hsv(347, 69, 43);
/* Black Rose */
--hex-black-rose: #532934;
--rgb-black-rose: rgb(83, 41, 52);
--hsl-black-rose: hsl(344, 34, 24);
--hsv-black-rose: hsv(344, 51, 33);
/* Heath */
--hex-heath: #4f2a2c;
--rgb-heath: rgb(79, 42, 44);
--hsl-heath: hsl(357, 31, 24);
--hsv-heath: hsv(357, 47, 31);
/* Venetian Red */
--hex-venetian-red: #c80815;
--rgb-venetian-red: rgb(200, 8, 21);
--hsl-venetian-red: hsl(356, 92, 41);
--hsv-venetian-red: hsv(356, 96, 78);
/* Jazzberry Jam */
--hex-jazzberry-jam: #a50b5e;
--rgb-jazzberry-jam: rgb(165, 11, 94);
--hsl-jazzberry-jam: hsl(328, 88, 35);
--hsv-jazzberry-jam: hsv(328, 93, 65);
/* Pompadour */
--hex-pompadour: #6a1f44;
--rgb-pompadour: rgb(106, 31, 68);
--hsl-pompadour: hsl(330, 55, 27);
--hsv-pompadour: hsv(330, 71, 42);
/* Red Berry */
--hex-red-berry: #701f28;
--rgb-red-berry: rgb(112, 31, 40);
--hsl-red-berry: hsl(353, 57, 28);
--hsv-red-berry: hsv(353, 72, 44);
/* Valentino */
--hex-valentino: #382c38;
--rgb-valentino: rgb(56, 44, 56);
--hsl-valentino: hsl(300, 12, 20);
--hsv-valentino: hsv(300, 21, 22);
/* Volcano */
--hex-volcano: #4e2728;
--rgb-volcano: rgb(78, 39, 40);
--hsl-volcano: hsl(358, 33, 23);
--hsv-volcano: hsv(358, 50, 31);
/* Dark Violet */
--hex-dark-violet: #9400d3;
--rgb-dark-violet: rgb(148, 0, 211);
--hsl-dark-violet: hsl(282, 100, 41);
--hsv-dark-violet: hsv(282, 100, 83);
/* Havana */
--hex-havana: #3b2b2c;
--rgb-havana: rgb(59, 43, 44);
--hsl-havana: hsl(356, 16, 20);
--hsv-havana: hsv(356, 27, 23);
/* Lonestar */
--hex-lonestar: #522426;
--rgb-lonestar: rgb(82, 36, 38);
--hsl-lonestar: hsl(357, 39, 23);
--hsv-lonestar: hsv(357, 56, 32);
/* Burnt Crimson */
--hex-burnt-crimson: #582124;
--rgb-burnt-crimson: rgb(88, 33, 36);
--hsl-burnt-crimson: hsl(357, 45, 24);
--hsv-burnt-crimson: hsv(357, 63, 35);
/* Pohutukawa */
--hex-pohutukawa: #651c26;
--rgb-pohutukawa: rgb(101, 28, 38);
--hsl-pohutukawa: hsl(352, 57, 25);
--hsv-pohutukawa: hsv(352, 72, 40);
/* Melanzane */
--hex-melanzane: #342931;
--rgb-melanzane: rgb(52, 41, 49);
--hsl-melanzane: hsl(316, 12, 18);
--hsv-melanzane: hsv(316, 21, 20);
/* Toledo */
--hex-toledo: #3e2631;
--rgb-toledo: rgb(62, 38, 49);
--hsl-toledo: hsl(333, 24, 20);
--hsv-toledo: hsv(333, 39, 24);
/* Bulgarian Rose */
--hex-bulgarian-rose: #482427;
--rgb-bulgarian-rose: rgb(72, 36, 39);
--hsl-bulgarian-rose: hsl(355, 33, 21);
--hsv-bulgarian-rose: hsv(355, 50, 28);
/* Castro */
--hex-castro: #44232f;
--rgb-castro: rgb(68, 35, 47);
--hsl-castro: hsl(338, 32, 20);
--hsv-castro: hsv(338, 49, 27);
/* Aubergine */
--hex-aubergine: #372528;
--rgb-aubergine: rgb(55, 37, 40);
--hsl-aubergine: hsl(350, 20, 18);
--hsv-aubergine: hsv(350, 33, 22);
/* Eggplant */
--hex-eggplant: #990066;
--rgb-eggplant: rgb(153, 0, 102);
--hsl-eggplant: hsl(320, 100, 30);
--hsv-eggplant: hsv(320, 100, 60);
/* Dark Magenta */
--hex-dark-magenta: #8b008b;
--rgb-dark-magenta: rgb(139, 0, 139);
--hsl-dark-magenta: hsl(300, 100, 27);
--hsv-dark-magenta: hsv(300, 100, 55);
/* Mardi Gras */
--hex-mardi-gras: #352235;
--rgb-mardi-gras: rgb(53, 34, 53);
--hsl-mardi-gras: hsl(300, 22, 17);
--hsv-mardi-gras: hsv(300, 36, 21);
/* Temptress */
--hex-temptress: #3c2126;
--rgb-temptress: rgb(60, 33, 38);
--hsl-temptress: hsl(349, 29, 18);
--hsv-temptress: hsv(349, 45, 24);
/* Bordeaux */
--hex-bordeaux: #4c1c24;
--rgb-bordeaux: rgb(76, 28, 36);
--hsl-bordeaux: hsl(350, 46, 20);
--hsv-bordeaux: hsv(350, 63, 30);
/* Purple */
--hex-purple: #800080;
--rgb-purple: rgb(128, 0, 128);
--hsl-purple: hsl(300, 100, 25);
--hsv-purple: hsv(300, 100, 50);
/* Blackberry */
--hex-blackberry: #43182f;
--rgb-blackberry: rgb(67, 24, 47);
--hsl-blackberry: hsl(328, 47, 18);
--hsv-blackberry: hsv(328, 64, 26);
/* Carmine */
--hex-carmine: #960018;
--rgb-carmine: rgb(150, 0, 24);
--hsl-carmine: hsl(350, 100, 29);
--hsv-carmine: hsv(350, 100, 59);
/* Sangria */
--hex-sangria: #92000a;
--rgb-sangria: rgb(146, 0, 10);
--hsl-sangria: hsl(356, 100, 29);
--hsv-sangria: hsv(356, 100, 57);
/* Rustic Red */
--hex-rustic-red: #3a181a;
--rgb-rustic-red: rgb(58, 24, 26);
--hsl-rustic-red: hsl(356, 41, 16);
--hsv-rustic-red: hsv(356, 59, 23);
/* Blackcurrant */
--hex-blackcurrant: #2e183b;
--rgb-blackcurrant: rgb(46, 24, 59);
--hsl-blackcurrant: hsl(278, 42, 16);
--hsv-blackcurrant: hsv(278, 59, 23);
/* Burgundy */
--hex-burgundy: #800020;
--rgb-burgundy: rgb(128, 0, 32);
--hsl-burgundy: hsl(345, 100, 25);
--hsv-burgundy: hsv(345, 100, 50);
/* Tyrian Purple */
--hex-tyrian-purple: #66023c;
--rgb-tyrian-purple: rgb(102, 2, 60);
--hsl-tyrian-purple: hsl(325, 96, 20);
--hsv-tyrian-purple: hsv(325, 98, 40);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment