PHPackages                             dbeurive/color - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. dbeurive/color

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

dbeurive/color
==============

This package contains implementations of a color picker.

1.0.3(9y ago)019MITPHP

Since Sep 24Pushed 9y ago1 watchersCompare

[ Source](https://github.com/dbeurive/color-picker)[ Packagist](https://packagist.org/packages/dbeurive/color)[ RSS](/packages/dbeurive-color/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependencies (2)Versions (5)Used By (0)

Introduction
============

[](#introduction)

This package implements a simple colour picker that allows the user to pick a colour by its name among a given list of colours.

The list of colours comes from [Wikipedia](https://en.wikipedia.org/wiki/List_of_colors:_A%E2%80%93F).

License
=======

[](#license)

> The MIT License (MIT)
>
> Copyright (c) 2016 Denis BEURIVE
>
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
>
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
>
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Synopsis
========

[](#synopsis)

```
    use dbeurive\Color\Picker;

    print 'HTML code for the color "Absolute Zero": ' . Picker::absoluteZero() . "\n";
    print 'HTML code for the color "Aero Blue": ' . Picker::aeroBlue() . "\n";

    print 'GraphViz code for the color "Absolute Zero": ' . Picker::absoluteZero('graphviz') . "\n";
    print 'GraphViz code for the color "Aero Blue": ' . Picker::aeroBlue('graphviz') . "\n";

    Picker::setDefaultOutputFormat('rgb');

    print 'RGB triplet for the color "Absolute Zero": ' .  print_r(Picker::absoluteZero(), true) . "\n";
    print 'RGB triplet for the color "Aero Blue": ' . print_r(Picker::aeroBlue(), true) . "\n";

    Picker::setDefaultOutputFormat('hsl');

    print 'HSL triplet for the color "Absolute Zero": ' .  print_r(Picker::absoluteZero(), true) . "\n";
    print 'HSL triplet for the color "Aero Blue": ' . print_r(Picker::aeroBlue(), true) . "\n";

    Picker::setDefaultOutputFormat('hsv');

    print 'HSV triplet for the color "Absolute Zero": ' .  print_r(Picker::absoluteZero(), true) . "\n";
    print 'HSV triplet for the color "Aero Blue": ' . print_r(Picker::aeroBlue(), true) . "\n";
```

Which will output:

```
HTML code for the color "Absolute Zero": #0048BA
HTML code for the color "Aero Blue Zero": #C9FFE5
GraphViz code for the color "Absolute Zero": #0048BA
GraphViz code for the color "Aero Blue Zero": #C9FFE5
RGB triplet for the color "Absolute Zero": Array
(
    [0] => 0
    [1] => 28
    [2] => 73
)

RGB triplet for the color "Aero Blue Zero": Array
(
    [0] => 79
    [1] => 100
    [2] => 90
)

HSL triplet for the color "Absolute Zero": Array
(
    [0] => 217
    [1] => 100
    [2] => 37
)

HSL triplet for the color "Aero Blue Zero": Array
(
    [0] => 151
    [1] => 100
    [2] => 89
)

HSV triplet for the color "Absolute Zero": Array
(
    [0] => 217
    [1] => 100
    [2] => 73
)

HSV triplet for the color "Aero Blue Zero": Array
(
    [0] => 151
    [1] => 21
    [2] => 100
)

```

Installation
============

[](#installation)

Form the command line:

```
composer require dbeurive/color

```

Or, from within your file composer.json:

```
"require": {
    "dbeurive/color": "*"
}

```

API
===

[](#api)

Colour codes come in multiple formats :

- "html". For example "#0048BA"
- "graphviz". For example "#0048BA"
- "rgb". For example array(120, 150, 0)
- "hsl". For example array(151, 100, 89)
- "hsv". For example array(151, 21, 100)

Note: see [Wikipedia](https://en.wikipedia.org/wiki/List_of_colors:_A%E2%80%93F) for details.

Picker::setDefaultOutputFormat($inFormat)
-----------------------------------------

[](#pickersetdefaultoutputformatinformat)

Set the default output format. If not set, the default output format is 'html'. Valid formats' identifiers are:

- "html"
- "graphviz"
- "rgb"
- "hsl"
- "hsv"

Colour's getters
----------------

[](#colours-getters)

Name of the colorMethodHTML color codeSampleAbsolute zeroabsoluteZero($inOptFormat)\#0048BA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/absoluteZero.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/absoluteZero.gif)Acid greenacidGreen($inOptFormat)\#B0BF1A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/acidGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/acidGreen.gif)Aeroaero($inOptFormat)\#7CB9E8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/aero.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/aero.gif)Aero blueaeroBlue($inOptFormat)\#C9FFE5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/aeroBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/aeroBlue.gif)African violetafricanViolet($inOptFormat)\#B284BE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/africanViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/africanViolet.gif)Air Force blue (RAF)airForceBlueRaf($inOptFormat)\#5D8AA8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/airForceBlueRaf.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/airForceBlueRaf.gif)Air Force blue (USAF)airForceBlueUsaf($inOptFormat)\#00308F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/airForceBlueUsaf.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/airForceBlueUsaf.gif)Air superiority blueairSuperiorityBlue($inOptFormat)\#72A0C1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/airSuperiorityBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/airSuperiorityBlue.gif)Alabama crimsonalabamaCrimson($inOptFormat)\#AF002A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/alabamaCrimson.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/alabamaCrimson.gif)Alabasteralabaster($inOptFormat)\#F2F0E6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/alabaster.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/alabaster.gif)Alice bluealiceBlue($inOptFormat)\#F0F8FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/aliceBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/aliceBlue.gif)Alien ArmpitalienArmpit($inOptFormat)\#84DE02[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/alienArmpit.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/alienArmpit.gif)Alizarin crimsonalizarinCrimson($inOptFormat)\#E32636[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/alizarinCrimson.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/alizarinCrimson.gif)Alloy orangealloyOrange($inOptFormat)\#C46210[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/alloyOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/alloyOrange.gif)Almondalmond($inOptFormat)\#EFDECD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/almond.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/almond.gif)Amaranthamaranth($inOptFormat)\#E52B50[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/amaranth.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/amaranth.gif)Amaranth deep purpleamaranthDeepPurple($inOptFormat)\#9F2B68[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/amaranthDeepPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/amaranthDeepPurple.gif)Amaranth pinkamaranthPink($inOptFormat)\#F19CBB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/amaranthPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/amaranthPink.gif)Amaranth purpleamaranthPurple($inOptFormat)\#AB274F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/amaranthPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/amaranthPurple.gif)Amaranth redamaranthRed($inOptFormat)\#D3212D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/amaranthRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/amaranthRed.gif)Amazonamazon($inOptFormat)\#3B7A57[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/amazon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/amazon.gif)Amazoniteamazonite($inOptFormat)\#00C4B0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/amazonite.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/amazonite.gif)Amberamber($inOptFormat)\#FFBF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/amber.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/amber.gif)Amber (SAE/ECE)amberSaeEce($inOptFormat)\#FF7E00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/amberSaeEce.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/amberSaeEce.gif)American roseamericanRose($inOptFormat)\#FF033E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/americanRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/americanRose.gif)Amethystamethyst($inOptFormat)\#9966CC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/amethyst.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/amethyst.gif)Android greenandroidGreen($inOptFormat)\#A4C639[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/androidGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/androidGreen.gif)Anti-flash whiteantiFlashWhite($inOptFormat)\#F2F3F4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/antiFlashWhite.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/antiFlashWhite.gif)Antique brassantiqueBrass($inOptFormat)\#CD9575[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/antiqueBrass.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/antiqueBrass.gif)Antique bronzeantiqueBronze($inOptFormat)\#665D1E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/antiqueBronze.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/antiqueBronze.gif)Antique fuchsiaantiqueFuchsia($inOptFormat)\#915C83[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/antiqueFuchsia.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/antiqueFuchsia.gif)Antique rubyantiqueRuby($inOptFormat)\#841B2D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/antiqueRuby.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/antiqueRuby.gif)Antique whiteantiqueWhite($inOptFormat)\#FAEBD7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/antiqueWhite.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/antiqueWhite.gif)Ao (English)aoEnglish($inOptFormat)\#008000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/aoEnglish.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/aoEnglish.gif)Apple greenappleGreen($inOptFormat)\#8DB600[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/appleGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/appleGreen.gif)Apricotapricot($inOptFormat)\#FBCEB1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/apricot.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/apricot.gif)Aquaaqua($inOptFormat)\#00FFFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/aqua.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/aqua.gif)Aquamarineaquamarine($inOptFormat)\#7FFFD4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/aquamarine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/aquamarine.gif)Arctic limearcticLime($inOptFormat)\#D0FF14[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/arcticLime.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/arcticLime.gif)Army greenarmyGreen($inOptFormat)\#4B5320[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/armyGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/armyGreen.gif)Arsenicarsenic($inOptFormat)\#3B444B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/arsenic.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/arsenic.gif)Artichokeartichoke($inOptFormat)\#8F9779[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/artichoke.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/artichoke.gif)Arylide yellowarylideYellow($inOptFormat)\#E9D66B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/arylideYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/arylideYellow.gif)Ash greyashGrey($inOptFormat)\#B2BEB5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ashGrey.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ashGrey.gif)Asparagusasparagus($inOptFormat)\#87A96B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/asparagus.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/asparagus.gif)Atomic tangerineatomicTangerine($inOptFormat)\#FF9966[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/atomicTangerine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/atomicTangerine.gif)Auburnauburn($inOptFormat)\#A52A2A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/auburn.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/auburn.gif)Aureolinaureolin($inOptFormat)\#FDEE00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/aureolin.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/aureolin.gif)AuroMetalSaurusauroMetalSaurus($inOptFormat)\#6E7F80[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/auroMetalSaurus.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/auroMetalSaurus.gif)Avocadoavocado($inOptFormat)\#568203[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/avocado.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/avocado.gif)Awesomeawesome($inOptFormat)\#FF2052[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/awesome.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/awesome.gif)Aztec GoldaztecGold($inOptFormat)\#C39953[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/aztecGold.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/aztecGold.gif)Azureazure($inOptFormat)\#007FFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/azure.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/azure.gif)Azure (web color)azureWebColor($inOptFormat)\#F0FFFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/azureWebColor.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/azureWebColor.gif)Azure mistazureMist($inOptFormat)\#F0FFFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/azureMist.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/azureMist.gif)Azureish whiteazureishWhite($inOptFormat)\#DBE9F4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/azureishWhite.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/azureishWhite.gif)B'dazzled bluebdazzledBlue($inOptFormat)\#2E5894[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bdazzledBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bdazzledBlue.gif)Baby bluebabyBlue($inOptFormat)\#89CFF0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/babyBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/babyBlue.gif)Baby blue eyesbabyBlueEyes($inOptFormat)\#A1CAF1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/babyBlueEyes.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/babyBlueEyes.gif)Baby pinkbabyPink($inOptFormat)\#F4C2C2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/babyPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/babyPink.gif)Baby powderbabyPowder($inOptFormat)\#FEFEFA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/babyPowder.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/babyPowder.gif)Baker-Miller pinkbakerMillerPink($inOptFormat)\#FF91AF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bakerMillerPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bakerMillerPink.gif)Ball blueballBlue($inOptFormat)\#21ABCD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ballBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ballBlue.gif)Banana ManiabananaMania($inOptFormat)\#FAE7B5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bananaMania.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bananaMania.gif)Banana yellowbananaYellow($inOptFormat)\#FFE135[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bananaYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bananaYellow.gif)Bangladesh greenbangladeshGreen($inOptFormat)\#006A4E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bangladeshGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bangladeshGreen.gif)Barbie pinkbarbiePink($inOptFormat)\#E0218A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/barbiePink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/barbiePink.gif)Barn redbarnRed($inOptFormat)\#7C0A02[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/barnRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/barnRed.gif)Battery Charged BluebatteryChargedBlue($inOptFormat)\#1DACD6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/batteryChargedBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/batteryChargedBlue.gif)Battleship greybattleshipGrey($inOptFormat)\#848482[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/battleshipGrey.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/battleshipGrey.gif)Bazaarbazaar($inOptFormat)\#98777B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bazaar.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bazaar.gif)Beau bluebeauBlue($inOptFormat)\#BCD4E6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/beauBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/beauBlue.gif)Beaverbeaver($inOptFormat)\#9F8170[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/beaver.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/beaver.gif)Begoniabegonia($inOptFormat)\#FA6E79[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/begonia.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/begonia.gif)Beigebeige($inOptFormat)\#F5F5DC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/beige.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/beige.gif)Big Foot FeetbigFootFeet($inOptFormat)\#E88E5A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bigFootFeet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bigFootFeet.gif)Big dip o’rubybigDipORuby($inOptFormat)\#9C2542[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bigDipORuby.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bigDipORuby.gif)Bisquebisque($inOptFormat)\#FFE4C4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bisque.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bisque.gif)Bistrebistre($inOptFormat)\#3D2B1F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bistre.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bistre.gif)Bistre brownbistreBrown($inOptFormat)\#967117[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bistreBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bistreBrown.gif)Bitter lemonbitterLemon($inOptFormat)\#CAE00D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bitterLemon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bitterLemon.gif)Bitter limebitterLime($inOptFormat)\#BFFF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bitterLime.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bitterLime.gif)Bittersweetbittersweet($inOptFormat)\#FE6F5E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bittersweet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bittersweet.gif)Bittersweet shimmerbittersweetShimmer($inOptFormat)\#BF4F51[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bittersweetShimmer.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bittersweetShimmer.gif)Blackblack($inOptFormat)\#000000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/black.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/black.gif)Black CoralblackCoral($inOptFormat)\#54626F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blackCoral.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blackCoral.gif)Black ShadowsblackShadows($inOptFormat)\#BFAFB2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blackShadows.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blackShadows.gif)Black beanblackBean($inOptFormat)\#3D0C02[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blackBean.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blackBean.gif)Black leather jacketblackLeatherJacket($inOptFormat)\#253529[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blackLeatherJacket.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blackLeatherJacket.gif)Black oliveblackOlive($inOptFormat)\#3B3C36[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blackOlive.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blackOlive.gif)Blanched almondblanchedAlmond($inOptFormat)\#FFEBCD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blanchedAlmond.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blanchedAlmond.gif)Blast-off bronzeblastOffBronze($inOptFormat)\#A57164[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blastOffBronze.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blastOffBronze.gif)Bleu de FrancebleuDeFrance($inOptFormat)\#318CE7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bleuDeFrance.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bleuDeFrance.gif)Blizzard BlueblizzardBlue($inOptFormat)\#ACE5EE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blizzardBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blizzardBlue.gif)Blondblond($inOptFormat)\#FAF0BE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blond.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blond.gif)Blueblue($inOptFormat)\#0000FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blue.gif)Blue (Crayola)blueCrayola($inOptFormat)\#1F75FE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blueCrayola.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blueCrayola.gif)Blue (Munsell)blueMunsell($inOptFormat)\#0093AF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blueMunsell.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blueMunsell.gif)Blue (NCS)blueNcs($inOptFormat)\#0087BD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blueNcs.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blueNcs.gif)Blue (Pantone)bluePantone($inOptFormat)\#0018A8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bluePantone.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bluePantone.gif)Blue (RYB)blueRyb($inOptFormat)\#0247FE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blueRyb.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blueRyb.gif)Blue (pigment)bluePigment($inOptFormat)\#333399[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bluePigment.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bluePigment.gif)Blue BellblueBell($inOptFormat)\#A2A2D0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blueBell.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blueBell.gif)Blue BoltblueBolt($inOptFormat)\#00B9FB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blueBolt.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blueBolt.gif)Blue JeansblueJeans($inOptFormat)\#5DADEC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blueJeans.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blueJeans.gif)Blue LagoonblueLagoon($inOptFormat)\#ACE5EE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blueLagoon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blueLagoon.gif)Blue sapphireblueSapphire($inOptFormat)\#126180[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blueSapphire.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blueSapphire.gif)Blue yonderblueYonder($inOptFormat)\#5072A7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blueYonder.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blueYonder.gif)Blue-grayblueGray($inOptFormat)\#6699CC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blueGray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blueGray.gif)Blue-greenblueGreen($inOptFormat)\#0D98BA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blueGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blueGreen.gif)Blue-magenta violetblueMagentaViolet($inOptFormat)\#553592[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blueMagentaViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blueMagentaViolet.gif)Blue-violetblueViolet($inOptFormat)\#8A2BE2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blueViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blueViolet.gif)Blueberryblueberry($inOptFormat)\#4F86F7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blueberry.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blueberry.gif)Bluebonnetbluebonnet($inOptFormat)\#1C1CF0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bluebonnet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bluebonnet.gif)Blushblush($inOptFormat)\#DE5D83[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/blush.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/blush.gif)Bolebole($inOptFormat)\#79443B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bole.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bole.gif)Bondi bluebondiBlue($inOptFormat)\#0095B6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bondiBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bondiBlue.gif)Bonebone($inOptFormat)\#E3DAC9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bone.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bone.gif)Booger BusterboogerBuster($inOptFormat)\#DDE26A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/boogerBuster.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/boogerBuster.gif)Boston University RedbostonUniversityRed($inOptFormat)\#CC0000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bostonUniversityRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bostonUniversityRed.gif)Bottle greenbottleGreen($inOptFormat)\#006A4E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bottleGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bottleGreen.gif)Boysenberryboysenberry($inOptFormat)\#873260[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/boysenberry.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/boysenberry.gif)Brandeis bluebrandeisBlue($inOptFormat)\#0070FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brandeisBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brandeisBlue.gif)Brassbrass($inOptFormat)\#B5A642[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brass.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brass.gif)Brick redbrickRed($inOptFormat)\#CB4154[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brickRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brickRed.gif)Bright Yellow (Crayola)brightYellowCrayola($inOptFormat)\#FFAA1D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brightYellowCrayola.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brightYellowCrayola.gif)Bright ceruleanbrightCerulean($inOptFormat)\#1DACD6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brightCerulean.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brightCerulean.gif)Bright greenbrightGreen($inOptFormat)\#66FF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brightGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brightGreen.gif)Bright lavenderbrightLavender($inOptFormat)\#BF94E4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brightLavender.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brightLavender.gif)Bright lilacbrightLilac($inOptFormat)\#D891EF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brightLilac.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brightLilac.gif)Bright maroonbrightMaroon($inOptFormat)\#C32148[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brightMaroon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brightMaroon.gif)Bright navy bluebrightNavyBlue($inOptFormat)\#1974D2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brightNavyBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brightNavyBlue.gif)Bright pinkbrightPink($inOptFormat)\#FF007F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brightPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brightPink.gif)Bright turquoisebrightTurquoise($inOptFormat)\#08E8DE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brightTurquoise.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brightTurquoise.gif)Bright ubebrightUbe($inOptFormat)\#D19FE8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brightUbe.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brightUbe.gif)Brilliant azurebrilliantAzure($inOptFormat)\#3399FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brilliantAzure.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brilliantAzure.gif)Brilliant lavenderbrilliantLavender($inOptFormat)\#F4BBFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brilliantLavender.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brilliantLavender.gif)Brilliant rosebrilliantRose($inOptFormat)\#FF55A3[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brilliantRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brilliantRose.gif)Brink pinkbrinkPink($inOptFormat)\#FB607F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brinkPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brinkPink.gif)British racing greenbritishRacingGreen($inOptFormat)\#004225[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/britishRacingGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/britishRacingGreen.gif)Bronzebronze($inOptFormat)\#CD7F32[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bronze.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bronze.gif)Bronze YellowbronzeYellow($inOptFormat)\#737000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bronzeYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bronzeYellow.gif)Brown (traditional)brownTraditional($inOptFormat)\#964B00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brownTraditional.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brownTraditional.gif)Brown (web)brownWeb($inOptFormat)\#A52A2A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brownWeb.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brownWeb.gif)Brown SugarbrownSugar($inOptFormat)\#AF6E4D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brownSugar.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brownSugar.gif)Brown YellowbrownYellow($inOptFormat)\#cc9966[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brownYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brownYellow.gif)Brown-nosebrownNose($inOptFormat)\#6B4423[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brownNose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brownNose.gif)Brunswick greenbrunswickGreen($inOptFormat)\#1B4D3E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/brunswickGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/brunswickGreen.gif)Bubble gumbubbleGum($inOptFormat)\#FFC1CC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bubbleGum.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bubbleGum.gif)Bubblesbubbles($inOptFormat)\#E7FEFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bubbles.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bubbles.gif)Bud greenbudGreen($inOptFormat)\#7BB661[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/budGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/budGreen.gif)Buffbuff($inOptFormat)\#F0DC82[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/buff.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/buff.gif)Bulgarian rosebulgarianRose($inOptFormat)\#480607[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/bulgarianRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/bulgarianRose.gif)Burgundyburgundy($inOptFormat)\#800020[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/burgundy.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/burgundy.gif)Burlywoodburlywood($inOptFormat)\#DEB887[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/burlywood.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/burlywood.gif)Burnished BrownburnishedBrown($inOptFormat)\#A17A74[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/burnishedBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/burnishedBrown.gif)Burnt orangeburntOrange($inOptFormat)\#CC5500[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/burntOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/burntOrange.gif)Burnt siennaburntSienna($inOptFormat)\#E97451[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/burntSienna.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/burntSienna.gif)Burnt umberburntUmber($inOptFormat)\#8A3324[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/burntUmber.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/burntUmber.gif)Byzantinebyzantine($inOptFormat)\#BD33A4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/byzantine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/byzantine.gif)Byzantiumbyzantium($inOptFormat)\#702963[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/byzantium.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/byzantium.gif)CG BluecgBlue($inOptFormat)\#007AA5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cgBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cgBlue.gif)CG RedcgRed($inOptFormat)\#E03C31[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cgRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cgRed.gif)Cadetcadet($inOptFormat)\#536872[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cadet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cadet.gif)Cadet bluecadetBlue($inOptFormat)\#5F9EA0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cadetBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cadetBlue.gif)Cadet greycadetGrey($inOptFormat)\#91A3B0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cadetGrey.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cadetGrey.gif)Cadmium greencadmiumGreen($inOptFormat)\#006B3C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cadmiumGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cadmiumGreen.gif)Cadmium orangecadmiumOrange($inOptFormat)\#ED872D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cadmiumOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cadmiumOrange.gif)Cadmium redcadmiumRed($inOptFormat)\#E30022[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cadmiumRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cadmiumRed.gif)Cadmium yellowcadmiumYellow($inOptFormat)\#FFF600[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cadmiumYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cadmiumYellow.gif)Café au laitcaféAuLait($inOptFormat)\#A67B5B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/caf%C3%A9AuLait.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/caf%C3%A9AuLait.gif)Café noircaféNoir($inOptFormat)\#4B3621[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/caf%C3%A9Noir.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/caf%C3%A9Noir.gif)Cal Poly Pomona greencalPolyPomonaGreen($inOptFormat)\#1E4D2B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/calPolyPomonaGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/calPolyPomonaGreen.gif)Cambridge BluecambridgeBlue($inOptFormat)\#A3C1AD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cambridgeBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cambridgeBlue.gif)Camelcamel($inOptFormat)\#C19A6B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/camel.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/camel.gif)Cameo pinkcameoPink($inOptFormat)\#EFBBCC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cameoPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cameoPink.gif)Camouflage greencamouflageGreen($inOptFormat)\#78866B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/camouflageGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/camouflageGreen.gif)Canarycanary($inOptFormat)\#FFFF99[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/canary.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/canary.gif)Canary yellowcanaryYellow($inOptFormat)\#FFEF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/canaryYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/canaryYellow.gif)Candy apple redcandyAppleRed($inOptFormat)\#FF0800[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/candyAppleRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/candyAppleRed.gif)Candy pinkcandyPink($inOptFormat)\#E4717A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/candyPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/candyPink.gif)Capricapri($inOptFormat)\#00BFFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/capri.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/capri.gif)Caput mortuumcaputMortuum($inOptFormat)\#592720[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/caputMortuum.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/caputMortuum.gif)Cardinalcardinal($inOptFormat)\#C41E3A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cardinal.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cardinal.gif)Caribbean greencaribbeanGreen($inOptFormat)\#00CC99[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/caribbeanGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/caribbeanGreen.gif)Carminecarmine($inOptFormat)\#960018[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/carmine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/carmine.gif)Carmine (M&amp;P)carmineMp($inOptFormat)\#D70040[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/carmineMp.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/carmineMp.gif)Carmine pinkcarminePink($inOptFormat)\#EB4C42[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/carminePink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/carminePink.gif)Carmine redcarmineRed($inOptFormat)\#FF0038[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/carmineRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/carmineRed.gif)Carnation pinkcarnationPink($inOptFormat)\#FFA6C9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/carnationPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/carnationPink.gif)Carneliancarnelian($inOptFormat)\#B31B1B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/carnelian.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/carnelian.gif)Carolina bluecarolinaBlue($inOptFormat)\#56A0D3[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/carolinaBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/carolinaBlue.gif)Carrot orangecarrotOrange($inOptFormat)\#ED9121[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/carrotOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/carrotOrange.gif)Castleton greencastletonGreen($inOptFormat)\#00563F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/castletonGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/castletonGreen.gif)Catalina bluecatalinaBlue($inOptFormat)\#062A78[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/catalinaBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/catalinaBlue.gif)Catawbacatawba($inOptFormat)\#703642[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/catawba.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/catawba.gif)Cedar ChestcedarChest($inOptFormat)\#C95A49[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cedarChest.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cedarChest.gif)Ceilceil($inOptFormat)\#92A1CF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ceil.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ceil.gif)Celadonceladon($inOptFormat)\#ACE1AF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/celadon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/celadon.gif)Celadon blueceladonBlue($inOptFormat)\#007BA7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/celadonBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/celadonBlue.gif)Celadon greenceladonGreen($inOptFormat)\#2F847C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/celadonGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/celadonGreen.gif)Celesteceleste($inOptFormat)\#B2FFFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/celeste.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/celeste.gif)Celestial bluecelestialBlue($inOptFormat)\#4997D0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/celestialBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/celestialBlue.gif)Cerisecerise($inOptFormat)\#DE3163[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cerise.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cerise.gif)Cerise pinkcerisePink($inOptFormat)\#EC3B83[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cerisePink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cerisePink.gif)Ceruleancerulean($inOptFormat)\#007BA7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cerulean.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cerulean.gif)Cerulean blueceruleanBlue($inOptFormat)\#2A52BE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ceruleanBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ceruleanBlue.gif)Cerulean frostceruleanFrost($inOptFormat)\#6D9BC3[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ceruleanFrost.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ceruleanFrost.gif)Chamoiseechamoisee($inOptFormat)\#A0785A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/chamoisee.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/chamoisee.gif)Champagnechampagne($inOptFormat)\#F7E7CE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/champagne.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/champagne.gif)Champagne pinkchampagnePink($inOptFormat)\#F1DDCF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/champagnePink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/champagnePink.gif)Charcoalcharcoal($inOptFormat)\#36454F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/charcoal.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/charcoal.gif)Charleston greencharlestonGreen($inOptFormat)\#232B2B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/charlestonGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/charlestonGreen.gif)Charm pinkcharmPink($inOptFormat)\#E68FAC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/charmPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/charmPink.gif)Chartreuse (traditional)chartreuseTraditional($inOptFormat)\#DFFF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/chartreuseTraditional.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/chartreuseTraditional.gif)Chartreuse (web)chartreuseWeb($inOptFormat)\#7FFF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/chartreuseWeb.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/chartreuseWeb.gif)Cherrycherry($inOptFormat)\#DE3163[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cherry.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cherry.gif)Cherry blossom pinkcherryBlossomPink($inOptFormat)\#FFB7C5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cherryBlossomPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cherryBlossomPink.gif)Chestnutchestnut($inOptFormat)\#954535[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/chestnut.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/chestnut.gif)China pinkchinaPink($inOptFormat)\#DE6FA1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/chinaPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/chinaPink.gif)China rosechinaRose($inOptFormat)\#A8516E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/chinaRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/chinaRose.gif)Chinese redchineseRed($inOptFormat)\#AA381E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/chineseRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/chineseRed.gif)Chinese violetchineseViolet($inOptFormat)\#856088[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/chineseViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/chineseViolet.gif)Chlorophyll greenchlorophyllGreen($inOptFormat)\#4AFF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/chlorophyllGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/chlorophyllGreen.gif)Chocolate (traditional)chocolateTraditional($inOptFormat)\#7B3F00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/chocolateTraditional.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/chocolateTraditional.gif)Chocolate (web)chocolateWeb($inOptFormat)\#D2691E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/chocolateWeb.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/chocolateWeb.gif)Chrome yellowchromeYellow($inOptFormat)\#FFA700[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/chromeYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/chromeYellow.gif)Cinereouscinereous($inOptFormat)\#98817B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cinereous.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cinereous.gif)Cinnabarcinnabar($inOptFormat)\#E34234[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cinnabar.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cinnabar.gif)Cinnamon SatincinnamonSatin($inOptFormat)\#CD607E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cinnamonSatin.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cinnamonSatin.gif)Cinnamon\[citation needed\]cinnamon($inOptFormat)\#D2691E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cinnamon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cinnamon.gif)Citrinecitrine($inOptFormat)\#E4D00A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/citrine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/citrine.gif)Citroncitron($inOptFormat)\#9FA91F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/citron.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/citron.gif)Claretclaret($inOptFormat)\#7F1734[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/claret.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/claret.gif)Classic roseclassicRose($inOptFormat)\#FBCCE7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/classicRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/classicRose.gif)Cobalt BluecobaltBlue($inOptFormat)\#0047AB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cobaltBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cobaltBlue.gif)Cocoa browncocoaBrown($inOptFormat)\#D2691E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cocoaBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cocoaBrown.gif)Coconutcoconut($inOptFormat)\#965A3E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/coconut.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/coconut.gif)Coffeecoffee($inOptFormat)\#6F4E37[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/coffee.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/coffee.gif)Columbia BluecolumbiaBlue($inOptFormat)\#C4D8E2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/columbiaBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/columbiaBlue.gif)Congo pinkcongoPink($inOptFormat)\#F88379[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/congoPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/congoPink.gif)Cool BlackcoolBlack($inOptFormat)\#002E63[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/coolBlack.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/coolBlack.gif)Cool greycoolGrey($inOptFormat)\#8C92AC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/coolGrey.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/coolGrey.gif)Coppercopper($inOptFormat)\#B87333[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/copper.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/copper.gif)Copper (Crayola)copperCrayola($inOptFormat)\#DA8A67[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/copperCrayola.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/copperCrayola.gif)Copper pennycopperPenny($inOptFormat)\#AD6F69[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/copperPenny.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/copperPenny.gif)Copper redcopperRed($inOptFormat)\#CB6D51[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/copperRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/copperRed.gif)Copper rosecopperRose($inOptFormat)\#996666[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/copperRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/copperRose.gif)Coquelicotcoquelicot($inOptFormat)\#FF3800[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/coquelicot.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/coquelicot.gif)Coralcoral($inOptFormat)\#FF7F50[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/coral.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/coral.gif)Coral ReefcoralReef($inOptFormat)\#FD7C6E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/coralReef.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/coralReef.gif)Coral pinkcoralPink($inOptFormat)\#F88379[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/coralPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/coralPink.gif)Coral redcoralRed($inOptFormat)\#FF4040[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/coralRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/coralRed.gif)Cordovancordovan($inOptFormat)\#893F45[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cordovan.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cordovan.gif)Corncorn($inOptFormat)\#FBEC5D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/corn.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/corn.gif)Cornell RedcornellRed($inOptFormat)\#B31B1B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cornellRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cornellRed.gif)Cornflower bluecornflowerBlue($inOptFormat)\#6495ED[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cornflowerBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cornflowerBlue.gif)Cornsilkcornsilk($inOptFormat)\#FFF8DC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cornsilk.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cornsilk.gif)Cosmic CobaltcosmicCobalt($inOptFormat)\#2E2D88[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cosmicCobalt.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cosmicCobalt.gif)Cosmic lattecosmicLatte($inOptFormat)\#FFF8E7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cosmicLatte.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cosmicLatte.gif)Cotton candycottonCandy($inOptFormat)\#FFBCD9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cottonCandy.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cottonCandy.gif)Coyote browncoyoteBrown($inOptFormat)\#81613C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/coyoteBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/coyoteBrown.gif)Creamcream($inOptFormat)\#FFFDD0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cream.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cream.gif)Crimsoncrimson($inOptFormat)\#DC143C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/crimson.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/crimson.gif)Crimson glorycrimsonGlory($inOptFormat)\#BE0032[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/crimsonGlory.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/crimsonGlory.gif)Crimson redcrimsonRed($inOptFormat)\#990000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/crimsonRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/crimsonRed.gif)Culturedcultured($inOptFormat)\#F5F5F5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cultured.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cultured.gif)Cyancyan($inOptFormat)\#00FFFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cyan.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cyan.gif)Cyan (process)cyanProcess($inOptFormat)\#00B7EB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cyanProcess.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cyanProcess.gif)Cyan azurecyanAzure($inOptFormat)\#4E82B4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cyanAzure.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cyanAzure.gif)Cyan cobalt bluecyanCobaltBlue($inOptFormat)\#28589C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cyanCobaltBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cyanCobaltBlue.gif)Cyan cornflower bluecyanCornflowerBlue($inOptFormat)\#188BC2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cyanCornflowerBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cyanCornflowerBlue.gif)Cyan-blue azurecyanBlueAzure($inOptFormat)\#4682BF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cyanBlueAzure.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cyanBlueAzure.gif)Cyber grapecyberGrape($inOptFormat)\#58427C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cyberGrape.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cyberGrape.gif)Cyber yellowcyberYellow($inOptFormat)\#FFD300[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cyberYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cyberYellow.gif)Cyclamencyclamen($inOptFormat)\#F56FA1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/cyclamen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/cyclamen.gif)Daffodildaffodil($inOptFormat)\#FFFF31[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/daffodil.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/daffodil.gif)Dandeliondandelion($inOptFormat)\#F0E130[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/dandelion.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/dandelion.gif)Dark bluedarkBlue($inOptFormat)\#00008B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkBlue.gif)Dark blue-graydarkBlueGray($inOptFormat)\#666699[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkBlueGray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkBlueGray.gif)Dark browndarkBrown($inOptFormat)\#654321[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkBrown.gif)Dark brown-tangelodarkBrownTangelo($inOptFormat)\#88654E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkBrownTangelo.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkBrownTangelo.gif)Dark byzantiumdarkByzantium($inOptFormat)\#5D3954[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkByzantium.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkByzantium.gif)Dark candy apple reddarkCandyAppleRed($inOptFormat)\#A40000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkCandyAppleRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkCandyAppleRed.gif)Dark ceruleandarkCerulean($inOptFormat)\#08457E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkCerulean.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkCerulean.gif)Dark chestnutdarkChestnut($inOptFormat)\#986960[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkChestnut.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkChestnut.gif)Dark coraldarkCoral($inOptFormat)\#CD5B45[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkCoral.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkCoral.gif)Dark cyandarkCyan($inOptFormat)\#008B8B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkCyan.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkCyan.gif)Dark electric bluedarkElectricBlue($inOptFormat)\#536878[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkElectricBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkElectricBlue.gif)Dark goldenroddarkGoldenrod($inOptFormat)\#B8860B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkGoldenrod.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkGoldenrod.gif)Dark gray (X11)darkGrayX11($inOptFormat)\#A9A9A9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkGrayX11.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkGrayX11.gif)Dark greendarkGreen($inOptFormat)\#013220[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkGreen.gif)Dark green (X11)darkGreenX11($inOptFormat)\#006400[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkGreenX11.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkGreenX11.gif)Dark gunmetaldarkGunmetal($inOptFormat)\#1F262A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkGunmetal.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkGunmetal.gif)Dark imperial bluedarkImperialBlue($inOptFormat)\#00147E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkImperialBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkImperialBlue.gif)Dark jungle greendarkJungleGreen($inOptFormat)\#1A2421[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkJungleGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkJungleGreen.gif)Dark khakidarkKhaki($inOptFormat)\#BDB76B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkKhaki.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkKhaki.gif)Dark lavadarkLava($inOptFormat)\#483C32[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkLava.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkLava.gif)Dark lavenderdarkLavender($inOptFormat)\#734F96[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkLavender.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkLavender.gif)Dark liverdarkLiver($inOptFormat)\#534B4F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkLiver.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkLiver.gif)Dark liver (horses)darkLiverHorses($inOptFormat)\#543D37[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkLiverHorses.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkLiverHorses.gif)Dark magentadarkMagenta($inOptFormat)\#8B008B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkMagenta.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkMagenta.gif)Dark medium graydarkMediumGray($inOptFormat)\#A9A9A9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkMediumGray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkMediumGray.gif)Dark midnight bluedarkMidnightBlue($inOptFormat)\#003366[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkMidnightBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkMidnightBlue.gif)Dark moss greendarkMossGreen($inOptFormat)\#4A5D23[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkMossGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkMossGreen.gif)Dark olive greendarkOliveGreen($inOptFormat)\#556B2F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkOliveGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkOliveGreen.gif)Dark orangedarkOrange($inOptFormat)\#FF8C00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkOrange.gif)Dark orchiddarkOrchid($inOptFormat)\#9932CC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkOrchid.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkOrchid.gif)Dark pastel bluedarkPastelBlue($inOptFormat)\#779ECB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkPastelBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkPastelBlue.gif)Dark pastel greendarkPastelGreen($inOptFormat)\#03C03C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkPastelGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkPastelGreen.gif)Dark pastel purpledarkPastelPurple($inOptFormat)\#966FD6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkPastelPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkPastelPurple.gif)Dark pastel reddarkPastelRed($inOptFormat)\#C23B22[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkPastelRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkPastelRed.gif)Dark pinkdarkPink($inOptFormat)\#E75480[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkPink.gif)Dark powder bluedarkPowderBlue($inOptFormat)\#003399[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkPowderBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkPowderBlue.gif)Dark pucedarkPuce($inOptFormat)\#4F3A3C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkPuce.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkPuce.gif)Dark purpledarkPurple($inOptFormat)\#301934[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkPurple.gif)Dark raspberrydarkRaspberry($inOptFormat)\#872657[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkRaspberry.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkRaspberry.gif)Dark reddarkRed($inOptFormat)\#8B0000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkRed.gif)Dark salmondarkSalmon($inOptFormat)\#E9967A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkSalmon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkSalmon.gif)Dark scarletdarkScarlet($inOptFormat)\#560319[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkScarlet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkScarlet.gif)Dark sea greendarkSeaGreen($inOptFormat)\#8FBC8F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkSeaGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkSeaGreen.gif)Dark siennadarkSienna($inOptFormat)\#3C1414[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkSienna.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkSienna.gif)Dark sky bluedarkSkyBlue($inOptFormat)\#8CBED6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkSkyBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkSkyBlue.gif)Dark slate bluedarkSlateBlue($inOptFormat)\#483D8B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkSlateBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkSlateBlue.gif)Dark slate graydarkSlateGray($inOptFormat)\#2F4F4F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkSlateGray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkSlateGray.gif)Dark spring greendarkSpringGreen($inOptFormat)\#177245[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkSpringGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkSpringGreen.gif)Dark tandarkTan($inOptFormat)\#918151[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkTan.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkTan.gif)Dark tangerinedarkTangerine($inOptFormat)\#FFA812[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkTangerine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkTangerine.gif)Dark taupedarkTaupe($inOptFormat)\#483C32[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkTaupe.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkTaupe.gif)Dark terra cottadarkTerraCotta($inOptFormat)\#CC4E5C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkTerraCotta.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkTerraCotta.gif)Dark turquoisedarkTurquoise($inOptFormat)\#00CED1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkTurquoise.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkTurquoise.gif)Dark vanilladarkVanilla($inOptFormat)\#D1BEA8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkVanilla.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkVanilla.gif)Dark violetdarkViolet($inOptFormat)\#9400D3[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkViolet.gif)Dark yellowdarkYellow($inOptFormat)\#9B870C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/darkYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/darkYellow.gif)Dartmouth greendartmouthGreen($inOptFormat)\#00703C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/dartmouthGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/dartmouthGreen.gif)Davy's greydavysGrey($inOptFormat)\#555555[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/davysGrey.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/davysGrey.gif)Debian reddebianRed($inOptFormat)\#D70A53[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/debianRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/debianRed.gif)Deep GreendeepGreen($inOptFormat)\#056608[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepGreen.gif)Deep ReddeepRed($inOptFormat)\#850101[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepRed.gif)Deep Space SparkledeepSpaceSparkle($inOptFormat)\#4A646C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepSpaceSparkle.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepSpaceSparkle.gif)Deep TaupedeepTaupe($inOptFormat)\#7E5E60[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepTaupe.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepTaupe.gif)Deep Tuscan reddeepTuscanRed($inOptFormat)\#66424D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepTuscanRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepTuscanRed.gif)Deep aquamarinedeepAquamarine($inOptFormat)\#40826D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepAquamarine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepAquamarine.gif)Deep carminedeepCarmine($inOptFormat)\#A9203E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepCarmine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepCarmine.gif)Deep carmine pinkdeepCarminePink($inOptFormat)\#EF3038[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepCarminePink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepCarminePink.gif)Deep carrot orangedeepCarrotOrange($inOptFormat)\#E9692C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepCarrotOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepCarrotOrange.gif)Deep cerisedeepCerise($inOptFormat)\#DA3287[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepCerise.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepCerise.gif)Deep champagnedeepChampagne($inOptFormat)\#FAD6A5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepChampagne.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepChampagne.gif)Deep chestnutdeepChestnut($inOptFormat)\#B94E48[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepChestnut.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepChestnut.gif)Deep coffeedeepCoffee($inOptFormat)\#704241[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepCoffee.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepCoffee.gif)Deep fuchsiadeepFuchsia($inOptFormat)\#C154C1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepFuchsia.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepFuchsia.gif)Deep green-cyan turquoisedeepGreenCyanTurquoise($inOptFormat)\#0E7C61[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepGreenCyanTurquoise.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepGreenCyanTurquoise.gif)Deep jungle greendeepJungleGreen($inOptFormat)\#004B49[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepJungleGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepJungleGreen.gif)Deep koamarudeepKoamaru($inOptFormat)\#333366[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepKoamaru.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepKoamaru.gif)Deep lemondeepLemon($inOptFormat)\#F5C71A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepLemon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepLemon.gif)Deep lilacdeepLilac($inOptFormat)\#9955BB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepLilac.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepLilac.gif)Deep magentadeepMagenta($inOptFormat)\#CC00CC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepMagenta.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepMagenta.gif)Deep maroondeepMaroon($inOptFormat)\#820000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepMaroon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepMaroon.gif)Deep mauvedeepMauve($inOptFormat)\#D473D4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepMauve.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepMauve.gif)Deep moss greendeepMossGreen($inOptFormat)\#355E3B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepMossGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepMossGreen.gif)Deep peachdeepPeach($inOptFormat)\#FFCBA4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepPeach.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepPeach.gif)Deep pinkdeepPink($inOptFormat)\#FF1493[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepPink.gif)Deep pucedeepPuce($inOptFormat)\#A95C68[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepPuce.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepPuce.gif)Deep rubydeepRuby($inOptFormat)\#843F5B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepRuby.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepRuby.gif)Deep saffrondeepSaffron($inOptFormat)\#FF9933[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepSaffron.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepSaffron.gif)Deep sky bluedeepSkyBlue($inOptFormat)\#00BFFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepSkyBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepSkyBlue.gif)Deep spring buddeepSpringBud($inOptFormat)\#556B2F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepSpringBud.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepSpringBud.gif)Deep violetdeepViolet($inOptFormat)\#330066[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deepViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deepViolet.gif)Deerdeer($inOptFormat)\#BA8759[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/deer.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/deer.gif)Denimdenim($inOptFormat)\#1560BD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/denim.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/denim.gif)Denim BluedenimBlue($inOptFormat)\#2243B6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/denimBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/denimBlue.gif)Desaturated cyandesaturatedCyan($inOptFormat)\#669999[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/desaturatedCyan.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/desaturatedCyan.gif)Desertdesert($inOptFormat)\#C19A6B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/desert.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/desert.gif)Desert sanddesertSand($inOptFormat)\#EDC9AF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/desertSand.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/desertSand.gif)Desiredesire($inOptFormat)\#EA3C53[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/desire.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/desire.gif)Diamonddiamond($inOptFormat)\#B9F2FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/diamond.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/diamond.gif)Dim graydimGray($inOptFormat)\#696969[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/dimGray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/dimGray.gif)Dingy DungeondingyDungeon($inOptFormat)\#C53151[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/dingyDungeon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/dingyDungeon.gif)Dirtdirt($inOptFormat)\#9B7653[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/dirt.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/dirt.gif)Dodger bluedodgerBlue($inOptFormat)\#1E90FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/dodgerBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/dodgerBlue.gif)Dogwood rosedogwoodRose($inOptFormat)\#D71868[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/dogwoodRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/dogwoodRose.gif)Dollar billdollarBill($inOptFormat)\#85BB65[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/dollarBill.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/dollarBill.gif)Dolphin GraydolphinGray($inOptFormat)\#828E84[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/dolphinGray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/dolphinGray.gif)Donkey browndonkeyBrown($inOptFormat)\#664C28[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/donkeyBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/donkeyBrown.gif)Drabdrab($inOptFormat)\#967117[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/drab.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/drab.gif)Duke bluedukeBlue($inOptFormat)\#00009C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/dukeBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/dukeBlue.gif)Dust stormdustStorm($inOptFormat)\#E5CCC9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/dustStorm.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/dustStorm.gif)Dutch whitedutchWhite($inOptFormat)\#EFDFBB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/dutchWhite.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/dutchWhite.gif)Earth yellowearthYellow($inOptFormat)\#E1A95F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/earthYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/earthYellow.gif)Ebonyebony($inOptFormat)\#555D50[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ebony.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ebony.gif)Ecruecru($inOptFormat)\#C2B280[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ecru.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ecru.gif)Eerie blackeerieBlack($inOptFormat)\#1B1B1B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/eerieBlack.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/eerieBlack.gif)Eggplanteggplant($inOptFormat)\#614051[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/eggplant.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/eggplant.gif)Eggshelleggshell($inOptFormat)\#F0EAD6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/eggshell.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/eggshell.gif)Egyptian blueegyptianBlue($inOptFormat)\#1034A6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/egyptianBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/egyptianBlue.gif)Electric blueelectricBlue($inOptFormat)\#7DF9FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/electricBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/electricBlue.gif)Electric crimsonelectricCrimson($inOptFormat)\#FF003F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/electricCrimson.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/electricCrimson.gif)Electric cyanelectricCyan($inOptFormat)\#00FFFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/electricCyan.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/electricCyan.gif)Electric greenelectricGreen($inOptFormat)\#00FF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/electricGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/electricGreen.gif)Electric indigoelectricIndigo($inOptFormat)\#6F00FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/electricIndigo.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/electricIndigo.gif)Electric lavenderelectricLavender($inOptFormat)\#F4BBFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/electricLavender.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/electricLavender.gif)Electric limeelectricLime($inOptFormat)\#CCFF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/electricLime.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/electricLime.gif)Electric purpleelectricPurple($inOptFormat)\#BF00FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/electricPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/electricPurple.gif)Electric ultramarineelectricUltramarine($inOptFormat)\#3F00FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/electricUltramarine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/electricUltramarine.gif)Electric violetelectricViolet($inOptFormat)\#8F00FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/electricViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/electricViolet.gif)Electric yellowelectricYellow($inOptFormat)\#FFFF33[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/electricYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/electricYellow.gif)Emeraldemerald($inOptFormat)\#50C878[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/emerald.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/emerald.gif)Eminenceeminence($inOptFormat)\#6C3082[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/eminence.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/eminence.gif)English greenenglishGreen($inOptFormat)\#1B4D3E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/englishGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/englishGreen.gif)English lavenderenglishLavender($inOptFormat)\#B48395[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/englishLavender.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/englishLavender.gif)English redenglishRed($inOptFormat)\#AB4B52[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/englishRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/englishRed.gif)English vermillionenglishVermillion($inOptFormat)\#CC474B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/englishVermillion.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/englishVermillion.gif)English violetenglishViolet($inOptFormat)\#563C5C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/englishViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/englishViolet.gif)Eton blueetonBlue($inOptFormat)\#96C8A2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/etonBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/etonBlue.gif)Eucalyptuseucalyptus($inOptFormat)\#44D7A8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/eucalyptus.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/eucalyptus.gif)Fallowfallow($inOptFormat)\#C19A6B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fallow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fallow.gif)Falu redfaluRed($inOptFormat)\#801818[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/faluRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/faluRed.gif)Fandangofandango($inOptFormat)\#B53389[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fandango.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fandango.gif)Fandango pinkfandangoPink($inOptFormat)\#DE5285[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fandangoPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fandangoPink.gif)Fashion fuchsiafashionFuchsia($inOptFormat)\#F400A1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fashionFuchsia.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fashionFuchsia.gif)Fawnfawn($inOptFormat)\#E5AA70[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fawn.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fawn.gif)Feldgraufeldgrau($inOptFormat)\#4D5D53[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/feldgrau.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/feldgrau.gif)Feldsparfeldspar($inOptFormat)\#FDD5B1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/feldspar.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/feldspar.gif)Fern greenfernGreen($inOptFormat)\#4F7942[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fernGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fernGreen.gif)Ferrari RedferrariRed($inOptFormat)\#FF2800[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ferrariRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ferrariRed.gif)Field drabfieldDrab($inOptFormat)\#6C541E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fieldDrab.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fieldDrab.gif)Fiery RosefieryRose($inOptFormat)\#FF5470[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fieryRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fieryRose.gif)Fire engine redfireEngineRed($inOptFormat)\#CE2029[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fireEngineRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fireEngineRed.gif)Firebrickfirebrick($inOptFormat)\#B22222[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/firebrick.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/firebrick.gif)Flameflame($inOptFormat)\#E25822[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/flame.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/flame.gif)Flamingo pinkflamingoPink($inOptFormat)\#FC8EAC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/flamingoPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/flamingoPink.gif)Flatteryflattery($inOptFormat)\#6B4423[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/flattery.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/flattery.gif)Flavescentflavescent($inOptFormat)\#F7E98E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/flavescent.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/flavescent.gif)Flaxflax($inOptFormat)\#EEDC82[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/flax.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/flax.gif)Flirtflirt($inOptFormat)\#A2006D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/flirt.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/flirt.gif)Floral whitefloralWhite($inOptFormat)\#FFFAF0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/floralWhite.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/floralWhite.gif)Fluorescent orangefluorescentOrange($inOptFormat)\#FFBF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fluorescentOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fluorescentOrange.gif)Fluorescent pinkfluorescentPink($inOptFormat)\#FF1493[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fluorescentPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fluorescentPink.gif)Fluorescent yellowfluorescentYellow($inOptFormat)\#CCFF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fluorescentYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fluorescentYellow.gif)Follyfolly($inOptFormat)\#FF004F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/folly.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/folly.gif)Forest green (traditional)forestGreenTraditional($inOptFormat)\#014421[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/forestGreenTraditional.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/forestGreenTraditional.gif)Forest green (web)forestGreenWeb($inOptFormat)\#228B22[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/forestGreenWeb.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/forestGreenWeb.gif)French beigefrenchBeige($inOptFormat)\#A67B5B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/frenchBeige.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/frenchBeige.gif)French bistrefrenchBistre($inOptFormat)\#856D4D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/frenchBistre.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/frenchBistre.gif)French bluefrenchBlue($inOptFormat)\#0072BB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/frenchBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/frenchBlue.gif)French fuchsiafrenchFuchsia($inOptFormat)\#FD3F92[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/frenchFuchsia.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/frenchFuchsia.gif)French lilacfrenchLilac($inOptFormat)\#86608E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/frenchLilac.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/frenchLilac.gif)French limefrenchLime($inOptFormat)\#9EFD38[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/frenchLime.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/frenchLime.gif)French mauvefrenchMauve($inOptFormat)\#D473D4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/frenchMauve.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/frenchMauve.gif)French pinkfrenchPink($inOptFormat)\#FD6C9E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/frenchPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/frenchPink.gif)French plumfrenchPlum($inOptFormat)\#811453[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/frenchPlum.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/frenchPlum.gif)French pucefrenchPuce($inOptFormat)\#4E1609[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/frenchPuce.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/frenchPuce.gif)French raspberryfrenchRaspberry($inOptFormat)\#C72C48[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/frenchRaspberry.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/frenchRaspberry.gif)French rosefrenchRose($inOptFormat)\#F64A8A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/frenchRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/frenchRose.gif)French sky bluefrenchSkyBlue($inOptFormat)\#77B5FE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/frenchSkyBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/frenchSkyBlue.gif)French violetfrenchViolet($inOptFormat)\#8806CE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/frenchViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/frenchViolet.gif)French winefrenchWine($inOptFormat)\#AC1E44[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/frenchWine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/frenchWine.gif)Fresh AirfreshAir($inOptFormat)\#A6E7FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/freshAir.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/freshAir.gif)Frostbitefrostbite($inOptFormat)\#E936A7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/frostbite.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/frostbite.gif)Fuchsiafuchsia($inOptFormat)\#FF00FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fuchsia.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fuchsia.gif)Fuchsia (Crayola)fuchsiaCrayola($inOptFormat)\#C154C1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fuchsiaCrayola.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fuchsiaCrayola.gif)Fuchsia pinkfuchsiaPink($inOptFormat)\#FF77FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fuchsiaPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fuchsiaPink.gif)Fuchsia purplefuchsiaPurple($inOptFormat)\#CC397B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fuchsiaPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fuchsiaPurple.gif)Fuchsia rosefuchsiaRose($inOptFormat)\#C74375[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fuchsiaRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fuchsiaRose.gif)Fulvousfulvous($inOptFormat)\#E48400[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fulvous.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fulvous.gif)Fuzzy WuzzyfuzzyWuzzy($inOptFormat)\#CC6666[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/fuzzyWuzzy.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/fuzzyWuzzy.gif)GO greengoGreen($inOptFormat)\#00AB66[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/goGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/goGreen.gif)Gainsborogainsboro($inOptFormat)\#DCDCDC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/gainsboro.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/gainsboro.gif)Gambogegamboge($inOptFormat)\#E49B0F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/gamboge.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/gamboge.gif)Gamboge orange (brown)gambogeOrangeBrown($inOptFormat)\#996600[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/gambogeOrangeBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/gambogeOrangeBrown.gif)Gargoyle GasgargoyleGas($inOptFormat)\#FFDF46[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/gargoyleGas.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/gargoyleGas.gif)Generic viridiangenericViridian($inOptFormat)\#007F66[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/genericViridian.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/genericViridian.gif)Ghost whiteghostWhite($inOptFormat)\#F8F8FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ghostWhite.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ghostWhite.gif)Giant's ClubgiantsClub($inOptFormat)\#B05C52[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/giantsClub.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/giantsClub.gif)Giants orangegiantsOrange($inOptFormat)\#FE5A1D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/giantsOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/giantsOrange.gif)Gingerginger($inOptFormat)\#B06500[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ginger.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ginger.gif)Glaucousglaucous($inOptFormat)\#6082B6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/glaucous.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/glaucous.gif)Glitterglitter($inOptFormat)\#E6E8FA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/glitter.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/glitter.gif)Glossy GrapeglossyGrape($inOptFormat)\#AB92B3[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/glossyGrape.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/glossyGrape.gif)Gold (metallic)goldMetallic($inOptFormat)\#D4AF37[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/goldMetallic.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/goldMetallic.gif)Gold (web) (Golden)goldWebGolden($inOptFormat)\#FFD700[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/goldWebGolden.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/goldWebGolden.gif)Gold FusiongoldFusion($inOptFormat)\#85754E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/goldFusion.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/goldFusion.gif)Golden browngoldenBrown($inOptFormat)\#996515[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/goldenBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/goldenBrown.gif)Golden poppygoldenPoppy($inOptFormat)\#FCC200[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/goldenPoppy.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/goldenPoppy.gif)Golden yellowgoldenYellow($inOptFormat)\#FFDF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/goldenYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/goldenYellow.gif)Goldenrodgoldenrod($inOptFormat)\#DAA520[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/goldenrod.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/goldenrod.gif)Granite GraygraniteGray($inOptFormat)\#676767[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/graniteGray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/graniteGray.gif)Granny Smith ApplegrannySmithApple($inOptFormat)\#A8E4A0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/grannySmithApple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/grannySmithApple.gif)Grapegrape($inOptFormat)\#6F2DA8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/grape.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/grape.gif)Graygray($inOptFormat)\#808080[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/gray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/gray.gif)Gray (HTML/CSS gray)grayHtmlCssGray($inOptFormat)\#808080[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/grayHtmlCssGray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/grayHtmlCssGray.gif)Gray (X11 gray)grayX11Gray($inOptFormat)\#BEBEBE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/grayX11Gray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/grayX11Gray.gif)Gray-asparagusgrayAsparagus($inOptFormat)\#465945[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/grayAsparagus.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/grayAsparagus.gif)Gray-bluegrayBlue($inOptFormat)\#8C92AC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/grayBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/grayBlue.gif)Green (Color Wheel) (X11 green)greenColorWheelX11Green($inOptFormat)\#00FF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/greenColorWheelX11Green.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/greenColorWheelX11Green.gif)Green (Crayola)greenCrayola($inOptFormat)\#1CAC78[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/greenCrayola.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/greenCrayola.gif)Green (HTML/CSS color)greenHtmlCssColor($inOptFormat)\#008000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/greenHtmlCssColor.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/greenHtmlCssColor.gif)Green (Munsell)greenMunsell($inOptFormat)\#00A877[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/greenMunsell.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/greenMunsell.gif)Green (NCS)greenNcs($inOptFormat)\#009F6B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/greenNcs.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/greenNcs.gif)Green (Pantone)greenPantone($inOptFormat)\#00AD43[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/greenPantone.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/greenPantone.gif)Green (RYB)greenRyb($inOptFormat)\#66B032[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/greenRyb.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/greenRyb.gif)Green (pigment)greenPigment($inOptFormat)\#00A550[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/greenPigment.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/greenPigment.gif)Green LizardgreenLizard($inOptFormat)\#A7F432[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/greenLizard.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/greenLizard.gif)Green SheengreenSheen($inOptFormat)\#6EAEA1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/greenSheen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/greenSheen.gif)Green-bluegreenBlue($inOptFormat)\#1164B4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/greenBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/greenBlue.gif)Green-cyangreenCyan($inOptFormat)\#009966[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/greenCyan.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/greenCyan.gif)Green-yellowgreenYellow($inOptFormat)\#ADFF2F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/greenYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/greenYellow.gif)Grizzlygrizzly($inOptFormat)\#885818[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/grizzly.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/grizzly.gif)Grullogrullo($inOptFormat)\#A99A86[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/grullo.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/grullo.gif)Gunmetalgunmetal($inOptFormat)\#2a3439[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/gunmetal.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/gunmetal.gif)Guppie greenguppieGreen($inOptFormat)\#00FF7F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/guppieGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/guppieGreen.gif)Halayà úbehalayaUbe($inOptFormat)\#663854[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/halayaUbe.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/halayaUbe.gif)Han bluehanBlue($inOptFormat)\#446CCF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/hanBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/hanBlue.gif)Han purplehanPurple($inOptFormat)\#5218FA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/hanPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/hanPurple.gif)Hansa yellowhansaYellow($inOptFormat)\#E9D66B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/hansaYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/hansaYellow.gif)Harlequinharlequin($inOptFormat)\#3FFF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/harlequin.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/harlequin.gif)Harlequin greenharlequinGreen($inOptFormat)\#46CB18[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/harlequinGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/harlequinGreen.gif)Harvard crimsonharvardCrimson($inOptFormat)\#C90016[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/harvardCrimson.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/harvardCrimson.gif)Harvest goldharvestGold($inOptFormat)\#DA9100[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/harvestGold.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/harvestGold.gif)Heart GoldheartGold($inOptFormat)\#808000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/heartGold.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/heartGold.gif)Heat WaveheatWave($inOptFormat)\#FF7A00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/heatWave.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/heatWave.gif)Heidelberg Red\[2\]heidelbergRed2($inOptFormat)\#960018[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/heidelbergRed2.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/heidelbergRed2.gif)Heliotropeheliotrope($inOptFormat)\#DF73FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/heliotrope.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/heliotrope.gif)Heliotrope grayheliotropeGray($inOptFormat)\#AA98A9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/heliotropeGray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/heliotropeGray.gif)Heliotrope magentaheliotropeMagenta($inOptFormat)\#AA00BB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/heliotropeMagenta.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/heliotropeMagenta.gif)Hollywood cerisehollywoodCerise($inOptFormat)\#F400A1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/hollywoodCerise.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/hollywoodCerise.gif)Honeydewhoneydew($inOptFormat)\#F0FFF0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/honeydew.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/honeydew.gif)Honolulu bluehonoluluBlue($inOptFormat)\#006DB0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/honoluluBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/honoluluBlue.gif)Hooker's greenhookersGreen($inOptFormat)\#49796B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/hookersGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/hookersGreen.gif)Hot magentahotMagenta($inOptFormat)\#FF1DCE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/hotMagenta.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/hotMagenta.gif)Hot pinkhotPink($inOptFormat)\#FF69B4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/hotPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/hotPink.gif)Hunter greenhunterGreen($inOptFormat)\#355E3B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/hunterGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/hunterGreen.gif)Icebergiceberg($inOptFormat)\#71A6D2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/iceberg.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/iceberg.gif)Icterineicterine($inOptFormat)\#FCF75E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/icterine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/icterine.gif)Iguana GreeniguanaGreen($inOptFormat)\#71BC78[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/iguanaGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/iguanaGreen.gif)Illuminating EmeraldilluminatingEmerald($inOptFormat)\#319177[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/illuminatingEmerald.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/illuminatingEmerald.gif)Imperialimperial($inOptFormat)\#602F6B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/imperial.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/imperial.gif)Imperial blueimperialBlue($inOptFormat)\#002395[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/imperialBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/imperialBlue.gif)Imperial purpleimperialPurple($inOptFormat)\#66023C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/imperialPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/imperialPurple.gif)Imperial redimperialRed($inOptFormat)\#ED2939[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/imperialRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/imperialRed.gif)Inchworminchworm($inOptFormat)\#B2EC5D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/inchworm.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/inchworm.gif)Independenceindependence($inOptFormat)\#4C516D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/independence.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/independence.gif)India greenindiaGreen($inOptFormat)\#138808[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/indiaGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/indiaGreen.gif)Indian redindianRed($inOptFormat)\#CD5C5C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/indianRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/indianRed.gif)Indian yellowindianYellow($inOptFormat)\#E3A857[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/indianYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/indianYellow.gif)Indigoindigo($inOptFormat)\#4B0082[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/indigo.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/indigo.gif)Indigo (web)indigoWeb($inOptFormat)\#4B0082[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/indigoWeb.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/indigoWeb.gif)Indigo dyeindigoDye($inOptFormat)\#091F92[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/indigoDye.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/indigoDye.gif)Infra RedinfraRed($inOptFormat)\#FF496C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/infraRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/infraRed.gif)Interdimensional BlueinterdimensionalBlue($inOptFormat)\#360CCC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/interdimensionalBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/interdimensionalBlue.gif)International Klein BlueinternationalKleinBlue($inOptFormat)\#002FA7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/internationalKleinBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/internationalKleinBlue.gif)International orange (Golden Gate Bridge)internationalOrangeGoldenGateBridge($inOptFormat)\#C0362C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/internationalOrangeGoldenGateBridge.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/internationalOrangeGoldenGateBridge.gif)International orange (aerospace)internationalOrangeAerospace($inOptFormat)\#FF4F00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/internationalOrangeAerospace.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/internationalOrangeAerospace.gif)International orange (engineering)internationalOrangeEngineering($inOptFormat)\#BA160C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/internationalOrangeEngineering.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/internationalOrangeEngineering.gif)Irisiris($inOptFormat)\#5A4FCF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/iris.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/iris.gif)Irresistibleirresistible($inOptFormat)\#B3446C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/irresistible.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/irresistible.gif)Isabellineisabelline($inOptFormat)\#F4F0EC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/isabelline.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/isabelline.gif)Islamic greenislamicGreen($inOptFormat)\#009000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/islamicGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/islamicGreen.gif)Italian sky blueitalianSkyBlue($inOptFormat)\#B2FFFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/italianSkyBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/italianSkyBlue.gif)Ivoryivory($inOptFormat)\#FFFFF0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ivory.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ivory.gif)Jadejade($inOptFormat)\#00A86B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/jade.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/jade.gif)Japanese carminejapaneseCarmine($inOptFormat)\#9D2933[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/japaneseCarmine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/japaneseCarmine.gif)Japanese indigojapaneseIndigo($inOptFormat)\#264348[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/japaneseIndigo.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/japaneseIndigo.gif)Japanese violetjapaneseViolet($inOptFormat)\#5B3256[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/japaneseViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/japaneseViolet.gif)Jasminejasmine($inOptFormat)\#F8DE7E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/jasmine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/jasmine.gif)Jasperjasper($inOptFormat)\#D73B3E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/jasper.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/jasper.gif)Jazzberry jamjazzberryJam($inOptFormat)\#A50B5E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/jazzberryJam.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/jazzberryJam.gif)Jelly BeanjellyBean($inOptFormat)\#DA614E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/jellyBean.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/jellyBean.gif)Jetjet($inOptFormat)\#343434[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/jet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/jet.gif)Jonquiljonquil($inOptFormat)\#F4CA16[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/jonquil.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/jonquil.gif)Jordy bluejordyBlue($inOptFormat)\#8AB9F1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/jordyBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/jordyBlue.gif)June budjuneBud($inOptFormat)\#BDDA57[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/juneBud.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/juneBud.gif)Jungle greenjungleGreen($inOptFormat)\#29AB87[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/jungleGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/jungleGreen.gif)KSU PurpleksuPurple($inOptFormat)\#512888[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ksuPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ksuPurple.gif)KU CrimsonkuCrimson($inOptFormat)\#E8000D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/kuCrimson.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/kuCrimson.gif)Kelly greenkellyGreen($inOptFormat)\#4CBB17[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/kellyGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/kellyGreen.gif)Kenyan copperkenyanCopper($inOptFormat)\#7C1C05[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/kenyanCopper.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/kenyanCopper.gif)Keppelkeppel($inOptFormat)\#3AB09E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/keppel.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/keppel.gif)Key LimekeyLime($inOptFormat)\#E8F48C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/keyLime.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/keyLime.gif)Khaki (HTML/CSS) (Khaki)khakiHtmlCssKhaki($inOptFormat)\#C3B091[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/khakiHtmlCssKhaki.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/khakiHtmlCssKhaki.gif)Khaki (X11) (Light khaki)khakiX11LightKhaki($inOptFormat)\#F0E68C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/khakiX11LightKhaki.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/khakiX11LightKhaki.gif)Kiwikiwi($inOptFormat)\#8EE53F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/kiwi.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/kiwi.gif)Kobekobe($inOptFormat)\#882D17[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/kobe.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/kobe.gif)Kobikobi($inOptFormat)\#E79FC4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/kobi.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/kobi.gif)Kobichakobicha($inOptFormat)\#6B4423[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/kobicha.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/kobicha.gif)Kombu greenkombuGreen($inOptFormat)\#354230[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/kombuGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/kombuGreen.gif)La Salle GreenlaSalleGreen($inOptFormat)\#087830[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/laSalleGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/laSalleGreen.gif)Languid lavenderlanguidLavender($inOptFormat)\#D6CADD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/languidLavender.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/languidLavender.gif)Lapis lazulilapisLazuli($inOptFormat)\#26619C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lapisLazuli.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lapisLazuli.gif)Laser LemonlaserLemon($inOptFormat)\#FFFF66[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/laserLemon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/laserLemon.gif)Laurel greenlaurelGreen($inOptFormat)\#A9BA9D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/laurelGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/laurelGreen.gif)Lavalava($inOptFormat)\#CF1020[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lava.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lava.gif)Lavender (floral)lavenderFloral($inOptFormat)\#B57EDC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lavenderFloral.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lavenderFloral.gif)Lavender (web)lavenderWeb($inOptFormat)\#E6E6FA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lavenderWeb.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lavenderWeb.gif)Lavender bluelavenderBlue($inOptFormat)\#CCCCFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lavenderBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lavenderBlue.gif)Lavender blushlavenderBlush($inOptFormat)\#FFF0F5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lavenderBlush.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lavenderBlush.gif)Lavender graylavenderGray($inOptFormat)\#C4C3D0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lavenderGray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lavenderGray.gif)Lavender indigolavenderIndigo($inOptFormat)\#9457EB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lavenderIndigo.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lavenderIndigo.gif)Lavender magentalavenderMagenta($inOptFormat)\#EE82EE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lavenderMagenta.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lavenderMagenta.gif)Lavender mistlavenderMist($inOptFormat)\#E6E6FA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lavenderMist.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lavenderMist.gif)Lavender pinklavenderPink($inOptFormat)\#FBAED2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lavenderPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lavenderPink.gif)Lavender purplelavenderPurple($inOptFormat)\#967BB6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lavenderPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lavenderPurple.gif)Lavender roselavenderRose($inOptFormat)\#FBA0E3[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lavenderRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lavenderRose.gif)Lawn greenlawnGreen($inOptFormat)\#7CFC00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lawnGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lawnGreen.gif)Lemonlemon($inOptFormat)\#FFF700[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lemon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lemon.gif)Lemon chiffonlemonChiffon($inOptFormat)\#FFFACD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lemonChiffon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lemonChiffon.gif)Lemon currylemonCurry($inOptFormat)\#CCA01D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lemonCurry.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lemonCurry.gif)Lemon glacierlemonGlacier($inOptFormat)\#FDFF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lemonGlacier.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lemonGlacier.gif)Lemon limelemonLime($inOptFormat)\#E3FF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lemonLime.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lemonLime.gif)Lemon meringuelemonMeringue($inOptFormat)\#F6EABE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lemonMeringue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lemonMeringue.gif)Lemon yellowlemonYellow($inOptFormat)\#FFF44F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lemonYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lemonYellow.gif)Libertyliberty($inOptFormat)\#545AA7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/liberty.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/liberty.gif)Licoricelicorice($inOptFormat)\#1A1110[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/licorice.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/licorice.gif)Light French beigelightFrenchBeige($inOptFormat)\#C8AD7F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightFrenchBeige.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightFrenchBeige.gif)Light Thulian pinklightThulianPink($inOptFormat)\#E68FAC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightThulianPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightThulianPink.gif)Light apricotlightApricot($inOptFormat)\#FDD5B1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightApricot.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightApricot.gif)Light bluelightBlue($inOptFormat)\#ADD8E6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightBlue.gif)Light brownlightBrown($inOptFormat)\#B5651D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightBrown.gif)Light carmine pinklightCarminePink($inOptFormat)\#E66771[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightCarminePink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightCarminePink.gif)Light cobalt bluelightCobaltBlue($inOptFormat)\#88ACE0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightCobaltBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightCobaltBlue.gif)Light corallightCoral($inOptFormat)\#F08080[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightCoral.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightCoral.gif)Light cornflower bluelightCornflowerBlue($inOptFormat)\#93CCEA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightCornflowerBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightCornflowerBlue.gif)Light crimsonlightCrimson($inOptFormat)\#F56991[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightCrimson.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightCrimson.gif)Light cyanlightCyan($inOptFormat)\#E0FFFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightCyan.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightCyan.gif)Light deep pinklightDeepPink($inOptFormat)\#FF5CCD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightDeepPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightDeepPink.gif)Light fuchsia pinklightFuchsiaPink($inOptFormat)\#F984EF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightFuchsiaPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightFuchsiaPink.gif)Light goldenrod yellowlightGoldenrodYellow($inOptFormat)\#FAFAD2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightGoldenrodYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightGoldenrodYellow.gif)Light graylightGray($inOptFormat)\#D3D3D3[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightGray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightGray.gif)Light grayish magentalightGrayishMagenta($inOptFormat)\#CC99CC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightGrayishMagenta.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightGrayishMagenta.gif)Light greenlightGreen($inOptFormat)\#90EE90[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightGreen.gif)Light hot pinklightHotPink($inOptFormat)\#FFB3DE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightHotPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightHotPink.gif)Light khakilightKhaki($inOptFormat)\#F0E68C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightKhaki.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightKhaki.gif)Light medium orchidlightMediumOrchid($inOptFormat)\#D39BCB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightMediumOrchid.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightMediumOrchid.gif)Light moss greenlightMossGreen($inOptFormat)\#ADDFAD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightMossGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightMossGreen.gif)Light orchidlightOrchid($inOptFormat)\#E6A8D7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightOrchid.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightOrchid.gif)Light pastel purplelightPastelPurple($inOptFormat)\#B19CD9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightPastelPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightPastelPurple.gif)Light pinklightPink($inOptFormat)\#FFB6C1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightPink.gif)Light red ochrelightRedOchre($inOptFormat)\#E97451[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightRedOchre.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightRedOchre.gif)Light salmonlightSalmon($inOptFormat)\#FFA07A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightSalmon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightSalmon.gif)Light salmon pinklightSalmonPink($inOptFormat)\#FF9999[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightSalmonPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightSalmonPink.gif)Light sea greenlightSeaGreen($inOptFormat)\#20B2AA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightSeaGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightSeaGreen.gif)Light sky bluelightSkyBlue($inOptFormat)\#87CEFA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightSkyBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightSkyBlue.gif)Light slate graylightSlateGray($inOptFormat)\#778899[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightSlateGray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightSlateGray.gif)Light steel bluelightSteelBlue($inOptFormat)\#B0C4DE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightSteelBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightSteelBlue.gif)Light taupelightTaupe($inOptFormat)\#B38B6D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightTaupe.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightTaupe.gif)Light yellowlightYellow($inOptFormat)\#FFFFE0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lightYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lightYellow.gif)Lilaclilac($inOptFormat)\#C8A2C8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lilac.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lilac.gif)Lilac LusterlilacLuster($inOptFormat)\#AE98AA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lilacLuster.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lilacLuster.gif)Lime (color wheel)limeColorWheel($inOptFormat)\#BFFF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/limeColorWheel.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/limeColorWheel.gif)Lime (web) (X11 green)limeWebX11Green($inOptFormat)\#00FF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/limeWebX11Green.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/limeWebX11Green.gif)Lime greenlimeGreen($inOptFormat)\#32CD32[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/limeGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/limeGreen.gif)Limericklimerick($inOptFormat)\#9DC209[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/limerick.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/limerick.gif)Lincoln greenlincolnGreen($inOptFormat)\#195905[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lincolnGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lincolnGreen.gif)Linenlinen($inOptFormat)\#FAF0E6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/linen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/linen.gif)Lionlion($inOptFormat)\#C19A6B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lion.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lion.gif)Liseran PurpleliseranPurple($inOptFormat)\#DE6FA1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/liseranPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/liseranPurple.gif)Little boy bluelittleBoyBlue($inOptFormat)\#6CA0DC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/littleBoyBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/littleBoyBlue.gif)Liverliver($inOptFormat)\#674C47[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/liver.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/liver.gif)Liver (dogs)liverDogs($inOptFormat)\#B86D29[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/liverDogs.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/liverDogs.gif)Liver (organ)liverOrgan($inOptFormat)\#6C2E1F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/liverOrgan.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/liverOrgan.gif)Liver chestnutliverChestnut($inOptFormat)\#987456[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/liverChestnut.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/liverChestnut.gif)Lividlivid($inOptFormat)\#6699CC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/livid.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/livid.gif)Lumberlumber($inOptFormat)\#FFE4CD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lumber.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lumber.gif)Lustlust($inOptFormat)\#E62020[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/lust.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/lust.gif)MSU GreenmsuGreen($inOptFormat)\#18453B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/msuGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/msuGreen.gif)Maastricht BluemaastrichtBlue($inOptFormat)\#001C3D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/maastrichtBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/maastrichtBlue.gif)Macaroni and CheesemacaroniAndCheese($inOptFormat)\#FFBD88[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/macaroniAndCheese.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/macaroniAndCheese.gif)Madder LakemadderLake($inOptFormat)\#CC3336[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/madderLake.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/madderLake.gif)Magentamagenta($inOptFormat)\#FF00FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/magenta.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/magenta.gif)Magenta (Crayola)magentaCrayola($inOptFormat)\#FF55A3[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/magentaCrayola.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/magentaCrayola.gif)Magenta (Pantone)magentaPantone($inOptFormat)\#D0417E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/magentaPantone.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/magentaPantone.gif)Magenta (dye)magentaDye($inOptFormat)\#CA1F7B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/magentaDye.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/magentaDye.gif)Magenta (process)magentaProcess($inOptFormat)\#FF0090[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/magentaProcess.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/magentaProcess.gif)Magenta hazemagentaHaze($inOptFormat)\#9F4576[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/magentaHaze.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/magentaHaze.gif)Magenta-pinkmagentaPink($inOptFormat)\#CC338B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/magentaPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/magentaPink.gif)Magic PotionmagicPotion($inOptFormat)\#FF4466[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/magicPotion.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/magicPotion.gif)Magic mintmagicMint($inOptFormat)\#AAF0D1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/magicMint.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/magicMint.gif)Magnoliamagnolia($inOptFormat)\#F8F4FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/magnolia.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/magnolia.gif)Mahoganymahogany($inOptFormat)\#C04000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mahogany.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mahogany.gif)Maizemaize($inOptFormat)\#FBEC5D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/maize.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/maize.gif)Majorelle BluemajorelleBlue($inOptFormat)\#6050DC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/majorelleBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/majorelleBlue.gif)Malachitemalachite($inOptFormat)\#0BDA51[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/malachite.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/malachite.gif)Manateemanatee($inOptFormat)\#979AAA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/manatee.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/manatee.gif)Mandarinmandarin($inOptFormat)\#F37A48[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mandarin.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mandarin.gif)Mango TangomangoTango($inOptFormat)\#FF8243[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mangoTango.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mangoTango.gif)Mantismantis($inOptFormat)\#74C365[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mantis.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mantis.gif)Mardi GrasmardiGras($inOptFormat)\#880085[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mardiGras.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mardiGras.gif)Marigoldmarigold($inOptFormat)\#EAA221[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/marigold.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/marigold.gif)Maroon (Crayola)maroonCrayola($inOptFormat)\#C32148[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/maroonCrayola.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/maroonCrayola.gif)Maroon (HTML/CSS)maroonHtmlCss($inOptFormat)\#800000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/maroonHtmlCss.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/maroonHtmlCss.gif)Maroon (X11)maroonX11($inOptFormat)\#B03060[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/maroonX11.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/maroonX11.gif)Mauvemauve($inOptFormat)\#E0B0FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mauve.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mauve.gif)Mauve taupemauveTaupe($inOptFormat)\#915F6D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mauveTaupe.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mauveTaupe.gif)Mauvelousmauvelous($inOptFormat)\#EF98AA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mauvelous.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mauvelous.gif)Maximum BluemaximumBlue($inOptFormat)\#47ABCC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/maximumBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/maximumBlue.gif)Maximum Blue GreenmaximumBlueGreen($inOptFormat)\#30BFBF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/maximumBlueGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/maximumBlueGreen.gif)Maximum Blue PurplemaximumBluePurple($inOptFormat)\#ACACE6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/maximumBluePurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/maximumBluePurple.gif)Maximum GreenmaximumGreen($inOptFormat)\#5E8C31[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/maximumGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/maximumGreen.gif)Maximum Green YellowmaximumGreenYellow($inOptFormat)\#D9E650[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/maximumGreenYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/maximumGreenYellow.gif)Maximum PurplemaximumPurple($inOptFormat)\#733380[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/maximumPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/maximumPurple.gif)Maximum RedmaximumRed($inOptFormat)\#D92121[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/maximumRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/maximumRed.gif)Maximum Red PurplemaximumRedPurple($inOptFormat)\#A63A79[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/maximumRedPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/maximumRedPurple.gif)Maximum YellowmaximumYellow($inOptFormat)\#FAFA37[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/maximumYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/maximumYellow.gif)Maximum Yellow RedmaximumYellowRed($inOptFormat)\#F2BA49[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/maximumYellowRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/maximumYellowRed.gif)May greenmayGreen($inOptFormat)\#4C9141[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mayGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mayGreen.gif)Maya bluemayaBlue($inOptFormat)\#73C2FB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mayaBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mayaBlue.gif)Meat brownmeatBrown($inOptFormat)\#E5B73B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/meatBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/meatBrown.gif)Medium Persian bluemediumPersianBlue($inOptFormat)\#0067A5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumPersianBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumPersianBlue.gif)Medium Tuscan redmediumTuscanRed($inOptFormat)\#79443B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumTuscanRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumTuscanRed.gif)Medium aquamarinemediumAquamarine($inOptFormat)\#66DDAA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumAquamarine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumAquamarine.gif)Medium bluemediumBlue($inOptFormat)\#0000CD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumBlue.gif)Medium candy apple redmediumCandyAppleRed($inOptFormat)\#E2062C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumCandyAppleRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumCandyAppleRed.gif)Medium carminemediumCarmine($inOptFormat)\#AF4035[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumCarmine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumCarmine.gif)Medium champagnemediumChampagne($inOptFormat)\#F3E5AB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumChampagne.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumChampagne.gif)Medium electric bluemediumElectricBlue($inOptFormat)\#035096[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumElectricBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumElectricBlue.gif)Medium jungle greenmediumJungleGreen($inOptFormat)\#1C352D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumJungleGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumJungleGreen.gif)Medium lavender magentamediumLavenderMagenta($inOptFormat)\#DDA0DD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumLavenderMagenta.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumLavenderMagenta.gif)Medium orchidmediumOrchid($inOptFormat)\#BA55D3[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumOrchid.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumOrchid.gif)Medium purplemediumPurple($inOptFormat)\#9370DB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumPurple.gif)Medium red-violetmediumRedViolet($inOptFormat)\#BB3385[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumRedViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumRedViolet.gif)Medium rubymediumRuby($inOptFormat)\#AA4069[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumRuby.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumRuby.gif)Medium sea greenmediumSeaGreen($inOptFormat)\#3CB371[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumSeaGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumSeaGreen.gif)Medium sky bluemediumSkyBlue($inOptFormat)\#80DAEB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumSkyBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumSkyBlue.gif)Medium slate bluemediumSlateBlue($inOptFormat)\#7B68EE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumSlateBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumSlateBlue.gif)Medium spring budmediumSpringBud($inOptFormat)\#C9DC87[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumSpringBud.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumSpringBud.gif)Medium spring greenmediumSpringGreen($inOptFormat)\#00FA9A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumSpringGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumSpringGreen.gif)Medium taupemediumTaupe($inOptFormat)\#674C47[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumTaupe.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumTaupe.gif)Medium turquoisemediumTurquoise($inOptFormat)\#48D1CC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumTurquoise.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumTurquoise.gif)Medium vermilionmediumVermilion($inOptFormat)\#D9603B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumVermilion.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumVermilion.gif)Medium violet-redmediumVioletRed($inOptFormat)\#C71585[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mediumVioletRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mediumVioletRed.gif)Mellow apricotmellowApricot($inOptFormat)\#F8B878[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mellowApricot.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mellowApricot.gif)Mellow yellowmellowYellow($inOptFormat)\#F8DE7E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mellowYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mellowYellow.gif)Melonmelon($inOptFormat)\#FDBCB4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/melon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/melon.gif)Metallic SeaweedmetallicSeaweed($inOptFormat)\#0A7E8C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/metallicSeaweed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/metallicSeaweed.gif)Metallic SunburstmetallicSunburst($inOptFormat)\#9C7C38[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/metallicSunburst.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/metallicSunburst.gif)Mexican pinkmexicanPink($inOptFormat)\#E4007C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mexicanPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mexicanPink.gif)Middle BluemiddleBlue($inOptFormat)\#7ED4E6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/middleBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/middleBlue.gif)Middle Blue GreenmiddleBlueGreen($inOptFormat)\#8DD9CC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/middleBlueGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/middleBlueGreen.gif)Middle Blue PurplemiddleBluePurple($inOptFormat)\#8B72BE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/middleBluePurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/middleBluePurple.gif)Middle GreenmiddleGreen($inOptFormat)\#4D8C57[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/middleGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/middleGreen.gif)Middle Green YellowmiddleGreenYellow($inOptFormat)\#ACBF60[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/middleGreenYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/middleGreenYellow.gif)Middle PurplemiddlePurple($inOptFormat)\#D982B5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/middlePurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/middlePurple.gif)Middle RedmiddleRed($inOptFormat)\#E58E73[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/middleRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/middleRed.gif)Middle Red PurplemiddleRedPurple($inOptFormat)\#A55353[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/middleRedPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/middleRedPurple.gif)Middle YellowmiddleYellow($inOptFormat)\#FFEB00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/middleYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/middleYellow.gif)Middle Yellow RedmiddleYellowRed($inOptFormat)\#ECB176[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/middleYellowRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/middleYellowRed.gif)Midnightmidnight($inOptFormat)\#702670[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/midnight.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/midnight.gif)Midnight bluemidnightBlue($inOptFormat)\#191970[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/midnightBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/midnightBlue.gif)Midnight green (eagle green)midnightGreenEagleGreen($inOptFormat)\#004953[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/midnightGreenEagleGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/midnightGreenEagleGreen.gif)Mikado yellowmikadoYellow($inOptFormat)\#FFC40C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mikadoYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mikadoYellow.gif)Mimi PinkmimiPink($inOptFormat)\#FFDAE9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mimiPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mimiPink.gif)Mindaromindaro($inOptFormat)\#E3F988[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mindaro.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mindaro.gif)Mingming($inOptFormat)\#36747D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ming.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ming.gif)Minion YellowminionYellow($inOptFormat)\#F5E050[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/minionYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/minionYellow.gif)Mintmint($inOptFormat)\#3EB489[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mint.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mint.gif)Mint creammintCream($inOptFormat)\#F5FFFA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mintCream.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mintCream.gif)Mint greenmintGreen($inOptFormat)\#98FF98[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mintGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mintGreen.gif)Misty MossmistyMoss($inOptFormat)\#BBB477[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mistyMoss.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mistyMoss.gif)Misty rosemistyRose($inOptFormat)\#FFE4E1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mistyRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mistyRose.gif)Moccasinmoccasin($inOptFormat)\#FAEBD7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/moccasin.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/moccasin.gif)Mode beigemodeBeige($inOptFormat)\#967117[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/modeBeige.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/modeBeige.gif)Moonstone bluemoonstoneBlue($inOptFormat)\#73A9C2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/moonstoneBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/moonstoneBlue.gif)Mordant red 19mordantRed19($inOptFormat)\#AE0C00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mordantRed19.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mordantRed19.gif)Moss greenmossGreen($inOptFormat)\#8A9A5B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mossGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mossGreen.gif)Mountain MeadowmountainMeadow($inOptFormat)\#30BA8F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mountainMeadow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mountainMeadow.gif)Mountbatten pinkmountbattenPink($inOptFormat)\#997A8D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mountbattenPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mountbattenPink.gif)Mughal greenmughalGreen($inOptFormat)\#306030[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mughalGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mughalGreen.gif)Mulberrymulberry($inOptFormat)\#C54B8C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mulberry.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mulberry.gif)Mummy's TombmummysTomb($inOptFormat)\#828E84[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mummysTomb.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mummysTomb.gif)Mustardmustard($inOptFormat)\#FFDB58[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mustard.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mustard.gif)Myrtle greenmyrtleGreen($inOptFormat)\#317873[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/myrtleGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/myrtleGreen.gif)Mysticmystic($inOptFormat)\#D65282[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mystic.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mystic.gif)Mystic MaroonmysticMaroon($inOptFormat)\#AD4379[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/mysticMaroon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/mysticMaroon.gif)Nadeshiko pinknadeshikoPink($inOptFormat)\#F6ADC6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/nadeshikoPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/nadeshikoPink.gif)Napier greennapierGreen($inOptFormat)\#2A8000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/napierGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/napierGreen.gif)Naples yellownaplesYellow($inOptFormat)\#FADA5E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/naplesYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/naplesYellow.gif)Navajo whitenavajoWhite($inOptFormat)\#FFDEAD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/navajoWhite.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/navajoWhite.gif)Navynavy($inOptFormat)\#000080[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/navy.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/navy.gif)Navy purplenavyPurple($inOptFormat)\#9457EB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/navyPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/navyPurple.gif)Neon CarrotneonCarrot($inOptFormat)\#FFA343[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/neonCarrot.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/neonCarrot.gif)Neon fuchsianeonFuchsia($inOptFormat)\#FE4164[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/neonFuchsia.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/neonFuchsia.gif)Neon greenneonGreen($inOptFormat)\#39FF14[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/neonGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/neonGreen.gif)New CarnewCar($inOptFormat)\#214FC6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/newCar.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/newCar.gif)New York pinknewYorkPink($inOptFormat)\#D7837F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/newYorkPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/newYorkPink.gif)Nickelnickel($inOptFormat)\#727472[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/nickel.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/nickel.gif)Non-photo bluenonPhotoBlue($inOptFormat)\#A4DDED[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/nonPhotoBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/nonPhotoBlue.gif)North Texas GreennorthTexasGreen($inOptFormat)\#059033[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/northTexasGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/northTexasGreen.gif)Nyanzanyanza($inOptFormat)\#E9FFDB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/nyanza.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/nyanza.gif)OU Crimson RedouCrimsonRed($inOptFormat)\#990000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ouCrimsonRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ouCrimsonRed.gif)Ocean BlueoceanBlue($inOptFormat)\#4F42B5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/oceanBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/oceanBlue.gif)Ocean Boat BlueoceanBoatBlue($inOptFormat)\#0077BE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/oceanBoatBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/oceanBoatBlue.gif)Ocean GreenoceanGreen($inOptFormat)\#48BF91[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/oceanGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/oceanGreen.gif)Ochreochre($inOptFormat)\#CC7722[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ochre.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ochre.gif)Office greenofficeGreen($inOptFormat)\#008000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/officeGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/officeGreen.gif)Ogre OdorogreOdor($inOptFormat)\#FD5240[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ogreOdor.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ogreOdor.gif)Old burgundyoldBurgundy($inOptFormat)\#43302E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/oldBurgundy.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/oldBurgundy.gif)Old goldoldGold($inOptFormat)\#CFB53B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/oldGold.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/oldGold.gif)Old heliotropeoldHeliotrope($inOptFormat)\#563C5C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/oldHeliotrope.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/oldHeliotrope.gif)Old laceoldLace($inOptFormat)\#FDF5E6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/oldLace.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/oldLace.gif)Old lavenderoldLavender($inOptFormat)\#796878[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/oldLavender.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/oldLavender.gif)Old mauveoldMauve($inOptFormat)\#673147[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/oldMauve.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/oldMauve.gif)Old moss greenoldMossGreen($inOptFormat)\#867E36[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/oldMossGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/oldMossGreen.gif)Old roseoldRose($inOptFormat)\#C08081[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/oldRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/oldRose.gif)Old silveroldSilver($inOptFormat)\#848482[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/oldSilver.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/oldSilver.gif)Oliveolive($inOptFormat)\#808000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/olive.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/olive.gif)Olive Drab #7oliveDrab7($inOptFormat)\#3C341F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/oliveDrab7.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/oliveDrab7.gif)Olive Drab (#3)oliveDrab3($inOptFormat)\#6B8E23[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/oliveDrab3.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/oliveDrab3.gif)Olivineolivine($inOptFormat)\#9AB973[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/olivine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/olivine.gif)Onyxonyx($inOptFormat)\#353839[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/onyx.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/onyx.gif)Opera mauveoperaMauve($inOptFormat)\#B784A7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/operaMauve.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/operaMauve.gif)Orange (Crayola)orangeCrayola($inOptFormat)\#FF7538[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/orangeCrayola.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/orangeCrayola.gif)Orange (Pantone)orangePantone($inOptFormat)\#FF5800[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/orangePantone.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/orangePantone.gif)Orange (RYB)orangeRyb($inOptFormat)\#FB9902[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/orangeRyb.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/orangeRyb.gif)Orange (color wheel)orangeColorWheel($inOptFormat)\#FF7F00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/orangeColorWheel.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/orangeColorWheel.gif)Orange (web)orangeWeb($inOptFormat)\#FFA500[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/orangeWeb.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/orangeWeb.gif)Orange SodaorangeSoda($inOptFormat)\#FA5B3D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/orangeSoda.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/orangeSoda.gif)Orange peelorangePeel($inOptFormat)\#FF9F00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/orangePeel.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/orangePeel.gif)Orange-redorangeRed($inOptFormat)\#FF4500[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/orangeRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/orangeRed.gif)Orange-yelloworangeYellow($inOptFormat)\#F8D568[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/orangeYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/orangeYellow.gif)Orchidorchid($inOptFormat)\#DA70D6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/orchid.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/orchid.gif)Orchid pinkorchidPink($inOptFormat)\#F2BDCD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/orchidPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/orchidPink.gif)Orioles orangeoriolesOrange($inOptFormat)\#FB4F14[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/oriolesOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/oriolesOrange.gif)Otter brownotterBrown($inOptFormat)\#654321[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/otterBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/otterBrown.gif)Outer SpaceouterSpace($inOptFormat)\#414A4C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/outerSpace.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/outerSpace.gif)Outrageous OrangeoutrageousOrange($inOptFormat)\#FF6E4A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/outrageousOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/outrageousOrange.gif)Oxford BlueoxfordBlue($inOptFormat)\#002147[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/oxfordBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/oxfordBlue.gif)Pacific BluepacificBlue($inOptFormat)\#1CA9C9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pacificBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pacificBlue.gif)Pakistan greenpakistanGreen($inOptFormat)\#006600[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pakistanGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pakistanGreen.gif)Palatinate bluepalatinateBlue($inOptFormat)\#273BE2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/palatinateBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/palatinateBlue.gif)Palatinate purplepalatinatePurple($inOptFormat)\#682860[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/palatinatePurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/palatinatePurple.gif)Pale aquapaleAqua($inOptFormat)\#BCD4E6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleAqua.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleAqua.gif)Pale bluepaleBlue($inOptFormat)\#AFEEEE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleBlue.gif)Pale brownpaleBrown($inOptFormat)\#987654[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleBrown.gif)Pale carminepaleCarmine($inOptFormat)\#AF4035[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleCarmine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleCarmine.gif)Pale ceruleanpaleCerulean($inOptFormat)\#9BC4E2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleCerulean.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleCerulean.gif)Pale chestnutpaleChestnut($inOptFormat)\#DDADAF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleChestnut.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleChestnut.gif)Pale copperpaleCopper($inOptFormat)\#DA8A67[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleCopper.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleCopper.gif)Pale cornflower bluepaleCornflowerBlue($inOptFormat)\#ABCDEF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleCornflowerBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleCornflowerBlue.gif)Pale cyanpaleCyan($inOptFormat)\#87D3F8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleCyan.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleCyan.gif)Pale goldpaleGold($inOptFormat)\#E6BE8A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleGold.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleGold.gif)Pale goldenrodpaleGoldenrod($inOptFormat)\#EEE8AA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleGoldenrod.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleGoldenrod.gif)Pale greenpaleGreen($inOptFormat)\#98FB98[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleGreen.gif)Pale lavenderpaleLavender($inOptFormat)\#DCD0FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleLavender.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleLavender.gif)Pale magentapaleMagenta($inOptFormat)\#F984E5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleMagenta.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleMagenta.gif)Pale magenta-pinkpaleMagentaPink($inOptFormat)\#FF99CC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleMagentaPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleMagentaPink.gif)Pale pinkpalePink($inOptFormat)\#FADADD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/palePink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/palePink.gif)Pale plumpalePlum($inOptFormat)\#DDA0DD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/palePlum.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/palePlum.gif)Pale red-violetpaleRedViolet($inOptFormat)\#DB7093[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleRedViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleRedViolet.gif)Pale robin egg bluepaleRobinEggBlue($inOptFormat)\#96DED1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleRobinEggBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleRobinEggBlue.gif)Pale silverpaleSilver($inOptFormat)\#C9C0BB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleSilver.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleSilver.gif)Pale spring budpaleSpringBud($inOptFormat)\#ECEBBD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleSpringBud.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleSpringBud.gif)Pale taupepaleTaupe($inOptFormat)\#BC987E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleTaupe.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleTaupe.gif)Pale turquoisepaleTurquoise($inOptFormat)\#AFEEEE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleTurquoise.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleTurquoise.gif)Pale violetpaleViolet($inOptFormat)\#CC99FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleViolet.gif)Pale violet-redpaleVioletRed($inOptFormat)\#DB7093[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paleVioletRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paleVioletRed.gif)Palm LeafpalmLeaf($inOptFormat)\#6F9940[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/palmLeaf.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/palmLeaf.gif)Pansy purplepansyPurple($inOptFormat)\#78184A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pansyPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pansyPurple.gif)Paolo Veronese greenpaoloVeroneseGreen($inOptFormat)\#009B7D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paoloVeroneseGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paoloVeroneseGreen.gif)Papaya whippapayaWhip($inOptFormat)\#FFEFD5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/papayaWhip.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/papayaWhip.gif)Paradise pinkparadisePink($inOptFormat)\#E63E62[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paradisePink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paradisePink.gif)Paris GreenparisGreen($inOptFormat)\#50C878[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/parisGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/parisGreen.gif)Parrot PinkparrotPink($inOptFormat)\#D998A0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/parrotPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/parrotPink.gif)Pastel bluepastelBlue($inOptFormat)\#AEC6CF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pastelBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pastelBlue.gif)Pastel brownpastelBrown($inOptFormat)\#836953[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pastelBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pastelBrown.gif)Pastel graypastelGray($inOptFormat)\#CFCFC4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pastelGray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pastelGray.gif)Pastel greenpastelGreen($inOptFormat)\#77DD77[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pastelGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pastelGreen.gif)Pastel magentapastelMagenta($inOptFormat)\#F49AC2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pastelMagenta.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pastelMagenta.gif)Pastel orangepastelOrange($inOptFormat)\#FFB347[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pastelOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pastelOrange.gif)Pastel pinkpastelPink($inOptFormat)\#DEA5A4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pastelPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pastelPink.gif)Pastel purplepastelPurple($inOptFormat)\#B39EB5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pastelPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pastelPurple.gif)Pastel redpastelRed($inOptFormat)\#FF6961[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pastelRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pastelRed.gif)Pastel violetpastelViolet($inOptFormat)\#CB99C9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pastelViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pastelViolet.gif)Pastel yellowpastelYellow($inOptFormat)\#FDFD96[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pastelYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pastelYellow.gif)Patriarchpatriarch($inOptFormat)\#800080[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/patriarch.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/patriarch.gif)Payne's greypaynesGrey($inOptFormat)\#536878[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/paynesGrey.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/paynesGrey.gif)Peachpeach($inOptFormat)\#FFCBA4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/peach.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/peach.gif)Peach puffpeachPuff($inOptFormat)\#FFDAB9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/peachPuff.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/peachPuff.gif)Peach-orangepeachOrange($inOptFormat)\#FFCC99[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/peachOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/peachOrange.gif)Peach-yellowpeachYellow($inOptFormat)\#FADFAD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/peachYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/peachYellow.gif)Pearpear($inOptFormat)\#D1E231[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pear.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pear.gif)Pearlpearl($inOptFormat)\#EAE0C8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pearl.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pearl.gif)Pearl AquapearlAqua($inOptFormat)\#88D8C0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pearlAqua.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pearlAqua.gif)Pearly purplepearlyPurple($inOptFormat)\#B768A2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pearlyPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pearlyPurple.gif)Peridotperidot($inOptFormat)\#E6E200[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/peridot.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/peridot.gif)Periwinkleperiwinkle($inOptFormat)\#CCCCFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/periwinkle.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/periwinkle.gif)Permanent Geranium LakepermanentGeraniumLake($inOptFormat)\#E12C2C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/permanentGeraniumLake.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/permanentGeraniumLake.gif)Persian bluepersianBlue($inOptFormat)\#1C39BB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/persianBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/persianBlue.gif)Persian greenpersianGreen($inOptFormat)\#00A693[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/persianGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/persianGreen.gif)Persian indigopersianIndigo($inOptFormat)\#32127A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/persianIndigo.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/persianIndigo.gif)Persian orangepersianOrange($inOptFormat)\#D99058[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/persianOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/persianOrange.gif)Persian pinkpersianPink($inOptFormat)\#F77FBE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/persianPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/persianPink.gif)Persian plumpersianPlum($inOptFormat)\#701C1C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/persianPlum.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/persianPlum.gif)Persian redpersianRed($inOptFormat)\#CC3333[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/persianRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/persianRed.gif)Persian rosepersianRose($inOptFormat)\#FE28A2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/persianRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/persianRose.gif)Persimmonpersimmon($inOptFormat)\#EC5800[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/persimmon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/persimmon.gif)Peruperu($inOptFormat)\#CD853F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/peru.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/peru.gif)Pewter BluepewterBlue($inOptFormat)\#8BA8B7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pewterBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pewterBlue.gif)Phloxphlox($inOptFormat)\#DF00FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/phlox.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/phlox.gif)Phthalo bluephthaloBlue($inOptFormat)\#000F89[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/phthaloBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/phthaloBlue.gif)Phthalo greenphthaloGreen($inOptFormat)\#123524[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/phthaloGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/phthaloGreen.gif)Picton bluepictonBlue($inOptFormat)\#45B1E8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pictonBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pictonBlue.gif)Pictorial carminepictorialCarmine($inOptFormat)\#C30B4E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pictorialCarmine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pictorialCarmine.gif)Piggy pinkpiggyPink($inOptFormat)\#FDDDE6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/piggyPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/piggyPink.gif)Pine greenpineGreen($inOptFormat)\#01796F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pineGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pineGreen.gif)Pineapplepineapple($inOptFormat)\#563C5C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pineapple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pineapple.gif)Pinkpink($inOptFormat)\#FFC0CB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pink.gif)Pink (Pantone)pinkPantone($inOptFormat)\#D74894[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pinkPantone.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pinkPantone.gif)Pink FlamingopinkFlamingo($inOptFormat)\#FC74FD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pinkFlamingo.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pinkFlamingo.gif)Pink SherbetpinkSherbet($inOptFormat)\#F78FA7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pinkSherbet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pinkSherbet.gif)Pink lacepinkLace($inOptFormat)\#FFDDF4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pinkLace.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pinkLace.gif)Pink lavenderpinkLavender($inOptFormat)\#D8B2D1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pinkLavender.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pinkLavender.gif)Pink pearlpinkPearl($inOptFormat)\#E7ACCF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pinkPearl.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pinkPearl.gif)Pink raspberrypinkRaspberry($inOptFormat)\#980036[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pinkRaspberry.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pinkRaspberry.gif)Pink-orangepinkOrange($inOptFormat)\#FF9966[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pinkOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pinkOrange.gif)Pistachiopistachio($inOptFormat)\#93C572[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pistachio.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pistachio.gif)Pixie PowderpixiePowder($inOptFormat)\#391285[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pixiePowder.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pixiePowder.gif)Platinumplatinum($inOptFormat)\#E5E4E2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/platinum.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/platinum.gif)Plumplum($inOptFormat)\#8E4585[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/plum.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/plum.gif)Plum (web)plumWeb($inOptFormat)\#DDA0DD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/plumWeb.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/plumWeb.gif)Plump PurpleplumpPurple($inOptFormat)\#5946B2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/plumpPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/plumpPurple.gif)Polished PinepolishedPine($inOptFormat)\#5DA493[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/polishedPine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/polishedPine.gif)Pomp and PowerpompAndPower($inOptFormat)\#86608E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pompAndPower.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pompAndPower.gif)Popstarpopstar($inOptFormat)\#BE4F62[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/popstar.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/popstar.gif)Portland OrangeportlandOrange($inOptFormat)\#FF5A36[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/portlandOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/portlandOrange.gif)Powder bluepowderBlue($inOptFormat)\#B0E0E6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/powderBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/powderBlue.gif)Princess PerfumeprincessPerfume($inOptFormat)\#FF85CF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/princessPerfume.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/princessPerfume.gif)Princeton orangeprincetonOrange($inOptFormat)\#F58025[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/princetonOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/princetonOrange.gif)Pruneprune($inOptFormat)\#701C1C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/prune.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/prune.gif)Prussian blueprussianBlue($inOptFormat)\#003153[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/prussianBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/prussianBlue.gif)Psychedelic purplepsychedelicPurple($inOptFormat)\#DF00FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/psychedelicPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/psychedelicPurple.gif)Pucepuce($inOptFormat)\#CC8899[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/puce.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/puce.gif)Puce redpuceRed($inOptFormat)\#722F37[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/puceRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/puceRed.gif)Pullman Brown (UPS Brown)pullmanBrownUpsBrown($inOptFormat)\#644117[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pullmanBrownUpsBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pullmanBrownUpsBrown.gif)Pullman GreenpullmanGreen($inOptFormat)\#3B331C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pullmanGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pullmanGreen.gif)Pumpkinpumpkin($inOptFormat)\#FF7518[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/pumpkin.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/pumpkin.gif)Purple (HTML)purpleHtml($inOptFormat)\#800080[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/purpleHtml.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/purpleHtml.gif)Purple (Munsell)purpleMunsell($inOptFormat)\#9F00C5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/purpleMunsell.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/purpleMunsell.gif)Purple (X11)purpleX11($inOptFormat)\#A020F0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/purpleX11.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/purpleX11.gif)Purple HeartpurpleHeart($inOptFormat)\#69359C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/purpleHeart.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/purpleHeart.gif)Purple PlumpurplePlum($inOptFormat)\#9C51B6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/purplePlum.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/purplePlum.gif)Purple mountain majestypurpleMountainMajesty($inOptFormat)\#9678B6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/purpleMountainMajesty.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/purpleMountainMajesty.gif)Purple navypurpleNavy($inOptFormat)\#4E5180[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/purpleNavy.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/purpleNavy.gif)Purple pizzazzpurplePizzazz($inOptFormat)\#FE4EDA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/purplePizzazz.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/purplePizzazz.gif)Purple taupepurpleTaupe($inOptFormat)\#50404D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/purpleTaupe.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/purpleTaupe.gif)Purpureuspurpureus($inOptFormat)\#9A4EAE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/purpureus.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/purpureus.gif)Quartzquartz($inOptFormat)\#51484F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/quartz.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/quartz.gif)Queen bluequeenBlue($inOptFormat)\#436B95[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/queenBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/queenBlue.gif)Queen pinkqueenPink($inOptFormat)\#E8CCD7[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/queenPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/queenPink.gif)Quick SilverquickSilver($inOptFormat)\#A6A6A6[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/quickSilver.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/quickSilver.gif)Quinacridone magentaquinacridoneMagenta($inOptFormat)\#8E3A59[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/quinacridoneMagenta.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/quinacridoneMagenta.gif)Rackleyrackley($inOptFormat)\#5D8AA8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rackley.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rackley.gif)Radical RedradicalRed($inOptFormat)\#FF355E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/radicalRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/radicalRed.gif)Raisin blackraisinBlack($inOptFormat)\#242124[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/raisinBlack.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/raisinBlack.gif)Rajahrajah($inOptFormat)\#FBAB60[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rajah.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rajah.gif)Raspberryraspberry($inOptFormat)\#E30B5D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/raspberry.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/raspberry.gif)Raspberry glaceraspberryGlace($inOptFormat)\#915F6D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/raspberryGlace.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/raspberryGlace.gif)Raspberry pinkraspberryPink($inOptFormat)\#E25098[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/raspberryPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/raspberryPink.gif)Raspberry roseraspberryRose($inOptFormat)\#B3446C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/raspberryRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/raspberryRose.gif)Raw SiennarawSienna($inOptFormat)\#D68A59[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rawSienna.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rawSienna.gif)Raw umberrawUmber($inOptFormat)\#826644[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rawUmber.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rawUmber.gif)Razzle dazzle roserazzleDazzleRose($inOptFormat)\#FF33CC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/razzleDazzleRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/razzleDazzleRose.gif)Razzmatazzrazzmatazz($inOptFormat)\#E3256B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/razzmatazz.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/razzmatazz.gif)Razzmic BerryrazzmicBerry($inOptFormat)\#8D4E85[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/razzmicBerry.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/razzmicBerry.gif)Rebecca PurplerebeccaPurple($inOptFormat)\#663399[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rebeccaPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rebeccaPurple.gif)Redred($inOptFormat)\#FF0000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/red.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/red.gif)Red (Crayola)redCrayola($inOptFormat)\#EE204D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/redCrayola.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/redCrayola.gif)Red (Munsell)redMunsell($inOptFormat)\#F2003C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/redMunsell.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/redMunsell.gif)Red (NCS)redNcs($inOptFormat)\#C40233[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/redNcs.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/redNcs.gif)Red (Pantone)redPantone($inOptFormat)\#ED2939[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/redPantone.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/redPantone.gif)Red (RYB)redRyb($inOptFormat)\#FE2712[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/redRyb.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/redRyb.gif)Red (pigment)redPigment($inOptFormat)\#ED1C24[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/redPigment.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/redPigment.gif)Red SalsaredSalsa($inOptFormat)\#FD3A4A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/redSalsa.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/redSalsa.gif)Red devilredDevil($inOptFormat)\#860111[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/redDevil.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/redDevil.gif)Red-brownredBrown($inOptFormat)\#A52A2A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/redBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/redBrown.gif)Red-orangeredOrange($inOptFormat)\#FF5349[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/redOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/redOrange.gif)Red-purpleredPurple($inOptFormat)\#E40078[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/redPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/redPurple.gif)Red-violetredViolet($inOptFormat)\#C71585[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/redViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/redViolet.gif)Redwoodredwood($inOptFormat)\#A45A52[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/redwood.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/redwood.gif)Regaliaregalia($inOptFormat)\#522D80[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/regalia.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/regalia.gif)Registration blackregistrationBlack($inOptFormat)\#000000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/registrationBlack.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/registrationBlack.gif)Resolution blueresolutionBlue($inOptFormat)\#002387[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/resolutionBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/resolutionBlue.gif)Rhythmrhythm($inOptFormat)\#777696[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rhythm.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rhythm.gif)Rich blackrichBlack($inOptFormat)\#004040[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/richBlack.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/richBlack.gif)Rich black (FOGRA29)richBlackFogra29($inOptFormat)\#010B13[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/richBlackFogra29.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/richBlackFogra29.gif)Rich black (FOGRA39)richBlackFogra39($inOptFormat)\#010203[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/richBlackFogra39.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/richBlackFogra39.gif)Rich brilliant lavenderrichBrilliantLavender($inOptFormat)\#F1A7FE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/richBrilliantLavender.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/richBrilliantLavender.gif)Rich carminerichCarmine($inOptFormat)\#D70040[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/richCarmine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/richCarmine.gif)Rich electric bluerichElectricBlue($inOptFormat)\#0892D0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/richElectricBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/richElectricBlue.gif)Rich lavenderrichLavender($inOptFormat)\#A76BCF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/richLavender.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/richLavender.gif)Rich lilacrichLilac($inOptFormat)\#B666D2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/richLilac.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/richLilac.gif)Rich maroonrichMaroon($inOptFormat)\#B03060[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/richMaroon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/richMaroon.gif)Rifle greenrifleGreen($inOptFormat)\#444C38[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rifleGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rifleGreen.gif)Roast coffeeroastCoffee($inOptFormat)\#704241[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/roastCoffee.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/roastCoffee.gif)Robin egg bluerobinEggBlue($inOptFormat)\#00CCCC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/robinEggBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/robinEggBlue.gif)Rocket metallicrocketMetallic($inOptFormat)\#8A7F80[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rocketMetallic.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rocketMetallic.gif)Roman silverromanSilver($inOptFormat)\#838996[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/romanSilver.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/romanSilver.gif)Roserose($inOptFormat)\#FF007F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rose.gif)Rose DustroseDust($inOptFormat)\#9E5E6F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/roseDust.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/roseDust.gif)Rose bonbonroseBonbon($inOptFormat)\#F9429E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/roseBonbon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/roseBonbon.gif)Rose ebonyroseEbony($inOptFormat)\#674846[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/roseEbony.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/roseEbony.gif)Rose goldroseGold($inOptFormat)\#B76E79[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/roseGold.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/roseGold.gif)Rose madderroseMadder($inOptFormat)\#E32636[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/roseMadder.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/roseMadder.gif)Rose pinkrosePink($inOptFormat)\#FF66CC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rosePink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rosePink.gif)Rose quartzroseQuartz($inOptFormat)\#AA98A9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/roseQuartz.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/roseQuartz.gif)Rose redroseRed($inOptFormat)\#C21E56[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/roseRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/roseRed.gif)Rose tauperoseTaupe($inOptFormat)\#905D5D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/roseTaupe.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/roseTaupe.gif)Rose valeroseVale($inOptFormat)\#AB4E52[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/roseVale.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/roseVale.gif)Rosewoodrosewood($inOptFormat)\#65000B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rosewood.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rosewood.gif)Rosso corsarossoCorsa($inOptFormat)\#D40000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rossoCorsa.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rossoCorsa.gif)Rosy brownrosyBrown($inOptFormat)\#BC8F8F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rosyBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rosyBrown.gif)Royal azureroyalAzure($inOptFormat)\#0038A8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/royalAzure.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/royalAzure.gif)Royal blueroyalBlue($inOptFormat)\#4169E1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/royalBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/royalBlue.gif)Royal fuchsiaroyalFuchsia($inOptFormat)\#CA2C92[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/royalFuchsia.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/royalFuchsia.gif)Royal purpleroyalPurple($inOptFormat)\#7851A9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/royalPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/royalPurple.gif)Royal yellowroyalYellow($inOptFormat)\#FADA5E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/royalYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/royalYellow.gif)Ruberruber($inOptFormat)\#CE4676[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ruber.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ruber.gif)Rubine redrubineRed($inOptFormat)\#D10056[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rubineRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rubineRed.gif)Rubyruby($inOptFormat)\#E0115F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ruby.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ruby.gif)Ruby redrubyRed($inOptFormat)\#9B111E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rubyRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rubyRed.gif)Ruddyruddy($inOptFormat)\#FF0028[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ruddy.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ruddy.gif)Ruddy brownruddyBrown($inOptFormat)\#BB6528[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ruddyBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ruddyBrown.gif)Ruddy pinkruddyPink($inOptFormat)\#E18E96[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ruddyPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ruddyPink.gif)Rufousrufous($inOptFormat)\#A81C07[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rufous.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rufous.gif)Russetrusset($inOptFormat)\#80461B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/russet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/russet.gif)Russian greenrussianGreen($inOptFormat)\#679267[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/russianGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/russianGreen.gif)Russian violetrussianViolet($inOptFormat)\#32174D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/russianViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/russianViolet.gif)Rustrust($inOptFormat)\#B7410E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rust.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rust.gif)Rusty redrustyRed($inOptFormat)\#DA2C43[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/rustyRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/rustyRed.gif)Sacramento State greensacramentoStateGreen($inOptFormat)\#00563F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sacramentoStateGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sacramentoStateGreen.gif)Saddle brownsaddleBrown($inOptFormat)\#8B4513[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/saddleBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/saddleBrown.gif)Safety orangesafetyOrange($inOptFormat)\#FF7800[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/safetyOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/safetyOrange.gif)Safety orange (blaze orange)safetyOrangeBlazeOrange($inOptFormat)\#FF6700[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/safetyOrangeBlazeOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/safetyOrangeBlazeOrange.gif)Safety yellowsafetyYellow($inOptFormat)\#EED202[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/safetyYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/safetyYellow.gif)Saffronsaffron($inOptFormat)\#F4C430[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/saffron.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/saffron.gif)Sagesage($inOptFormat)\#BCB88A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sage.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sage.gif)Salmonsalmon($inOptFormat)\#FA8072[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/salmon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/salmon.gif)Salmon pinksalmonPink($inOptFormat)\#FF91A4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/salmonPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/salmonPink.gif)Sandsand($inOptFormat)\#C2B280[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sand.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sand.gif)Sand dunesandDune($inOptFormat)\#967117[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sandDune.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sandDune.gif)Sandstormsandstorm($inOptFormat)\#ECD540[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sandstorm.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sandstorm.gif)Sandy TansandyTan($inOptFormat)\#FDD9B5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sandyTan.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sandyTan.gif)Sandy brownsandyBrown($inOptFormat)\#F4A460[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sandyBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sandyBrown.gif)Sandy taupesandyTaupe($inOptFormat)\#967117[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sandyTaupe.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sandyTaupe.gif)Sangriasangria($inOptFormat)\#92000A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sangria.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sangria.gif)Sap greensapGreen($inOptFormat)\#507D2A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sapGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sapGreen.gif)Sapphiresapphire($inOptFormat)\#0F52BA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sapphire.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sapphire.gif)Sapphire bluesapphireBlue($inOptFormat)\#0067A5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sapphireBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sapphireBlue.gif)Sasquatch SockssasquatchSocks($inOptFormat)\#FF4681[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sasquatchSocks.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sasquatchSocks.gif)Satin sheen goldsatinSheenGold($inOptFormat)\#CBA135[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/satinSheenGold.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/satinSheenGold.gif)Scarletscarlet($inOptFormat)\#FD0E35[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/scarlet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/scarlet.gif)Schauss pinkschaussPink($inOptFormat)\#FF91AF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/schaussPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/schaussPink.gif)School bus yellowschoolBusYellow($inOptFormat)\#FFD800[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/schoolBusYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/schoolBusYellow.gif)Screamin' GreenscreaminGreen($inOptFormat)\#66FF66[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/screaminGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/screaminGreen.gif)Sea Foam GreenseaFoamGreen($inOptFormat)\#9FE2BF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/seaFoamGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/seaFoamGreen.gif)Sea SerpentseaSerpent($inOptFormat)\#4BC7CF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/seaSerpent.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/seaSerpent.gif)Sea blueseaBlue($inOptFormat)\#006994[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/seaBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/seaBlue.gif)Sea greenseaGreen($inOptFormat)\#2E8B57[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/seaGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/seaGreen.gif)Seal brownsealBrown($inOptFormat)\#59260B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sealBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sealBrown.gif)Seashellseashell($inOptFormat)\#FFF5EE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/seashell.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/seashell.gif)Selective yellowselectiveYellow($inOptFormat)\#FFBA00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/selectiveYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/selectiveYellow.gif)Sepiasepia($inOptFormat)\#704214[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sepia.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sepia.gif)Shadowshadow($inOptFormat)\#8A795D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/shadow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/shadow.gif)Shadow blueshadowBlue($inOptFormat)\#778BA5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/shadowBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/shadowBlue.gif)Shampooshampoo($inOptFormat)\#FFCFF1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/shampoo.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/shampoo.gif)Shamrock greenshamrockGreen($inOptFormat)\#009E60[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/shamrockGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/shamrockGreen.gif)Sheen GreensheenGreen($inOptFormat)\#8FD400[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sheenGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sheenGreen.gif)Shimmering BlushshimmeringBlush($inOptFormat)\#D98695[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/shimmeringBlush.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/shimmeringBlush.gif)Shiny ShamrockshinyShamrock($inOptFormat)\#5FA778[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/shinyShamrock.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/shinyShamrock.gif)Shocking pinkshockingPink($inOptFormat)\#FC0FC0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/shockingPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/shockingPink.gif)Shocking pink (Crayola)shockingPinkCrayola($inOptFormat)\#FF6FFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/shockingPinkCrayola.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/shockingPinkCrayola.gif)Siennasienna($inOptFormat)\#882D17[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sienna.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sienna.gif)Silversilver($inOptFormat)\#C0C0C0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/silver.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/silver.gif)Silver Lake bluesilverLakeBlue($inOptFormat)\#5D89BA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/silverLakeBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/silverLakeBlue.gif)Silver chalicesilverChalice($inOptFormat)\#ACACAC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/silverChalice.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/silverChalice.gif)Silver pinksilverPink($inOptFormat)\#C4AEAD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/silverPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/silverPink.gif)Silver sandsilverSand($inOptFormat)\#BFC1C2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/silverSand.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/silverSand.gif)Sinopiasinopia($inOptFormat)\#CB410B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sinopia.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sinopia.gif)Sizzling RedsizzlingRed($inOptFormat)\#FF3855[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sizzlingRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sizzlingRed.gif)Sizzling SunrisesizzlingSunrise($inOptFormat)\#FFDB00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sizzlingSunrise.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sizzlingSunrise.gif)Skobeloffskobeloff($inOptFormat)\#007474[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/skobeloff.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/skobeloff.gif)Sky blueskyBlue($inOptFormat)\#87CEEB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/skyBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/skyBlue.gif)Sky magentaskyMagenta($inOptFormat)\#CF71AF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/skyMagenta.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/skyMagenta.gif)Slate blueslateBlue($inOptFormat)\#6A5ACD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/slateBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/slateBlue.gif)Slate grayslateGray($inOptFormat)\#708090[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/slateGray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/slateGray.gif)Slimy GreenslimyGreen($inOptFormat)\#299617[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/slimyGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/slimyGreen.gif)Smalt (Dark powder blue)smaltDarkPowderBlue($inOptFormat)\#003399[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/smaltDarkPowderBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/smaltDarkPowderBlue.gif)Smashed PumpkinsmashedPumpkin($inOptFormat)\#FF6D3A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/smashedPumpkin.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/smashedPumpkin.gif)Smittensmitten($inOptFormat)\#C84186[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/smitten.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/smitten.gif)Smokesmoke($inOptFormat)\#738276[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/smoke.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/smoke.gif)Smokey TopazsmokeyTopaz($inOptFormat)\#832A0D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/smokeyTopaz.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/smokeyTopaz.gif)Smoky TopazsmokyTopaz($inOptFormat)\#933D41[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/smokyTopaz.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/smokyTopaz.gif)Smoky blacksmokyBlack($inOptFormat)\#100C08[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/smokyBlack.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/smokyBlack.gif)Snowsnow($inOptFormat)\#FFFAFA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/snow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/snow.gif)Soapsoap($inOptFormat)\#CEC8EF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/soap.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/soap.gif)Solid pinksolidPink($inOptFormat)\#893843[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/solidPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/solidPink.gif)Sonic silversonicSilver($inOptFormat)\#757575[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sonicSilver.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sonicSilver.gif)Space cadetspaceCadet($inOptFormat)\#1D2951[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/spaceCadet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/spaceCadet.gif)Spanish bistrespanishBistre($inOptFormat)\#807532[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/spanishBistre.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/spanishBistre.gif)Spanish bluespanishBlue($inOptFormat)\#0070B8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/spanishBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/spanishBlue.gif)Spanish carminespanishCarmine($inOptFormat)\#D10047[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/spanishCarmine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/spanishCarmine.gif)Spanish crimsonspanishCrimson($inOptFormat)\#E51A4C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/spanishCrimson.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/spanishCrimson.gif)Spanish grayspanishGray($inOptFormat)\#989898[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/spanishGray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/spanishGray.gif)Spanish greenspanishGreen($inOptFormat)\#009150[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/spanishGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/spanishGreen.gif)Spanish orangespanishOrange($inOptFormat)\#E86100[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/spanishOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/spanishOrange.gif)Spanish pinkspanishPink($inOptFormat)\#F7BFBE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/spanishPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/spanishPink.gif)Spanish redspanishRed($inOptFormat)\#E60026[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/spanishRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/spanishRed.gif)Spanish sky bluespanishSkyBlue($inOptFormat)\#00FFFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/spanishSkyBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/spanishSkyBlue.gif)Spanish violetspanishViolet($inOptFormat)\#4C2882[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/spanishViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/spanishViolet.gif)Spanish viridianspanishViridian($inOptFormat)\#007F5C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/spanishViridian.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/spanishViridian.gif)Spartan CrimsonspartanCrimson($inOptFormat)\#9E1316[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/spartanCrimson.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/spartanCrimson.gif)Spicy mixspicyMix($inOptFormat)\#8B5f4D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/spicyMix.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/spicyMix.gif)Spiro Disco BallspiroDiscoBall($inOptFormat)\#0FC0FC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/spiroDiscoBall.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/spiroDiscoBall.gif)Spring FrostspringFrost($inOptFormat)\#87FF2A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/springFrost.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/springFrost.gif)Spring budspringBud($inOptFormat)\#A7FC00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/springBud.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/springBud.gif)Spring greenspringGreen($inOptFormat)\#00FF7F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/springGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/springGreen.gif)St. Patrick's bluestPatricksBlue($inOptFormat)\#23297A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/stPatricksBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/stPatricksBlue.gif)Star command bluestarCommandBlue($inOptFormat)\#007BB8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/starCommandBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/starCommandBlue.gif)Steel TealsteelTeal($inOptFormat)\#5F8A8B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/steelTeal.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/steelTeal.gif)Steel bluesteelBlue($inOptFormat)\#4682B4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/steelBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/steelBlue.gif)Steel pinksteelPink($inOptFormat)\#CC33CC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/steelPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/steelPink.gif)Stil de grain yellowstilDeGrainYellow($inOptFormat)\#FADA5E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/stilDeGrainYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/stilDeGrainYellow.gif)Stizzastizza($inOptFormat)\#990000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/stizza.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/stizza.gif)Stormcloudstormcloud($inOptFormat)\#4F666A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/stormcloud.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/stormcloud.gif)Strawstraw($inOptFormat)\#E4D96F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/straw.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/straw.gif)Strawberrystrawberry($inOptFormat)\#FC5A8D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/strawberry.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/strawberry.gif)Sugar PlumsugarPlum($inOptFormat)\#914E75[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sugarPlum.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sugarPlum.gif)Sunburnt CyclopssunburntCyclops($inOptFormat)\#FF404C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sunburntCyclops.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sunburntCyclops.gif)Sunglowsunglow($inOptFormat)\#FFCC33[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sunglow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sunglow.gif)Sunnysunny($inOptFormat)\#F2F27A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sunny.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sunny.gif)Sunraysunray($inOptFormat)\#E3AB57[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sunray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sunray.gif)Sunsetsunset($inOptFormat)\#FAD6A5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sunset.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sunset.gif)Sunset orangesunsetOrange($inOptFormat)\#FD5E53[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sunsetOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sunsetOrange.gif)Super pinksuperPink($inOptFormat)\#CF6BA9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/superPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/superPink.gif)Sweet BrownsweetBrown($inOptFormat)\#A83731[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/sweetBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/sweetBrown.gif)Tantan($inOptFormat)\#D2B48C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tan.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tan.gif)Tangelotangelo($inOptFormat)\#F94D00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tangelo.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tangelo.gif)Tangerinetangerine($inOptFormat)\#F28500[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tangerine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tangerine.gif)Tangerine yellowtangerineYellow($inOptFormat)\#FFCC00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tangerineYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tangerineYellow.gif)Tango pinktangoPink($inOptFormat)\#E4717A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tangoPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tangoPink.gif)Tart OrangetartOrange($inOptFormat)\#FB4D46[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tartOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tartOrange.gif)Taupetaupe($inOptFormat)\#483C32[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/taupe.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/taupe.gif)Taupe graytaupeGray($inOptFormat)\#8B8589[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/taupeGray.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/taupeGray.gif)Tea greenteaGreen($inOptFormat)\#D0F0C0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/teaGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/teaGreen.gif)Tea roseteaRose($inOptFormat)\#F4C2C2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/teaRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/teaRose.gif)Tealteal($inOptFormat)\#008080[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/teal.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/teal.gif)Teal bluetealBlue($inOptFormat)\#367588[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tealBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tealBlue.gif)Teal deertealDeer($inOptFormat)\#99E6B3[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tealDeer.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tealDeer.gif)Teal greentealGreen($inOptFormat)\#00827F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tealGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tealGreen.gif)Telemagentatelemagenta($inOptFormat)\#CF3476[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/telemagenta.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/telemagenta.gif)Tennétenné($inOptFormat)\#CD5700[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tenn%C3%A9.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tenn%C3%A9.gif)Terra cottaterraCotta($inOptFormat)\#E2725B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/terraCotta.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/terraCotta.gif)Thistlethistle($inOptFormat)\#D8BFD8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/thistle.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/thistle.gif)Thulian pinkthulianPink($inOptFormat)\#DE6FA1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/thulianPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/thulianPink.gif)Tickle Me PinktickleMePink($inOptFormat)\#FC89AC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tickleMePink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tickleMePink.gif)Tiffany BluetiffanyBlue($inOptFormat)\#0ABAB5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tiffanyBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tiffanyBlue.gif)Tiger's eyetigersEye($inOptFormat)\#E08D3C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tigersEye.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tigersEye.gif)Timberwolftimberwolf($inOptFormat)\#DBD7D2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/timberwolf.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/timberwolf.gif)Titanium yellowtitaniumYellow($inOptFormat)\#EEE600[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/titaniumYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/titaniumYellow.gif)Tomatotomato($inOptFormat)\#FF6347[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tomato.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tomato.gif)Toolboxtoolbox($inOptFormat)\#746CC0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/toolbox.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/toolbox.gif)Topaztopaz($inOptFormat)\#FFC87C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/topaz.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/topaz.gif)Tractor redtractorRed($inOptFormat)\#FD0E35[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tractorRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tractorRed.gif)Trolley GreytrolleyGrey($inOptFormat)\#808080[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/trolleyGrey.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/trolleyGrey.gif)Tropical rain foresttropicalRainForest($inOptFormat)\#00755E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tropicalRainForest.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tropicalRainForest.gif)Tropical violettropicalViolet($inOptFormat)\#CDA4DE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tropicalViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tropicalViolet.gif)True BluetrueBlue($inOptFormat)\#0073CF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/trueBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/trueBlue.gif)Tufts BluetuftsBlue($inOptFormat)\#417DC1[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tuftsBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tuftsBlue.gif)Tuliptulip($inOptFormat)\#FF878D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tulip.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tulip.gif)Tumbleweedtumbleweed($inOptFormat)\#DEAA88[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tumbleweed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tumbleweed.gif)Turkish roseturkishRose($inOptFormat)\#B57281[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/turkishRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/turkishRose.gif)Turquoiseturquoise($inOptFormat)\#40E0D0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/turquoise.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/turquoise.gif)Turquoise SurfturquoiseSurf($inOptFormat)\#00C5CD[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/turquoiseSurf.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/turquoiseSurf.gif)Turquoise blueturquoiseBlue($inOptFormat)\#00FFEF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/turquoiseBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/turquoiseBlue.gif)Turquoise greenturquoiseGreen($inOptFormat)\#A0D6B4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/turquoiseGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/turquoiseGreen.gif)Turtle greenturtleGreen($inOptFormat)\#8A9A5B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/turtleGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/turtleGreen.gif)Tuscantuscan($inOptFormat)\#FAD6A5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tuscan.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tuscan.gif)Tuscan browntuscanBrown($inOptFormat)\#6F4E37[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tuscanBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tuscanBrown.gif)Tuscan redtuscanRed($inOptFormat)\#7C4848[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tuscanRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tuscanRed.gif)Tuscan tantuscanTan($inOptFormat)\#A67B5B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tuscanTan.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tuscanTan.gif)Tuscanytuscany($inOptFormat)\#C09999[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tuscany.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tuscany.gif)Twilight lavendertwilightLavender($inOptFormat)\#8A496B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/twilightLavender.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/twilightLavender.gif)Tyrian purpletyrianPurple($inOptFormat)\#66023C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/tyrianPurple.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/tyrianPurple.gif)UA blueuaBlue($inOptFormat)\#0033AA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/uaBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/uaBlue.gif)UA reduaRed($inOptFormat)\#D9004C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/uaRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/uaRed.gif)UCLA BlueuclaBlue($inOptFormat)\#536895[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/uclaBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/uclaBlue.gif)UCLA GolduclaGold($inOptFormat)\#FFB300[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/uclaGold.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/uclaGold.gif)UFO GreenufoGreen($inOptFormat)\#3CD070[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ufoGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ufoGreen.gif)UP Forest greenupForestGreen($inOptFormat)\#014421[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/upForestGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/upForestGreen.gif)UP MaroonupMaroon($inOptFormat)\#7B1113[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/upMaroon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/upMaroon.gif)USAFA blueusafaBlue($inOptFormat)\#004F98[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/usafaBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/usafaBlue.gif)USC CardinaluscCardinal($inOptFormat)\#990000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/uscCardinal.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/uscCardinal.gif)USC GolduscGold($inOptFormat)\#FFCC00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/uscGold.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/uscGold.gif)Ubeube($inOptFormat)\#8878C3[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ube.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ube.gif)Ultra pinkultraPink($inOptFormat)\#FF6FFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ultraPink.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ultraPink.gif)Ultra redultraRed($inOptFormat)\#FC6C85[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ultraRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ultraRed.gif)Ultramarineultramarine($inOptFormat)\#3F00FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ultramarine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ultramarine.gif)Ultramarine blueultramarineBlue($inOptFormat)\#4166F5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/ultramarineBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/ultramarineBlue.gif)Umberumber($inOptFormat)\#635147[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/umber.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/umber.gif)Unbleached silkunbleachedSilk($inOptFormat)\#FFDDCA[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/unbleachedSilk.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/unbleachedSilk.gif)United Nations blueunitedNationsBlue($inOptFormat)\#5B92E5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/unitedNationsBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/unitedNationsBlue.gif)University of California GolduniversityOfCaliforniaGold($inOptFormat)\#B78727[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/universityOfCaliforniaGold.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/universityOfCaliforniaGold.gif)University of Tennessee OrangeuniversityOfTennesseeOrange($inOptFormat)\#F77F00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/universityOfTennesseeOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/universityOfTennesseeOrange.gif)Unmellow yellowunmellowYellow($inOptFormat)\#FFFF66[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/unmellowYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/unmellowYellow.gif)Upsdell redupsdellRed($inOptFormat)\#AE2029[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/upsdellRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/upsdellRed.gif)Urobilinurobilin($inOptFormat)\#E1AD21[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/urobilin.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/urobilin.gif)Utah CrimsonutahCrimson($inOptFormat)\#D3003F[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/utahCrimson.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/utahCrimson.gif)Van Dyke BrownvanDykeBrown($inOptFormat)\#664228[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vanDykeBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vanDykeBrown.gif)Vanillavanilla($inOptFormat)\#F3E5AB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vanilla.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vanilla.gif)Vanilla icevanillaIce($inOptFormat)\#F38FA9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vanillaIce.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vanillaIce.gif)Vegas goldvegasGold($inOptFormat)\#C5B358[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vegasGold.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vegasGold.gif)Venetian redvenetianRed($inOptFormat)\#C80815[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/venetianRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/venetianRed.gif)Verdigrisverdigris($inOptFormat)\#43B3AE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/verdigris.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/verdigris.gif)Vermilionvermilion($inOptFormat)\#D9381E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vermilion.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vermilion.gif)Veronicaveronica($inOptFormat)\#A020F0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/veronica.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/veronica.gif)Very light azureveryLightAzure($inOptFormat)\#74BBFB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/veryLightAzure.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/veryLightAzure.gif)Very light blueveryLightBlue($inOptFormat)\#6666FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/veryLightBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/veryLightBlue.gif)Very light malachite greenveryLightMalachiteGreen($inOptFormat)\#64E986[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/veryLightMalachiteGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/veryLightMalachiteGreen.gif)Very light tangeloveryLightTangelo($inOptFormat)\#FFB077[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/veryLightTangelo.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/veryLightTangelo.gif)Very pale orangeveryPaleOrange($inOptFormat)\#FFDFBF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/veryPaleOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/veryPaleOrange.gif)Very pale yellowveryPaleYellow($inOptFormat)\#FFFFBF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/veryPaleYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/veryPaleYellow.gif)Violetviolet($inOptFormat)\#8F00FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/violet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/violet.gif)Violet (RYB)violetRyb($inOptFormat)\#8601AF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/violetRyb.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/violetRyb.gif)Violet (color wheel)violetColorWheel($inOptFormat)\#7F00FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/violetColorWheel.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/violetColorWheel.gif)Violet (web)violetWeb($inOptFormat)\#EE82EE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/violetWeb.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/violetWeb.gif)Violet-bluevioletBlue($inOptFormat)\#324AB2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/violetBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/violetBlue.gif)Violet-redvioletRed($inOptFormat)\#F75394[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/violetRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/violetRed.gif)Viridianviridian($inOptFormat)\#40826D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/viridian.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/viridian.gif)Viridian greenviridianGreen($inOptFormat)\#009698[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/viridianGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/viridianGreen.gif)Vista bluevistaBlue($inOptFormat)\#7C9ED9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vistaBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vistaBlue.gif)Vivid ambervividAmber($inOptFormat)\#CC9900[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividAmber.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividAmber.gif)Vivid auburnvividAuburn($inOptFormat)\#922724[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividAuburn.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividAuburn.gif)Vivid burgundyvividBurgundy($inOptFormat)\#9F1D35[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividBurgundy.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividBurgundy.gif)Vivid cerisevividCerise($inOptFormat)\#DA1D81[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividCerise.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividCerise.gif)Vivid ceruleanvividCerulean($inOptFormat)\#00AAEE[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividCerulean.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividCerulean.gif)Vivid crimsonvividCrimson($inOptFormat)\#CC0033[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividCrimson.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividCrimson.gif)Vivid gambogevividGamboge($inOptFormat)\#FF9900[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividGamboge.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividGamboge.gif)Vivid lime greenvividLimeGreen($inOptFormat)\#A6D608[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividLimeGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividLimeGreen.gif)Vivid malachitevividMalachite($inOptFormat)\#00CC33[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividMalachite.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividMalachite.gif)Vivid mulberryvividMulberry($inOptFormat)\#B80CE3[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividMulberry.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividMulberry.gif)Vivid orangevividOrange($inOptFormat)\#FF5F00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividOrange.gif)Vivid orange peelvividOrangePeel($inOptFormat)\#FFA000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividOrangePeel.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividOrangePeel.gif)Vivid orchidvividOrchid($inOptFormat)\#CC00FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividOrchid.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividOrchid.gif)Vivid raspberryvividRaspberry($inOptFormat)\#FF006C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividRaspberry.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividRaspberry.gif)Vivid redvividRed($inOptFormat)\#F70D1A[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividRed.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividRed.gif)Vivid red-tangelovividRedTangelo($inOptFormat)\#DF6124[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividRedTangelo.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividRedTangelo.gif)Vivid sky bluevividSkyBlue($inOptFormat)\#00CCFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividSkyBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividSkyBlue.gif)Vivid tangelovividTangelo($inOptFormat)\#F07427[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividTangelo.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividTangelo.gif)Vivid tangerinevividTangerine($inOptFormat)\#FFA089[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividTangerine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividTangerine.gif)Vivid vermilionvividVermilion($inOptFormat)\#E56024[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividVermilion.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividVermilion.gif)Vivid violetvividViolet($inOptFormat)\#9F00FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividViolet.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividViolet.gif)Vivid yellowvividYellow($inOptFormat)\#FFE302[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/vividYellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/vividYellow.gif)Voltvolt($inOptFormat)\#CEFF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/volt.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/volt.gif)Wageningen GreenwageningenGreen($inOptFormat)\#34B233[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/wageningenGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/wageningenGreen.gif)Warm blackwarmBlack($inOptFormat)\#004242[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/warmBlack.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/warmBlack.gif)Waterspoutwaterspout($inOptFormat)\#A4F4F9[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/waterspout.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/waterspout.gif)Weldon BlueweldonBlue($inOptFormat)\#7C98AB[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/weldonBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/weldonBlue.gif)Wengewenge($inOptFormat)\#645452[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/wenge.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/wenge.gif)Wheatwheat($inOptFormat)\#F5DEB3[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/wheat.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/wheat.gif)Whitewhite($inOptFormat)\#FFFFFF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/white.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/white.gif)White smokewhiteSmoke($inOptFormat)\#F5F5F5[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/whiteSmoke.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/whiteSmoke.gif)Wild StrawberrywildStrawberry($inOptFormat)\#FF43A4[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/wildStrawberry.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/wildStrawberry.gif)Wild blue yonderwildBlueYonder($inOptFormat)\#A2ADD0[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/wildBlueYonder.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/wildBlueYonder.gif)Wild orchidwildOrchid($inOptFormat)\#D470A2[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/wildOrchid.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/wildOrchid.gif)Wild watermelonwildWatermelon($inOptFormat)\#FC6C85[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/wildWatermelon.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/wildWatermelon.gif)Willpower orangewillpowerOrange($inOptFormat)\#FD5800[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/willpowerOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/willpowerOrange.gif)Windsor tanwindsorTan($inOptFormat)\#A75502[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/windsorTan.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/windsorTan.gif)Winewine($inOptFormat)\#722F37[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/wine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/wine.gif)Wine dregswineDregs($inOptFormat)\#673147[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/wineDregs.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/wineDregs.gif)Winter SkywinterSky($inOptFormat)\#FF007C[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/winterSky.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/winterSky.gif)Winter WizardwinterWizard($inOptFormat)\#A0E6FF[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/winterWizard.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/winterWizard.gif)Wintergreen DreamwintergreenDream($inOptFormat)\#56887D[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/wintergreenDream.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/wintergreenDream.gif)Wisteriawisteria($inOptFormat)\#C9A0DC[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/wisteria.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/wisteria.gif)Wood brownwoodBrown($inOptFormat)\#C19A6B[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/woodBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/woodBrown.gif)Xanaduxanadu($inOptFormat)\#738678[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/xanadu.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/xanadu.gif)Yale BlueyaleBlue($inOptFormat)\#0F4D92[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/yaleBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/yaleBlue.gif)Yankees blueyankeesBlue($inOptFormat)\#1C2841[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/yankeesBlue.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/yankeesBlue.gif)Yellowyellow($inOptFormat)\#FFFF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/yellow.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/yellow.gif)Yellow (Crayola)yellowCrayola($inOptFormat)\#FCE883[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/yellowCrayola.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/yellowCrayola.gif)Yellow (Munsell)yellowMunsell($inOptFormat)\#EFCC00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/yellowMunsell.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/yellowMunsell.gif)Yellow (NCS)yellowNcs($inOptFormat)\#FFD300[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/yellowNcs.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/yellowNcs.gif)Yellow (Pantone)yellowPantone($inOptFormat)\#FEDF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/yellowPantone.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/yellowPantone.gif)Yellow (RYB)yellowRyb($inOptFormat)\#FEFE33[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/yellowRyb.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/yellowRyb.gif)Yellow (process)yellowProcess($inOptFormat)\#FFEF00[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/yellowProcess.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/yellowProcess.gif)Yellow OrangeyellowOrange($inOptFormat)\#FFAE42[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/yellowOrange.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/yellowOrange.gif)Yellow SunshineyellowSunshine($inOptFormat)\#FFF700[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/yellowSunshine.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/yellowSunshine.gif)Yellow roseyellowRose($inOptFormat)\#FFF000[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/yellowRose.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/yellowRose.gif)Yellow-greenyellowGreen($inOptFormat)\#9ACD32[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/yellowGreen.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/yellowGreen.gif)Zaffrezaffre($inOptFormat)\#0014A8[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/zaffre.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/zaffre.gif)Zinnwaldite brownzinnwalditeBrown($inOptFormat)\#2C1608[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/zinnwalditeBrown.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/zinnwalditeBrown.gif)Zompzomp($inOptFormat)\#39A78E[![Sample](https://github.com/dbeurive/color-picker/raw/master/doc/images/zomp.gif)](https://github.com/dbeurive/color-picker/blob/master/doc/images/zomp.gif)

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

4

Last Release

3565d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/18211524?v=4)[Denis BEURIVE](/maintainers/dbeurive)[@dbeurive](https://github.com/dbeurive)

---

Top Contributors

[![dbeurive](https://avatars.githubusercontent.com/u/18211524?v=4)](https://github.com/dbeurive "dbeurive (9 commits)")

---

Tags

color

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/dbeurive-color/health.svg)

```
[![Health](https://phpackages.com/badges/dbeurive-color/health.svg)](https://phpackages.com/packages/dbeurive-color)
```

###  Alternatives

[spatie/color

A little library to handle color conversions

38220.5M34](/packages/spatie-color)[mexitek/phpcolors

A series of methods that let you manipulate colors. Just incase you ever need different shades of one color on the fly.

4993.8M20](/packages/mexitek-phpcolors)[mistic100/randomcolor

Generate attractive random colors

2411.5M6](/packages/mistic100-randomcolor)[ozdemirburak/iris

PHP library for color manipulation and conversion.

1201.8M20](/packages/ozdemirburak-iris)[kartik-v/yii2-widget-colorinput

An enhanced Yii 2 widget encapsulating the HTML 5 color input (sub repo split from yii2-widgets)

325.0M10](/packages/kartik-v-yii2-widget-colorinput)[ssnepenthe/color-utils

A PHP library for performing SASS-like color manipulations.

631.2M16](/packages/ssnepenthe-color-utils)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
