Color-Library-0.021000755000765000024 011667760546 13264 5ustar00robstaff000000000000README100644000765000024 1305611667760546 14252 0ustar00robstaff000000000000Color-Library-0.021NAME Color::Library - An easy-to-use and comprehensive named-color library VERSION version 0.021 SYNOPSIS use Color::Library; # Search for a sea blue color my $seablue = Color::Library->color("seablue"); # Search for a grey73 in the 'svg' and 'x11' dictionaries only my $grey73 = Color::Library->colour([qw/svg x11/] => "grey73"); # Find a bunch of colors at the same time my ($red, $green, $blue) = Color::Library->colors(qw/red green blue/); # Fetch the named color "aliceblue" from the SVG dictionary my $color = Color::Library->SVG->color("aliceblue"); # Prints out "aliceblue is #ff08ff" print $color->name, "is ", $color, "\n"; # Get a list of names in the svg dictionary my @names = Color::Library->SVG->names; # Get a list of colors in the x11 dictionary my @colors = Color::Library->dictionary('x11')->colors; DESCRIPTION Color::Library is an easy-to-use and comprehensive named-color dictionary. Currently provides coverage for www (svg, html, css) colors, x11 colors, and more. DICTIONARIES The following dictionaries are available in this distribution: Color::Library::Dictionary::SVG - Colors from the SVG specification Color::Library::Dictionary::X11 - Colors for the X11 Window System (rgb.txt) Color::Library::Dictionary::HTML - Colors from the HTML 4.0 specification Color::Library::Dictionary::IE - Colors recognized by Internet Explorer Color::Library::Dictionary::Mozilla - Colors recognized by Mozilla (ColorNames.txt) Color::Library::Dictionary::Netscape - Colors recognized by Netscape Color::Library::Dictionary::Windows - Colors from the Windows system palette Color::Library::Dictionary::VACCC - VisiBone Anglo-Centric Color Code Color::Library::Dictionary::NBS_ISCC - Centroids of the NBS/ISCC catalog Color::Library::Dictionary::NBS_ISCC::A - Dye Colors Color::Library::Dictionary::NBS_ISCC::B - Colour Terminology in Biology Color::Library::Dictionary::NBS_ISCC::F - Colors; (for) Ready-Mixed Paints Color::Library::Dictionary::NBS_ISCC::H - Horticultural Colour Charts Color::Library::Dictionary::NBS_ISCC::M - Dictionary of Color Color::Library::Dictionary::NBS_ISCC::P - Plochere Color System Color::Library::Dictionary::NBS_ISCC::R - Color Standards and Color Nomenclature Color::Library::Dictionary::NBS_ISCC::RC - Rock-Color Chart Color::Library::Dictionary::NBS_ISCC::S - Postage-Stamp Color Names Color::Library::Dictionary::NBS_ISCC::SC - Soil Color Charts Color::Library::Dictionary::NBS_ISCC::TC - Standard Color Card of America You can see a list of colors in any of these by reading their perldoc. For example: perldoc Color::Library::Dictionary::VACCC If you have any suggestions for more color dictionaries to integrate, contact me. METHODS $dictionary = Color::Library->dictionary( ) Returns a Color::Library::Dictionary object corresponding to @dictionaries = Color::Library->dictionaries @dictionaries = Color::Library->dictionaries( , , ... ) $dictionaries = Color::Library->dictionaries( , , ... ) In list context, returns a list of Color::Library::Dictionary objects (for each passed in In scalar context, returns a hash of Color::Library::Dictionary objects mapping a dictionary id to a dictionary When called without arguments, the method will return all dictionaries $color = Color::Library->color( ) Returns a Color::Library::Color object found via A query can be any of the following: color name A color name is like "blue" or "bleached-almond" color title A color title is like "Dark Green-Teal" color id A color id is in the form of :, for example: "x11:azure1" color( , , ... ) In list context, returns a list of Color::Library::Color objects corresponding to each In scalar context, just returns the first color( , , ... ) If an array reference is passed as the first argument, then this indicates that the array is a list of dictionary ids to search through (in order): # Search in the svg and x11 dictionaries for a match my $blue = Color::Library->color([qw/svg x11/], "blue"); # Will not find "aquamarine1" in the svg dictionary, so it will try the x11 dictionary my $aquamarine1 = Color::Library->color([qw/svg x11/], "aquamarine1"); $color = Color::Library->colors $color = Color::Library->colour $color = Color::Library->colours All are aliases for the above color method ABOUT This package was inspired by Graphics::ColorNames, and covers much of the same ground. However, I found the Graphics::ColorNames interface difficult to use. I also wanted to list colors directly in the perldoc, which this package does. SEE ALSO Graphics::ColorNames AUTHOR Robert Krimen COPYRIGHT AND LICENSE This software is copyright (c) 2011 by Robert Krimen. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. Changes100644000765000024 107111667760546 14637 0ustar00robstaff000000000000Color-Library-0.021TODO: - Accept rgb of the style 0.0 - 1.0, etc. - Add missing colors to the Windows dictionary (cream, etc) 0.021 Wednesday December 07 13:50:46 PST 2011: - Fix rt68650 - Convert to Dist::Zilla 0.020 Monday October 01 02:34:42 PDT 2007: - Added the Tango color palette (http://tango.freedesktop.org) - Documentation touch-up - Fixed MANIFEST 0.011 Tuesday September 18 20:28:16 PDT 2007: - Documentation touch-up - Additional requirement of Class::Accessor::Fast and Class::Data::Inheritable 0.010 Sunday September 09 21:52:18 PDT 2007: - Initial version META.yml100644000765000024 102511667760546 14614 0ustar00robstaff000000000000Color-Library-0.021--- abstract: 'An easy-to-use and comprehensive named-color library' author: - 'Robert Krimen ' build_requires: Test::Most: 0 configure_requires: ExtUtils::MakeMaker: 6.30 dynamic_config: 0 generated_by: 'Dist::Zilla version 4.300003, CPAN::Meta::Converter version 2.112150' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: 1.4 name: Color-Library requires: Class::Accessor::Fast: 0 Class::Data::Inheritable: 0 Module::Pluggable: 0 version: 0.021 MANIFEST100644000765000024 203511667760546 14476 0ustar00robstaff000000000000Color-Library-0.021Changes MANIFEST META.yml Makefile.PL README lib/Color/Library.pm lib/Color/Library/Color.pm lib/Color/Library/Dictionary.pm lib/Color/Library/Dictionary/HTML.pm lib/Color/Library/Dictionary/IE.pm lib/Color/Library/Dictionary/Mozilla.pm lib/Color/Library/Dictionary/NBS_ISCC.pm lib/Color/Library/Dictionary/NBS_ISCC/A.pm lib/Color/Library/Dictionary/NBS_ISCC/B.pm lib/Color/Library/Dictionary/NBS_ISCC/F.pm lib/Color/Library/Dictionary/NBS_ISCC/H.pm lib/Color/Library/Dictionary/NBS_ISCC/M.pm lib/Color/Library/Dictionary/NBS_ISCC/P.pm lib/Color/Library/Dictionary/NBS_ISCC/R.pm lib/Color/Library/Dictionary/NBS_ISCC/RC.pm lib/Color/Library/Dictionary/NBS_ISCC/S.pm lib/Color/Library/Dictionary/NBS_ISCC/SC.pm lib/Color/Library/Dictionary/NBS_ISCC/TC.pm lib/Color/Library/Dictionary/Netscape.pm lib/Color/Library/Dictionary/SVG.pm lib/Color/Library/Dictionary/Tango.pm lib/Color/Library/Dictionary/VACCC.pm lib/Color/Library/Dictionary/WWW.pm lib/Color/Library/Dictionary/Windows.pm lib/Color/Library/Dictionary/X11.pm t/01-Color-Library.t t/9-rt6850.t Makefile.PL100644000765000024 213611667760546 15321 0ustar00robstaff000000000000Color-Library-0.021 use strict; use warnings; use ExtUtils::MakeMaker 6.30; my %WriteMakefileArgs = ( "ABSTRACT" => "An easy-to-use and comprehensive named-color library", "AUTHOR" => "Robert Krimen ", "BUILD_REQUIRES" => { "Test::Most" => 0 }, "CONFIGURE_REQUIRES" => { "ExtUtils::MakeMaker" => "6.30" }, "DISTNAME" => "Color-Library", "EXE_FILES" => [], "LICENSE" => "perl", "NAME" => "Color::Library", "PREREQ_PM" => { "Class::Accessor::Fast" => 0, "Class::Data::Inheritable" => 0, "Module::Pluggable" => 0 }, "VERSION" => "0.021", "test" => { "TESTS" => "t/*.t" } ); unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) { my $br = delete $WriteMakefileArgs{BUILD_REQUIRES}; my $pp = $WriteMakefileArgs{PREREQ_PM}; for my $mod ( keys %$br ) { if ( exists $pp->{$mod} ) { $pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod}; } else { $pp->{$mod} = $br->{$mod}; } } } delete $WriteMakefileArgs{CONFIGURE_REQUIRES} unless eval { ExtUtils::MakeMaker->VERSION(6.52) }; WriteMakefile(%WriteMakefileArgs); t000755000765000024 011667760546 13450 5ustar00robstaff000000000000Color-Library-0.0219-rt6850.t100644000765000024 12311667760546 15067 0ustar00robstaff000000000000Color-Library-0.021/tuse Test::Most; warning_is { eval { require Color::Library } } ""; done_testing; Color000755000765000024 011667760546 15031 5ustar00robstaff000000000000Color-Library-0.021/libLibrary.pm100644000765000024 1700011667760546 17151 0ustar00robstaff000000000000Color-Library-0.021/lib/Colorpackage Color::Library; { $Color::Library::VERSION = '0.021'; } # ABSTRACT: An easy-to-use and comprehensive named-color library use warnings; use strict; use Module::Pluggable search_path => 'Color::Library::Dictionary', sub_name => '_load_dictionaries', require => 1; use Color::Library::Dictionary; __PACKAGE__->_load_dictionaries; my %dictionary; sub _register_dictionary { my $self = shift; my $dictionary = shift; $dictionary{$dictionary->id} = $dictionary; } sub dictionary { my $self = shift; return ($self->dictionaries(shift))[0]; } sub dictionaries { my $self = shift; local @_ = keys %dictionary unless @_; @_ = map { Color::Library::Dictionary::_parse_id $_ } @_; if (wantarray) { return map { $_->_singleton } @dictionary{@_}; } else { my %_dictionary; @_dictionary{@_} = map { $_->_singleton } @dictionary{@_}; return \%_dictionary; } } # FUTURE Make this better my @dictionary_search_order = (qw/svg x11 html ie mozilla netscape windows vaccc nbs-iscc/, map { "nbs-iscc-$_" } qw/a b f h m p r rc s sc tc/); sub color { my $self = shift; my @colors; # Default dictionaries to search, in order my @dictionaries = @dictionary_search_order; # Can also pass in a default array of dictionary ids to search @dictionaries = @{ shift() } if ref $_[0] eq "ARRAY"; my $query_; for my $query (@_) { $query_ = $query; my @dictionaries = @dictionaries; if ($query =~ m/:/) { # Looks like the query contains at least one dictionary id my ($dictionaries, $name) = split m/:/, $query, 2; unless (defined $name) { $name = $dictionaries; undef $dictionaries } @dictionaries = split m/,/, $dictionaries if defined $dictionaries; $query_ = $name; } my $color; for my $dictionary_id (@dictionaries) { next unless my $dictionary = $self->dictionary($dictionary_id); last if $color = $dictionary->color($query_); } push @colors, $color; } return wantarray ? @colors : $colors[0]; } *colors = \&color; *colour = \&color; *colours = \&color; 1; __END__ =pod =head1 NAME Color::Library - An easy-to-use and comprehensive named-color library =head1 VERSION version 0.021 =head1 SYNOPSIS use Color::Library; # Search for a sea blue color my $seablue = Color::Library->color("seablue"); # Search for a grey73 in the 'svg' and 'x11' dictionaries only my $grey73 = Color::Library->colour([qw/svg x11/] => "grey73"); # Find a bunch of colors at the same time my ($red, $green, $blue) = Color::Library->colors(qw/red green blue/); # Fetch the named color "aliceblue" from the SVG dictionary my $color = Color::Library->SVG->color("aliceblue"); # Prints out "aliceblue is #ff08ff" print $color->name, "is ", $color, "\n"; # Get a list of names in the svg dictionary my @names = Color::Library->SVG->names; # Get a list of colors in the x11 dictionary my @colors = Color::Library->dictionary('x11')->colors; =head1 DESCRIPTION Color::Library is an easy-to-use and comprehensive named-color dictionary. Currently provides coverage for www (svg, html, css) colors, x11 colors, and more. =head1 DICTIONARIES The following dictionaries are available in this distribution: Color::Library::Dictionary::SVG - Colors from the SVG specification Color::Library::Dictionary::X11 - Colors for the X11 Window System (rgb.txt) Color::Library::Dictionary::HTML - Colors from the HTML 4.0 specification Color::Library::Dictionary::IE - Colors recognized by Internet Explorer Color::Library::Dictionary::Mozilla - Colors recognized by Mozilla (ColorNames.txt) Color::Library::Dictionary::Netscape - Colors recognized by Netscape Color::Library::Dictionary::Windows - Colors from the Windows system palette Color::Library::Dictionary::VACCC - VisiBone Anglo-Centric Color Code Color::Library::Dictionary::NBS_ISCC - Centroids of the NBS/ISCC catalog Color::Library::Dictionary::NBS_ISCC::A - Dye Colors Color::Library::Dictionary::NBS_ISCC::B - Colour Terminology in Biology Color::Library::Dictionary::NBS_ISCC::F - Colors; (for) Ready-Mixed Paints Color::Library::Dictionary::NBS_ISCC::H - Horticultural Colour Charts Color::Library::Dictionary::NBS_ISCC::M - Dictionary of Color Color::Library::Dictionary::NBS_ISCC::P - Plochere Color System Color::Library::Dictionary::NBS_ISCC::R - Color Standards and Color Nomenclature Color::Library::Dictionary::NBS_ISCC::RC - Rock-Color Chart Color::Library::Dictionary::NBS_ISCC::S - Postage-Stamp Color Names Color::Library::Dictionary::NBS_ISCC::SC - Soil Color Charts Color::Library::Dictionary::NBS_ISCC::TC - Standard Color Card of America You can see a list of colors in any of these by reading their perldoc. For example: perldoc Color::Library::Dictionary::VACCC If you have any suggestions for more color dictionaries to integrate, contact me. =head1 METHODS =over 4 =item $dictionary = Color::Library->dictionary( ) Returns a Color::Library::Dictionary object corresponding to =item @dictionaries = Color::Library->dictionaries =item @dictionaries = Color::Library->dictionaries( , , ... ) =item $dictionaries = Color::Library->dictionaries( , , ... ) In list context, returns a list of Color::Library::Dictionary objects (for each passed in In scalar context, returns a hash of Color::Library::Dictionary objects mapping a dictionary id to a dictionary When called without arguments, the method will return all dictionaries =item $color = Color::Library->color( ) Returns a Color::Library::Color object found via A query can be any of the following: =over 4 =item color name A color name is like C or C =item color title A color title is like C =item color id A color id is in the form of :, for example: C =back =item color( , , ... ) In list context, returns a list of Color::Library::Color objects corresponding to each In scalar context, just returns the first =item color( , , ... ) If an array reference is passed as the first argument, then this indicates that the array is a list of dictionary ids to search through (in order): # Search in the svg and x11 dictionaries for a match my $blue = Color::Library->color([qw/svg x11/], "blue"); # Will not find "aquamarine1" in the svg dictionary, so it will try the x11 dictionary my $aquamarine1 = Color::Library->color([qw/svg x11/], "aquamarine1"); =item $color = Color::Library->colors =item $color = Color::Library->colour =item $color = Color::Library->colours All are aliases for the above color method =back =head1 ABOUT This package was inspired by Graphics::ColorNames, and covers much of the same ground. However, I found the Graphics::ColorNames interface difficult to use. I also wanted to list colors directly in the perldoc, which this package does. =head1 SEE ALSO L =head1 AUTHOR Robert Krimen =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2011 by Robert Krimen. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut 01-Color-Library.t100644000765000024 767511667760546 16712 0ustar00robstaff000000000000Color-Library-0.021/t#use Test::More tests => 1; use Test::More; use Color::Library; my @dictionaries = Color::Library->dictionaries( qw/ svg x11 html ie mozilla netscape windows vaccc nbs-iscc /, map { "nbs-iscc-$_" } qw/ a b f h m p r rc s sc tc / ); sub has_color_count( $$ ) { my $dictionary = shift; my $expect = shift; ok( my @colors = $dictionary->colors ); ok( my @names = $dictionary->names ); is( @colors, $expect, "$dictionary has $expect colors" ); is( @names, $expect, "$dictionary has $expect names" ); } has_color_count( Color::Library->SVG, 148 ); has_color_count( Color::Library->X11, 760 ); has_color_count( Color::Library->HTML, 17 ); has_color_count( Color::Library->IE, 140 ); has_color_count( Color::Library->Mozilla, 146 ); has_color_count( Color::Library->Netscape, 100 ); has_color_count( Color::Library->Windows, 16 ); has_color_count( Color::Library->VACCC, 216 ); has_color_count( Color::Library->Tango, 27 ); has_color_count( Color::Library->NBS_ISCC, 267 ); has_color_count( Color::Library->NBS_ISCC->A, 349 ); has_color_count( Color::Library->NBS_ISCC->B, 788 ); has_color_count( Color::Library->NBS_ISCC->F, 218 ); has_color_count( Color::Library->NBS_ISCC->H, 261 ); has_color_count( Color::Library->NBS_ISCC->M, 4589 ); has_color_count( Color::Library->NBS_ISCC->P, 1623 ); has_color_count( Color::Library->NBS_ISCC->R, 1607 ); has_color_count( Color::Library->NBS_ISCC->RC, 120 ); has_color_count( Color::Library->NBS_ISCC->S, 965 ); has_color_count( Color::Library->NBS_ISCC->SC, 176 ); has_color_count( Color::Library->NBS_ISCC->TC, 268 ); has_color_count( Color::Library::Dictionary::SVG, 148 ); has_color_count( Color::Library::Dictionary::X11, 760 ); has_color_count( Color::Library::Dictionary::HTML, 17 ); has_color_count( Color::Library::Dictionary::IE, 140 ); has_color_count( Color::Library::Dictionary::Mozilla, 146 ); has_color_count( Color::Library::Dictionary::Netscape, 100 ); has_color_count( Color::Library::Dictionary::Windows, 16 ); has_color_count( Color::Library::Dictionary::VACCC, 216 ); has_color_count( Color::Library::Dictionary::Tango, 27 ); has_color_count( Color::Library::Dictionary::NBS_ISCC, 267 ); has_color_count( Color::Library::Dictionary::NBS_ISCC::A, 349 ); has_color_count( Color::Library::Dictionary::NBS_ISCC::B, 788 ); has_color_count( Color::Library::Dictionary::NBS_ISCC::F, 218 ); has_color_count( Color::Library::Dictionary::NBS_ISCC::H, 261 ); has_color_count( Color::Library::Dictionary::NBS_ISCC::M, 4589 ); has_color_count( Color::Library::Dictionary::NBS_ISCC::P, 1623 ); has_color_count( Color::Library::Dictionary::NBS_ISCC::R, 1607 ); has_color_count( Color::Library::Dictionary::NBS_ISCC::RC, 120 ); has_color_count( Color::Library::Dictionary::NBS_ISCC::S, 965 ); has_color_count( Color::Library::Dictionary::NBS_ISCC::SC, 176 ); has_color_count( Color::Library::Dictionary::NBS_ISCC::TC, 268 ); my $seablue = Color::Library->color( "seablue" ); ok( $seablue ); is( "$seablue", "#51585e" ); ok( $seablue->dictionary ); is( $seablue->dictionary->id, "nbs-iscc-f" ); ok( $seablue->value =~ qr/^\d+$/ ); is( ref $seablue->rgb, "ARRAY" ); is( @{ scalar $seablue->rgb }, 3 ); my $grey73 = Color::Library->colour( [qw/ svg x11 /] => "grey73" ); ok( $grey73 ); is( "$grey73", "#bababa" ); is( $grey73->dictionary->id, "x11" ); $seablue = Color::Library->colour( [qw/ svg x11 /] => "seablue" ); ok( !$seablue ); my ( $red, $green, $blue ) = Color::Library->colors(qw/ red x11:green blue /); ok( $red ); is( $red, "#ff0000" ); is( $red->dictionary->id, "svg" ); ok( $green ); is( $green, "#00ff00" ); is( $green->dictionary->id, "x11" ); ok( $blue ); is( $blue, "#0000ff" ); is( $blue->dictionary->id, "svg" ); my $color = Color::Library->SVG->color( "aliceblue" ); ok( $color ); is( "$color", "#f0f8ff" ); is( $color->dictionary->id, "svg" ); my @names = Color::Library->SVG->names; ok( @names ); is( @names, 148 ); my @colors = Color::Library->dictionary( 'x11' )->colors; ok( @colors ); is( @colors, 760 ); done_testing; Library000755000765000024 011667760546 16435 5ustar00robstaff000000000000Color-Library-0.021/lib/ColorColor.pm100644000765000024 1344611667760546 20241 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Librarypackage Color::Library::Color; use strict; use warnings; use base qw/Class::Accessor::Fast/; __PACKAGE__->mk_accessors(qw/_id _name _title _dictionary /); __PACKAGE__->mk_accessors(qw/_rgb _html _value _hex/); use overload '""' => \&html, fallback => 1, ; sub rgb; sub rgb2hex; sub rgb2value; sub value2rgb($); sub parse_rgb_color; sub integer2rgb($); =head1 NAME Color::Library::Color - Color entry for a Color::Library color dictionary =head1 METHODS =over 4 =item $id = $color->id Returns the id of the color A color id is in the format of , e.g. svg:aliceblue x11:bisque2 nbs-iscc-f:chromeyellow.66 vaccc:darkspringyellow =item $name = $color->name Returns the name of the color, e.g. aliceblue bisque2 chromeyellow darkspringyellow =item $title = $color->title Returns the title of the color, e.g. aliceblue bisque2 chrome yellow Dark Spring-Yellow =item $dictionary = $color->dictionary Returns the Color::Library::Dictionary object that the color belongs to =item $hex = $color->hex Returns the hex value of the color, e.g. ff08ff eed5b7 eaa221 669900 Note that $hex does NOT include the leading #, for that use $color->html, $color->css, or $color->svg =item $html = $color->html =item $css = $color->css =item $svg = $color->svg Returns the hex value of the color with a leading #, suitable for use in HTML, CSS, or SVG documents, e.g. #ff08ff #eed5b7 #eaa221 #669900 =cut =item $value = $color->value Returns the numeric value of the color, e.g. 15792383 15652279 15376929 6723840 =cut for my $method (qw/id name title dictionary html value hex/) { no strict 'refs'; my $accessor = "_$method"; *$method = sub { return $_[0]->$accessor }; } *css = \&html; *svg = \&html; =item ($r, $g, $b) = $color->rgb Returns r, g, and b values of the color as a 3 element list (list context), e.g. (240, 248, 255) =item $rgb = $color->rgb Returns r, g, and b values of the color in a 3 element array (scalar context), e.g. [ 240, 248, 255 ] =cut sub rgb { return wantarray ? @{ $_[0]->_rgb } : [ @{ $_[0]->_rgb } ] } =item $color = Color::Library::Color->new( id => $id, name => $name, title => $title, value => $value ) =item $color = Color::Library::Color->new( { id => $id, name => $name, title => $title, value => $value } ) =item $color = Color::Library::Color->new( [[ $id, $name, $title, $rgb, $hex, $value ]] ) Returns a new Color::Library::Color object representing the specified color You probably don't want/need to call this yourself =cut # FUTURE Note that $value may be a numeric value, a hex value, or a 3 element r-g-b array sub new { my $self = bless {}, shift; if (ref $_[0] eq "ARRAY") { my ($id, $name, $title, $rgb, $hex, $value) = @{ shift() }; $self->_id($id); $self->_name($name); $self->_title($title); $self->_rgb($rgb); $self->_hex($hex); $self->_html("#" . $hex); $self->_value($value); $self->_dictionary(shift); } else { local %_ = ref $_[0] eq "HASH" ? %{ $_[0] } : @_; $self->_id($_{id}); $self->_name($_{name}); $self->_title($_{title}); $self->_dictionary($_{dictionary}); my ($r, $g, $b) = parse_rgb_color(ref $_{value} eq "ARRAY" ? @{ $_{value} } : $_{value}); my $rgb = $self->_rgb([ $r, $g, $b ]); my $hex = $self->_hex(rgb2hex $rgb); $self->_html("#" . $hex); $self->_value(rgb2value $rgb); } return $self; } =back =head2 FUNCTIONS =over 4 =item $hex = Color::Library::Color::rgb2hex( $rgb ) =item $hex = Color::Library::Color::rgb2hex( $r, $g, $b ) Converts an rgb value to its hex representation =cut sub rgb2hex { return ref $_[0] eq "ARRAY" ? sprintf("%02lx%02lx%02lx", $_[0][0], $_[0][1], $_[0][2]) : sprintf("%02lx%02lx%02lx", $_[0], $_[1], $_[2]); } =item $value = Color::Library::Color::rgb2value( $rgb ) =item $value = Color::Library::Color::rgb2value( $r, $g, $b ) Converts an rgb value to its numeric representation =cut sub rgb2value { my ($r, $g, $b) = ref $_[0] eq "ARRAY" ? @{ $_[0] } : @_; return $b + ($g << 8) + ($r << 16); } =item $rgb = Color::Library::Color::value2rgb( $value ) =item ($r, $g, $b) = Color::Library::Color::value2rgb( $value ) Converts a numeric color value to its rgb representation =cut sub value2rgb($) { my $value = shift; my ($r, $g, $b); $b = ($value & 0x0000ff); $g = ($value & 0x00ff00) >> 8; $r = ($value & 0xff0000) >> 16; return wantarray ? ($r, $g, $b) : [ $r, $g, $b ]; } =item ($r, $g, $b) = Color::Library::Color::parse_rgb_color( $hex ) =item ($r, $g, $b) = Color::Library::Color::parse_rgb_color( $value ) Makes a best effort to convert a hex or numeric color value to its rgb representation =cut # Partly taken from Imager/Color.pm sub parse_rgb_color { return (@_) if @_ == 3 && ! grep /[^\d.+eE-]/, @_; if ($_[0] =~ /^\#?([\da-f][\da-f])([\da-f][\da-f])([\da-f][\da-f])$/i) { return (hex($1), hex($2), hex($3)); } if ($_[0] =~ /^\#?([\da-f])([\da-f])([\da-f])$/i) { return (hex($1) * 17, hex($2) * 17, hex($3) * 17); } return value2rgb $_[0] if 1 == @_ && $_[0] =~ m/^\d+$/; } 1; __END__ sub parse_rgbs_color { return (@_) if @_ == 3 && ! grep /[^\d.+eE-]/, @_; if ($_[0] =~ /^\#?([\da-f][\da-f])([\da-f][\da-f])([\da-f][\da-f])([\da-f][\da-f])/i) { return (hex($1), hex($2), hex($3), hex($4)); } if ($_[0] =~ /^\#?([\da-f][\da-f])([\da-f][\da-f])([\da-f][\da-f])/i) { return (hex($1), hex($2), hex($3), 255); } if ($_[0] =~ /^\#([\da-f])([\da-f])([\da-f])$/i) { return (hex($1) * 17, hex($2) * 17, hex($3) * 17, 255); } return value2rgb $_[0] if 1 == @_; } Dictionary.pm100644000765000024 1144111667760546 21261 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Librarypackage Color::Library::Dictionary; use strict; use warnings; use Color::Library; use Color::Library::Color; use base qw/Class::Data::Inheritable/; __PACKAGE__->mk_classdata($_) for qw/_self _compiled _color_list _index/; =head1 NAME Color::Library::Dictionary - Color dictionary for Color::Library =cut sub _register_dictionary { my $module = my $class = shift; my @module = split m/::/, $module; my @parent_module = @module; my $name = pop @parent_module; @parent_module = qw/Color Library/ if @parent_module == 3; # Color::Library::Dictionary my $parent_module = join "::", @parent_module; { no strict 'refs'; *{"$parent_module\::$name"} = sub { return $module->_singleton; }; } Color::Library->_register_dictionary($module); } sub _parse_id($) { my $id = shift; $id =~ s/::|_|\s+|\//-/g; $id = lc $id; $id =~ s/^color-library-dictionary-//g; return $id; } sub _singleton { my $class = shift; my $self; return $self if $self = $class->_self; $class->_self($self = bless {}, $class); return $self; } sub _compile { my $self = shift; my $class = ref $self || $self; return if $self->_compiled; my $color_list = $self->_load_color_list; my $index = {}; my @color_list; my $indice = 0; for my $color (@$color_list) { push @color_list, $color = Color::Library::Color->new($color, $self); $index->{id}->{$color->id} = $color; $index->{name}->{$color->name} = $color; $index->{title}->{$color->title} = $color; $index->{hex}->{$color->hex} = $color; $index->{value}->{$color->value} = $color; } $self->_index($index); $self->_color_list(\@color_list); $self->_compiled(1); } =head1 METHODS =over 4 =item @colors = $dictionary->colors Returns the list of Color::Library::Color objects contained by $dictionary Will return a list in list context, and a list reference in scalar context =cut sub colors { my $self = shift; $self->_compile unless $self->_compiled; my @colors = @{ $self->_color_list }; return wantarray ? @colors : \@colors; } =item @names = $dictionary->names =item @names = $dictionary->color_names Returns the list of color names contained by $dictionary Will return a list in list context, and a list reference in scalar context =cut sub names { my $self = shift; my @names = map { $_->name } $self->colors; return wantarray ? @names : \@names; } *color_names = \&names; =item $color = $dictionary->color( ) Returns a Color::Library::Color object of $dictionary found via A query can be any of the following: =over 4 =item color name A color name is like C or C =item color title A color title is like C =item color id A color id is in the form of :, for example: C =back =cut sub color { my $self = shift; my $query = shift; return unless defined $query; unless (ref $query) { $query =~ s/^\s*//; $query =~ s/\s*$//; } $self->_compile unless $self->_compiled; my $color; if (ref $query eq "ARRAY") { $query = Color::Library::Color::rgb2hex $query; return $color = $self->_index->{hex}->{$query}; } elsif ($query =~ /^\#?([\da-f][\da-f])([\da-f][\da-f])([\da-f][\da-f])/i) { return (hex($1), hex($2), hex($3), 255); $query = lc($1 . $2 . $3); return $color = $self->_index->{hex}->{$query}; } elsif ($query =~ /^\#([\da-f])([\da-f])([\da-f])$/i) { $query = lc($1 . $1 . $2 . $2 . $3 . $3); return $color = $self->_index->{hex}->{$query}; } return $color if $color = $self->_index->{title}->{$query}; $query = lc $query; return $color if $color = $self->_index->{id}->{$query}; $query =~ s/[^\w]//g; return $color if $color = $self->_index->{name}->{$query}; return $color if $color = $self->_index->{value}->{$query}; return; } =item $id = $dictionary->id =item $name = $dictionary->name Returns the id (name) of $dictionary, e.g. svg x11 vaccc nbs-iscc-f =cut sub id { my $self = shift; return _parse_id(ref $self || $self); } *name = \&id; =item $title = $dictionary->title Returns the title of $dictionary, e.g. SVG X11 VACCC NBS/ISCC F =cut sub title { my $self = shift; return $self->_description->{title}; } =item $subtitle = $dictionary->subtitle Returns the subtitle of $dictionary, if any =cut sub subtitle { my $self = shift; return $self->_description->{subtitle}; } =item $description = $dictionary->description Returns the description of $dictionary, if any =cut sub description { my $self = shift; return $self->_description->{description}; } 1; Dictionary000755000765000024 011667760546 20542 5ustar00robstaff000000000000Color-Library-0.021/lib/Color/LibraryIE.pm100644000765000024 4426011667760546 21563 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionarypackage Color::Library::Dictionary::IE; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::IE; =pod =head1 NAME Color::Library::Dictionary::IE - (IE) Colors recognized by Internet Explorer =head1 DESCRIPTION Internet Explorer supports a wide variety of named colors. Not all browsers support these additional named colors; therefore, when specifying color values for Web pages targeted to work across different browsers, use the RGB color values. L L =head1 COLORS aliceblue aliceblue #f0f8ff antiquewhite antiquewhite #faebd7 aqua aqua #00ffff aquamarine aquamarine #7fffd4 azure azure #f0ffff beige beige #f5f5dc bisque bisque #ffe4c4 black black #000000 blanchedalmond blanchedalmond #ffebcd blue blue #0000ff blueviolet blueviolet #8a2be2 brown brown #a52a2a burlywood burlywood #deb887 cadetblue cadetblue #5f9ea0 chartreuse chartreuse #7fff00 chocolate chocolate #d2691e coral coral #ff7f50 cornflowerblue cornflowerblue #6495ed cornsilk cornsilk #fff8dc crimson crimson #dc143c cyan cyan #00ffff darkblue darkblue #00008b darkcyan darkcyan #008b8b darkgoldenrod darkgoldenrod #b8860b darkgray darkgray #a9a9a9 darkgreen darkgreen #006400 darkkhaki darkkhaki #bdb76b darkmagenta darkmagenta #8b008b darkolivegreen darkolivegreen #556b2f darkorange darkorange #ff8c00 darkorchid darkorchid #9932cc darkred darkred #8b0000 darksalmon darksalmon #e9967a darkseagreen darkseagreen #8fbc8f darkslateblue darkslateblue #483d8b darkslategray darkslategray #2f4f4f darkturquoise darkturquoise #00ced1 darkviolet darkviolet #9400d3 deeppink deeppink #ff1493 deepskyblue deepskyblue #00bfff dimgray dimgray #696969 dodgerblue dodgerblue #1e90ff firebrick firebrick #b22222 floralwhite floralwhite #fffaf0 forestgreen forestgreen #228b22 fuchsia fuchsia #ff00ff gainsboro gainsboro #dcdcdc ghostwhite ghostwhite #f8f8ff gold gold #ffd700 goldenrod goldenrod #daa520 gray gray #808080 green green #008000 greenyellow greenyellow #adff2f honeydew honeydew #f0fff0 hotpink hotpink #ff69b4 indianred indianred #cd5c5c indigo indigo #4b0082 ivory ivory #fffff0 khaki khaki #f0e68c lavender lavender #e6e6fa lavenderblush lavenderblush #fff0f5 lawngreen lawngreen #7cfc00 lemonchiffon lemonchiffon #fffacd lightblue lightblue #add8e6 lightcoral lightcoral #f08080 lightcyan lightcyan #e0ffff lightgoldenrodyellow lightgoldenrodyellow #fafad2 lightgreen lightgreen #90ee90 lightgrey lightgrey #d3d3d3 lightpink lightpink #ffb6c1 lightsalmon lightsalmon #ffa07a lightseagreen lightseagreen #20b2aa lightskyblue lightskyblue #87cefa lightslategray lightslategray #778899 lightsteelblue lightsteelblue #b0c4de lightyellow lightyellow #ffffe0 lime lime #00ff00 limegreen limegreen #32cd32 linen linen #faf0e6 magenta magenta #ff00ff maroon maroon #800000 mediumaquamarine mediumaquamarine #66cdaa mediumblue mediumblue #0000cd mediumorchid mediumorchid #ba55d3 mediumpurple mediumpurple #9370db mediumseagreen mediumseagreen #3cb371 mediumslateblue mediumslateblue #7b68ee mediumspringgreen mediumspringgreen #00fa9a mediumturquoise mediumturquoise #48d1cc mediumvioletred mediumvioletred #c71585 midnightblue midnightblue #191970 mintcream mintcream #f5fffa mistyrose mistyrose #ffe4e1 moccasin moccasin #ffe4b5 navajowhite navajowhite #ffdead navy navy #000080 oldlace oldlace #fdf5e6 olive olive #808000 olivedrab olivedrab #6b8e23 orange orange #ffa500 orangered orangered #ff4500 orchid orchid #da70d6 palegoldenrod palegoldenrod #eee8aa palegreen palegreen #98fb98 paleturquoise paleturquoise #afeeee palevioletred palevioletred #db7093 papayawhip papayawhip #ffefd5 peachpuff peachpuff #ffdab9 peru peru #cd853f pink pink #ffc0cb plum plum #dda0dd powderblue powderblue #b0e0e6 purple purple #800080 red red #ff0000 rosybrown rosybrown #bc8f8f royalblue royalblue #4169e1 saddlebrown saddlebrown #8b4513 salmon salmon #fa8072 sandybrown sandybrown #f4a460 seagreen seagreen #2e8b57 seashell seashell #fff5ee sienna sienna #a0522d silver silver #c0c0c0 skyblue skyblue #87ceeb slateblue slateblue #6a5acd slategray slategray #708090 snow snow #fffafa springgreen springgreen #00ff7f steelblue steelblue #4682b4 tan tan #d2b48c teal teal #008080 thistle thistle #d8bfd8 tomato tomato #ff6347 turquoise turquoise #40e0d0 violet violet #ee82ee wheat wheat #f5deb3 white white #ffffff whitesmoke whitesmoke #f5f5f5 yellow yellow #ffff00 yellowgreen yellowgreen #9acd32 =cut sub _load_color_list() { return [ ['ie:aliceblue','aliceblue','aliceblue',[240,248,255],'f0f8ff',15792383], ['ie:antiquewhite','antiquewhite','antiquewhite',[250,235,215],'faebd7',16444375], ['ie:aqua','aqua','aqua',[0,255,255],'00ffff',65535], ['ie:aquamarine','aquamarine','aquamarine',[127,255,212],'7fffd4',8388564], ['ie:azure','azure','azure',[240,255,255],'f0ffff',15794175], ['ie:beige','beige','beige',[245,245,220],'f5f5dc',16119260], ['ie:bisque','bisque','bisque',[255,228,196],'ffe4c4',16770244], ['ie:black','black','black',[0,0,0],'000000',0], ['ie:blanchedalmond','blanchedalmond','blanchedalmond',[255,235,205],'ffebcd',16772045], ['ie:blue','blue','blue',[0,0,255],'0000ff',255], ['ie:blueviolet','blueviolet','blueviolet',[138,43,226],'8a2be2',9055202], ['ie:brown','brown','brown',[165,42,42],'a52a2a',10824234], ['ie:burlywood','burlywood','burlywood',[222,184,135],'deb887',14596231], ['ie:cadetblue','cadetblue','cadetblue',[95,158,160],'5f9ea0',6266528], ['ie:chartreuse','chartreuse','chartreuse',[127,255,0],'7fff00',8388352], ['ie:chocolate','chocolate','chocolate',[210,105,30],'d2691e',13789470], ['ie:coral','coral','coral',[255,127,80],'ff7f50',16744272], ['ie:cornflowerblue','cornflowerblue','cornflowerblue',[100,149,237],'6495ed',6591981], ['ie:cornsilk','cornsilk','cornsilk',[255,248,220],'fff8dc',16775388], ['ie:crimson','crimson','crimson',[220,20,60],'dc143c',14423100], ['ie:cyan','cyan','cyan',[0,255,255],'00ffff',65535], ['ie:darkblue','darkblue','darkblue',[0,0,139],'00008b',139], ['ie:darkcyan','darkcyan','darkcyan',[0,139,139],'008b8b',35723], ['ie:darkgoldenrod','darkgoldenrod','darkgoldenrod',[184,134,11],'b8860b',12092939], ['ie:darkgray','darkgray','darkgray',[169,169,169],'a9a9a9',11119017], ['ie:darkgreen','darkgreen','darkgreen',[0,100,0],'006400',25600], ['ie:darkkhaki','darkkhaki','darkkhaki',[189,183,107],'bdb76b',12433259], ['ie:darkmagenta','darkmagenta','darkmagenta',[139,0,139],'8b008b',9109643], ['ie:darkolivegreen','darkolivegreen','darkolivegreen',[85,107,47],'556b2f',5597999], ['ie:darkorange','darkorange','darkorange',[255,140,0],'ff8c00',16747520], ['ie:darkorchid','darkorchid','darkorchid',[153,50,204],'9932cc',10040012], ['ie:darkred','darkred','darkred',[139,0,0],'8b0000',9109504], ['ie:darksalmon','darksalmon','darksalmon',[233,150,122],'e9967a',15308410], ['ie:darkseagreen','darkseagreen','darkseagreen',[143,188,143],'8fbc8f',9419919], ['ie:darkslateblue','darkslateblue','darkslateblue',[72,61,139],'483d8b',4734347], ['ie:darkslategray','darkslategray','darkslategray',[47,79,79],'2f4f4f',3100495], ['ie:darkturquoise','darkturquoise','darkturquoise',[0,206,209],'00ced1',52945], ['ie:darkviolet','darkviolet','darkviolet',[148,0,211],'9400d3',9699539], ['ie:deeppink','deeppink','deeppink',[255,20,147],'ff1493',16716947], ['ie:deepskyblue','deepskyblue','deepskyblue',[0,191,255],'00bfff',49151], ['ie:dimgray','dimgray','dimgray',[105,105,105],'696969',6908265], ['ie:dodgerblue','dodgerblue','dodgerblue',[30,144,255],'1e90ff',2003199], ['ie:firebrick','firebrick','firebrick',[178,34,34],'b22222',11674146], ['ie:floralwhite','floralwhite','floralwhite',[255,250,240],'fffaf0',16775920], ['ie:forestgreen','forestgreen','forestgreen',[34,139,34],'228b22',2263842], ['ie:fuchsia','fuchsia','fuchsia',[255,0,255],'ff00ff',16711935], ['ie:gainsboro','gainsboro','gainsboro',[220,220,220],'dcdcdc',14474460], ['ie:ghostwhite','ghostwhite','ghostwhite',[248,248,255],'f8f8ff',16316671], ['ie:gold','gold','gold',[255,215,0],'ffd700',16766720], ['ie:goldenrod','goldenrod','goldenrod',[218,165,32],'daa520',14329120], ['ie:gray','gray','gray',[128,128,128],'808080',8421504], ['ie:green','green','green',[0,128,0],'008000',32768], ['ie:greenyellow','greenyellow','greenyellow',[173,255,47],'adff2f',11403055], ['ie:honeydew','honeydew','honeydew',[240,255,240],'f0fff0',15794160], ['ie:hotpink','hotpink','hotpink',[255,105,180],'ff69b4',16738740], ['ie:indianred','indianred','indianred',[205,92,92],'cd5c5c',13458524], ['ie:indigo','indigo','indigo',[75,0,130],'4b0082',4915330], ['ie:ivory','ivory','ivory',[255,255,240],'fffff0',16777200], ['ie:khaki','khaki','khaki',[240,230,140],'f0e68c',15787660], ['ie:lavender','lavender','lavender',[230,230,250],'e6e6fa',15132410], ['ie:lavenderblush','lavenderblush','lavenderblush',[255,240,245],'fff0f5',16773365], ['ie:lawngreen','lawngreen','lawngreen',[124,252,0],'7cfc00',8190976], ['ie:lemonchiffon','lemonchiffon','lemonchiffon',[255,250,205],'fffacd',16775885], ['ie:lightblue','lightblue','lightblue',[173,216,230],'add8e6',11393254], ['ie:lightcoral','lightcoral','lightcoral',[240,128,128],'f08080',15761536], ['ie:lightcyan','lightcyan','lightcyan',[224,255,255],'e0ffff',14745599], ['ie:lightgoldenrodyellow','lightgoldenrodyellow','lightgoldenrodyellow',[250,250,210],'fafad2',16448210], ['ie:lightgreen','lightgreen','lightgreen',[144,238,144],'90ee90',9498256], ['ie:lightgrey','lightgrey','lightgrey',[211,211,211],'d3d3d3',13882323], ['ie:lightpink','lightpink','lightpink',[255,182,193],'ffb6c1',16758465], ['ie:lightsalmon','lightsalmon','lightsalmon',[255,160,122],'ffa07a',16752762], ['ie:lightseagreen','lightseagreen','lightseagreen',[32,178,170],'20b2aa',2142890], ['ie:lightskyblue','lightskyblue','lightskyblue',[135,206,250],'87cefa',8900346], ['ie:lightslategray','lightslategray','lightslategray',[119,136,153],'778899',7833753], ['ie:lightsteelblue','lightsteelblue','lightsteelblue',[176,196,222],'b0c4de',11584734], ['ie:lightyellow','lightyellow','lightyellow',[255,255,224],'ffffe0',16777184], ['ie:lime','lime','lime',[0,255,0],'00ff00',65280], ['ie:limegreen','limegreen','limegreen',[50,205,50],'32cd32',3329330], ['ie:linen','linen','linen',[250,240,230],'faf0e6',16445670], ['ie:magenta','magenta','magenta',[255,0,255],'ff00ff',16711935], ['ie:maroon','maroon','maroon',[128,0,0],'800000',8388608], ['ie:mediumaquamarine','mediumaquamarine','mediumaquamarine',[102,205,170],'66cdaa',6737322], ['ie:mediumblue','mediumblue','mediumblue',[0,0,205],'0000cd',205], ['ie:mediumorchid','mediumorchid','mediumorchid',[186,85,211],'ba55d3',12211667], ['ie:mediumpurple','mediumpurple','mediumpurple',[147,112,219],'9370db',9662683], ['ie:mediumseagreen','mediumseagreen','mediumseagreen',[60,179,113],'3cb371',3978097], ['ie:mediumslateblue','mediumslateblue','mediumslateblue',[123,104,238],'7b68ee',8087790], ['ie:mediumspringgreen','mediumspringgreen','mediumspringgreen',[0,250,154],'00fa9a',64154], ['ie:mediumturquoise','mediumturquoise','mediumturquoise',[72,209,204],'48d1cc',4772300], ['ie:mediumvioletred','mediumvioletred','mediumvioletred',[199,21,133],'c71585',13047173], ['ie:midnightblue','midnightblue','midnightblue',[25,25,112],'191970',1644912], ['ie:mintcream','mintcream','mintcream',[245,255,250],'f5fffa',16121850], ['ie:mistyrose','mistyrose','mistyrose',[255,228,225],'ffe4e1',16770273], ['ie:moccasin','moccasin','moccasin',[255,228,181],'ffe4b5',16770229], ['ie:navajowhite','navajowhite','navajowhite',[255,222,173],'ffdead',16768685], ['ie:navy','navy','navy',[0,0,128],'000080',128], ['ie:oldlace','oldlace','oldlace',[253,245,230],'fdf5e6',16643558], ['ie:olive','olive','olive',[128,128,0],'808000',8421376], ['ie:olivedrab','olivedrab','olivedrab',[107,142,35],'6b8e23',7048739], ['ie:orange','orange','orange',[255,165,0],'ffa500',16753920], ['ie:orangered','orangered','orangered',[255,69,0],'ff4500',16729344], ['ie:orchid','orchid','orchid',[218,112,214],'da70d6',14315734], ['ie:palegoldenrod','palegoldenrod','palegoldenrod',[238,232,170],'eee8aa',15657130], ['ie:palegreen','palegreen','palegreen',[152,251,152],'98fb98',10025880], ['ie:paleturquoise','paleturquoise','paleturquoise',[175,238,238],'afeeee',11529966], ['ie:palevioletred','palevioletred','palevioletred',[219,112,147],'db7093',14381203], ['ie:papayawhip','papayawhip','papayawhip',[255,239,213],'ffefd5',16773077], ['ie:peachpuff','peachpuff','peachpuff',[255,218,185],'ffdab9',16767673], ['ie:peru','peru','peru',[205,133,63],'cd853f',13468991], ['ie:pink','pink','pink',[255,192,203],'ffc0cb',16761035], ['ie:plum','plum','plum',[221,160,221],'dda0dd',14524637], ['ie:powderblue','powderblue','powderblue',[176,224,230],'b0e0e6',11591910], ['ie:purple','purple','purple',[128,0,128],'800080',8388736], ['ie:red','red','red',[255,0,0],'ff0000',16711680], ['ie:rosybrown','rosybrown','rosybrown',[188,143,143],'bc8f8f',12357519], ['ie:royalblue','royalblue','royalblue',[65,105,225],'4169e1',4286945], ['ie:saddlebrown','saddlebrown','saddlebrown',[139,69,19],'8b4513',9127187], ['ie:salmon','salmon','salmon',[250,128,114],'fa8072',16416882], ['ie:sandybrown','sandybrown','sandybrown',[244,164,96],'f4a460',16032864], ['ie:seagreen','seagreen','seagreen',[46,139,87],'2e8b57',3050327], ['ie:seashell','seashell','seashell',[255,245,238],'fff5ee',16774638], ['ie:sienna','sienna','sienna',[160,82,45],'a0522d',10506797], ['ie:silver','silver','silver',[192,192,192],'c0c0c0',12632256], ['ie:skyblue','skyblue','skyblue',[135,206,235],'87ceeb',8900331], ['ie:slateblue','slateblue','slateblue',[106,90,205],'6a5acd',6970061], ['ie:slategray','slategray','slategray',[112,128,144],'708090',7372944], ['ie:snow','snow','snow',[255,250,250],'fffafa',16775930], ['ie:springgreen','springgreen','springgreen',[0,255,127],'00ff7f',65407], ['ie:steelblue','steelblue','steelblue',[70,130,180],'4682b4',4620980], ['ie:tan','tan','tan',[210,180,140],'d2b48c',13808780], ['ie:teal','teal','teal',[0,128,128],'008080',32896], ['ie:thistle','thistle','thistle',[216,191,216],'d8bfd8',14204888], ['ie:tomato','tomato','tomato',[255,99,71],'ff6347',16737095], ['ie:turquoise','turquoise','turquoise',[64,224,208],'40e0d0',4251856], ['ie:violet','violet','violet',[238,130,238],'ee82ee',15631086], ['ie:wheat','wheat','wheat',[245,222,179],'f5deb3',16113331], ['ie:white','white','white',[255,255,255],'ffffff',16777215], ['ie:whitesmoke','whitesmoke','whitesmoke',[245,245,245],'f5f5f5',16119285], ['ie:yellow','yellow','yellow',[255,255,0],'ffff00',16776960], ['ie:yellowgreen','yellowgreen','yellowgreen',[154,205,50],'9acd32',10145074] ]; } sub _description { return { 'subtitle' => 'Colors recognized by Internet Explorer', 'title' => 'IE', 'description' => 'Internet Explorer supports a wide variety of named colors. Not all browsers support these additional named colors; therefore, when specifying color values for Web pages targeted to work across different browsers, use the RGB color values. [http://msdn2.microsoft.com/en-us/library/ms531197.aspx] [http://msdn2.microsoft.com/en-us/library/aa358802.aspx] ' } } 1; SVG.pm100644000765000024 4560411667760546 21730 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionarypackage Color::Library::Dictionary::SVG; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::SVG; =pod =head1 NAME Color::Library::Dictionary::SVG - (SVG) Colors from the SVG specification =head1 DESCRIPTION The list of recognized color keywords that can be used as a keyword value for data type . L =head1 COLORS aliceblue aliceblue #f0f8ff antiquewhite antiquewhite #faebd7 aqua aqua #00ffff aquamarine aquamarine #7fffd4 azure azure #f0ffff beige beige #f5f5dc bisque bisque #ffe4c4 black black #000000 blanchedalmond blanchedalmond #ffebcd blue blue #0000ff blueviolet blueviolet #8a2be2 brown brown #a52a2a burlywood burlywood #deb887 cadetblue cadetblue #5f9ea0 chartreuse chartreuse #7fff00 chocolate chocolate #d2691e coral coral #ff7f50 cornflowerblue cornflowerblue #6495ed cornsilk cornsilk #fff8dc crimson crimson #dc143c cyan cyan #00ffff darkblue darkblue #00008b darkcyan darkcyan #008b8b darkgoldenrod darkgoldenrod #b8860b darkgray darkgray #a9a9a9 darkgreen darkgreen #006400 darkgrey darkgrey #a9a9a9 darkkhaki darkkhaki #bdb76b darkmagenta darkmagenta #8b008b darkolivegreen darkolivegreen #556b2f darkorange darkorange #ff8c00 darkorchid darkorchid #9932cc darkred darkred #8b0000 darksalmon darksalmon #e9967a darkseagreen darkseagreen #8fbc8f darkslateblue darkslateblue #483d8b darkslategray darkslategray #2f4f4f darkslategrey darkslategrey #2f4f4f darkturquoise darkturquoise #00ced1 darkviolet darkviolet #9400d3 deeppink deeppink #ff1493 deepskyblue deepskyblue #00bfff dimgray dimgray #696969 dimgrey dimgrey #696969 dodgerblue dodgerblue #1e90ff firebrick firebrick #b22222 floralwhite floralwhite #fffaf0 forestgreen forestgreen #228b22 fuchsia fuchsia #ff00ff fuscia fuscia #ff00ff gainsboro gainsboro #dcdcdc ghostwhite ghostwhite #f8f8ff gold gold #ffd700 goldenrod goldenrod #daa520 gray gray #808080 green green #008000 greenyellow greenyellow #adff2f grey grey #808080 honeydew honeydew #f0fff0 hotpink hotpink #ff69b4 indianred indianred #cd5c5c indigo indigo #4b0082 ivory ivory #fffff0 khaki khaki #f0e68c lavender lavender #e6e6fa lavenderblush lavenderblush #fff0f5 lawngreen lawngreen #7cfc00 lemonchiffon lemonchiffon #fffacd lightblue lightblue #add8e6 lightcoral lightcoral #f08080 lightcyan lightcyan #e0ffff lightgoldenrodyellow lightgoldenrodyellow #fafad2 lightgray lightgray #d3d3d3 lightgreen lightgreen #90ee90 lightgrey lightgrey #d3d3d3 lightpink lightpink #ffb6c1 lightsalmon lightsalmon #ffa07a lightseagreen lightseagreen #20b2aa lightskyblue lightskyblue #87cefa lightslategray lightslategray #778899 lightslategrey lightslategrey #778899 lightsteelblue lightsteelblue #b0c4de lightyellow lightyellow #ffffe0 lime lime #00ff00 limegreen limegreen #32cd32 linen linen #faf0e6 magenta magenta #ff00ff maroon maroon #800000 mediumaquamarine mediumaquamarine #66cdaa mediumblue mediumblue #0000cd mediumorchid mediumorchid #ba55d3 mediumpurple mediumpurple #9370db mediumseagreen mediumseagreen #3cb371 mediumslateblue mediumslateblue #7b68ee mediumspringgreen mediumspringgreen #00fa9a mediumturquoise mediumturquoise #48d1cc mediumvioletred mediumvioletred #c71585 midnightblue midnightblue #191970 mintcream mintcream #f5fffa mistyrose mistyrose #ffe4e1 moccasin moccasin #ffe4b5 navajowhite navajowhite #ffdead navy navy #000080 oldlace oldlace #fdf5e6 olive olive #808000 olivedrab olivedrab #6b8e23 orange orange #ffa500 orangered orangered #ff4500 orchid orchid #da70d6 palegoldenrod palegoldenrod #eee8aa palegreen palegreen #98fb98 paleturquoise paleturquoise #afeeee palevioletred palevioletred #db7093 papayawhip papayawhip #ffefd5 peachpuff peachpuff #ffdab9 peru peru #cd853f pink pink #ffc0cb plum plum #dda0dd powderblue powderblue #b0e0e6 purple purple #800080 red red #ff0000 rosybrown rosybrown #bc8f8f royalblue royalblue #4169e1 saddlebrown saddlebrown #8b4513 salmon salmon #fa8072 sandybrown sandybrown #f4a460 seagreen seagreen #2e8b57 seashell seashell #fff5ee sienna sienna #a0522d silver silver #c0c0c0 skyblue skyblue #87ceeb slateblue slateblue #6a5acd slategray slategray #708090 slategrey slategrey #708090 snow snow #fffafa springgreen springgreen #00ff7f steelblue steelblue #4682b4 tan tan #d2b48c teal teal #008080 thistle thistle #d8bfd8 tomato tomato #ff6347 turquoise turquoise #40e0d0 violet violet #ee82ee wheat wheat #f5deb3 white white #ffffff whitesmoke whitesmoke #f5f5f5 yellow yellow #ffff00 yellowgreen yellowgreen #9acd32 =cut sub _load_color_list() { return [ ['svg:aliceblue','aliceblue','aliceblue',[240,248,255],'f0f8ff',15792383], ['svg:antiquewhite','antiquewhite','antiquewhite',[250,235,215],'faebd7',16444375], ['svg:aqua','aqua','aqua',[0,255,255],'00ffff',65535], ['svg:aquamarine','aquamarine','aquamarine',[127,255,212],'7fffd4',8388564], ['svg:azure','azure','azure',[240,255,255],'f0ffff',15794175], ['svg:beige','beige','beige',[245,245,220],'f5f5dc',16119260], ['svg:bisque','bisque','bisque',[255,228,196],'ffe4c4',16770244], ['svg:black','black','black',[0,0,0],'000000',0], ['svg:blanchedalmond','blanchedalmond','blanchedalmond',[255,235,205],'ffebcd',16772045], ['svg:blue','blue','blue',[0,0,255],'0000ff',255], ['svg:blueviolet','blueviolet','blueviolet',[138,43,226],'8a2be2',9055202], ['svg:brown','brown','brown',[165,42,42],'a52a2a',10824234], ['svg:burlywood','burlywood','burlywood',[222,184,135],'deb887',14596231], ['svg:cadetblue','cadetblue','cadetblue',[95,158,160],'5f9ea0',6266528], ['svg:chartreuse','chartreuse','chartreuse',[127,255,0],'7fff00',8388352], ['svg:chocolate','chocolate','chocolate',[210,105,30],'d2691e',13789470], ['svg:coral','coral','coral',[255,127,80],'ff7f50',16744272], ['svg:cornflowerblue','cornflowerblue','cornflowerblue',[100,149,237],'6495ed',6591981], ['svg:cornsilk','cornsilk','cornsilk',[255,248,220],'fff8dc',16775388], ['svg:crimson','crimson','crimson',[220,20,60],'dc143c',14423100], ['svg:cyan','cyan','cyan',[0,255,255],'00ffff',65535], ['svg:darkblue','darkblue','darkblue',[0,0,139],'00008b',139], ['svg:darkcyan','darkcyan','darkcyan',[0,139,139],'008b8b',35723], ['svg:darkgoldenrod','darkgoldenrod','darkgoldenrod',[184,134,11],'b8860b',12092939], ['svg:darkgray','darkgray','darkgray',[169,169,169],'a9a9a9',11119017], ['svg:darkgreen','darkgreen','darkgreen',[0,100,0],'006400',25600], ['svg:darkgrey','darkgrey','darkgrey',[169,169,169],'a9a9a9',11119017], ['svg:darkkhaki','darkkhaki','darkkhaki',[189,183,107],'bdb76b',12433259], ['svg:darkmagenta','darkmagenta','darkmagenta',[139,0,139],'8b008b',9109643], ['svg:darkolivegreen','darkolivegreen','darkolivegreen',[85,107,47],'556b2f',5597999], ['svg:darkorange','darkorange','darkorange',[255,140,0],'ff8c00',16747520], ['svg:darkorchid','darkorchid','darkorchid',[153,50,204],'9932cc',10040012], ['svg:darkred','darkred','darkred',[139,0,0],'8b0000',9109504], ['svg:darksalmon','darksalmon','darksalmon',[233,150,122],'e9967a',15308410], ['svg:darkseagreen','darkseagreen','darkseagreen',[143,188,143],'8fbc8f',9419919], ['svg:darkslateblue','darkslateblue','darkslateblue',[72,61,139],'483d8b',4734347], ['svg:darkslategray','darkslategray','darkslategray',[47,79,79],'2f4f4f',3100495], ['svg:darkslategrey','darkslategrey','darkslategrey',[47,79,79],'2f4f4f',3100495], ['svg:darkturquoise','darkturquoise','darkturquoise',[0,206,209],'00ced1',52945], ['svg:darkviolet','darkviolet','darkviolet',[148,0,211],'9400d3',9699539], ['svg:deeppink','deeppink','deeppink',[255,20,147],'ff1493',16716947], ['svg:deepskyblue','deepskyblue','deepskyblue',[0,191,255],'00bfff',49151], ['svg:dimgray','dimgray','dimgray',[105,105,105],'696969',6908265], ['svg:dimgrey','dimgrey','dimgrey',[105,105,105],'696969',6908265], ['svg:dodgerblue','dodgerblue','dodgerblue',[30,144,255],'1e90ff',2003199], ['svg:firebrick','firebrick','firebrick',[178,34,34],'b22222',11674146], ['svg:floralwhite','floralwhite','floralwhite',[255,250,240],'fffaf0',16775920], ['svg:forestgreen','forestgreen','forestgreen',[34,139,34],'228b22',2263842], ['svg:fuchsia','fuchsia','fuchsia',[255,0,255],'ff00ff',16711935], ['svg:fuscia','fuscia','fuscia',[255,0,255],'ff00ff',16711935], ['svg:gainsboro','gainsboro','gainsboro',[220,220,220],'dcdcdc',14474460], ['svg:ghostwhite','ghostwhite','ghostwhite',[248,248,255],'f8f8ff',16316671], ['svg:gold','gold','gold',[255,215,0],'ffd700',16766720], ['svg:goldenrod','goldenrod','goldenrod',[218,165,32],'daa520',14329120], ['svg:gray','gray','gray',[128,128,128],'808080',8421504], ['svg:green','green','green',[0,128,0],'008000',32768], ['svg:greenyellow','greenyellow','greenyellow',[173,255,47],'adff2f',11403055], ['svg:grey','grey','grey',[128,128,128],'808080',8421504], ['svg:honeydew','honeydew','honeydew',[240,255,240],'f0fff0',15794160], ['svg:hotpink','hotpink','hotpink',[255,105,180],'ff69b4',16738740], ['svg:indianred','indianred','indianred',[205,92,92],'cd5c5c',13458524], ['svg:indigo','indigo','indigo',[75,0,130],'4b0082',4915330], ['svg:ivory','ivory','ivory',[255,255,240],'fffff0',16777200], ['svg:khaki','khaki','khaki',[240,230,140],'f0e68c',15787660], ['svg:lavender','lavender','lavender',[230,230,250],'e6e6fa',15132410], ['svg:lavenderblush','lavenderblush','lavenderblush',[255,240,245],'fff0f5',16773365], ['svg:lawngreen','lawngreen','lawngreen',[124,252,0],'7cfc00',8190976], ['svg:lemonchiffon','lemonchiffon','lemonchiffon',[255,250,205],'fffacd',16775885], ['svg:lightblue','lightblue','lightblue',[173,216,230],'add8e6',11393254], ['svg:lightcoral','lightcoral','lightcoral',[240,128,128],'f08080',15761536], ['svg:lightcyan','lightcyan','lightcyan',[224,255,255],'e0ffff',14745599], ['svg:lightgoldenrodyellow','lightgoldenrodyellow','lightgoldenrodyellow',[250,250,210],'fafad2',16448210], ['svg:lightgray','lightgray','lightgray',[211,211,211],'d3d3d3',13882323], ['svg:lightgreen','lightgreen','lightgreen',[144,238,144],'90ee90',9498256], ['svg:lightgrey','lightgrey','lightgrey',[211,211,211],'d3d3d3',13882323], ['svg:lightpink','lightpink','lightpink',[255,182,193],'ffb6c1',16758465], ['svg:lightsalmon','lightsalmon','lightsalmon',[255,160,122],'ffa07a',16752762], ['svg:lightseagreen','lightseagreen','lightseagreen',[32,178,170],'20b2aa',2142890], ['svg:lightskyblue','lightskyblue','lightskyblue',[135,206,250],'87cefa',8900346], ['svg:lightslategray','lightslategray','lightslategray',[119,136,153],'778899',7833753], ['svg:lightslategrey','lightslategrey','lightslategrey',[119,136,153],'778899',7833753], ['svg:lightsteelblue','lightsteelblue','lightsteelblue',[176,196,222],'b0c4de',11584734], ['svg:lightyellow','lightyellow','lightyellow',[255,255,224],'ffffe0',16777184], ['svg:lime','lime','lime',[0,255,0],'00ff00',65280], ['svg:limegreen','limegreen','limegreen',[50,205,50],'32cd32',3329330], ['svg:linen','linen','linen',[250,240,230],'faf0e6',16445670], ['svg:magenta','magenta','magenta',[255,0,255],'ff00ff',16711935], ['svg:maroon','maroon','maroon',[128,0,0],'800000',8388608], ['svg:mediumaquamarine','mediumaquamarine','mediumaquamarine',[102,205,170],'66cdaa',6737322], ['svg:mediumblue','mediumblue','mediumblue',[0,0,205],'0000cd',205], ['svg:mediumorchid','mediumorchid','mediumorchid',[186,85,211],'ba55d3',12211667], ['svg:mediumpurple','mediumpurple','mediumpurple',[147,112,219],'9370db',9662683], ['svg:mediumseagreen','mediumseagreen','mediumseagreen',[60,179,113],'3cb371',3978097], ['svg:mediumslateblue','mediumslateblue','mediumslateblue',[123,104,238],'7b68ee',8087790], ['svg:mediumspringgreen','mediumspringgreen','mediumspringgreen',[0,250,154],'00fa9a',64154], ['svg:mediumturquoise','mediumturquoise','mediumturquoise',[72,209,204],'48d1cc',4772300], ['svg:mediumvioletred','mediumvioletred','mediumvioletred',[199,21,133],'c71585',13047173], ['svg:midnightblue','midnightblue','midnightblue',[25,25,112],'191970',1644912], ['svg:mintcream','mintcream','mintcream',[245,255,250],'f5fffa',16121850], ['svg:mistyrose','mistyrose','mistyrose',[255,228,225],'ffe4e1',16770273], ['svg:moccasin','moccasin','moccasin',[255,228,181],'ffe4b5',16770229], ['svg:navajowhite','navajowhite','navajowhite',[255,222,173],'ffdead',16768685], ['svg:navy','navy','navy',[0,0,128],'000080',128], ['svg:oldlace','oldlace','oldlace',[253,245,230],'fdf5e6',16643558], ['svg:olive','olive','olive',[128,128,0],'808000',8421376], ['svg:olivedrab','olivedrab','olivedrab',[107,142,35],'6b8e23',7048739], ['svg:orange','orange','orange',[255,165,0],'ffa500',16753920], ['svg:orangered','orangered','orangered',[255,69,0],'ff4500',16729344], ['svg:orchid','orchid','orchid',[218,112,214],'da70d6',14315734], ['svg:palegoldenrod','palegoldenrod','palegoldenrod',[238,232,170],'eee8aa',15657130], ['svg:palegreen','palegreen','palegreen',[152,251,152],'98fb98',10025880], ['svg:paleturquoise','paleturquoise','paleturquoise',[175,238,238],'afeeee',11529966], ['svg:palevioletred','palevioletred','palevioletred',[219,112,147],'db7093',14381203], ['svg:papayawhip','papayawhip','papayawhip',[255,239,213],'ffefd5',16773077], ['svg:peachpuff','peachpuff','peachpuff',[255,218,185],'ffdab9',16767673], ['svg:peru','peru','peru',[205,133,63],'cd853f',13468991], ['svg:pink','pink','pink',[255,192,203],'ffc0cb',16761035], ['svg:plum','plum','plum',[221,160,221],'dda0dd',14524637], ['svg:powderblue','powderblue','powderblue',[176,224,230],'b0e0e6',11591910], ['svg:purple','purple','purple',[128,0,128],'800080',8388736], ['svg:red','red','red',[255,0,0],'ff0000',16711680], ['svg:rosybrown','rosybrown','rosybrown',[188,143,143],'bc8f8f',12357519], ['svg:royalblue','royalblue','royalblue',[65,105,225],'4169e1',4286945], ['svg:saddlebrown','saddlebrown','saddlebrown',[139,69,19],'8b4513',9127187], ['svg:salmon','salmon','salmon',[250,128,114],'fa8072',16416882], ['svg:sandybrown','sandybrown','sandybrown',[244,164,96],'f4a460',16032864], ['svg:seagreen','seagreen','seagreen',[46,139,87],'2e8b57',3050327], ['svg:seashell','seashell','seashell',[255,245,238],'fff5ee',16774638], ['svg:sienna','sienna','sienna',[160,82,45],'a0522d',10506797], ['svg:silver','silver','silver',[192,192,192],'c0c0c0',12632256], ['svg:skyblue','skyblue','skyblue',[135,206,235],'87ceeb',8900331], ['svg:slateblue','slateblue','slateblue',[106,90,205],'6a5acd',6970061], ['svg:slategray','slategray','slategray',[112,128,144],'708090',7372944], ['svg:slategrey','slategrey','slategrey',[112,128,144],'708090',7372944], ['svg:snow','snow','snow',[255,250,250],'fffafa',16775930], ['svg:springgreen','springgreen','springgreen',[0,255,127],'00ff7f',65407], ['svg:steelblue','steelblue','steelblue',[70,130,180],'4682b4',4620980], ['svg:tan','tan','tan',[210,180,140],'d2b48c',13808780], ['svg:teal','teal','teal',[0,128,128],'008080',32896], ['svg:thistle','thistle','thistle',[216,191,216],'d8bfd8',14204888], ['svg:tomato','tomato','tomato',[255,99,71],'ff6347',16737095], ['svg:turquoise','turquoise','turquoise',[64,224,208],'40e0d0',4251856], ['svg:violet','violet','violet',[238,130,238],'ee82ee',15631086], ['svg:wheat','wheat','wheat',[245,222,179],'f5deb3',16113331], ['svg:white','white','white',[255,255,255],'ffffff',16777215], ['svg:whitesmoke','whitesmoke','whitesmoke',[245,245,245],'f5f5f5',16119285], ['svg:yellow','yellow','yellow',[255,255,0],'ffff00',16776960], ['svg:yellowgreen','yellowgreen','yellowgreen',[154,205,50],'9acd32',10145074] ]; } sub _description { return { 'subtitle' => 'Colors from the SVG specification', 'title' => 'SVG', 'description' => 'The list of recognized color keywords that can be used as a keyword value for data type . [http://www.w3.org/TR/SVG/types.html#ColorKeywords] ' } } 1; WWW.pm100644000765000024 4613111667760546 21751 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionarypackage Color::Library::Dictionary::WWW; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::WWW; =pod =head1 NAME Color::Library::Dictionary::WWW - (WWW) An alias of the SVG color dictionary =head1 DESCRIPTION This is an alias for the SVG dictionary. It is here for compatibility with Graphics::ColorNames::WWW Originally intended by Claus Farber to be a combination of HTML, Mozilla, an IE dictionaries. SVG turns out to be a superset of all of these, however. =head1 COLORS aliceblue aliceblue #f0f8ff antiquewhite antiquewhite #faebd7 aqua aqua #00ffff aquamarine aquamarine #7fffd4 azure azure #f0ffff beige beige #f5f5dc bisque bisque #ffe4c4 black black #000000 blanchedalmond blanchedalmond #ffebcd blue blue #0000ff blueviolet blueviolet #8a2be2 brown brown #a52a2a burlywood burlywood #deb887 cadetblue cadetblue #5f9ea0 chartreuse chartreuse #7fff00 chocolate chocolate #d2691e coral coral #ff7f50 cornflowerblue cornflowerblue #6495ed cornsilk cornsilk #fff8dc crimson crimson #dc143c cyan cyan #00ffff darkblue darkblue #00008b darkcyan darkcyan #008b8b darkgoldenrod darkgoldenrod #b8860b darkgray darkgray #a9a9a9 darkgreen darkgreen #006400 darkgrey darkgrey #a9a9a9 darkkhaki darkkhaki #bdb76b darkmagenta darkmagenta #8b008b darkolivegreen darkolivegreen #556b2f darkorange darkorange #ff8c00 darkorchid darkorchid #9932cc darkred darkred #8b0000 darksalmon darksalmon #e9967a darkseagreen darkseagreen #8fbc8f darkslateblue darkslateblue #483d8b darkslategray darkslategray #2f4f4f darkslategrey darkslategrey #2f4f4f darkturquoise darkturquoise #00ced1 darkviolet darkviolet #9400d3 deeppink deeppink #ff1493 deepskyblue deepskyblue #00bfff dimgray dimgray #696969 dimgrey dimgrey #696969 dodgerblue dodgerblue #1e90ff firebrick firebrick #b22222 floralwhite floralwhite #fffaf0 forestgreen forestgreen #228b22 fuchsia fuchsia #ff00ff fuscia fuscia #ff00ff gainsboro gainsboro #dcdcdc ghostwhite ghostwhite #f8f8ff gold gold #ffd700 goldenrod goldenrod #daa520 gray gray #808080 green green #008000 greenyellow greenyellow #adff2f grey grey #808080 honeydew honeydew #f0fff0 hotpink hotpink #ff69b4 indianred indianred #cd5c5c indigo indigo #4b0082 ivory ivory #fffff0 khaki khaki #f0e68c lavender lavender #e6e6fa lavenderblush lavenderblush #fff0f5 lawngreen lawngreen #7cfc00 lemonchiffon lemonchiffon #fffacd lightblue lightblue #add8e6 lightcoral lightcoral #f08080 lightcyan lightcyan #e0ffff lightgoldenrodyellow lightgoldenrodyellow #fafad2 lightgray lightgray #d3d3d3 lightgreen lightgreen #90ee90 lightgrey lightgrey #d3d3d3 lightpink lightpink #ffb6c1 lightsalmon lightsalmon #ffa07a lightseagreen lightseagreen #20b2aa lightskyblue lightskyblue #87cefa lightslategray lightslategray #778899 lightslategrey lightslategrey #778899 lightsteelblue lightsteelblue #b0c4de lightyellow lightyellow #ffffe0 lime lime #00ff00 limegreen limegreen #32cd32 linen linen #faf0e6 magenta magenta #ff00ff maroon maroon #800000 mediumaquamarine mediumaquamarine #66cdaa mediumblue mediumblue #0000cd mediumorchid mediumorchid #ba55d3 mediumpurple mediumpurple #9370db mediumseagreen mediumseagreen #3cb371 mediumslateblue mediumslateblue #7b68ee mediumspringgreen mediumspringgreen #00fa9a mediumturquoise mediumturquoise #48d1cc mediumvioletred mediumvioletred #c71585 midnightblue midnightblue #191970 mintcream mintcream #f5fffa mistyrose mistyrose #ffe4e1 moccasin moccasin #ffe4b5 navajowhite navajowhite #ffdead navy navy #000080 oldlace oldlace #fdf5e6 olive olive #808000 olivedrab olivedrab #6b8e23 orange orange #ffa500 orangered orangered #ff4500 orchid orchid #da70d6 palegoldenrod palegoldenrod #eee8aa palegreen palegreen #98fb98 paleturquoise paleturquoise #afeeee palevioletred palevioletred #db7093 papayawhip papayawhip #ffefd5 peachpuff peachpuff #ffdab9 peru peru #cd853f pink pink #ffc0cb plum plum #dda0dd powderblue powderblue #b0e0e6 purple purple #800080 red red #ff0000 rosybrown rosybrown #bc8f8f royalblue royalblue #4169e1 saddlebrown saddlebrown #8b4513 salmon salmon #fa8072 sandybrown sandybrown #f4a460 seagreen seagreen #2e8b57 seashell seashell #fff5ee sienna sienna #a0522d silver silver #c0c0c0 skyblue skyblue #87ceeb slateblue slateblue #6a5acd slategray slategray #708090 slategrey slategrey #708090 snow snow #fffafa springgreen springgreen #00ff7f steelblue steelblue #4682b4 tan tan #d2b48c teal teal #008080 thistle thistle #d8bfd8 tomato tomato #ff6347 turquoise turquoise #40e0d0 violet violet #ee82ee wheat wheat #f5deb3 white white #ffffff whitesmoke whitesmoke #f5f5f5 yellow yellow #ffff00 yellowgreen yellowgreen #9acd32 =cut sub _load_color_list() { return [ ['www:aliceblue','aliceblue','aliceblue',[240,248,255],'f0f8ff',15792383], ['www:antiquewhite','antiquewhite','antiquewhite',[250,235,215],'faebd7',16444375], ['www:aqua','aqua','aqua',[0,255,255],'00ffff',65535], ['www:aquamarine','aquamarine','aquamarine',[127,255,212],'7fffd4',8388564], ['www:azure','azure','azure',[240,255,255],'f0ffff',15794175], ['www:beige','beige','beige',[245,245,220],'f5f5dc',16119260], ['www:bisque','bisque','bisque',[255,228,196],'ffe4c4',16770244], ['www:black','black','black',[0,0,0],'000000',0], ['www:blanchedalmond','blanchedalmond','blanchedalmond',[255,235,205],'ffebcd',16772045], ['www:blue','blue','blue',[0,0,255],'0000ff',255], ['www:blueviolet','blueviolet','blueviolet',[138,43,226],'8a2be2',9055202], ['www:brown','brown','brown',[165,42,42],'a52a2a',10824234], ['www:burlywood','burlywood','burlywood',[222,184,135],'deb887',14596231], ['www:cadetblue','cadetblue','cadetblue',[95,158,160],'5f9ea0',6266528], ['www:chartreuse','chartreuse','chartreuse',[127,255,0],'7fff00',8388352], ['www:chocolate','chocolate','chocolate',[210,105,30],'d2691e',13789470], ['www:coral','coral','coral',[255,127,80],'ff7f50',16744272], ['www:cornflowerblue','cornflowerblue','cornflowerblue',[100,149,237],'6495ed',6591981], ['www:cornsilk','cornsilk','cornsilk',[255,248,220],'fff8dc',16775388], ['www:crimson','crimson','crimson',[220,20,60],'dc143c',14423100], ['www:cyan','cyan','cyan',[0,255,255],'00ffff',65535], ['www:darkblue','darkblue','darkblue',[0,0,139],'00008b',139], ['www:darkcyan','darkcyan','darkcyan',[0,139,139],'008b8b',35723], ['www:darkgoldenrod','darkgoldenrod','darkgoldenrod',[184,134,11],'b8860b',12092939], ['www:darkgray','darkgray','darkgray',[169,169,169],'a9a9a9',11119017], ['www:darkgreen','darkgreen','darkgreen',[0,100,0],'006400',25600], ['www:darkgrey','darkgrey','darkgrey',[169,169,169],'a9a9a9',11119017], ['www:darkkhaki','darkkhaki','darkkhaki',[189,183,107],'bdb76b',12433259], ['www:darkmagenta','darkmagenta','darkmagenta',[139,0,139],'8b008b',9109643], ['www:darkolivegreen','darkolivegreen','darkolivegreen',[85,107,47],'556b2f',5597999], ['www:darkorange','darkorange','darkorange',[255,140,0],'ff8c00',16747520], ['www:darkorchid','darkorchid','darkorchid',[153,50,204],'9932cc',10040012], ['www:darkred','darkred','darkred',[139,0,0],'8b0000',9109504], ['www:darksalmon','darksalmon','darksalmon',[233,150,122],'e9967a',15308410], ['www:darkseagreen','darkseagreen','darkseagreen',[143,188,143],'8fbc8f',9419919], ['www:darkslateblue','darkslateblue','darkslateblue',[72,61,139],'483d8b',4734347], ['www:darkslategray','darkslategray','darkslategray',[47,79,79],'2f4f4f',3100495], ['www:darkslategrey','darkslategrey','darkslategrey',[47,79,79],'2f4f4f',3100495], ['www:darkturquoise','darkturquoise','darkturquoise',[0,206,209],'00ced1',52945], ['www:darkviolet','darkviolet','darkviolet',[148,0,211],'9400d3',9699539], ['www:deeppink','deeppink','deeppink',[255,20,147],'ff1493',16716947], ['www:deepskyblue','deepskyblue','deepskyblue',[0,191,255],'00bfff',49151], ['www:dimgray','dimgray','dimgray',[105,105,105],'696969',6908265], ['www:dimgrey','dimgrey','dimgrey',[105,105,105],'696969',6908265], ['www:dodgerblue','dodgerblue','dodgerblue',[30,144,255],'1e90ff',2003199], ['www:firebrick','firebrick','firebrick',[178,34,34],'b22222',11674146], ['www:floralwhite','floralwhite','floralwhite',[255,250,240],'fffaf0',16775920], ['www:forestgreen','forestgreen','forestgreen',[34,139,34],'228b22',2263842], ['www:fuchsia','fuchsia','fuchsia',[255,0,255],'ff00ff',16711935], ['www:fuscia','fuscia','fuscia',[255,0,255],'ff00ff',16711935], ['www:gainsboro','gainsboro','gainsboro',[220,220,220],'dcdcdc',14474460], ['www:ghostwhite','ghostwhite','ghostwhite',[248,248,255],'f8f8ff',16316671], ['www:gold','gold','gold',[255,215,0],'ffd700',16766720], ['www:goldenrod','goldenrod','goldenrod',[218,165,32],'daa520',14329120], ['www:gray','gray','gray',[128,128,128],'808080',8421504], ['www:green','green','green',[0,128,0],'008000',32768], ['www:greenyellow','greenyellow','greenyellow',[173,255,47],'adff2f',11403055], ['www:grey','grey','grey',[128,128,128],'808080',8421504], ['www:honeydew','honeydew','honeydew',[240,255,240],'f0fff0',15794160], ['www:hotpink','hotpink','hotpink',[255,105,180],'ff69b4',16738740], ['www:indianred','indianred','indianred',[205,92,92],'cd5c5c',13458524], ['www:indigo','indigo','indigo',[75,0,130],'4b0082',4915330], ['www:ivory','ivory','ivory',[255,255,240],'fffff0',16777200], ['www:khaki','khaki','khaki',[240,230,140],'f0e68c',15787660], ['www:lavender','lavender','lavender',[230,230,250],'e6e6fa',15132410], ['www:lavenderblush','lavenderblush','lavenderblush',[255,240,245],'fff0f5',16773365], ['www:lawngreen','lawngreen','lawngreen',[124,252,0],'7cfc00',8190976], ['www:lemonchiffon','lemonchiffon','lemonchiffon',[255,250,205],'fffacd',16775885], ['www:lightblue','lightblue','lightblue',[173,216,230],'add8e6',11393254], ['www:lightcoral','lightcoral','lightcoral',[240,128,128],'f08080',15761536], ['www:lightcyan','lightcyan','lightcyan',[224,255,255],'e0ffff',14745599], ['www:lightgoldenrodyellow','lightgoldenrodyellow','lightgoldenrodyellow',[250,250,210],'fafad2',16448210], ['www:lightgray','lightgray','lightgray',[211,211,211],'d3d3d3',13882323], ['www:lightgreen','lightgreen','lightgreen',[144,238,144],'90ee90',9498256], ['www:lightgrey','lightgrey','lightgrey',[211,211,211],'d3d3d3',13882323], ['www:lightpink','lightpink','lightpink',[255,182,193],'ffb6c1',16758465], ['www:lightsalmon','lightsalmon','lightsalmon',[255,160,122],'ffa07a',16752762], ['www:lightseagreen','lightseagreen','lightseagreen',[32,178,170],'20b2aa',2142890], ['www:lightskyblue','lightskyblue','lightskyblue',[135,206,250],'87cefa',8900346], ['www:lightslategray','lightslategray','lightslategray',[119,136,153],'778899',7833753], ['www:lightslategrey','lightslategrey','lightslategrey',[119,136,153],'778899',7833753], ['www:lightsteelblue','lightsteelblue','lightsteelblue',[176,196,222],'b0c4de',11584734], ['www:lightyellow','lightyellow','lightyellow',[255,255,224],'ffffe0',16777184], ['www:lime','lime','lime',[0,255,0],'00ff00',65280], ['www:limegreen','limegreen','limegreen',[50,205,50],'32cd32',3329330], ['www:linen','linen','linen',[250,240,230],'faf0e6',16445670], ['www:magenta','magenta','magenta',[255,0,255],'ff00ff',16711935], ['www:maroon','maroon','maroon',[128,0,0],'800000',8388608], ['www:mediumaquamarine','mediumaquamarine','mediumaquamarine',[102,205,170],'66cdaa',6737322], ['www:mediumblue','mediumblue','mediumblue',[0,0,205],'0000cd',205], ['www:mediumorchid','mediumorchid','mediumorchid',[186,85,211],'ba55d3',12211667], ['www:mediumpurple','mediumpurple','mediumpurple',[147,112,219],'9370db',9662683], ['www:mediumseagreen','mediumseagreen','mediumseagreen',[60,179,113],'3cb371',3978097], ['www:mediumslateblue','mediumslateblue','mediumslateblue',[123,104,238],'7b68ee',8087790], ['www:mediumspringgreen','mediumspringgreen','mediumspringgreen',[0,250,154],'00fa9a',64154], ['www:mediumturquoise','mediumturquoise','mediumturquoise',[72,209,204],'48d1cc',4772300], ['www:mediumvioletred','mediumvioletred','mediumvioletred',[199,21,133],'c71585',13047173], ['www:midnightblue','midnightblue','midnightblue',[25,25,112],'191970',1644912], ['www:mintcream','mintcream','mintcream',[245,255,250],'f5fffa',16121850], ['www:mistyrose','mistyrose','mistyrose',[255,228,225],'ffe4e1',16770273], ['www:moccasin','moccasin','moccasin',[255,228,181],'ffe4b5',16770229], ['www:navajowhite','navajowhite','navajowhite',[255,222,173],'ffdead',16768685], ['www:navy','navy','navy',[0,0,128],'000080',128], ['www:oldlace','oldlace','oldlace',[253,245,230],'fdf5e6',16643558], ['www:olive','olive','olive',[128,128,0],'808000',8421376], ['www:olivedrab','olivedrab','olivedrab',[107,142,35],'6b8e23',7048739], ['www:orange','orange','orange',[255,165,0],'ffa500',16753920], ['www:orangered','orangered','orangered',[255,69,0],'ff4500',16729344], ['www:orchid','orchid','orchid',[218,112,214],'da70d6',14315734], ['www:palegoldenrod','palegoldenrod','palegoldenrod',[238,232,170],'eee8aa',15657130], ['www:palegreen','palegreen','palegreen',[152,251,152],'98fb98',10025880], ['www:paleturquoise','paleturquoise','paleturquoise',[175,238,238],'afeeee',11529966], ['www:palevioletred','palevioletred','palevioletred',[219,112,147],'db7093',14381203], ['www:papayawhip','papayawhip','papayawhip',[255,239,213],'ffefd5',16773077], ['www:peachpuff','peachpuff','peachpuff',[255,218,185],'ffdab9',16767673], ['www:peru','peru','peru',[205,133,63],'cd853f',13468991], ['www:pink','pink','pink',[255,192,203],'ffc0cb',16761035], ['www:plum','plum','plum',[221,160,221],'dda0dd',14524637], ['www:powderblue','powderblue','powderblue',[176,224,230],'b0e0e6',11591910], ['www:purple','purple','purple',[128,0,128],'800080',8388736], ['www:red','red','red',[255,0,0],'ff0000',16711680], ['www:rosybrown','rosybrown','rosybrown',[188,143,143],'bc8f8f',12357519], ['www:royalblue','royalblue','royalblue',[65,105,225],'4169e1',4286945], ['www:saddlebrown','saddlebrown','saddlebrown',[139,69,19],'8b4513',9127187], ['www:salmon','salmon','salmon',[250,128,114],'fa8072',16416882], ['www:sandybrown','sandybrown','sandybrown',[244,164,96],'f4a460',16032864], ['www:seagreen','seagreen','seagreen',[46,139,87],'2e8b57',3050327], ['www:seashell','seashell','seashell',[255,245,238],'fff5ee',16774638], ['www:sienna','sienna','sienna',[160,82,45],'a0522d',10506797], ['www:silver','silver','silver',[192,192,192],'c0c0c0',12632256], ['www:skyblue','skyblue','skyblue',[135,206,235],'87ceeb',8900331], ['www:slateblue','slateblue','slateblue',[106,90,205],'6a5acd',6970061], ['www:slategray','slategray','slategray',[112,128,144],'708090',7372944], ['www:slategrey','slategrey','slategrey',[112,128,144],'708090',7372944], ['www:snow','snow','snow',[255,250,250],'fffafa',16775930], ['www:springgreen','springgreen','springgreen',[0,255,127],'00ff7f',65407], ['www:steelblue','steelblue','steelblue',[70,130,180],'4682b4',4620980], ['www:tan','tan','tan',[210,180,140],'d2b48c',13808780], ['www:teal','teal','teal',[0,128,128],'008080',32896], ['www:thistle','thistle','thistle',[216,191,216],'d8bfd8',14204888], ['www:tomato','tomato','tomato',[255,99,71],'ff6347',16737095], ['www:turquoise','turquoise','turquoise',[64,224,208],'40e0d0',4251856], ['www:violet','violet','violet',[238,130,238],'ee82ee',15631086], ['www:wheat','wheat','wheat',[245,222,179],'f5deb3',16113331], ['www:white','white','white',[255,255,255],'ffffff',16777215], ['www:whitesmoke','whitesmoke','whitesmoke',[245,245,245],'f5f5f5',16119285], ['www:yellow','yellow','yellow',[255,255,0],'ffff00',16776960], ['www:yellowgreen','yellowgreen','yellowgreen',[154,205,50],'9acd32',10145074] ]; } sub _description { return { 'subtitle' => 'An alias of the SVG color dictionary', 'title' => 'WWW', 'description' => 'This is an alias for the SVG dictionary. It is here for compatibility with Graphics::ColorNames::WWW Originally intended by Claus Farber to be a combination of HTML, Mozilla, an IE dictionaries. SVG turns out to be a superset of all of these, however. ' } } 1; X11.pm100644000765000024 27506511667760546 21670 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionarypackage Color::Library::Dictionary::X11; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::X11; =pod =head1 NAME Color::Library::Dictionary::X11 - (X11) Colors for the X11 Window System (rgb.txt) =head1 DESCRIPTION X11/rgb.txt (often /usr/X11R6/lib/X11/rgb.txt) from the X11 Window System distribution. =head1 COLORS aliceblue aliceblue #f0f8ff alice blue aliceblue #f0f8ff antiquewhite antiquewhite #faebd7 antique white antiquewhite #faebd7 antiquewhite1 antiquewhite1 #ffefdb antiquewhite2 antiquewhite2 #eedfcc antiquewhite3 antiquewhite3 #cdc0b0 antiquewhite4 antiquewhite4 #8b8378 aquamarine aquamarine #7fffd4 aquamarine1 aquamarine1 #7fffd4 aquamarine2 aquamarine2 #76eec6 aquamarine3 aquamarine3 #66cdaa aquamarine4 aquamarine4 #458b74 azure azure #f0ffff azure1 azure1 #f0ffff azure2 azure2 #e0eeee azure3 azure3 #c1cdcd azure4 azure4 #838b8b beige beige #f5f5dc bisque bisque #ffe4c4 bisque1 bisque1 #ffe4c4 bisque2 bisque2 #eed5b7 bisque3 bisque3 #cdb79e bisque4 bisque4 #8b7d6b black black #000000 blanched almond blanchedalmond #ffebcd blanchedalmond blanchedalmond #ffebcd blue blue #0000ff blue1 blue1 #0000ff blue2 blue2 #0000ee blue3 blue3 #0000cd blue4 blue4 #00008b blueviolet blueviolet #8a2be2 blue violet blueviolet #8a2be2 brown brown #a52a2a brown1 brown1 #ff4040 brown2 brown2 #ee3b3b brown3 brown3 #cd3333 brown4 brown4 #8b2323 burlywood burlywood #deb887 burlywood1 burlywood1 #ffd39b burlywood2 burlywood2 #eec591 burlywood3 burlywood3 #cdaa7d burlywood4 burlywood4 #8b7355 cadetblue cadetblue #5f9ea0 cadet blue cadetblue #5f9ea0 cadetblue1 cadetblue1 #98f5ff cadetblue2 cadetblue2 #8ee5ee cadetblue3 cadetblue3 #7ac5cd cadetblue4 cadetblue4 #53868b chartreuse chartreuse #7fff00 chartreuse1 chartreuse1 #7fff00 chartreuse2 chartreuse2 #76ee00 chartreuse3 chartreuse3 #66cd00 chartreuse4 chartreuse4 #458b00 chocolate chocolate #d2691e chocolate1 chocolate1 #ff7f24 chocolate2 chocolate2 #ee7621 chocolate3 chocolate3 #cd661d chocolate4 chocolate4 #8b4513 coral coral #ff7f50 coral1 coral1 #ff7256 coral2 coral2 #ee6a50 coral3 coral3 #cd5b45 coral4 coral4 #8b3e2f cornflower blue cornflowerblue #6495ed cornflowerblue cornflowerblue #6495ed cornsilk cornsilk #fff8dc cornsilk1 cornsilk1 #fff8dc cornsilk2 cornsilk2 #eee8cd cornsilk3 cornsilk3 #cdc8b1 cornsilk4 cornsilk4 #8b8878 cyan cyan #00ffff cyan1 cyan1 #00ffff cyan2 cyan2 #00eeee cyan3 cyan3 #00cdcd cyan4 cyan4 #008b8b dark blue darkblue #00008b darkblue darkblue #00008b darkcyan darkcyan #008b8b dark cyan darkcyan #008b8b darkgoldenrod darkgoldenrod #b8860b dark goldenrod darkgoldenrod #b8860b darkgoldenrod1 darkgoldenrod1 #ffb90f darkgoldenrod2 darkgoldenrod2 #eead0e darkgoldenrod3 darkgoldenrod3 #cd950c darkgoldenrod4 darkgoldenrod4 #8b6508 dark gray darkgray #a9a9a9 darkgray darkgray #a9a9a9 darkgreen darkgreen #006400 dark green darkgreen #006400 dark grey darkgrey #a9a9a9 darkgrey darkgrey #a9a9a9 dark khaki darkkhaki #bdb76b darkkhaki darkkhaki #bdb76b dark magenta darkmagenta #8b008b darkmagenta darkmagenta #8b008b dark olive green darkolivegreen #556b2f darkolivegreen darkolivegreen #556b2f darkolivegreen1 darkolivegreen1 #caff70 darkolivegreen2 darkolivegreen2 #bcee68 darkolivegreen3 darkolivegreen3 #a2cd5a darkolivegreen4 darkolivegreen4 #6e8b3d dark orange darkorange #ff8c00 darkorange darkorange #ff8c00 darkorange1 darkorange1 #ff7f00 darkorange2 darkorange2 #ee7600 darkorange3 darkorange3 #cd6600 darkorange4 darkorange4 #8b4500 darkorchid darkorchid #9932cc dark orchid darkorchid #9932cc darkorchid1 darkorchid1 #bf3eff darkorchid2 darkorchid2 #b23aee darkorchid3 darkorchid3 #9a32cd darkorchid4 darkorchid4 #68228b dark red darkred #8b0000 darkred darkred #8b0000 dark salmon darksalmon #e9967a darksalmon darksalmon #e9967a dark sea green darkseagreen #8fbc8f darkseagreen darkseagreen #8fbc8f darkseagreen1 darkseagreen1 #c1ffc1 darkseagreen2 darkseagreen2 #b4eeb4 darkseagreen3 darkseagreen3 #9bcd9b darkseagreen4 darkseagreen4 #698b69 dark slate blue darkslateblue #483d8b darkslateblue darkslateblue #483d8b dark slate gray darkslategray #2f4f4f darkslategray darkslategray #2f4f4f darkslategray1 darkslategray1 #97ffff darkslategray2 darkslategray2 #8deeee darkslategray3 darkslategray3 #79cdcd darkslategray4 darkslategray4 #528b8b dark slate grey darkslategrey #2f4f4f darkslategrey darkslategrey #2f4f4f darkslategrey1 darkslategrey1 #97ffff darkslategrey2 darkslategrey2 #8deeee darkslategrey3 darkslategrey3 #79cdcd darkslategrey4 darkslategrey4 #528b8b dark turquoise darkturquoise #00ced1 darkturquoise darkturquoise #00ced1 darkviolet darkviolet #9400d3 dark violet darkviolet #9400d3 deep pink deeppink #ff1493 deeppink deeppink #ff1493 deeppink1 deeppink1 #ff1493 deeppink2 deeppink2 #ee1289 deeppink3 deeppink3 #cd1076 deeppink4 deeppink4 #8b0a50 deepskyblue deepskyblue #00bfff deep sky blue deepskyblue #00bfff deepskyblue1 deepskyblue1 #00bfff deepskyblue2 deepskyblue2 #00b2ee deepskyblue3 deepskyblue3 #009acd deepskyblue4 deepskyblue4 #00688b dimgray dimgray #696969 dim gray dimgray #696969 dim grey dimgrey #696969 dimgrey dimgrey #696969 dodger blue dodgerblue #1e90ff dodgerblue dodgerblue #1e90ff dodgerblue1 dodgerblue1 #1e90ff dodgerblue2 dodgerblue2 #1c86ee dodgerblue3 dodgerblue3 #1874cd dodgerblue4 dodgerblue4 #104e8b firebrick firebrick #b22222 firebrick1 firebrick1 #ff3030 firebrick2 firebrick2 #ee2c2c firebrick3 firebrick3 #cd2626 firebrick4 firebrick4 #8b1a1a floral white floralwhite #fffaf0 floralwhite floralwhite #fffaf0 forestgreen forestgreen #228b22 forest green forestgreen #228b22 gainsboro gainsboro #dcdcdc ghostwhite ghostwhite #f8f8ff ghost white ghostwhite #f8f8ff gold gold #ffd700 gold1 gold1 #ffd700 gold2 gold2 #eec900 gold3 gold3 #cdad00 gold4 gold4 #8b7500 goldenrod goldenrod #daa520 goldenrod1 goldenrod1 #ffc125 goldenrod2 goldenrod2 #eeb422 goldenrod3 goldenrod3 #cd9b1d goldenrod4 goldenrod4 #8b6914 gray gray #bebebe gray0 gray0 #000000 gray1 gray1 #030303 gray10 gray10 #1a1a1a gray100 gray100 #ffffff gray11 gray11 #1c1c1c gray12 gray12 #1f1f1f gray13 gray13 #212121 gray14 gray14 #242424 gray15 gray15 #262626 gray16 gray16 #292929 gray17 gray17 #2b2b2b gray18 gray18 #2e2e2e gray19 gray19 #303030 gray2 gray2 #050505 gray20 gray20 #333333 gray21 gray21 #363636 gray22 gray22 #383838 gray23 gray23 #3b3b3b gray24 gray24 #3d3d3d gray25 gray25 #404040 gray26 gray26 #424242 gray27 gray27 #454545 gray28 gray28 #474747 gray29 gray29 #4a4a4a gray3 gray3 #080808 gray30 gray30 #4d4d4d gray31 gray31 #4f4f4f gray32 gray32 #525252 gray33 gray33 #545454 gray34 gray34 #575757 gray35 gray35 #595959 gray36 gray36 #5c5c5c gray37 gray37 #5e5e5e gray38 gray38 #616161 gray39 gray39 #636363 gray4 gray4 #0a0a0a gray40 gray40 #666666 gray41 gray41 #696969 gray42 gray42 #6b6b6b gray43 gray43 #6e6e6e gray44 gray44 #707070 gray45 gray45 #737373 gray46 gray46 #757575 gray47 gray47 #787878 gray48 gray48 #7a7a7a gray49 gray49 #7d7d7d gray5 gray5 #0d0d0d gray50 gray50 #7f7f7f gray51 gray51 #828282 gray52 gray52 #858585 gray53 gray53 #878787 gray54 gray54 #8a8a8a gray55 gray55 #8c8c8c gray56 gray56 #8f8f8f gray57 gray57 #919191 gray58 gray58 #949494 gray59 gray59 #969696 gray6 gray6 #0f0f0f gray60 gray60 #999999 gray61 gray61 #9c9c9c gray62 gray62 #9e9e9e gray63 gray63 #a1a1a1 gray64 gray64 #a3a3a3 gray65 gray65 #a6a6a6 gray66 gray66 #a8a8a8 gray67 gray67 #ababab gray68 gray68 #adadad gray69 gray69 #b0b0b0 gray7 gray7 #121212 gray70 gray70 #b3b3b3 gray71 gray71 #b5b5b5 gray72 gray72 #b8b8b8 gray73 gray73 #bababa gray74 gray74 #bdbdbd gray75 gray75 #bfbfbf gray76 gray76 #c2c2c2 gray77 gray77 #c4c4c4 gray78 gray78 #c7c7c7 gray79 gray79 #c9c9c9 gray8 gray8 #141414 gray80 gray80 #cccccc gray81 gray81 #cfcfcf gray82 gray82 #d1d1d1 gray83 gray83 #d4d4d4 gray84 gray84 #d6d6d6 gray85 gray85 #d9d9d9 gray86 gray86 #dbdbdb gray87 gray87 #dedede gray88 gray88 #e0e0e0 gray89 gray89 #e3e3e3 gray9 gray9 #171717 gray90 gray90 #e5e5e5 gray91 gray91 #e8e8e8 gray92 gray92 #ebebeb gray93 gray93 #ededed gray94 gray94 #f0f0f0 gray95 gray95 #f2f2f2 gray96 gray96 #f5f5f5 gray97 gray97 #f7f7f7 gray98 gray98 #fafafa gray99 gray99 #fcfcfc green green #00ff00 green1 green1 #00ff00 green2 green2 #00ee00 green3 green3 #00cd00 green4 green4 #008b00 green yellow greenyellow #adff2f greenyellow greenyellow #adff2f grey grey #bebebe grey0 grey0 #000000 grey1 grey1 #030303 grey10 grey10 #1a1a1a grey100 grey100 #ffffff grey11 grey11 #1c1c1c grey12 grey12 #1f1f1f grey13 grey13 #212121 grey14 grey14 #242424 grey15 grey15 #262626 grey16 grey16 #292929 grey17 grey17 #2b2b2b grey18 grey18 #2e2e2e grey19 grey19 #303030 grey2 grey2 #050505 grey20 grey20 #333333 grey21 grey21 #363636 grey22 grey22 #383838 grey23 grey23 #3b3b3b grey24 grey24 #3d3d3d grey25 grey25 #404040 grey26 grey26 #424242 grey27 grey27 #454545 grey28 grey28 #474747 grey29 grey29 #4a4a4a grey3 grey3 #080808 grey30 grey30 #4d4d4d grey31 grey31 #4f4f4f grey32 grey32 #525252 grey33 grey33 #545454 grey34 grey34 #575757 grey35 grey35 #595959 grey36 grey36 #5c5c5c grey37 grey37 #5e5e5e grey38 grey38 #616161 grey39 grey39 #636363 grey4 grey4 #0a0a0a grey40 grey40 #666666 grey41 grey41 #696969 grey42 grey42 #6b6b6b grey43 grey43 #6e6e6e grey44 grey44 #707070 grey45 grey45 #737373 grey46 grey46 #757575 grey47 grey47 #787878 grey48 grey48 #7a7a7a grey49 grey49 #7d7d7d grey5 grey5 #0d0d0d grey50 grey50 #7f7f7f grey51 grey51 #828282 grey52 grey52 #858585 grey53 grey53 #878787 grey54 grey54 #8a8a8a grey55 grey55 #8c8c8c grey56 grey56 #8f8f8f grey57 grey57 #919191 grey58 grey58 #949494 grey59 grey59 #969696 grey6 grey6 #0f0f0f grey60 grey60 #999999 grey61 grey61 #9c9c9c grey62 grey62 #9e9e9e grey63 grey63 #a1a1a1 grey64 grey64 #a3a3a3 grey65 grey65 #a6a6a6 grey66 grey66 #a8a8a8 grey67 grey67 #ababab grey68 grey68 #adadad grey69 grey69 #b0b0b0 grey7 grey7 #121212 grey70 grey70 #b3b3b3 grey71 grey71 #b5b5b5 grey72 grey72 #b8b8b8 grey73 grey73 #bababa grey74 grey74 #bdbdbd grey75 grey75 #bfbfbf grey76 grey76 #c2c2c2 grey77 grey77 #c4c4c4 grey78 grey78 #c7c7c7 grey79 grey79 #c9c9c9 grey8 grey8 #141414 grey80 grey80 #cccccc grey81 grey81 #cfcfcf grey82 grey82 #d1d1d1 grey83 grey83 #d4d4d4 grey84 grey84 #d6d6d6 grey85 grey85 #d9d9d9 grey86 grey86 #dbdbdb grey87 grey87 #dedede grey88 grey88 #e0e0e0 grey89 grey89 #e3e3e3 grey9 grey9 #171717 grey90 grey90 #e5e5e5 grey91 grey91 #e8e8e8 grey92 grey92 #ebebeb grey93 grey93 #ededed grey94 grey94 #f0f0f0 grey95 grey95 #f2f2f2 grey96 grey96 #f5f5f5 grey97 grey97 #f7f7f7 grey98 grey98 #fafafa grey99 grey99 #fcfcfc honeydew honeydew #f0fff0 honeydew1 honeydew1 #f0fff0 honeydew2 honeydew2 #e0eee0 honeydew3 honeydew3 #c1cdc1 honeydew4 honeydew4 #838b83 hot pink hotpink #ff69b4 hotpink hotpink #ff69b4 hotpink1 hotpink1 #ff6eb4 hotpink2 hotpink2 #ee6aa7 hotpink3 hotpink3 #cd6090 hotpink4 hotpink4 #8b3a62 indianred indianred #cd5c5c indian red indianred #cd5c5c indianred1 indianred1 #ff6a6a indianred2 indianred2 #ee6363 indianred3 indianred3 #cd5555 indianred4 indianred4 #8b3a3a ivory ivory #fffff0 ivory1 ivory1 #fffff0 ivory2 ivory2 #eeeee0 ivory3 ivory3 #cdcdc1 ivory4 ivory4 #8b8b83 khaki khaki #f0e68c khaki1 khaki1 #fff68f khaki2 khaki2 #eee685 khaki3 khaki3 #cdc673 khaki4 khaki4 #8b864e lavender lavender #e6e6fa lavenderblush lavenderblush #fff0f5 lavender blush lavenderblush #fff0f5 lavenderblush1 lavenderblush1 #fff0f5 lavenderblush2 lavenderblush2 #eee0e5 lavenderblush3 lavenderblush3 #cdc1c5 lavenderblush4 lavenderblush4 #8b8386 lawn green lawngreen #7cfc00 lawngreen lawngreen #7cfc00 lemonchiffon lemonchiffon #fffacd lemon chiffon lemonchiffon #fffacd lemonchiffon1 lemonchiffon1 #fffacd lemonchiffon2 lemonchiffon2 #eee9bf lemonchiffon3 lemonchiffon3 #cdc9a5 lemonchiffon4 lemonchiffon4 #8b8970 lightblue lightblue #add8e6 light blue lightblue #add8e6 lightblue1 lightblue1 #bfefff lightblue2 lightblue2 #b2dfee lightblue3 lightblue3 #9ac0cd lightblue4 lightblue4 #68838b lightcoral lightcoral #f08080 light coral lightcoral #f08080 lightcyan lightcyan #e0ffff light cyan lightcyan #e0ffff lightcyan1 lightcyan1 #e0ffff lightcyan2 lightcyan2 #d1eeee lightcyan3 lightcyan3 #b4cdcd lightcyan4 lightcyan4 #7a8b8b lightgoldenrod lightgoldenrod #eedd82 light goldenrod lightgoldenrod #eedd82 lightgoldenrod1 lightgoldenrod1 #ffec8b lightgoldenrod2 lightgoldenrod2 #eedc82 lightgoldenrod3 lightgoldenrod3 #cdbe70 lightgoldenrod4 lightgoldenrod4 #8b814c lightgoldenrodyellow lightgoldenrodyellow #fafad2 light goldenrod yellow lightgoldenrodyellow #fafad2 lightgray lightgray #d3d3d3 light gray lightgray #d3d3d3 light green lightgreen #90ee90 lightgreen lightgreen #90ee90 lightgrey lightgrey #d3d3d3 light grey lightgrey #d3d3d3 lightpink lightpink #ffb6c1 light pink lightpink #ffb6c1 lightpink1 lightpink1 #ffaeb9 lightpink2 lightpink2 #eea2ad lightpink3 lightpink3 #cd8c95 lightpink4 lightpink4 #8b5f65 light salmon lightsalmon #ffa07a lightsalmon lightsalmon #ffa07a lightsalmon1 lightsalmon1 #ffa07a lightsalmon2 lightsalmon2 #ee9572 lightsalmon3 lightsalmon3 #cd8162 lightsalmon4 lightsalmon4 #8b5742 light sea green lightseagreen #20b2aa lightseagreen lightseagreen #20b2aa light sky blue lightskyblue #87cefa lightskyblue lightskyblue #87cefa lightskyblue1 lightskyblue1 #b0e2ff lightskyblue2 lightskyblue2 #a4d3ee lightskyblue3 lightskyblue3 #8db6cd lightskyblue4 lightskyblue4 #607b8b light slate blue lightslateblue #8470ff lightslateblue lightslateblue #8470ff light slate gray lightslategray #778899 lightslategray lightslategray #778899 light slate grey lightslategrey #778899 lightslategrey lightslategrey #778899 lightsteelblue lightsteelblue #b0c4de light steel blue lightsteelblue #b0c4de lightsteelblue1 lightsteelblue1 #cae1ff lightsteelblue2 lightsteelblue2 #bcd2ee lightsteelblue3 lightsteelblue3 #a2b5cd lightsteelblue4 lightsteelblue4 #6e7b8b lightyellow lightyellow #ffffe0 light yellow lightyellow #ffffe0 lightyellow1 lightyellow1 #ffffe0 lightyellow2 lightyellow2 #eeeed1 lightyellow3 lightyellow3 #cdcdb4 lightyellow4 lightyellow4 #8b8b7a lime green limegreen #32cd32 limegreen limegreen #32cd32 linen linen #faf0e6 magenta magenta #ff00ff magenta1 magenta1 #ff00ff magenta2 magenta2 #ee00ee magenta3 magenta3 #cd00cd magenta4 magenta4 #8b008b maroon maroon #b03060 maroon1 maroon1 #ff34b3 maroon2 maroon2 #ee30a7 maroon3 maroon3 #cd2990 maroon4 maroon4 #8b1c62 mediumaquamarine mediumaquamarine #66cdaa medium aquamarine mediumaquamarine #66cdaa mediumblue mediumblue #0000cd medium blue mediumblue #0000cd medium orchid mediumorchid #ba55d3 mediumorchid mediumorchid #ba55d3 mediumorchid1 mediumorchid1 #e066ff mediumorchid2 mediumorchid2 #d15fee mediumorchid3 mediumorchid3 #b452cd mediumorchid4 mediumorchid4 #7a378b medium purple mediumpurple #9370db mediumpurple mediumpurple #9370db mediumpurple1 mediumpurple1 #ab82ff mediumpurple2 mediumpurple2 #9f79ee mediumpurple3 mediumpurple3 #8968cd mediumpurple4 mediumpurple4 #5d478b medium sea green mediumseagreen #3cb371 mediumseagreen mediumseagreen #3cb371 mediumslateblue mediumslateblue #7b68ee medium slate blue mediumslateblue #7b68ee mediumspringgreen mediumspringgreen #00fa9a medium spring green mediumspringgreen #00fa9a medium turquoise mediumturquoise #48d1cc mediumturquoise mediumturquoise #48d1cc mediumvioletred mediumvioletred #c71585 medium violet red mediumvioletred #c71585 midnight blue midnightblue #191970 midnightblue midnightblue #191970 mint cream mintcream #f5fffa mintcream mintcream #f5fffa misty rose mistyrose #ffe4e1 mistyrose mistyrose #ffe4e1 mistyrose1 mistyrose1 #ffe4e1 mistyrose2 mistyrose2 #eed5d2 mistyrose3 mistyrose3 #cdb7b5 mistyrose4 mistyrose4 #8b7d7b moccasin moccasin #ffe4b5 navajowhite navajowhite #ffdead navajo white navajowhite #ffdead navajowhite1 navajowhite1 #ffdead navajowhite2 navajowhite2 #eecfa1 navajowhite3 navajowhite3 #cdb38b navajowhite4 navajowhite4 #8b795e navy navy #000080 navyblue navyblue #000080 navy blue navyblue #000080 oldlace oldlace #fdf5e6 old lace oldlace #fdf5e6 olivedrab olivedrab #6b8e23 olive drab olivedrab #6b8e23 olivedrab1 olivedrab1 #c0ff3e olivedrab2 olivedrab2 #b3ee3a olivedrab3 olivedrab3 #9acd32 olivedrab4 olivedrab4 #698b22 orange orange #ffa500 orange1 orange1 #ffa500 orange2 orange2 #ee9a00 orange3 orange3 #cd8500 orange4 orange4 #8b5a00 orange red orangered #ff4500 orangered orangered #ff4500 orangered1 orangered1 #ff4500 orangered2 orangered2 #ee4000 orangered3 orangered3 #cd3700 orangered4 orangered4 #8b2500 orchid orchid #da70d6 orchid1 orchid1 #ff83fa orchid2 orchid2 #ee7ae9 orchid3 orchid3 #cd69c9 orchid4 orchid4 #8b4789 palegoldenrod palegoldenrod #eee8aa pale goldenrod palegoldenrod #eee8aa palegreen palegreen #98fb98 pale green palegreen #98fb98 palegreen1 palegreen1 #9aff9a palegreen2 palegreen2 #90ee90 palegreen3 palegreen3 #7ccd7c palegreen4 palegreen4 #548b54 pale turquoise paleturquoise #afeeee paleturquoise paleturquoise #afeeee paleturquoise1 paleturquoise1 #bbffff paleturquoise2 paleturquoise2 #aeeeee paleturquoise3 paleturquoise3 #96cdcd paleturquoise4 paleturquoise4 #668b8b pale violet red palevioletred #db7093 palevioletred palevioletred #db7093 palevioletred1 palevioletred1 #ff82ab palevioletred2 palevioletred2 #ee799f palevioletred3 palevioletred3 #cd6889 palevioletred4 palevioletred4 #8b475d papayawhip papayawhip #ffefd5 papaya whip papayawhip #ffefd5 peachpuff peachpuff #ffdab9 peach puff peachpuff #ffdab9 peachpuff1 peachpuff1 #ffdab9 peachpuff2 peachpuff2 #eecbad peachpuff3 peachpuff3 #cdaf95 peachpuff4 peachpuff4 #8b7765 peru peru #cd853f pink pink #ffc0cb pink1 pink1 #ffb5c5 pink2 pink2 #eea9b8 pink3 pink3 #cd919e pink4 pink4 #8b636c plum plum #dda0dd plum1 plum1 #ffbbff plum2 plum2 #eeaeee plum3 plum3 #cd96cd plum4 plum4 #8b668b powder blue powderblue #b0e0e6 powderblue powderblue #b0e0e6 purple purple #a020f0 purple1 purple1 #9b30ff purple2 purple2 #912cee purple3 purple3 #7d26cd purple4 purple4 #551a8b red red #ff0000 red1 red1 #ff0000 red2 red2 #ee0000 red3 red3 #cd0000 red4 red4 #8b0000 rosybrown rosybrown #bc8f8f rosy brown rosybrown #bc8f8f rosybrown1 rosybrown1 #ffc1c1 rosybrown2 rosybrown2 #eeb4b4 rosybrown3 rosybrown3 #cd9b9b rosybrown4 rosybrown4 #8b6969 royalblue royalblue #4169e1 royal blue royalblue #4169e1 royalblue1 royalblue1 #4876ff royalblue2 royalblue2 #436eee royalblue3 royalblue3 #3a5fcd royalblue4 royalblue4 #27408b saddlebrown saddlebrown #8b4513 saddle brown saddlebrown #8b4513 salmon salmon #fa8072 salmon1 salmon1 #ff8c69 salmon2 salmon2 #ee8262 salmon3 salmon3 #cd7054 salmon4 salmon4 #8b4c39 sandybrown sandybrown #f4a460 sandy brown sandybrown #f4a460 sea green seagreen #2e8b57 seagreen seagreen #2e8b57 seagreen1 seagreen1 #54ff9f seagreen2 seagreen2 #4eee94 seagreen3 seagreen3 #43cd80 seagreen4 seagreen4 #2e8b57 seashell seashell #fff5ee seashell1 seashell1 #fff5ee seashell2 seashell2 #eee5de seashell3 seashell3 #cdc5bf seashell4 seashell4 #8b8682 sienna sienna #a0522d sienna1 sienna1 #ff8247 sienna2 sienna2 #ee7942 sienna3 sienna3 #cd6839 sienna4 sienna4 #8b4726 sky blue skyblue #87ceeb skyblue skyblue #87ceeb skyblue1 skyblue1 #87ceff skyblue2 skyblue2 #7ec0ee skyblue3 skyblue3 #6ca6cd skyblue4 skyblue4 #4a708b slateblue slateblue #6a5acd slate blue slateblue #6a5acd slateblue1 slateblue1 #836fff slateblue2 slateblue2 #7a67ee slateblue3 slateblue3 #6959cd slateblue4 slateblue4 #473c8b slategray slategray #708090 slate gray slategray #708090 slategray1 slategray1 #c6e2ff slategray2 slategray2 #b9d3ee slategray3 slategray3 #9fb6cd slategray4 slategray4 #6c7b8b slategrey slategrey #708090 slate grey slategrey #708090 slategrey1 slategrey1 #c6e2ff slategrey2 slategrey2 #b9d3ee slategrey3 slategrey3 #9fb6cd slategrey4 slategrey4 #6c7b8b snow snow #fffafa snow1 snow1 #fffafa snow2 snow2 #eee9e9 snow3 snow3 #cdc9c9 snow4 snow4 #8b8989 springgreen springgreen #00ff7f spring green springgreen #00ff7f springgreen1 springgreen1 #00ff7f springgreen2 springgreen2 #00ee76 springgreen3 springgreen3 #00cd66 springgreen4 springgreen4 #008b45 steel blue steelblue #4682b4 steelblue steelblue #4682b4 steelblue1 steelblue1 #63b8ff steelblue2 steelblue2 #5cacee steelblue3 steelblue3 #4f94cd steelblue4 steelblue4 #36648b tan tan #d2b48c tan1 tan1 #ffa54f tan2 tan2 #ee9a49 tan3 tan3 #cd853f tan4 tan4 #8b5a2b thistle thistle #d8bfd8 thistle1 thistle1 #ffe1ff thistle2 thistle2 #eed2ee thistle3 thistle3 #cdb5cd thistle4 thistle4 #8b7b8b tomato tomato #ff6347 tomato1 tomato1 #ff6347 tomato2 tomato2 #ee5c42 tomato3 tomato3 #cd4f39 tomato4 tomato4 #8b3626 turquoise turquoise #40e0d0 turquoise1 turquoise1 #00f5ff turquoise2 turquoise2 #00e5ee turquoise3 turquoise3 #00c5cd turquoise4 turquoise4 #00868b violet violet #ee82ee violet red violetred #d02090 violetred violetred #d02090 violetred1 violetred1 #ff3e96 violetred2 violetred2 #ee3a8c violetred3 violetred3 #cd3278 violetred4 violetred4 #8b2252 wheat wheat #f5deb3 wheat1 wheat1 #ffe7ba wheat2 wheat2 #eed8ae wheat3 wheat3 #cdba96 wheat4 wheat4 #8b7e66 white white #ffffff white smoke whitesmoke #f5f5f5 whitesmoke whitesmoke #f5f5f5 yellow yellow #ffff00 yellow1 yellow1 #ffff00 yellow2 yellow2 #eeee00 yellow3 yellow3 #cdcd00 yellow4 yellow4 #8b8b00 yellow green yellowgreen #9acd32 yellowgreen yellowgreen #9acd32 =cut sub _load_color_list() { return [ ['x11:aliceblue','aliceblue','aliceblue',[240,248,255],'f0f8ff',15792383], ['x11:aliceblue','aliceblue','alice blue',[240,248,255],'f0f8ff',15792383], ['x11:antiquewhite','antiquewhite','antiquewhite',[250,235,215],'faebd7',16444375], ['x11:antiquewhite','antiquewhite','antique white',[250,235,215],'faebd7',16444375], ['x11:antiquewhite1','antiquewhite1','antiquewhite1',[255,239,219],'ffefdb',16773083], ['x11:antiquewhite2','antiquewhite2','antiquewhite2',[238,223,204],'eedfcc',15654860], ['x11:antiquewhite3','antiquewhite3','antiquewhite3',[205,192,176],'cdc0b0',13484208], ['x11:antiquewhite4','antiquewhite4','antiquewhite4',[139,131,120],'8b8378',9143160], ['x11:aquamarine','aquamarine','aquamarine',[127,255,212],'7fffd4',8388564], ['x11:aquamarine1','aquamarine1','aquamarine1',[127,255,212],'7fffd4',8388564], ['x11:aquamarine2','aquamarine2','aquamarine2',[118,238,198],'76eec6',7794374], ['x11:aquamarine3','aquamarine3','aquamarine3',[102,205,170],'66cdaa',6737322], ['x11:aquamarine4','aquamarine4','aquamarine4',[69,139,116],'458b74',4557684], ['x11:azure','azure','azure',[240,255,255],'f0ffff',15794175], ['x11:azure1','azure1','azure1',[240,255,255],'f0ffff',15794175], ['x11:azure2','azure2','azure2',[224,238,238],'e0eeee',14741230], ['x11:azure3','azure3','azure3',[193,205,205],'c1cdcd',12701133], ['x11:azure4','azure4','azure4',[131,139,139],'838b8b',8620939], ['x11:beige','beige','beige',[245,245,220],'f5f5dc',16119260], ['x11:bisque','bisque','bisque',[255,228,196],'ffe4c4',16770244], ['x11:bisque1','bisque1','bisque1',[255,228,196],'ffe4c4',16770244], ['x11:bisque2','bisque2','bisque2',[238,213,183],'eed5b7',15652279], ['x11:bisque3','bisque3','bisque3',[205,183,158],'cdb79e',13481886], ['x11:bisque4','bisque4','bisque4',[139,125,107],'8b7d6b',9141611], ['x11:black','black','black',[0,0,0],'000000',0], ['x11:blanchedalmond','blanchedalmond','blanched almond',[255,235,205],'ffebcd',16772045], ['x11:blanchedalmond','blanchedalmond','blanchedalmond',[255,235,205],'ffebcd',16772045], ['x11:blue','blue','blue',[0,0,255],'0000ff',255], ['x11:blue1','blue1','blue1',[0,0,255],'0000ff',255], ['x11:blue2','blue2','blue2',[0,0,238],'0000ee',238], ['x11:blue3','blue3','blue3',[0,0,205],'0000cd',205], ['x11:blue4','blue4','blue4',[0,0,139],'00008b',139], ['x11:blueviolet','blueviolet','blueviolet',[138,43,226],'8a2be2',9055202], ['x11:blueviolet','blueviolet','blue violet',[138,43,226],'8a2be2',9055202], ['x11:brown','brown','brown',[165,42,42],'a52a2a',10824234], ['x11:brown1','brown1','brown1',[255,64,64],'ff4040',16728128], ['x11:brown2','brown2','brown2',[238,59,59],'ee3b3b',15612731], ['x11:brown3','brown3','brown3',[205,51,51],'cd3333',13447987], ['x11:brown4','brown4','brown4',[139,35,35],'8b2323',9118499], ['x11:burlywood','burlywood','burlywood',[222,184,135],'deb887',14596231], ['x11:burlywood1','burlywood1','burlywood1',[255,211,155],'ffd39b',16765851], ['x11:burlywood2','burlywood2','burlywood2',[238,197,145],'eec591',15648145], ['x11:burlywood3','burlywood3','burlywood3',[205,170,125],'cdaa7d',13478525], ['x11:burlywood4','burlywood4','burlywood4',[139,115,85],'8b7355',9139029], ['x11:cadetblue','cadetblue','cadetblue',[95,158,160],'5f9ea0',6266528], ['x11:cadetblue','cadetblue','cadet blue',[95,158,160],'5f9ea0',6266528], ['x11:cadetblue1','cadetblue1','cadetblue1',[152,245,255],'98f5ff',10024447], ['x11:cadetblue2','cadetblue2','cadetblue2',[142,229,238],'8ee5ee',9364974], ['x11:cadetblue3','cadetblue3','cadetblue3',[122,197,205],'7ac5cd',8046029], ['x11:cadetblue4','cadetblue4','cadetblue4',[83,134,139],'53868b',5473931], ['x11:chartreuse','chartreuse','chartreuse',[127,255,0],'7fff00',8388352], ['x11:chartreuse1','chartreuse1','chartreuse1',[127,255,0],'7fff00',8388352], ['x11:chartreuse2','chartreuse2','chartreuse2',[118,238,0],'76ee00',7794176], ['x11:chartreuse3','chartreuse3','chartreuse3',[102,205,0],'66cd00',6737152], ['x11:chartreuse4','chartreuse4','chartreuse4',[69,139,0],'458b00',4557568], ['x11:chocolate','chocolate','chocolate',[210,105,30],'d2691e',13789470], ['x11:chocolate1','chocolate1','chocolate1',[255,127,36],'ff7f24',16744228], ['x11:chocolate2','chocolate2','chocolate2',[238,118,33],'ee7621',15627809], ['x11:chocolate3','chocolate3','chocolate3',[205,102,29],'cd661d',13461021], ['x11:chocolate4','chocolate4','chocolate4',[139,69,19],'8b4513',9127187], ['x11:coral','coral','coral',[255,127,80],'ff7f50',16744272], ['x11:coral1','coral1','coral1',[255,114,86],'ff7256',16740950], ['x11:coral2','coral2','coral2',[238,106,80],'ee6a50',15624784], ['x11:coral3','coral3','coral3',[205,91,69],'cd5b45',13458245], ['x11:coral4','coral4','coral4',[139,62,47],'8b3e2f',9125423], ['x11:cornflowerblue','cornflowerblue','cornflower blue',[100,149,237],'6495ed',6591981], ['x11:cornflowerblue','cornflowerblue','cornflowerblue',[100,149,237],'6495ed',6591981], ['x11:cornsilk','cornsilk','cornsilk',[255,248,220],'fff8dc',16775388], ['x11:cornsilk1','cornsilk1','cornsilk1',[255,248,220],'fff8dc',16775388], ['x11:cornsilk2','cornsilk2','cornsilk2',[238,232,205],'eee8cd',15657165], ['x11:cornsilk3','cornsilk3','cornsilk3',[205,200,177],'cdc8b1',13486257], ['x11:cornsilk4','cornsilk4','cornsilk4',[139,136,120],'8b8878',9144440], ['x11:cyan','cyan','cyan',[0,255,255],'00ffff',65535], ['x11:cyan1','cyan1','cyan1',[0,255,255],'00ffff',65535], ['x11:cyan2','cyan2','cyan2',[0,238,238],'00eeee',61166], ['x11:cyan3','cyan3','cyan3',[0,205,205],'00cdcd',52685], ['x11:cyan4','cyan4','cyan4',[0,139,139],'008b8b',35723], ['x11:darkblue','darkblue','dark blue',[0,0,139],'00008b',139], ['x11:darkblue','darkblue','darkblue',[0,0,139],'00008b',139], ['x11:darkcyan','darkcyan','darkcyan',[0,139,139],'008b8b',35723], ['x11:darkcyan','darkcyan','dark cyan',[0,139,139],'008b8b',35723], ['x11:darkgoldenrod','darkgoldenrod','darkgoldenrod',[184,134,11],'b8860b',12092939], ['x11:darkgoldenrod','darkgoldenrod','dark goldenrod',[184,134,11],'b8860b',12092939], ['x11:darkgoldenrod1','darkgoldenrod1','darkgoldenrod1',[255,185,15],'ffb90f',16759055], ['x11:darkgoldenrod2','darkgoldenrod2','darkgoldenrod2',[238,173,14],'eead0e',15641870], ['x11:darkgoldenrod3','darkgoldenrod3','darkgoldenrod3',[205,149,12],'cd950c',13473036], ['x11:darkgoldenrod4','darkgoldenrod4','darkgoldenrod4',[139,101,8],'8b6508',9135368], ['x11:darkgray','darkgray','dark gray',[169,169,169],'a9a9a9',11119017], ['x11:darkgray','darkgray','darkgray',[169,169,169],'a9a9a9',11119017], ['x11:darkgreen','darkgreen','darkgreen',[0,100,0],'006400',25600], ['x11:darkgreen','darkgreen','dark green',[0,100,0],'006400',25600], ['x11:darkgrey','darkgrey','dark grey',[169,169,169],'a9a9a9',11119017], ['x11:darkgrey','darkgrey','darkgrey',[169,169,169],'a9a9a9',11119017], ['x11:darkkhaki','darkkhaki','dark khaki',[189,183,107],'bdb76b',12433259], ['x11:darkkhaki','darkkhaki','darkkhaki',[189,183,107],'bdb76b',12433259], ['x11:darkmagenta','darkmagenta','dark magenta',[139,0,139],'8b008b',9109643], ['x11:darkmagenta','darkmagenta','darkmagenta',[139,0,139],'8b008b',9109643], ['x11:darkolivegreen','darkolivegreen','dark olive green',[85,107,47],'556b2f',5597999], ['x11:darkolivegreen','darkolivegreen','darkolivegreen',[85,107,47],'556b2f',5597999], ['x11:darkolivegreen1','darkolivegreen1','darkolivegreen1',[202,255,112],'caff70',13303664], ['x11:darkolivegreen2','darkolivegreen2','darkolivegreen2',[188,238,104],'bcee68',12381800], ['x11:darkolivegreen3','darkolivegreen3','darkolivegreen3',[162,205,90],'a2cd5a',10669402], ['x11:darkolivegreen4','darkolivegreen4','darkolivegreen4',[110,139,61],'6e8b3d',7244605], ['x11:darkorange','darkorange','dark orange',[255,140,0],'ff8c00',16747520], ['x11:darkorange','darkorange','darkorange',[255,140,0],'ff8c00',16747520], ['x11:darkorange1','darkorange1','darkorange1',[255,127,0],'ff7f00',16744192], ['x11:darkorange2','darkorange2','darkorange2',[238,118,0],'ee7600',15627776], ['x11:darkorange3','darkorange3','darkorange3',[205,102,0],'cd6600',13460992], ['x11:darkorange4','darkorange4','darkorange4',[139,69,0],'8b4500',9127168], ['x11:darkorchid','darkorchid','darkorchid',[153,50,204],'9932cc',10040012], ['x11:darkorchid','darkorchid','dark orchid',[153,50,204],'9932cc',10040012], ['x11:darkorchid1','darkorchid1','darkorchid1',[191,62,255],'bf3eff',12533503], ['x11:darkorchid2','darkorchid2','darkorchid2',[178,58,238],'b23aee',11680494], ['x11:darkorchid3','darkorchid3','darkorchid3',[154,50,205],'9a32cd',10105549], ['x11:darkorchid4','darkorchid4','darkorchid4',[104,34,139],'68228b',6824587], ['x11:darkred','darkred','dark red',[139,0,0],'8b0000',9109504], ['x11:darkred','darkred','darkred',[139,0,0],'8b0000',9109504], ['x11:darksalmon','darksalmon','dark salmon',[233,150,122],'e9967a',15308410], ['x11:darksalmon','darksalmon','darksalmon',[233,150,122],'e9967a',15308410], ['x11:darkseagreen','darkseagreen','dark sea green',[143,188,143],'8fbc8f',9419919], ['x11:darkseagreen','darkseagreen','darkseagreen',[143,188,143],'8fbc8f',9419919], ['x11:darkseagreen1','darkseagreen1','darkseagreen1',[193,255,193],'c1ffc1',12713921], ['x11:darkseagreen2','darkseagreen2','darkseagreen2',[180,238,180],'b4eeb4',11857588], ['x11:darkseagreen3','darkseagreen3','darkseagreen3',[155,205,155],'9bcd9b',10210715], ['x11:darkseagreen4','darkseagreen4','darkseagreen4',[105,139,105],'698b69',6916969], ['x11:darkslateblue','darkslateblue','dark slate blue',[72,61,139],'483d8b',4734347], ['x11:darkslateblue','darkslateblue','darkslateblue',[72,61,139],'483d8b',4734347], ['x11:darkslategray','darkslategray','dark slate gray',[47,79,79],'2f4f4f',3100495], ['x11:darkslategray','darkslategray','darkslategray',[47,79,79],'2f4f4f',3100495], ['x11:darkslategray1','darkslategray1','darkslategray1',[151,255,255],'97ffff',9961471], ['x11:darkslategray2','darkslategray2','darkslategray2',[141,238,238],'8deeee',9301742], ['x11:darkslategray3','darkslategray3','darkslategray3',[121,205,205],'79cdcd',7982541], ['x11:darkslategray4','darkslategray4','darkslategray4',[82,139,139],'528b8b',5409675], ['x11:darkslategrey','darkslategrey','dark slate grey',[47,79,79],'2f4f4f',3100495], ['x11:darkslategrey','darkslategrey','darkslategrey',[47,79,79],'2f4f4f',3100495], ['x11:darkslategrey1','darkslategrey1','darkslategrey1',[151,255,255],'97ffff',9961471], ['x11:darkslategrey2','darkslategrey2','darkslategrey2',[141,238,238],'8deeee',9301742], ['x11:darkslategrey3','darkslategrey3','darkslategrey3',[121,205,205],'79cdcd',7982541], ['x11:darkslategrey4','darkslategrey4','darkslategrey4',[82,139,139],'528b8b',5409675], ['x11:darkturquoise','darkturquoise','dark turquoise',[0,206,209],'00ced1',52945], ['x11:darkturquoise','darkturquoise','darkturquoise',[0,206,209],'00ced1',52945], ['x11:darkviolet','darkviolet','darkviolet',[148,0,211],'9400d3',9699539], ['x11:darkviolet','darkviolet','dark violet',[148,0,211],'9400d3',9699539], ['x11:deeppink','deeppink','deep pink',[255,20,147],'ff1493',16716947], ['x11:deeppink','deeppink','deeppink',[255,20,147],'ff1493',16716947], ['x11:deeppink1','deeppink1','deeppink1',[255,20,147],'ff1493',16716947], ['x11:deeppink2','deeppink2','deeppink2',[238,18,137],'ee1289',15602313], ['x11:deeppink3','deeppink3','deeppink3',[205,16,118],'cd1076',13439094], ['x11:deeppink4','deeppink4','deeppink4',[139,10,80],'8b0a50',9112144], ['x11:deepskyblue','deepskyblue','deepskyblue',[0,191,255],'00bfff',49151], ['x11:deepskyblue','deepskyblue','deep sky blue',[0,191,255],'00bfff',49151], ['x11:deepskyblue1','deepskyblue1','deepskyblue1',[0,191,255],'00bfff',49151], ['x11:deepskyblue2','deepskyblue2','deepskyblue2',[0,178,238],'00b2ee',45806], ['x11:deepskyblue3','deepskyblue3','deepskyblue3',[0,154,205],'009acd',39629], ['x11:deepskyblue4','deepskyblue4','deepskyblue4',[0,104,139],'00688b',26763], ['x11:dimgray','dimgray','dimgray',[105,105,105],'696969',6908265], ['x11:dimgray','dimgray','dim gray',[105,105,105],'696969',6908265], ['x11:dimgrey','dimgrey','dim grey',[105,105,105],'696969',6908265], ['x11:dimgrey','dimgrey','dimgrey',[105,105,105],'696969',6908265], ['x11:dodgerblue','dodgerblue','dodger blue',[30,144,255],'1e90ff',2003199], ['x11:dodgerblue','dodgerblue','dodgerblue',[30,144,255],'1e90ff',2003199], ['x11:dodgerblue1','dodgerblue1','dodgerblue1',[30,144,255],'1e90ff',2003199], ['x11:dodgerblue2','dodgerblue2','dodgerblue2',[28,134,238],'1c86ee',1869550], ['x11:dodgerblue3','dodgerblue3','dodgerblue3',[24,116,205],'1874cd',1602765], ['x11:dodgerblue4','dodgerblue4','dodgerblue4',[16,78,139],'104e8b',1068683], ['x11:firebrick','firebrick','firebrick',[178,34,34],'b22222',11674146], ['x11:firebrick1','firebrick1','firebrick1',[255,48,48],'ff3030',16724016], ['x11:firebrick2','firebrick2','firebrick2',[238,44,44],'ee2c2c',15608876], ['x11:firebrick3','firebrick3','firebrick3',[205,38,38],'cd2626',13444646], ['x11:firebrick4','firebrick4','firebrick4',[139,26,26],'8b1a1a',9116186], ['x11:floralwhite','floralwhite','floral white',[255,250,240],'fffaf0',16775920], ['x11:floralwhite','floralwhite','floralwhite',[255,250,240],'fffaf0',16775920], ['x11:forestgreen','forestgreen','forestgreen',[34,139,34],'228b22',2263842], ['x11:forestgreen','forestgreen','forest green',[34,139,34],'228b22',2263842], ['x11:gainsboro','gainsboro','gainsboro',[220,220,220],'dcdcdc',14474460], ['x11:ghostwhite','ghostwhite','ghostwhite',[248,248,255],'f8f8ff',16316671], ['x11:ghostwhite','ghostwhite','ghost white',[248,248,255],'f8f8ff',16316671], ['x11:gold','gold','gold',[255,215,0],'ffd700',16766720], ['x11:gold1','gold1','gold1',[255,215,0],'ffd700',16766720], ['x11:gold2','gold2','gold2',[238,201,0],'eec900',15649024], ['x11:gold3','gold3','gold3',[205,173,0],'cdad00',13479168], ['x11:gold4','gold4','gold4',[139,117,0],'8b7500',9139456], ['x11:goldenrod','goldenrod','goldenrod',[218,165,32],'daa520',14329120], ['x11:goldenrod1','goldenrod1','goldenrod1',[255,193,37],'ffc125',16761125], ['x11:goldenrod2','goldenrod2','goldenrod2',[238,180,34],'eeb422',15643682], ['x11:goldenrod3','goldenrod3','goldenrod3',[205,155,29],'cd9b1d',13474589], ['x11:goldenrod4','goldenrod4','goldenrod4',[139,105,20],'8b6914',9136404], ['x11:gray','gray','gray',[190,190,190],'bebebe',12500670], ['x11:gray0','gray0','gray0',[0,0,0],'000000',0], ['x11:gray1','gray1','gray1',[3,3,3],'030303',197379], ['x11:gray10','gray10','gray10',[26,26,26],'1a1a1a',1710618], ['x11:gray100','gray100','gray100',[255,255,255],'ffffff',16777215], ['x11:gray11','gray11','gray11',[28,28,28],'1c1c1c',1842204], ['x11:gray12','gray12','gray12',[31,31,31],'1f1f1f',2039583], ['x11:gray13','gray13','gray13',[33,33,33],'212121',2171169], ['x11:gray14','gray14','gray14',[36,36,36],'242424',2368548], ['x11:gray15','gray15','gray15',[38,38,38],'262626',2500134], ['x11:gray16','gray16','gray16',[41,41,41],'292929',2697513], ['x11:gray17','gray17','gray17',[43,43,43],'2b2b2b',2829099], ['x11:gray18','gray18','gray18',[46,46,46],'2e2e2e',3026478], ['x11:gray19','gray19','gray19',[48,48,48],'303030',3158064], ['x11:gray2','gray2','gray2',[5,5,5],'050505',328965], ['x11:gray20','gray20','gray20',[51,51,51],'333333',3355443], ['x11:gray21','gray21','gray21',[54,54,54],'363636',3552822], ['x11:gray22','gray22','gray22',[56,56,56],'383838',3684408], ['x11:gray23','gray23','gray23',[59,59,59],'3b3b3b',3881787], ['x11:gray24','gray24','gray24',[61,61,61],'3d3d3d',4013373], ['x11:gray25','gray25','gray25',[64,64,64],'404040',4210752], ['x11:gray26','gray26','gray26',[66,66,66],'424242',4342338], ['x11:gray27','gray27','gray27',[69,69,69],'454545',4539717], ['x11:gray28','gray28','gray28',[71,71,71],'474747',4671303], ['x11:gray29','gray29','gray29',[74,74,74],'4a4a4a',4868682], ['x11:gray3','gray3','gray3',[8,8,8],'080808',526344], ['x11:gray30','gray30','gray30',[77,77,77],'4d4d4d',5066061], ['x11:gray31','gray31','gray31',[79,79,79],'4f4f4f',5197647], ['x11:gray32','gray32','gray32',[82,82,82],'525252',5395026], ['x11:gray33','gray33','gray33',[84,84,84],'545454',5526612], ['x11:gray34','gray34','gray34',[87,87,87],'575757',5723991], ['x11:gray35','gray35','gray35',[89,89,89],'595959',5855577], ['x11:gray36','gray36','gray36',[92,92,92],'5c5c5c',6052956], ['x11:gray37','gray37','gray37',[94,94,94],'5e5e5e',6184542], ['x11:gray38','gray38','gray38',[97,97,97],'616161',6381921], ['x11:gray39','gray39','gray39',[99,99,99],'636363',6513507], ['x11:gray4','gray4','gray4',[10,10,10],'0a0a0a',657930], ['x11:gray40','gray40','gray40',[102,102,102],'666666',6710886], ['x11:gray41','gray41','gray41',[105,105,105],'696969',6908265], ['x11:gray42','gray42','gray42',[107,107,107],'6b6b6b',7039851], ['x11:gray43','gray43','gray43',[110,110,110],'6e6e6e',7237230], ['x11:gray44','gray44','gray44',[112,112,112],'707070',7368816], ['x11:gray45','gray45','gray45',[115,115,115],'737373',7566195], ['x11:gray46','gray46','gray46',[117,117,117],'757575',7697781], ['x11:gray47','gray47','gray47',[120,120,120],'787878',7895160], ['x11:gray48','gray48','gray48',[122,122,122],'7a7a7a',8026746], ['x11:gray49','gray49','gray49',[125,125,125],'7d7d7d',8224125], ['x11:gray5','gray5','gray5',[13,13,13],'0d0d0d',855309], ['x11:gray50','gray50','gray50',[127,127,127],'7f7f7f',8355711], ['x11:gray51','gray51','gray51',[130,130,130],'828282',8553090], ['x11:gray52','gray52','gray52',[133,133,133],'858585',8750469], ['x11:gray53','gray53','gray53',[135,135,135],'878787',8882055], ['x11:gray54','gray54','gray54',[138,138,138],'8a8a8a',9079434], ['x11:gray55','gray55','gray55',[140,140,140],'8c8c8c',9211020], ['x11:gray56','gray56','gray56',[143,143,143],'8f8f8f',9408399], ['x11:gray57','gray57','gray57',[145,145,145],'919191',9539985], ['x11:gray58','gray58','gray58',[148,148,148],'949494',9737364], ['x11:gray59','gray59','gray59',[150,150,150],'969696',9868950], ['x11:gray6','gray6','gray6',[15,15,15],'0f0f0f',986895], ['x11:gray60','gray60','gray60',[153,153,153],'999999',10066329], ['x11:gray61','gray61','gray61',[156,156,156],'9c9c9c',10263708], ['x11:gray62','gray62','gray62',[158,158,158],'9e9e9e',10395294], ['x11:gray63','gray63','gray63',[161,161,161],'a1a1a1',10592673], ['x11:gray64','gray64','gray64',[163,163,163],'a3a3a3',10724259], ['x11:gray65','gray65','gray65',[166,166,166],'a6a6a6',10921638], ['x11:gray66','gray66','gray66',[168,168,168],'a8a8a8',11053224], ['x11:gray67','gray67','gray67',[171,171,171],'ababab',11250603], ['x11:gray68','gray68','gray68',[173,173,173],'adadad',11382189], ['x11:gray69','gray69','gray69',[176,176,176],'b0b0b0',11579568], ['x11:gray7','gray7','gray7',[18,18,18],'121212',1184274], ['x11:gray70','gray70','gray70',[179,179,179],'b3b3b3',11776947], ['x11:gray71','gray71','gray71',[181,181,181],'b5b5b5',11908533], ['x11:gray72','gray72','gray72',[184,184,184],'b8b8b8',12105912], ['x11:gray73','gray73','gray73',[186,186,186],'bababa',12237498], ['x11:gray74','gray74','gray74',[189,189,189],'bdbdbd',12434877], ['x11:gray75','gray75','gray75',[191,191,191],'bfbfbf',12566463], ['x11:gray76','gray76','gray76',[194,194,194],'c2c2c2',12763842], ['x11:gray77','gray77','gray77',[196,196,196],'c4c4c4',12895428], ['x11:gray78','gray78','gray78',[199,199,199],'c7c7c7',13092807], ['x11:gray79','gray79','gray79',[201,201,201],'c9c9c9',13224393], ['x11:gray8','gray8','gray8',[20,20,20],'141414',1315860], ['x11:gray80','gray80','gray80',[204,204,204],'cccccc',13421772], ['x11:gray81','gray81','gray81',[207,207,207],'cfcfcf',13619151], ['x11:gray82','gray82','gray82',[209,209,209],'d1d1d1',13750737], ['x11:gray83','gray83','gray83',[212,212,212],'d4d4d4',13948116], ['x11:gray84','gray84','gray84',[214,214,214],'d6d6d6',14079702], ['x11:gray85','gray85','gray85',[217,217,217],'d9d9d9',14277081], ['x11:gray86','gray86','gray86',[219,219,219],'dbdbdb',14408667], ['x11:gray87','gray87','gray87',[222,222,222],'dedede',14606046], ['x11:gray88','gray88','gray88',[224,224,224],'e0e0e0',14737632], ['x11:gray89','gray89','gray89',[227,227,227],'e3e3e3',14935011], ['x11:gray9','gray9','gray9',[23,23,23],'171717',1513239], ['x11:gray90','gray90','gray90',[229,229,229],'e5e5e5',15066597], ['x11:gray91','gray91','gray91',[232,232,232],'e8e8e8',15263976], ['x11:gray92','gray92','gray92',[235,235,235],'ebebeb',15461355], ['x11:gray93','gray93','gray93',[237,237,237],'ededed',15592941], ['x11:gray94','gray94','gray94',[240,240,240],'f0f0f0',15790320], ['x11:gray95','gray95','gray95',[242,242,242],'f2f2f2',15921906], ['x11:gray96','gray96','gray96',[245,245,245],'f5f5f5',16119285], ['x11:gray97','gray97','gray97',[247,247,247],'f7f7f7',16250871], ['x11:gray98','gray98','gray98',[250,250,250],'fafafa',16448250], ['x11:gray99','gray99','gray99',[252,252,252],'fcfcfc',16579836], ['x11:green','green','green',[0,255,0],'00ff00',65280], ['x11:green1','green1','green1',[0,255,0],'00ff00',65280], ['x11:green2','green2','green2',[0,238,0],'00ee00',60928], ['x11:green3','green3','green3',[0,205,0],'00cd00',52480], ['x11:green4','green4','green4',[0,139,0],'008b00',35584], ['x11:greenyellow','greenyellow','green yellow',[173,255,47],'adff2f',11403055], ['x11:greenyellow','greenyellow','greenyellow',[173,255,47],'adff2f',11403055], ['x11:grey','grey','grey',[190,190,190],'bebebe',12500670], ['x11:grey0','grey0','grey0',[0,0,0],'000000',0], ['x11:grey1','grey1','grey1',[3,3,3],'030303',197379], ['x11:grey10','grey10','grey10',[26,26,26],'1a1a1a',1710618], ['x11:grey100','grey100','grey100',[255,255,255],'ffffff',16777215], ['x11:grey11','grey11','grey11',[28,28,28],'1c1c1c',1842204], ['x11:grey12','grey12','grey12',[31,31,31],'1f1f1f',2039583], ['x11:grey13','grey13','grey13',[33,33,33],'212121',2171169], ['x11:grey14','grey14','grey14',[36,36,36],'242424',2368548], ['x11:grey15','grey15','grey15',[38,38,38],'262626',2500134], ['x11:grey16','grey16','grey16',[41,41,41],'292929',2697513], ['x11:grey17','grey17','grey17',[43,43,43],'2b2b2b',2829099], ['x11:grey18','grey18','grey18',[46,46,46],'2e2e2e',3026478], ['x11:grey19','grey19','grey19',[48,48,48],'303030',3158064], ['x11:grey2','grey2','grey2',[5,5,5],'050505',328965], ['x11:grey20','grey20','grey20',[51,51,51],'333333',3355443], ['x11:grey21','grey21','grey21',[54,54,54],'363636',3552822], ['x11:grey22','grey22','grey22',[56,56,56],'383838',3684408], ['x11:grey23','grey23','grey23',[59,59,59],'3b3b3b',3881787], ['x11:grey24','grey24','grey24',[61,61,61],'3d3d3d',4013373], ['x11:grey25','grey25','grey25',[64,64,64],'404040',4210752], ['x11:grey26','grey26','grey26',[66,66,66],'424242',4342338], ['x11:grey27','grey27','grey27',[69,69,69],'454545',4539717], ['x11:grey28','grey28','grey28',[71,71,71],'474747',4671303], ['x11:grey29','grey29','grey29',[74,74,74],'4a4a4a',4868682], ['x11:grey3','grey3','grey3',[8,8,8],'080808',526344], ['x11:grey30','grey30','grey30',[77,77,77],'4d4d4d',5066061], ['x11:grey31','grey31','grey31',[79,79,79],'4f4f4f',5197647], ['x11:grey32','grey32','grey32',[82,82,82],'525252',5395026], ['x11:grey33','grey33','grey33',[84,84,84],'545454',5526612], ['x11:grey34','grey34','grey34',[87,87,87],'575757',5723991], ['x11:grey35','grey35','grey35',[89,89,89],'595959',5855577], ['x11:grey36','grey36','grey36',[92,92,92],'5c5c5c',6052956], ['x11:grey37','grey37','grey37',[94,94,94],'5e5e5e',6184542], ['x11:grey38','grey38','grey38',[97,97,97],'616161',6381921], ['x11:grey39','grey39','grey39',[99,99,99],'636363',6513507], ['x11:grey4','grey4','grey4',[10,10,10],'0a0a0a',657930], ['x11:grey40','grey40','grey40',[102,102,102],'666666',6710886], ['x11:grey41','grey41','grey41',[105,105,105],'696969',6908265], ['x11:grey42','grey42','grey42',[107,107,107],'6b6b6b',7039851], ['x11:grey43','grey43','grey43',[110,110,110],'6e6e6e',7237230], ['x11:grey44','grey44','grey44',[112,112,112],'707070',7368816], ['x11:grey45','grey45','grey45',[115,115,115],'737373',7566195], ['x11:grey46','grey46','grey46',[117,117,117],'757575',7697781], ['x11:grey47','grey47','grey47',[120,120,120],'787878',7895160], ['x11:grey48','grey48','grey48',[122,122,122],'7a7a7a',8026746], ['x11:grey49','grey49','grey49',[125,125,125],'7d7d7d',8224125], ['x11:grey5','grey5','grey5',[13,13,13],'0d0d0d',855309], ['x11:grey50','grey50','grey50',[127,127,127],'7f7f7f',8355711], ['x11:grey51','grey51','grey51',[130,130,130],'828282',8553090], ['x11:grey52','grey52','grey52',[133,133,133],'858585',8750469], ['x11:grey53','grey53','grey53',[135,135,135],'878787',8882055], ['x11:grey54','grey54','grey54',[138,138,138],'8a8a8a',9079434], ['x11:grey55','grey55','grey55',[140,140,140],'8c8c8c',9211020], ['x11:grey56','grey56','grey56',[143,143,143],'8f8f8f',9408399], ['x11:grey57','grey57','grey57',[145,145,145],'919191',9539985], ['x11:grey58','grey58','grey58',[148,148,148],'949494',9737364], ['x11:grey59','grey59','grey59',[150,150,150],'969696',9868950], ['x11:grey6','grey6','grey6',[15,15,15],'0f0f0f',986895], ['x11:grey60','grey60','grey60',[153,153,153],'999999',10066329], ['x11:grey61','grey61','grey61',[156,156,156],'9c9c9c',10263708], ['x11:grey62','grey62','grey62',[158,158,158],'9e9e9e',10395294], ['x11:grey63','grey63','grey63',[161,161,161],'a1a1a1',10592673], ['x11:grey64','grey64','grey64',[163,163,163],'a3a3a3',10724259], ['x11:grey65','grey65','grey65',[166,166,166],'a6a6a6',10921638], ['x11:grey66','grey66','grey66',[168,168,168],'a8a8a8',11053224], ['x11:grey67','grey67','grey67',[171,171,171],'ababab',11250603], ['x11:grey68','grey68','grey68',[173,173,173],'adadad',11382189], ['x11:grey69','grey69','grey69',[176,176,176],'b0b0b0',11579568], ['x11:grey7','grey7','grey7',[18,18,18],'121212',1184274], ['x11:grey70','grey70','grey70',[179,179,179],'b3b3b3',11776947], ['x11:grey71','grey71','grey71',[181,181,181],'b5b5b5',11908533], ['x11:grey72','grey72','grey72',[184,184,184],'b8b8b8',12105912], ['x11:grey73','grey73','grey73',[186,186,186],'bababa',12237498], ['x11:grey74','grey74','grey74',[189,189,189],'bdbdbd',12434877], ['x11:grey75','grey75','grey75',[191,191,191],'bfbfbf',12566463], ['x11:grey76','grey76','grey76',[194,194,194],'c2c2c2',12763842], ['x11:grey77','grey77','grey77',[196,196,196],'c4c4c4',12895428], ['x11:grey78','grey78','grey78',[199,199,199],'c7c7c7',13092807], ['x11:grey79','grey79','grey79',[201,201,201],'c9c9c9',13224393], ['x11:grey8','grey8','grey8',[20,20,20],'141414',1315860], ['x11:grey80','grey80','grey80',[204,204,204],'cccccc',13421772], ['x11:grey81','grey81','grey81',[207,207,207],'cfcfcf',13619151], ['x11:grey82','grey82','grey82',[209,209,209],'d1d1d1',13750737], ['x11:grey83','grey83','grey83',[212,212,212],'d4d4d4',13948116], ['x11:grey84','grey84','grey84',[214,214,214],'d6d6d6',14079702], ['x11:grey85','grey85','grey85',[217,217,217],'d9d9d9',14277081], ['x11:grey86','grey86','grey86',[219,219,219],'dbdbdb',14408667], ['x11:grey87','grey87','grey87',[222,222,222],'dedede',14606046], ['x11:grey88','grey88','grey88',[224,224,224],'e0e0e0',14737632], ['x11:grey89','grey89','grey89',[227,227,227],'e3e3e3',14935011], ['x11:grey9','grey9','grey9',[23,23,23],'171717',1513239], ['x11:grey90','grey90','grey90',[229,229,229],'e5e5e5',15066597], ['x11:grey91','grey91','grey91',[232,232,232],'e8e8e8',15263976], ['x11:grey92','grey92','grey92',[235,235,235],'ebebeb',15461355], ['x11:grey93','grey93','grey93',[237,237,237],'ededed',15592941], ['x11:grey94','grey94','grey94',[240,240,240],'f0f0f0',15790320], ['x11:grey95','grey95','grey95',[242,242,242],'f2f2f2',15921906], ['x11:grey96','grey96','grey96',[245,245,245],'f5f5f5',16119285], ['x11:grey97','grey97','grey97',[247,247,247],'f7f7f7',16250871], ['x11:grey98','grey98','grey98',[250,250,250],'fafafa',16448250], ['x11:grey99','grey99','grey99',[252,252,252],'fcfcfc',16579836], ['x11:honeydew','honeydew','honeydew',[240,255,240],'f0fff0',15794160], ['x11:honeydew1','honeydew1','honeydew1',[240,255,240],'f0fff0',15794160], ['x11:honeydew2','honeydew2','honeydew2',[224,238,224],'e0eee0',14741216], ['x11:honeydew3','honeydew3','honeydew3',[193,205,193],'c1cdc1',12701121], ['x11:honeydew4','honeydew4','honeydew4',[131,139,131],'838b83',8620931], ['x11:hotpink','hotpink','hot pink',[255,105,180],'ff69b4',16738740], ['x11:hotpink','hotpink','hotpink',[255,105,180],'ff69b4',16738740], ['x11:hotpink1','hotpink1','hotpink1',[255,110,180],'ff6eb4',16740020], ['x11:hotpink2','hotpink2','hotpink2',[238,106,167],'ee6aa7',15624871], ['x11:hotpink3','hotpink3','hotpink3',[205,96,144],'cd6090',13459600], ['x11:hotpink4','hotpink4','hotpink4',[139,58,98],'8b3a62',9124450], ['x11:indianred','indianred','indianred',[205,92,92],'cd5c5c',13458524], ['x11:indianred','indianred','indian red',[205,92,92],'cd5c5c',13458524], ['x11:indianred1','indianred1','indianred1',[255,106,106],'ff6a6a',16738922], ['x11:indianred2','indianred2','indianred2',[238,99,99],'ee6363',15623011], ['x11:indianred3','indianred3','indianred3',[205,85,85],'cd5555',13456725], ['x11:indianred4','indianred4','indianred4',[139,58,58],'8b3a3a',9124410], ['x11:ivory','ivory','ivory',[255,255,240],'fffff0',16777200], ['x11:ivory1','ivory1','ivory1',[255,255,240],'fffff0',16777200], ['x11:ivory2','ivory2','ivory2',[238,238,224],'eeeee0',15658720], ['x11:ivory3','ivory3','ivory3',[205,205,193],'cdcdc1',13487553], ['x11:ivory4','ivory4','ivory4',[139,139,131],'8b8b83',9145219], ['x11:khaki','khaki','khaki',[240,230,140],'f0e68c',15787660], ['x11:khaki1','khaki1','khaki1',[255,246,143],'fff68f',16774799], ['x11:khaki2','khaki2','khaki2',[238,230,133],'eee685',15656581], ['x11:khaki3','khaki3','khaki3',[205,198,115],'cdc673',13485683], ['x11:khaki4','khaki4','khaki4',[139,134,78],'8b864e',9143886], ['x11:lavender','lavender','lavender',[230,230,250],'e6e6fa',15132410], ['x11:lavenderblush','lavenderblush','lavenderblush',[255,240,245],'fff0f5',16773365], ['x11:lavenderblush','lavenderblush','lavender blush',[255,240,245],'fff0f5',16773365], ['x11:lavenderblush1','lavenderblush1','lavenderblush1',[255,240,245],'fff0f5',16773365], ['x11:lavenderblush2','lavenderblush2','lavenderblush2',[238,224,229],'eee0e5',15655141], ['x11:lavenderblush3','lavenderblush3','lavenderblush3',[205,193,197],'cdc1c5',13484485], ['x11:lavenderblush4','lavenderblush4','lavenderblush4',[139,131,134],'8b8386',9143174], ['x11:lawngreen','lawngreen','lawn green',[124,252,0],'7cfc00',8190976], ['x11:lawngreen','lawngreen','lawngreen',[124,252,0],'7cfc00',8190976], ['x11:lemonchiffon','lemonchiffon','lemonchiffon',[255,250,205],'fffacd',16775885], ['x11:lemonchiffon','lemonchiffon','lemon chiffon',[255,250,205],'fffacd',16775885], ['x11:lemonchiffon1','lemonchiffon1','lemonchiffon1',[255,250,205],'fffacd',16775885], ['x11:lemonchiffon2','lemonchiffon2','lemonchiffon2',[238,233,191],'eee9bf',15657407], ['x11:lemonchiffon3','lemonchiffon3','lemonchiffon3',[205,201,165],'cdc9a5',13486501], ['x11:lemonchiffon4','lemonchiffon4','lemonchiffon4',[139,137,112],'8b8970',9144688], ['x11:lightblue','lightblue','lightblue',[173,216,230],'add8e6',11393254], ['x11:lightblue','lightblue','light blue',[173,216,230],'add8e6',11393254], ['x11:lightblue1','lightblue1','lightblue1',[191,239,255],'bfefff',12578815], ['x11:lightblue2','lightblue2','lightblue2',[178,223,238],'b2dfee',11722734], ['x11:lightblue3','lightblue3','lightblue3',[154,192,205],'9ac0cd',10141901], ['x11:lightblue4','lightblue4','lightblue4',[104,131,139],'68838b',6849419], ['x11:lightcoral','lightcoral','lightcoral',[240,128,128],'f08080',15761536], ['x11:lightcoral','lightcoral','light coral',[240,128,128],'f08080',15761536], ['x11:lightcyan','lightcyan','lightcyan',[224,255,255],'e0ffff',14745599], ['x11:lightcyan','lightcyan','light cyan',[224,255,255],'e0ffff',14745599], ['x11:lightcyan1','lightcyan1','lightcyan1',[224,255,255],'e0ffff',14745599], ['x11:lightcyan2','lightcyan2','lightcyan2',[209,238,238],'d1eeee',13758190], ['x11:lightcyan3','lightcyan3','lightcyan3',[180,205,205],'b4cdcd',11849165], ['x11:lightcyan4','lightcyan4','lightcyan4',[122,139,139],'7a8b8b',8031115], ['x11:lightgoldenrod','lightgoldenrod','lightgoldenrod',[238,221,130],'eedd82',15654274], ['x11:lightgoldenrod','lightgoldenrod','light goldenrod',[238,221,130],'eedd82',15654274], ['x11:lightgoldenrod1','lightgoldenrod1','lightgoldenrod1',[255,236,139],'ffec8b',16772235], ['x11:lightgoldenrod2','lightgoldenrod2','lightgoldenrod2',[238,220,130],'eedc82',15654018], ['x11:lightgoldenrod3','lightgoldenrod3','lightgoldenrod3',[205,190,112],'cdbe70',13483632], ['x11:lightgoldenrod4','lightgoldenrod4','lightgoldenrod4',[139,129,76],'8b814c',9142604], ['x11:lightgoldenrodyellow','lightgoldenrodyellow','lightgoldenrodyellow',[250,250,210],'fafad2',16448210], ['x11:lightgoldenrodyellow','lightgoldenrodyellow','light goldenrod yellow',[250,250,210],'fafad2',16448210], ['x11:lightgray','lightgray','lightgray',[211,211,211],'d3d3d3',13882323], ['x11:lightgray','lightgray','light gray',[211,211,211],'d3d3d3',13882323], ['x11:lightgreen','lightgreen','light green',[144,238,144],'90ee90',9498256], ['x11:lightgreen','lightgreen','lightgreen',[144,238,144],'90ee90',9498256], ['x11:lightgrey','lightgrey','lightgrey',[211,211,211],'d3d3d3',13882323], ['x11:lightgrey','lightgrey','light grey',[211,211,211],'d3d3d3',13882323], ['x11:lightpink','lightpink','lightpink',[255,182,193],'ffb6c1',16758465], ['x11:lightpink','lightpink','light pink',[255,182,193],'ffb6c1',16758465], ['x11:lightpink1','lightpink1','lightpink1',[255,174,185],'ffaeb9',16756409], ['x11:lightpink2','lightpink2','lightpink2',[238,162,173],'eea2ad',15639213], ['x11:lightpink3','lightpink3','lightpink3',[205,140,149],'cd8c95',13470869], ['x11:lightpink4','lightpink4','lightpink4',[139,95,101],'8b5f65',9133925], ['x11:lightsalmon','lightsalmon','light salmon',[255,160,122],'ffa07a',16752762], ['x11:lightsalmon','lightsalmon','lightsalmon',[255,160,122],'ffa07a',16752762], ['x11:lightsalmon1','lightsalmon1','lightsalmon1',[255,160,122],'ffa07a',16752762], ['x11:lightsalmon2','lightsalmon2','lightsalmon2',[238,149,114],'ee9572',15635826], ['x11:lightsalmon3','lightsalmon3','lightsalmon3',[205,129,98],'cd8162',13468002], ['x11:lightsalmon4','lightsalmon4','lightsalmon4',[139,87,66],'8b5742',9131842], ['x11:lightseagreen','lightseagreen','light sea green',[32,178,170],'20b2aa',2142890], ['x11:lightseagreen','lightseagreen','lightseagreen',[32,178,170],'20b2aa',2142890], ['x11:lightskyblue','lightskyblue','light sky blue',[135,206,250],'87cefa',8900346], ['x11:lightskyblue','lightskyblue','lightskyblue',[135,206,250],'87cefa',8900346], ['x11:lightskyblue1','lightskyblue1','lightskyblue1',[176,226,255],'b0e2ff',11592447], ['x11:lightskyblue2','lightskyblue2','lightskyblue2',[164,211,238],'a4d3ee',10802158], ['x11:lightskyblue3','lightskyblue3','lightskyblue3',[141,182,205],'8db6cd',9287373], ['x11:lightskyblue4','lightskyblue4','lightskyblue4',[96,123,139],'607b8b',6323083], ['x11:lightslateblue','lightslateblue','light slate blue',[132,112,255],'8470ff',8679679], ['x11:lightslateblue','lightslateblue','lightslateblue',[132,112,255],'8470ff',8679679], ['x11:lightslategray','lightslategray','light slate gray',[119,136,153],'778899',7833753], ['x11:lightslategray','lightslategray','lightslategray',[119,136,153],'778899',7833753], ['x11:lightslategrey','lightslategrey','light slate grey',[119,136,153],'778899',7833753], ['x11:lightslategrey','lightslategrey','lightslategrey',[119,136,153],'778899',7833753], ['x11:lightsteelblue','lightsteelblue','lightsteelblue',[176,196,222],'b0c4de',11584734], ['x11:lightsteelblue','lightsteelblue','light steel blue',[176,196,222],'b0c4de',11584734], ['x11:lightsteelblue1','lightsteelblue1','lightsteelblue1',[202,225,255],'cae1ff',13296127], ['x11:lightsteelblue2','lightsteelblue2','lightsteelblue2',[188,210,238],'bcd2ee',12374766], ['x11:lightsteelblue3','lightsteelblue3','lightsteelblue3',[162,181,205],'a2b5cd',10663373], ['x11:lightsteelblue4','lightsteelblue4','lightsteelblue4',[110,123,139],'6e7b8b',7240587], ['x11:lightyellow','lightyellow','lightyellow',[255,255,224],'ffffe0',16777184], ['x11:lightyellow','lightyellow','light yellow',[255,255,224],'ffffe0',16777184], ['x11:lightyellow1','lightyellow1','lightyellow1',[255,255,224],'ffffe0',16777184], ['x11:lightyellow2','lightyellow2','lightyellow2',[238,238,209],'eeeed1',15658705], ['x11:lightyellow3','lightyellow3','lightyellow3',[205,205,180],'cdcdb4',13487540], ['x11:lightyellow4','lightyellow4','lightyellow4',[139,139,122],'8b8b7a',9145210], ['x11:limegreen','limegreen','lime green',[50,205,50],'32cd32',3329330], ['x11:limegreen','limegreen','limegreen',[50,205,50],'32cd32',3329330], ['x11:linen','linen','linen',[250,240,230],'faf0e6',16445670], ['x11:magenta','magenta','magenta',[255,0,255],'ff00ff',16711935], ['x11:magenta1','magenta1','magenta1',[255,0,255],'ff00ff',16711935], ['x11:magenta2','magenta2','magenta2',[238,0,238],'ee00ee',15597806], ['x11:magenta3','magenta3','magenta3',[205,0,205],'cd00cd',13435085], ['x11:magenta4','magenta4','magenta4',[139,0,139],'8b008b',9109643], ['x11:maroon','maroon','maroon',[176,48,96],'b03060',11546720], ['x11:maroon1','maroon1','maroon1',[255,52,179],'ff34b3',16725171], ['x11:maroon2','maroon2','maroon2',[238,48,167],'ee30a7',15610023], ['x11:maroon3','maroon3','maroon3',[205,41,144],'cd2990',13445520], ['x11:maroon4','maroon4','maroon4',[139,28,98],'8b1c62',9116770], ['x11:mediumaquamarine','mediumaquamarine','mediumaquamarine',[102,205,170],'66cdaa',6737322], ['x11:mediumaquamarine','mediumaquamarine','medium aquamarine',[102,205,170],'66cdaa',6737322], ['x11:mediumblue','mediumblue','mediumblue',[0,0,205],'0000cd',205], ['x11:mediumblue','mediumblue','medium blue',[0,0,205],'0000cd',205], ['x11:mediumorchid','mediumorchid','medium orchid',[186,85,211],'ba55d3',12211667], ['x11:mediumorchid','mediumorchid','mediumorchid',[186,85,211],'ba55d3',12211667], ['x11:mediumorchid1','mediumorchid1','mediumorchid1',[224,102,255],'e066ff',14706431], ['x11:mediumorchid2','mediumorchid2','mediumorchid2',[209,95,238],'d15fee',13721582], ['x11:mediumorchid3','mediumorchid3','mediumorchid3',[180,82,205],'b452cd',11817677], ['x11:mediumorchid4','mediumorchid4','mediumorchid4',[122,55,139],'7a378b',8009611], ['x11:mediumpurple','mediumpurple','medium purple',[147,112,219],'9370db',9662683], ['x11:mediumpurple','mediumpurple','mediumpurple',[147,112,219],'9370db',9662683], ['x11:mediumpurple1','mediumpurple1','mediumpurple1',[171,130,255],'ab82ff',11240191], ['x11:mediumpurple2','mediumpurple2','mediumpurple2',[159,121,238],'9f79ee',10451438], ['x11:mediumpurple3','mediumpurple3','mediumpurple3',[137,104,205],'8968cd',9005261], ['x11:mediumpurple4','mediumpurple4','mediumpurple4',[93,71,139],'5d478b',6113163], ['x11:mediumseagreen','mediumseagreen','medium sea green',[60,179,113],'3cb371',3978097], ['x11:mediumseagreen','mediumseagreen','mediumseagreen',[60,179,113],'3cb371',3978097], ['x11:mediumslateblue','mediumslateblue','mediumslateblue',[123,104,238],'7b68ee',8087790], ['x11:mediumslateblue','mediumslateblue','medium slate blue',[123,104,238],'7b68ee',8087790], ['x11:mediumspringgreen','mediumspringgreen','mediumspringgreen',[0,250,154],'00fa9a',64154], ['x11:mediumspringgreen','mediumspringgreen','medium spring green',[0,250,154],'00fa9a',64154], ['x11:mediumturquoise','mediumturquoise','medium turquoise',[72,209,204],'48d1cc',4772300], ['x11:mediumturquoise','mediumturquoise','mediumturquoise',[72,209,204],'48d1cc',4772300], ['x11:mediumvioletred','mediumvioletred','mediumvioletred',[199,21,133],'c71585',13047173], ['x11:mediumvioletred','mediumvioletred','medium violet red',[199,21,133],'c71585',13047173], ['x11:midnightblue','midnightblue','midnight blue',[25,25,112],'191970',1644912], ['x11:midnightblue','midnightblue','midnightblue',[25,25,112],'191970',1644912], ['x11:mintcream','mintcream','mint cream',[245,255,250],'f5fffa',16121850], ['x11:mintcream','mintcream','mintcream',[245,255,250],'f5fffa',16121850], ['x11:mistyrose','mistyrose','misty rose',[255,228,225],'ffe4e1',16770273], ['x11:mistyrose','mistyrose','mistyrose',[255,228,225],'ffe4e1',16770273], ['x11:mistyrose1','mistyrose1','mistyrose1',[255,228,225],'ffe4e1',16770273], ['x11:mistyrose2','mistyrose2','mistyrose2',[238,213,210],'eed5d2',15652306], ['x11:mistyrose3','mistyrose3','mistyrose3',[205,183,181],'cdb7b5',13481909], ['x11:mistyrose4','mistyrose4','mistyrose4',[139,125,123],'8b7d7b',9141627], ['x11:moccasin','moccasin','moccasin',[255,228,181],'ffe4b5',16770229], ['x11:navajowhite','navajowhite','navajowhite',[255,222,173],'ffdead',16768685], ['x11:navajowhite','navajowhite','navajo white',[255,222,173],'ffdead',16768685], ['x11:navajowhite1','navajowhite1','navajowhite1',[255,222,173],'ffdead',16768685], ['x11:navajowhite2','navajowhite2','navajowhite2',[238,207,161],'eecfa1',15650721], ['x11:navajowhite3','navajowhite3','navajowhite3',[205,179,139],'cdb38b',13480843], ['x11:navajowhite4','navajowhite4','navajowhite4',[139,121,94],'8b795e',9140574], ['x11:navy','navy','navy',[0,0,128],'000080',128], ['x11:navyblue','navyblue','navyblue',[0,0,128],'000080',128], ['x11:navyblue','navyblue','navy blue',[0,0,128],'000080',128], ['x11:oldlace','oldlace','oldlace',[253,245,230],'fdf5e6',16643558], ['x11:oldlace','oldlace','old lace',[253,245,230],'fdf5e6',16643558], ['x11:olivedrab','olivedrab','olivedrab',[107,142,35],'6b8e23',7048739], ['x11:olivedrab','olivedrab','olive drab',[107,142,35],'6b8e23',7048739], ['x11:olivedrab1','olivedrab1','olivedrab1',[192,255,62],'c0ff3e',12648254], ['x11:olivedrab2','olivedrab2','olivedrab2',[179,238,58],'b3ee3a',11791930], ['x11:olivedrab3','olivedrab3','olivedrab3',[154,205,50],'9acd32',10145074], ['x11:olivedrab4','olivedrab4','olivedrab4',[105,139,34],'698b22',6916898], ['x11:orange','orange','orange',[255,165,0],'ffa500',16753920], ['x11:orange1','orange1','orange1',[255,165,0],'ffa500',16753920], ['x11:orange2','orange2','orange2',[238,154,0],'ee9a00',15636992], ['x11:orange3','orange3','orange3',[205,133,0],'cd8500',13468928], ['x11:orange4','orange4','orange4',[139,90,0],'8b5a00',9132544], ['x11:orangered','orangered','orange red',[255,69,0],'ff4500',16729344], ['x11:orangered','orangered','orangered',[255,69,0],'ff4500',16729344], ['x11:orangered1','orangered1','orangered1',[255,69,0],'ff4500',16729344], ['x11:orangered2','orangered2','orangered2',[238,64,0],'ee4000',15613952], ['x11:orangered3','orangered3','orangered3',[205,55,0],'cd3700',13448960], ['x11:orangered4','orangered4','orangered4',[139,37,0],'8b2500',9118976], ['x11:orchid','orchid','orchid',[218,112,214],'da70d6',14315734], ['x11:orchid1','orchid1','orchid1',[255,131,250],'ff83fa',16745466], ['x11:orchid2','orchid2','orchid2',[238,122,233],'ee7ae9',15629033], ['x11:orchid3','orchid3','orchid3',[205,105,201],'cd69c9',13461961], ['x11:orchid4','orchid4','orchid4',[139,71,137],'8b4789',9127817], ['x11:palegoldenrod','palegoldenrod','palegoldenrod',[238,232,170],'eee8aa',15657130], ['x11:palegoldenrod','palegoldenrod','pale goldenrod',[238,232,170],'eee8aa',15657130], ['x11:palegreen','palegreen','palegreen',[152,251,152],'98fb98',10025880], ['x11:palegreen','palegreen','pale green',[152,251,152],'98fb98',10025880], ['x11:palegreen1','palegreen1','palegreen1',[154,255,154],'9aff9a',10157978], ['x11:palegreen2','palegreen2','palegreen2',[144,238,144],'90ee90',9498256], ['x11:palegreen3','palegreen3','palegreen3',[124,205,124],'7ccd7c',8179068], ['x11:palegreen4','palegreen4','palegreen4',[84,139,84],'548b54',5540692], ['x11:paleturquoise','paleturquoise','pale turquoise',[175,238,238],'afeeee',11529966], ['x11:paleturquoise','paleturquoise','paleturquoise',[175,238,238],'afeeee',11529966], ['x11:paleturquoise1','paleturquoise1','paleturquoise1',[187,255,255],'bbffff',12320767], ['x11:paleturquoise2','paleturquoise2','paleturquoise2',[174,238,238],'aeeeee',11464430], ['x11:paleturquoise3','paleturquoise3','paleturquoise3',[150,205,205],'96cdcd',9883085], ['x11:paleturquoise4','paleturquoise4','paleturquoise4',[102,139,139],'668b8b',6720395], ['x11:palevioletred','palevioletred','pale violet red',[219,112,147],'db7093',14381203], ['x11:palevioletred','palevioletred','palevioletred',[219,112,147],'db7093',14381203], ['x11:palevioletred1','palevioletred1','palevioletred1',[255,130,171],'ff82ab',16745131], ['x11:palevioletred2','palevioletred2','palevioletred2',[238,121,159],'ee799f',15628703], ['x11:palevioletred3','palevioletred3','palevioletred3',[205,104,137],'cd6889',13461641], ['x11:palevioletred4','palevioletred4','palevioletred4',[139,71,93],'8b475d',9127773], ['x11:papayawhip','papayawhip','papayawhip',[255,239,213],'ffefd5',16773077], ['x11:papayawhip','papayawhip','papaya whip',[255,239,213],'ffefd5',16773077], ['x11:peachpuff','peachpuff','peachpuff',[255,218,185],'ffdab9',16767673], ['x11:peachpuff','peachpuff','peach puff',[255,218,185],'ffdab9',16767673], ['x11:peachpuff1','peachpuff1','peachpuff1',[255,218,185],'ffdab9',16767673], ['x11:peachpuff2','peachpuff2','peachpuff2',[238,203,173],'eecbad',15649709], ['x11:peachpuff3','peachpuff3','peachpuff3',[205,175,149],'cdaf95',13479829], ['x11:peachpuff4','peachpuff4','peachpuff4',[139,119,101],'8b7765',9140069], ['x11:peru','peru','peru',[205,133,63],'cd853f',13468991], ['x11:pink','pink','pink',[255,192,203],'ffc0cb',16761035], ['x11:pink1','pink1','pink1',[255,181,197],'ffb5c5',16758213], ['x11:pink2','pink2','pink2',[238,169,184],'eea9b8',15641016], ['x11:pink3','pink3','pink3',[205,145,158],'cd919e',13472158], ['x11:pink4','pink4','pink4',[139,99,108],'8b636c',9134956], ['x11:plum','plum','plum',[221,160,221],'dda0dd',14524637], ['x11:plum1','plum1','plum1',[255,187,255],'ffbbff',16759807], ['x11:plum2','plum2','plum2',[238,174,238],'eeaeee',15642350], ['x11:plum3','plum3','plum3',[205,150,205],'cd96cd',13473485], ['x11:plum4','plum4','plum4',[139,102,139],'8b668b',9135755], ['x11:powderblue','powderblue','powder blue',[176,224,230],'b0e0e6',11591910], ['x11:powderblue','powderblue','powderblue',[176,224,230],'b0e0e6',11591910], ['x11:purple','purple','purple',[160,32,240],'a020f0',10494192], ['x11:purple1','purple1','purple1',[155,48,255],'9b30ff',10170623], ['x11:purple2','purple2','purple2',[145,44,238],'912cee',9514222], ['x11:purple3','purple3','purple3',[125,38,205],'7d26cd',8201933], ['x11:purple4','purple4','purple4',[85,26,139],'551a8b',5577355], ['x11:red','red','red',[255,0,0],'ff0000',16711680], ['x11:red1','red1','red1',[255,0,0],'ff0000',16711680], ['x11:red2','red2','red2',[238,0,0],'ee0000',15597568], ['x11:red3','red3','red3',[205,0,0],'cd0000',13434880], ['x11:red4','red4','red4',[139,0,0],'8b0000',9109504], ['x11:rosybrown','rosybrown','rosybrown',[188,143,143],'bc8f8f',12357519], ['x11:rosybrown','rosybrown','rosy brown',[188,143,143],'bc8f8f',12357519], ['x11:rosybrown1','rosybrown1','rosybrown1',[255,193,193],'ffc1c1',16761281], ['x11:rosybrown2','rosybrown2','rosybrown2',[238,180,180],'eeb4b4',15643828], ['x11:rosybrown3','rosybrown3','rosybrown3',[205,155,155],'cd9b9b',13474715], ['x11:rosybrown4','rosybrown4','rosybrown4',[139,105,105],'8b6969',9136489], ['x11:royalblue','royalblue','royalblue',[65,105,225],'4169e1',4286945], ['x11:royalblue','royalblue','royal blue',[65,105,225],'4169e1',4286945], ['x11:royalblue1','royalblue1','royalblue1',[72,118,255],'4876ff',4749055], ['x11:royalblue2','royalblue2','royalblue2',[67,110,238],'436eee',4419310], ['x11:royalblue3','royalblue3','royalblue3',[58,95,205],'3a5fcd',3825613], ['x11:royalblue4','royalblue4','royalblue4',[39,64,139],'27408b',2572427], ['x11:saddlebrown','saddlebrown','saddlebrown',[139,69,19],'8b4513',9127187], ['x11:saddlebrown','saddlebrown','saddle brown',[139,69,19],'8b4513',9127187], ['x11:salmon','salmon','salmon',[250,128,114],'fa8072',16416882], ['x11:salmon1','salmon1','salmon1',[255,140,105],'ff8c69',16747625], ['x11:salmon2','salmon2','salmon2',[238,130,98],'ee8262',15630946], ['x11:salmon3','salmon3','salmon3',[205,112,84],'cd7054',13463636], ['x11:salmon4','salmon4','salmon4',[139,76,57],'8b4c39',9129017], ['x11:sandybrown','sandybrown','sandybrown',[244,164,96],'f4a460',16032864], ['x11:sandybrown','sandybrown','sandy brown',[244,164,96],'f4a460',16032864], ['x11:seagreen','seagreen','sea green',[46,139,87],'2e8b57',3050327], ['x11:seagreen','seagreen','seagreen',[46,139,87],'2e8b57',3050327], ['x11:seagreen1','seagreen1','seagreen1',[84,255,159],'54ff9f',5570463], ['x11:seagreen2','seagreen2','seagreen2',[78,238,148],'4eee94',5172884], ['x11:seagreen3','seagreen3','seagreen3',[67,205,128],'43cd80',4443520], ['x11:seagreen4','seagreen4','seagreen4',[46,139,87],'2e8b57',3050327], ['x11:seashell','seashell','seashell',[255,245,238],'fff5ee',16774638], ['x11:seashell1','seashell1','seashell1',[255,245,238],'fff5ee',16774638], ['x11:seashell2','seashell2','seashell2',[238,229,222],'eee5de',15656414], ['x11:seashell3','seashell3','seashell3',[205,197,191],'cdc5bf',13485503], ['x11:seashell4','seashell4','seashell4',[139,134,130],'8b8682',9143938], ['x11:sienna','sienna','sienna',[160,82,45],'a0522d',10506797], ['x11:sienna1','sienna1','sienna1',[255,130,71],'ff8247',16745031], ['x11:sienna2','sienna2','sienna2',[238,121,66],'ee7942',15628610], ['x11:sienna3','sienna3','sienna3',[205,104,57],'cd6839',13461561], ['x11:sienna4','sienna4','sienna4',[139,71,38],'8b4726',9127718], ['x11:skyblue','skyblue','sky blue',[135,206,235],'87ceeb',8900331], ['x11:skyblue','skyblue','skyblue',[135,206,235],'87ceeb',8900331], ['x11:skyblue1','skyblue1','skyblue1',[135,206,255],'87ceff',8900351], ['x11:skyblue2','skyblue2','skyblue2',[126,192,238],'7ec0ee',8306926], ['x11:skyblue3','skyblue3','skyblue3',[108,166,205],'6ca6cd',7120589], ['x11:skyblue4','skyblue4','skyblue4',[74,112,139],'4a708b',4878475], ['x11:slateblue','slateblue','slateblue',[106,90,205],'6a5acd',6970061], ['x11:slateblue','slateblue','slate blue',[106,90,205],'6a5acd',6970061], ['x11:slateblue1','slateblue1','slateblue1',[131,111,255],'836fff',8613887], ['x11:slateblue2','slateblue2','slateblue2',[122,103,238],'7a67ee',8021998], ['x11:slateblue3','slateblue3','slateblue3',[105,89,205],'6959cd',6904269], ['x11:slateblue4','slateblue4','slateblue4',[71,60,139],'473c8b',4668555], ['x11:slategray','slategray','slategray',[112,128,144],'708090',7372944], ['x11:slategray','slategray','slate gray',[112,128,144],'708090',7372944], ['x11:slategray1','slategray1','slategray1',[198,226,255],'c6e2ff',13034239], ['x11:slategray2','slategray2','slategray2',[185,211,238],'b9d3ee',12178414], ['x11:slategray3','slategray3','slategray3',[159,182,205],'9fb6cd',10467021], ['x11:slategray4','slategray4','slategray4',[108,123,139],'6c7b8b',7109515], ['x11:slategrey','slategrey','slategrey',[112,128,144],'708090',7372944], ['x11:slategrey','slategrey','slate grey',[112,128,144],'708090',7372944], ['x11:slategrey1','slategrey1','slategrey1',[198,226,255],'c6e2ff',13034239], ['x11:slategrey2','slategrey2','slategrey2',[185,211,238],'b9d3ee',12178414], ['x11:slategrey3','slategrey3','slategrey3',[159,182,205],'9fb6cd',10467021], ['x11:slategrey4','slategrey4','slategrey4',[108,123,139],'6c7b8b',7109515], ['x11:snow','snow','snow',[255,250,250],'fffafa',16775930], ['x11:snow1','snow1','snow1',[255,250,250],'fffafa',16775930], ['x11:snow2','snow2','snow2',[238,233,233],'eee9e9',15657449], ['x11:snow3','snow3','snow3',[205,201,201],'cdc9c9',13486537], ['x11:snow4','snow4','snow4',[139,137,137],'8b8989',9144713], ['x11:springgreen','springgreen','springgreen',[0,255,127],'00ff7f',65407], ['x11:springgreen','springgreen','spring green',[0,255,127],'00ff7f',65407], ['x11:springgreen1','springgreen1','springgreen1',[0,255,127],'00ff7f',65407], ['x11:springgreen2','springgreen2','springgreen2',[0,238,118],'00ee76',61046], ['x11:springgreen3','springgreen3','springgreen3',[0,205,102],'00cd66',52582], ['x11:springgreen4','springgreen4','springgreen4',[0,139,69],'008b45',35653], ['x11:steelblue','steelblue','steel blue',[70,130,180],'4682b4',4620980], ['x11:steelblue','steelblue','steelblue',[70,130,180],'4682b4',4620980], ['x11:steelblue1','steelblue1','steelblue1',[99,184,255],'63b8ff',6535423], ['x11:steelblue2','steelblue2','steelblue2',[92,172,238],'5cacee',6073582], ['x11:steelblue3','steelblue3','steelblue3',[79,148,205],'4f94cd',5215437], ['x11:steelblue4','steelblue4','steelblue4',[54,100,139],'36648b',3564683], ['x11:tan','tan','tan',[210,180,140],'d2b48c',13808780], ['x11:tan1','tan1','tan1',[255,165,79],'ffa54f',16753999], ['x11:tan2','tan2','tan2',[238,154,73],'ee9a49',15637065], ['x11:tan3','tan3','tan3',[205,133,63],'cd853f',13468991], ['x11:tan4','tan4','tan4',[139,90,43],'8b5a2b',9132587], ['x11:thistle','thistle','thistle',[216,191,216],'d8bfd8',14204888], ['x11:thistle1','thistle1','thistle1',[255,225,255],'ffe1ff',16769535], ['x11:thistle2','thistle2','thistle2',[238,210,238],'eed2ee',15651566], ['x11:thistle3','thistle3','thistle3',[205,181,205],'cdb5cd',13481421], ['x11:thistle4','thistle4','thistle4',[139,123,139],'8b7b8b',9141131], ['x11:tomato','tomato','tomato',[255,99,71],'ff6347',16737095], ['x11:tomato1','tomato1','tomato1',[255,99,71],'ff6347',16737095], ['x11:tomato2','tomato2','tomato2',[238,92,66],'ee5c42',15621186], ['x11:tomato3','tomato3','tomato3',[205,79,57],'cd4f39',13455161], ['x11:tomato4','tomato4','tomato4',[139,54,38],'8b3626',9123366], ['x11:turquoise','turquoise','turquoise',[64,224,208],'40e0d0',4251856], ['x11:turquoise1','turquoise1','turquoise1',[0,245,255],'00f5ff',62975], ['x11:turquoise2','turquoise2','turquoise2',[0,229,238],'00e5ee',58862], ['x11:turquoise3','turquoise3','turquoise3',[0,197,205],'00c5cd',50637], ['x11:turquoise4','turquoise4','turquoise4',[0,134,139],'00868b',34443], ['x11:violet','violet','violet',[238,130,238],'ee82ee',15631086], ['x11:violetred','violetred','violet red',[208,32,144],'d02090',13639824], ['x11:violetred','violetred','violetred',[208,32,144],'d02090',13639824], ['x11:violetred1','violetred1','violetred1',[255,62,150],'ff3e96',16727702], ['x11:violetred2','violetred2','violetred2',[238,58,140],'ee3a8c',15612556], ['x11:violetred3','violetred3','violetred3',[205,50,120],'cd3278',13447800], ['x11:violetred4','violetred4','violetred4',[139,34,82],'8b2252',9118290], ['x11:wheat','wheat','wheat',[245,222,179],'f5deb3',16113331], ['x11:wheat1','wheat1','wheat1',[255,231,186],'ffe7ba',16771002], ['x11:wheat2','wheat2','wheat2',[238,216,174],'eed8ae',15653038], ['x11:wheat3','wheat3','wheat3',[205,186,150],'cdba96',13482646], ['x11:wheat4','wheat4','wheat4',[139,126,102],'8b7e66',9141862], ['x11:white','white','white',[255,255,255],'ffffff',16777215], ['x11:whitesmoke','whitesmoke','white smoke',[245,245,245],'f5f5f5',16119285], ['x11:whitesmoke','whitesmoke','whitesmoke',[245,245,245],'f5f5f5',16119285], ['x11:yellow','yellow','yellow',[255,255,0],'ffff00',16776960], ['x11:yellow1','yellow1','yellow1',[255,255,0],'ffff00',16776960], ['x11:yellow2','yellow2','yellow2',[238,238,0],'eeee00',15658496], ['x11:yellow3','yellow3','yellow3',[205,205,0],'cdcd00',13487360], ['x11:yellow4','yellow4','yellow4',[139,139,0],'8b8b00',9145088], ['x11:yellowgreen','yellowgreen','yellow green',[154,205,50],'9acd32',10145074], ['x11:yellowgreen','yellowgreen','yellowgreen',[154,205,50],'9acd32',10145074] ]; } sub _description { return { 'subtitle' => 'Colors for the X11 Window System (rgb.txt)', 'title' => 'X11', 'description' => 'X11/rgb.txt (often /usr/X11R6/lib/X11/rgb.txt) from the X11 Window System distribution. ' } } 1; HTML.pm100644000765000024 444311667760546 22011 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionarypackage Color::Library::Dictionary::HTML; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::HTML; =pod =head1 NAME Color::Library::Dictionary::HTML - (HTML) Colors from the HTML 4.0 specification =head1 DESCRIPTION The HTML-4.0 specification defines 16 color names assigned to the full and half coordinate RGB primaries. L =head1 COLORS aqua aqua #00ffff black black #000000 blue blue #0000ff fuchsia fuchsia #ff00ff fuscia fuscia #ff00ff gray gray #808080 green green #008000 lime lime #00ff00 maroon maroon #800000 navy navy #000080 olive olive #808000 purple purple #800080 red red #ff0000 silver silver #c0c0c0 teal teal #008080 white white #ffffff yellow yellow #ffff00 =cut sub _load_color_list() { return [ ['html:aqua','aqua','aqua',[0,255,255],'00ffff',65535], ['html:black','black','black',[0,0,0],'000000',0], ['html:blue','blue','blue',[0,0,255],'0000ff',255], ['html:fuchsia','fuchsia','fuchsia',[255,0,255],'ff00ff',16711935], ['html:fuscia','fuscia','fuscia',[255,0,255],'ff00ff',16711935], ['html:gray','gray','gray',[128,128,128],'808080',8421504], ['html:green','green','green',[0,128,0],'008000',32768], ['html:lime','lime','lime',[0,255,0],'00ff00',65280], ['html:maroon','maroon','maroon',[128,0,0],'800000',8388608], ['html:navy','navy','navy',[0,0,128],'000080',128], ['html:olive','olive','olive',[128,128,0],'808000',8421376], ['html:purple','purple','purple',[128,0,128],'800080',8388736], ['html:red','red','red',[255,0,0],'ff0000',16711680], ['html:silver','silver','silver',[192,192,192],'c0c0c0',12632256], ['html:teal','teal','teal',[0,128,128],'008080',32896], ['html:white','white','white',[255,255,255],'ffffff',16777215], ['html:yellow','yellow','yellow',[255,255,0],'ffff00',16776960] ]; } sub _description { return { 'subtitle' => 'Colors from the HTML 4.0 specification', 'title' => 'HTML', 'description' => 'The HTML-4.0 specification defines 16 color names assigned to the full and half coordinate RGB primaries. [http://www.w3.org/TR/REC-html40/sgml/loosedtd.html#Color] ' } } 1; Tango.pm100644000765000024 1057111667760546 22334 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionarypackage Color::Library::Dictionary::Tango; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::Tango; =pod =head1 NAME Color::Library::Dictionary::Tango - (Tango) The Tango color palette =head1 DESCRIPTION The Tango icon theme's goal is to make applications not seem alien on any desktop. A user running a multiplatform application should not have the impression that the look is unpolished and inconsistent with what he or she is used to. While this isn't about merging styles of all desktop systems, we do aim to not be drastically different on each platform. The Tango color palette consists of 27 RGB colors. L =head1 COLORS Aluminium 1 aluminium1 #eeeeec Aluminium 2 aluminium2 #d3d7cf Aluminium 3 aluminium3 #babdb6 Aluminium 4 aluminium4 #888a85 Aluminium 5 aluminium5 #555753 Aluminium 6 aluminium6 #2e3436 Butter 1 butter1 #fce94f Butter 2 butter2 #edd400 Butter 3 butter3 #c4a000 Chameleon 1 chameleon1 #8ae234 Chameleon 2 chameleon2 #73d216 Chameleon 3 chameleon3 #4e9a06 Chocolate 1 chocolate1 #e9b96e Chocolate 2 chocolate2 #c17d11 Chocolate 3 chocolate3 #8f5902 Orange 1 orange1 #fcaf3e Orange 2 orange2 #f57900 Orange 3 orange3 #ce5c00 Plum 1 plum1 #ad7fa8 Plum 2 plum2 #75507b Plum 3 plum3 #5c3566 Scarlet Red 1 scarletred1 #ef2929 Scarlet Red 2 scarletred2 #cc0000 Scarlet Red 3 scarletred3 #a40000 Sky Blue 1 skyblue1 #729fcf Sky Blue 2 skyblue2 #3465a4 Sky Blue 3 skyblue3 #204a87 =cut sub _load_color_list() { return [ ['tango:aluminium1','aluminium1','Aluminium 1',[238,238,236],'eeeeec',15658732], ['tango:aluminium2','aluminium2','Aluminium 2',[211,215,207],'d3d7cf',13883343], ['tango:aluminium3','aluminium3','Aluminium 3',[186,189,182],'babdb6',12238262], ['tango:aluminium4','aluminium4','Aluminium 4',[136,138,133],'888a85',8948357], ['tango:aluminium5','aluminium5','Aluminium 5',[85,87,83],'555753',5592915], ['tango:aluminium6','aluminium6','Aluminium 6',[46,52,54],'2e3436',3028022], ['tango:butter1','butter1','Butter 1',[252,233,79],'fce94f',16574799], ['tango:butter2','butter2','Butter 2',[237,212,0],'edd400',15586304], ['tango:butter3','butter3','Butter 3',[196,160,0],'c4a000',12886016], ['tango:chameleon1','chameleon1','Chameleon 1',[138,226,52],'8ae234',9101876], ['tango:chameleon2','chameleon2','Chameleon 2',[115,210,22],'73d216',7590422], ['tango:chameleon3','chameleon3','Chameleon 3',[78,154,6],'4e9a06',5151238], ['tango:chocolate1','chocolate1','Chocolate 1',[233,185,110],'e9b96e',15317358], ['tango:chocolate2','chocolate2','Chocolate 2',[193,125,17],'c17d11',12680465], ['tango:chocolate3','chocolate3','Chocolate 3',[143,89,2],'8f5902',9394434], ['tango:orange1','orange1','Orange 1',[252,175,62],'fcaf3e',16559934], ['tango:orange2','orange2','Orange 2',[245,121,0],'f57900',16087296], ['tango:orange3','orange3','Orange 3',[206,92,0],'ce5c00',13523968], ['tango:plum1','plum1','Plum 1',[173,127,168],'ad7fa8',11370408], ['tango:plum2','plum2','Plum 2',[117,80,123],'75507b',7688315], ['tango:plum3','plum3','Plum 3',[92,53,102],'5c3566',6042982], ['tango:scarletred1','scarletred1','Scarlet Red 1',[239,41,41],'ef2929',15673641], ['tango:scarletred2','scarletred2','Scarlet Red 2',[204,0,0],'cc0000',13369344], ['tango:scarletred3','scarletred3','Scarlet Red 3',[164,0,0],'a40000',10747904], ['tango:skyblue1','skyblue1','Sky Blue 1',[114,159,207],'729fcf',7512015], ['tango:skyblue2','skyblue2','Sky Blue 2',[52,101,164],'3465a4',3433892], ['tango:skyblue3','skyblue3','Sky Blue 3',[32,74,135],'204a87',2116231] ]; } sub _description { return { 'subtitle' => 'The Tango color palette', 'title' => 'Tango', 'description' => 'The Tango icon theme\'s goal is to make applications not seem alien on any desktop. A user running a multiplatform application should not have the impression that the look is unpolished and inconsistent with what he or she is used to. While this isn\'t about merging styles of all desktop systems, we do aim to not be drastically different on each platform. The Tango color palette consists of 27 RGB colors. [http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines] ' } } 1; VACCC.pm100644000765000024 11144011667760546 22120 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionarypackage Color::Library::Dictionary::VACCC; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::VACCC; =pod =head1 NAME Color::Library::Dictionary::VACCC - (VACCC) VisiBone Anglo-Centric Color Code =head1 DESCRIPTION VisiBone Anglo-Centric Color Code L Peter Hamer correctly points out that this naming scheme should not be confused with names given to spectral colors, such as those that follow the mnemonic "Roy G. Biv": Red, Orange, Yellow, Green, Blue, Indigo, Violet. The distinction is between the physical nature of light and the human perception of if. Humans can't distinguish yellow light from a mixture of red and green light. That's due to the color detection mechanism of the human eye. The "cones" on the surface of the retina respond differentially to red, green and blue light. (The "rods" on the other hand are very sensitive to the brightness of light but can't distinguish hues.) So computer phosphors don't attempt to transmit yellow light at all. They simulate it by transmitting both red and green. At least humans can be fooled in this way. There's much more to light than the human eye can measure. Besides the fact that visible light is a narrow subset of all the light coming from the sun, there a whole dimension in the variation of frequency and amplitude to which the eye is "tone deaf". This dimension is important to astronomers and chemists. Their instruments measure aspects of light that can reveal, for example, the composition of a star as well as that of a material found at a crime scene. Only when light is "for eyes only," your's or anyone's, can we simplify theory and measurement to varying quantities of red, green and blue. (Ever use a magnifying glass on your computer screen to see the little dots? Watch that eyestrain! Didn't I say a magnfying glass?!) So the physics of color and the perception of color are different disciplines. Another interesting distinction, "hues" on a computer monitor as well as in the mind of a user, follow a circular series, as named above in the hue list. Magenta and Pink are as close to each other in perception as Green and Teal. But the physics of light is linear, a spectrum. Violet in the color spectrum is the furthest thing from Red. With real light, there's no such thing as magenta. The eye, when the red and blue cones are stimulated "sees" magenta, but it doesn't correspond to any frequency of light, the way most other hues do. Incidentally, the distinction between Red, Green, Blue (RGB) and Cyan, Magenta, Yellow (CMY or CMYK when Black is added to the mix) is purely tactical. Printers use light-absorbing ink and computer monitors use light-transmitting phosphors. The perfect cyan ink would completely absorb red light and be completely transparent to green and blue. The tactic of mixing cyan and yellow ink to get green is backwards from mixing red and green light to get yellow. But the strategy is the same: fooling human eyeballs by manipulating the red, green and blue light that ultimately hits the retina. =head1 COLORS Azure-Azure-Blue azureazureblue #0066ff Azure-Azure-Cyan azureazurecyan #0099ff Black black #000000 Blue blue #0000ff Blue-Blue-Azure blueblueazure #0033ff Blue-Blue-Violet blueblueviolet #3300ff Cyan cyan #00ffff Cyan-Cyan-Azure cyancyanazure #00ccff Cyan-Cyan-Teal cyancyanteal #00ffcc Dark Azure-Blue darkazureblue #003399 Dark Azure-Cyan darkazurecyan #006699 Dark Blue-Azure darkblueazure #0033cc Dark Blue-Violet darkblueviolet #3300cc Dark Cyan-Azure darkcyanazure #0099cc Dark Cyan-Teal darkcyanteal #00cc99 Dark Dull Azure darkdullazure #336699 Dark Dull Blue darkdullblue #333399 Dark Dull Cyan darkdullcyan #339999 Dark Dull Green darkdullgreen #339933 Dark Dull Magenta darkdullmagenta #993399 Dark Dull Orange darkdullorange #996633 Dark Dull Pink darkdullpink #993366 Dark Dull Red darkdullred #993333 Dark Dull Spring darkdullspring #669933 Dark Dull Teal darkdullteal #339966 Dark Dull Violet darkdullviolet #663399 Dark Dull Yellow darkdullyellow #999933 Dark Faded Blue darkfadedblue #000099 Dark Faded Cyan darkfadedcyan #009999 Dark Faded Green darkfadedgreen #009900 Dark Faded Magenta darkfadedmagenta #990099 Dark Faded Red darkfadedred #990000 Dark Faded Yellow darkfadedyellow #999900 Dark Gray darkgray #666666 Dark Green-Spring darkgreenspring #33cc00 Dark Green-Teal darkgreenteal #00cc33 Dark Hard Azure darkhardazure #0066cc Dark Hard Blue darkhardblue #0000cc Dark Hard Cyan darkhardcyan #00cccc Dark Hard Green darkhardgreen #00cc00 Dark Hard Magenta darkhardmagenta #cc00cc Dark Hard Orange darkhardorange #cc6600 Dark Hard Pink darkhardpink #cc0066 Dark Hard Red darkhardred #cc0000 Dark Hard Spring darkhardspring #66cc00 Dark Hard Teal darkhardteal #00cc66 Dark Hard Violet darkhardviolet #6600cc Dark Hard Yellow darkhardyellow #cccc00 Dark Magenta-Pink darkmagentapink #cc0099 Dark Magenta-Violet darkmagentaviolet #9900cc Dark Orange-Red darkorangered #993300 Dark Orange-Yellow darkorangeyellow #996600 Dark Pink-Magenta darkpinkmagenta #990066 Dark Pink-Red darkpinkred #990033 Dark Red-Orange darkredorange #cc3300 Dark Red-Pink darkredpink #cc0033 Dark Spring-Green darkspringgreen #339900 Dark Spring-Yellow darkspringyellow #669900 Dark Teal-Cyan darktealcyan #009966 Dark Teal-Green darktealgreen #009933 Dark Violet-Blue darkvioletblue #330099 Dark Violet-Magenta darkvioletmagenta #660099 Dark Weak Blue darkweakblue #333366 Dark Weak Cyan darkweakcyan #336666 Dark Weak Green darkweakgreen #336633 Dark Weak Magenta darkweakmagenta #663366 Dark Weak Red darkweakred #663333 Dark Weak Yellow darkweakyellow #666633 Dark Yellow-Orange darkyelloworange #cc9900 Dark Yellow-Spring darkyellowspring #99cc00 Green green #00ff00 Green-Green-Spring greengreenspring #33ff00 Green-Green-Teal greengreenteal #00ff33 Light Azure-Blue lightazureblue #6699ff Light Azure-Cyan lightazurecyan #66ccff Light Blue-Azure lightblueazure #3366ff Light Blue-Violet lightblueviolet #6633ff Light Cyan-Azure lightcyanazure #33ccff Light Cyan-Teal lightcyanteal #33ffcc Light Dull Azure lightdullazure #6699cc Light Dull Blue lightdullblue #6666cc Light Dull Cyan lightdullcyan #66cccc Light Dull Green lightdullgreen #66cc66 Light Dull Magenta lightdullmagenta #cc66cc Light Dull Orange lightdullorange #cc9966 Light Dull Pink lightdullpink #cc6699 Light Dull Red lightdullred #cc6666 Light Dull Spring lightdullspring #99cc66 Light Dull Teal lightdullteal #66cc99 Light Dull Violet lightdullviolet #9966cc Light Dull Yellow lightdullyellow #cccc66 Light Faded Blue lightfadedblue #6666ff Light Faded Cyan lightfadedcyan #66ffff Light Faded Green lightfadedgreen #66ff66 Light Faded Magenta lightfadedmagenta #ff66ff Light Faded Red lightfadedred #ff6666 Light Faded Yellow lightfadedyellow #ffff66 Light Gray lightgray #999999 Light Green-Spring lightgreenspring #66ff33 Light Green-Teal lightgreenteal #33ff66 Light Hard Azure lighthardazure #3399ff Light Hard Blue lighthardblue #3333ff Light Hard Cyan lighthardcyan #33ffff Light Hard Green lighthardgreen #33ff33 Light Hard Magenta lighthardmagenta #ff33ff Light Hard Orange lighthardorange #ff9933 Light Hard Pink lighthardpink #ff3399 Light Hard Red lighthardred #ff3333 Light Hard Spring lighthardspring #99ff33 Light Hard Teal lighthardteal #33ff99 Light Hard Violet lighthardviolet #9933ff Light Hard Yellow lighthardyellow #ffff33 Light Magenta-Pink lightmagentapink #ff33cc Light Magenta-Violet lightmagentaviolet #cc33ff Light Orange-Red lightorangered #ff9966 Light Orange-Yellow lightorangeyellow #ffcc66 Light Pink-Magenta lightpinkmagenta #ff66cc Light Pink-Red lightpinkred #ff6699 Light Red-Orange lightredorange #ff6633 Light Red-Pink lightredpink #ff3366 Light Spring-Green lightspringgreen #99ff66 Light Spring-Yellow lightspringyellow #ccff66 Light Teal-Cyan lighttealcyan #66ffcc Light Teal-Green lighttealgreen #66ff99 Light Violet-Blue lightvioletblue #9966ff Light Violet-Magenta lightvioletmagenta #cc66ff Light Weak Blue lightweakblue #9999cc Light Weak Cyan lightweakcyan #99cccc Light Weak Green lightweakgreen #99cc99 Light Weak Magenta lightweakmagenta #cc99cc Light Weak Red lightweakred #cc9999 Light Weak Yellow lightweakyellow #cccc99 Light Yellow-Orange lightyelloworange #ffcc33 Light Yellow-Spring lightyellowspring #ccff33 Magenta magenta #ff00ff Magenta-Magenta-Pink magentamagentapink #ff00cc Magenta-Magenta-Violet magentamagentaviolet #cc00ff Medium Azure-Blue mediumazureblue #3366cc Medium Azure-Cyan mediumazurecyan #3399cc Medium Faded Blue mediumfadedblue #3333cc Medium Faded Cyan mediumfadedcyan #33cccc Medium Faded Green mediumfadedgreen #33cc33 Medium Faded Magenta mediumfadedmagenta #cc33cc Medium Faded Red mediumfadedred #cc3333 Medium Faded Yellow mediumfadedyellow #cccc33 Medium Orange-Red mediumorangered #cc6633 Medium Orange-Yellow mediumorangeyellow #cc9933 Medium Pink-Magenta mediumpinkmagenta #cc3399 Medium Pink-Red mediumpinkred #cc3366 Medium Spring-Green mediumspringgreen #66cc33 Medium Spring-Yellow mediumspringyellow #99cc33 Medium Teal-Cyan mediumtealcyan #33cc99 Medium Teal-Green mediumtealgreen #33cc66 Medium Violet-Blue mediumvioletblue #6633cc Medium Violet-Magenta mediumvioletmagenta #9933cc Medium Weak Blue mediumweakblue #666699 Medium Weak Cyan mediumweakcyan #669999 Medium Weak Green mediumweakgreen #669966 Medium Weak Magenta mediumweakmagenta #996699 Medium Weak Red mediumweakred #996666 Medium Weak Yellow mediumweakyellow #999966 Obscure Dull Azure obscuredullazure #003366 Obscure Dull Blue obscuredullblue #000066 Obscure Dull Cyan obscuredullcyan #006666 Obscure Dull Green obscuredullgreen #006600 Obscure Dull Magenta obscuredullmagenta #660066 Obscure Dull Orange obscuredullorange #663300 Obscure Dull Pink obscuredullpink #660033 Obscure Dull Red obscuredullred #660000 Obscure Dull Spring obscuredullspring #336600 Obscure Dull Teal obscuredullteal #006633 Obscure Dull Violet obscuredullviolet #330066 Obscure Dull Yellow obscuredullyellow #666600 Obscure Gray obscuregray #333333 Obscure Weak Blue obscureweakblue #000033 Obscure Weak Cyan obscureweakcyan #003333 Obscure Weak Green obscureweakgreen #003300 Obscure Weak Magenta obscureweakmagenta #330033 Obscure Weak Red obscureweakred #330000 Obscure Weak Yellow obscureweakyellow #333300 Orange-Orange-Red orangeorangered #ff6600 Orange-Orange-Yellow orangeorangeyellow #ff9900 Pale Dull Azure paledullazure #99ccff Pale Dull Blue paledullblue #9999ff Pale Dull Cyan paledullcyan #99ffff Pale Dull Green paledullgreen #99ff99 Pale Dull Magenta paledullmagenta #ff99ff Pale Dull Orange paledullorange #ffcc99 Pale Dull Pink paledullpink #ff99cc Pale Dull Red paledullred #ff9999 Pale Dull Spring paledullspring #ccff99 Pale Dull Teal paledullteal #99ffcc Pale Dull Violet paledullviolet #cc99ff Pale Dull Yellow paledullyellow #ffff99 Pale Gray palegray #cccccc Pale Weak Blue paleweakblue #ccccff Pale Weak Cyan paleweakcyan #ccffff Pale Weak Green paleweakgreen #ccffcc Pale Weak Magenta paleweakmagenta #ffccff Pale Weak Red paleweakred #ffcccc Pale Weak Yellow paleweakyellow #ffffcc Pink-Pink-Magenta pinkpinkmagenta #ff0099 Pink-Pink-Red pinkpinkred #ff0066 Red red #ff0000 Red-Red-Orange redredorange #ff3300 Red-Red-Pink redredpink #ff0033 Spring-Spring-Green springspringgreen #66ff00 Spring-Spring-Yellow springspringyellow #99ff00 Teal-Teal-Cyan tealtealcyan #00ff99 Teal-Teal-Green tealtealgreen #00ff66 Violet-Violet-Blue violetvioletblue #6600ff Violet-Violet-Magenta violetvioletmagenta #9900ff White white #ffffff Yellow yellow #ffff00 Yellow-Yellow-Orange yellowyelloworange #ffcc00 Yellow-Yellow-Spring yellowyellowspring #ccff00 =cut sub _load_color_list() { return [ ['vaccc:azureazureblue','azureazureblue','Azure-Azure-Blue',[0,102,255],'0066ff',26367], ['vaccc:azureazurecyan','azureazurecyan','Azure-Azure-Cyan',[0,153,255],'0099ff',39423], ['vaccc:black','black','Black',[0,0,0],'000000',0], ['vaccc:blue','blue','Blue',[0,0,255],'0000ff',255], ['vaccc:blueblueazure','blueblueazure','Blue-Blue-Azure',[0,51,255],'0033ff',13311], ['vaccc:blueblueviolet','blueblueviolet','Blue-Blue-Violet',[51,0,255],'3300ff',3342591], ['vaccc:cyan','cyan','Cyan',[0,255,255],'00ffff',65535], ['vaccc:cyancyanazure','cyancyanazure','Cyan-Cyan-Azure',[0,204,255],'00ccff',52479], ['vaccc:cyancyanteal','cyancyanteal','Cyan-Cyan-Teal',[0,255,204],'00ffcc',65484], ['vaccc:darkazureblue','darkazureblue','Dark Azure-Blue',[0,51,153],'003399',13209], ['vaccc:darkazurecyan','darkazurecyan','Dark Azure-Cyan',[0,102,153],'006699',26265], ['vaccc:darkblueazure','darkblueazure','Dark Blue-Azure',[0,51,204],'0033cc',13260], ['vaccc:darkblueviolet','darkblueviolet','Dark Blue-Violet',[51,0,204],'3300cc',3342540], ['vaccc:darkcyanazure','darkcyanazure','Dark Cyan-Azure',[0,153,204],'0099cc',39372], ['vaccc:darkcyanteal','darkcyanteal','Dark Cyan-Teal',[0,204,153],'00cc99',52377], ['vaccc:darkdullazure','darkdullazure','Dark Dull Azure',[51,102,153],'336699',3368601], ['vaccc:darkdullblue','darkdullblue','Dark Dull Blue',[51,51,153],'333399',3355545], ['vaccc:darkdullcyan','darkdullcyan','Dark Dull Cyan',[51,153,153],'339999',3381657], ['vaccc:darkdullgreen','darkdullgreen','Dark Dull Green',[51,153,51],'339933',3381555], ['vaccc:darkdullmagenta','darkdullmagenta','Dark Dull Magenta',[153,51,153],'993399',10040217], ['vaccc:darkdullorange','darkdullorange','Dark Dull Orange',[153,102,51],'996633',10053171], ['vaccc:darkdullpink','darkdullpink','Dark Dull Pink',[153,51,102],'993366',10040166], ['vaccc:darkdullred','darkdullred','Dark Dull Red',[153,51,51],'993333',10040115], ['vaccc:darkdullspring','darkdullspring','Dark Dull Spring',[102,153,51],'669933',6723891], ['vaccc:darkdullteal','darkdullteal','Dark Dull Teal',[51,153,102],'339966',3381606], ['vaccc:darkdullviolet','darkdullviolet','Dark Dull Violet',[102,51,153],'663399',6697881], ['vaccc:darkdullyellow','darkdullyellow','Dark Dull Yellow',[153,153,51],'999933',10066227], ['vaccc:darkfadedblue','darkfadedblue','Dark Faded Blue',[0,0,153],'000099',153], ['vaccc:darkfadedcyan','darkfadedcyan','Dark Faded Cyan',[0,153,153],'009999',39321], ['vaccc:darkfadedgreen','darkfadedgreen','Dark Faded Green',[0,153,0],'009900',39168], ['vaccc:darkfadedmagenta','darkfadedmagenta','Dark Faded Magenta',[153,0,153],'990099',10027161], ['vaccc:darkfadedred','darkfadedred','Dark Faded Red',[153,0,0],'990000',10027008], ['vaccc:darkfadedyellow','darkfadedyellow','Dark Faded Yellow',[153,153,0],'999900',10066176], ['vaccc:darkgray','darkgray','Dark Gray',[102,102,102],'666666',6710886], ['vaccc:darkgreenspring','darkgreenspring','Dark Green-Spring',[51,204,0],'33cc00',3394560], ['vaccc:darkgreenteal','darkgreenteal','Dark Green-Teal',[0,204,51],'00cc33',52275], ['vaccc:darkhardazure','darkhardazure','Dark Hard Azure',[0,102,204],'0066cc',26316], ['vaccc:darkhardblue','darkhardblue','Dark Hard Blue',[0,0,204],'0000cc',204], ['vaccc:darkhardcyan','darkhardcyan','Dark Hard Cyan',[0,204,204],'00cccc',52428], ['vaccc:darkhardgreen','darkhardgreen','Dark Hard Green',[0,204,0],'00cc00',52224], ['vaccc:darkhardmagenta','darkhardmagenta','Dark Hard Magenta',[204,0,204],'cc00cc',13369548], ['vaccc:darkhardorange','darkhardorange','Dark Hard Orange',[204,102,0],'cc6600',13395456], ['vaccc:darkhardpink','darkhardpink','Dark Hard Pink',[204,0,102],'cc0066',13369446], ['vaccc:darkhardred','darkhardred','Dark Hard Red',[204,0,0],'cc0000',13369344], ['vaccc:darkhardspring','darkhardspring','Dark Hard Spring',[102,204,0],'66cc00',6736896], ['vaccc:darkhardteal','darkhardteal','Dark Hard Teal',[0,204,102],'00cc66',52326], ['vaccc:darkhardviolet','darkhardviolet','Dark Hard Violet',[102,0,204],'6600cc',6684876], ['vaccc:darkhardyellow','darkhardyellow','Dark Hard Yellow',[204,204,0],'cccc00',13421568], ['vaccc:darkmagentapink','darkmagentapink','Dark Magenta-Pink',[204,0,153],'cc0099',13369497], ['vaccc:darkmagentaviolet','darkmagentaviolet','Dark Magenta-Violet',[153,0,204],'9900cc',10027212], ['vaccc:darkorangered','darkorangered','Dark Orange-Red',[153,51,0],'993300',10040064], ['vaccc:darkorangeyellow','darkorangeyellow','Dark Orange-Yellow',[153,102,0],'996600',10053120], ['vaccc:darkpinkmagenta','darkpinkmagenta','Dark Pink-Magenta',[153,0,102],'990066',10027110], ['vaccc:darkpinkred','darkpinkred','Dark Pink-Red',[153,0,51],'990033',10027059], ['vaccc:darkredorange','darkredorange','Dark Red-Orange',[204,51,0],'cc3300',13382400], ['vaccc:darkredpink','darkredpink','Dark Red-Pink',[204,0,51],'cc0033',13369395], ['vaccc:darkspringgreen','darkspringgreen','Dark Spring-Green',[51,153,0],'339900',3381504], ['vaccc:darkspringyellow','darkspringyellow','Dark Spring-Yellow',[102,153,0],'669900',6723840], ['vaccc:darktealcyan','darktealcyan','Dark Teal-Cyan',[0,153,102],'009966',39270], ['vaccc:darktealgreen','darktealgreen','Dark Teal-Green',[0,153,51],'009933',39219], ['vaccc:darkvioletblue','darkvioletblue','Dark Violet-Blue',[51,0,153],'330099',3342489], ['vaccc:darkvioletmagenta','darkvioletmagenta','Dark Violet-Magenta',[102,0,153],'660099',6684825], ['vaccc:darkweakblue','darkweakblue','Dark Weak Blue',[51,51,102],'333366',3355494], ['vaccc:darkweakcyan','darkweakcyan','Dark Weak Cyan',[51,102,102],'336666',3368550], ['vaccc:darkweakgreen','darkweakgreen','Dark Weak Green',[51,102,51],'336633',3368499], ['vaccc:darkweakmagenta','darkweakmagenta','Dark Weak Magenta',[102,51,102],'663366',6697830], ['vaccc:darkweakred','darkweakred','Dark Weak Red',[102,51,51],'663333',6697779], ['vaccc:darkweakyellow','darkweakyellow','Dark Weak Yellow',[102,102,51],'666633',6710835], ['vaccc:darkyelloworange','darkyelloworange','Dark Yellow-Orange',[204,153,0],'cc9900',13408512], ['vaccc:darkyellowspring','darkyellowspring','Dark Yellow-Spring',[153,204,0],'99cc00',10079232], ['vaccc:green','green','Green',[0,255,0],'00ff00',65280], ['vaccc:greengreenspring','greengreenspring','Green-Green-Spring',[51,255,0],'33ff00',3407616], ['vaccc:greengreenteal','greengreenteal','Green-Green-Teal',[0,255,51],'00ff33',65331], ['vaccc:lightazureblue','lightazureblue','Light Azure-Blue',[102,153,255],'6699ff',6724095], ['vaccc:lightazurecyan','lightazurecyan','Light Azure-Cyan',[102,204,255],'66ccff',6737151], ['vaccc:lightblueazure','lightblueazure','Light Blue-Azure',[51,102,255],'3366ff',3368703], ['vaccc:lightblueviolet','lightblueviolet','Light Blue-Violet',[102,51,255],'6633ff',6697983], ['vaccc:lightcyanazure','lightcyanazure','Light Cyan-Azure',[51,204,255],'33ccff',3394815], ['vaccc:lightcyanteal','lightcyanteal','Light Cyan-Teal',[51,255,204],'33ffcc',3407820], ['vaccc:lightdullazure','lightdullazure','Light Dull Azure',[102,153,204],'6699cc',6724044], ['vaccc:lightdullblue','lightdullblue','Light Dull Blue',[102,102,204],'6666cc',6710988], ['vaccc:lightdullcyan','lightdullcyan','Light Dull Cyan',[102,204,204],'66cccc',6737100], ['vaccc:lightdullgreen','lightdullgreen','Light Dull Green',[102,204,102],'66cc66',6736998], ['vaccc:lightdullmagenta','lightdullmagenta','Light Dull Magenta',[204,102,204],'cc66cc',13395660], ['vaccc:lightdullorange','lightdullorange','Light Dull Orange',[204,153,102],'cc9966',13408614], ['vaccc:lightdullpink','lightdullpink','Light Dull Pink',[204,102,153],'cc6699',13395609], ['vaccc:lightdullred','lightdullred','Light Dull Red',[204,102,102],'cc6666',13395558], ['vaccc:lightdullspring','lightdullspring','Light Dull Spring',[153,204,102],'99cc66',10079334], ['vaccc:lightdullteal','lightdullteal','Light Dull Teal',[102,204,153],'66cc99',6737049], ['vaccc:lightdullviolet','lightdullviolet','Light Dull Violet',[153,102,204],'9966cc',10053324], ['vaccc:lightdullyellow','lightdullyellow','Light Dull Yellow',[204,204,102],'cccc66',13421670], ['vaccc:lightfadedblue','lightfadedblue','Light Faded Blue',[102,102,255],'6666ff',6711039], ['vaccc:lightfadedcyan','lightfadedcyan','Light Faded Cyan',[102,255,255],'66ffff',6750207], ['vaccc:lightfadedgreen','lightfadedgreen','Light Faded Green',[102,255,102],'66ff66',6750054], ['vaccc:lightfadedmagenta','lightfadedmagenta','Light Faded Magenta',[255,102,255],'ff66ff',16738047], ['vaccc:lightfadedred','lightfadedred','Light Faded Red',[255,102,102],'ff6666',16737894], ['vaccc:lightfadedyellow','lightfadedyellow','Light Faded Yellow',[255,255,102],'ffff66',16777062], ['vaccc:lightgray','lightgray','Light Gray',[153,153,153],'999999',10066329], ['vaccc:lightgreenspring','lightgreenspring','Light Green-Spring',[102,255,51],'66ff33',6750003], ['vaccc:lightgreenteal','lightgreenteal','Light Green-Teal',[51,255,102],'33ff66',3407718], ['vaccc:lighthardazure','lighthardazure','Light Hard Azure',[51,153,255],'3399ff',3381759], ['vaccc:lighthardblue','lighthardblue','Light Hard Blue',[51,51,255],'3333ff',3355647], ['vaccc:lighthardcyan','lighthardcyan','Light Hard Cyan',[51,255,255],'33ffff',3407871], ['vaccc:lighthardgreen','lighthardgreen','Light Hard Green',[51,255,51],'33ff33',3407667], ['vaccc:lighthardmagenta','lighthardmagenta','Light Hard Magenta',[255,51,255],'ff33ff',16724991], ['vaccc:lighthardorange','lighthardorange','Light Hard Orange',[255,153,51],'ff9933',16750899], ['vaccc:lighthardpink','lighthardpink','Light Hard Pink',[255,51,153],'ff3399',16724889], ['vaccc:lighthardred','lighthardred','Light Hard Red',[255,51,51],'ff3333',16724787], ['vaccc:lighthardspring','lighthardspring','Light Hard Spring',[153,255,51],'99ff33',10092339], ['vaccc:lighthardteal','lighthardteal','Light Hard Teal',[51,255,153],'33ff99',3407769], ['vaccc:lighthardviolet','lighthardviolet','Light Hard Violet',[153,51,255],'9933ff',10040319], ['vaccc:lighthardyellow','lighthardyellow','Light Hard Yellow',[255,255,51],'ffff33',16777011], ['vaccc:lightmagentapink','lightmagentapink','Light Magenta-Pink',[255,51,204],'ff33cc',16724940], ['vaccc:lightmagentaviolet','lightmagentaviolet','Light Magenta-Violet',[204,51,255],'cc33ff',13382655], ['vaccc:lightorangered','lightorangered','Light Orange-Red',[255,153,102],'ff9966',16750950], ['vaccc:lightorangeyellow','lightorangeyellow','Light Orange-Yellow',[255,204,102],'ffcc66',16764006], ['vaccc:lightpinkmagenta','lightpinkmagenta','Light Pink-Magenta',[255,102,204],'ff66cc',16737996], ['vaccc:lightpinkred','lightpinkred','Light Pink-Red',[255,102,153],'ff6699',16737945], ['vaccc:lightredorange','lightredorange','Light Red-Orange',[255,102,51],'ff6633',16737843], ['vaccc:lightredpink','lightredpink','Light Red-Pink',[255,51,102],'ff3366',16724838], ['vaccc:lightspringgreen','lightspringgreen','Light Spring-Green',[153,255,102],'99ff66',10092390], ['vaccc:lightspringyellow','lightspringyellow','Light Spring-Yellow',[204,255,102],'ccff66',13434726], ['vaccc:lighttealcyan','lighttealcyan','Light Teal-Cyan',[102,255,204],'66ffcc',6750156], ['vaccc:lighttealgreen','lighttealgreen','Light Teal-Green',[102,255,153],'66ff99',6750105], ['vaccc:lightvioletblue','lightvioletblue','Light Violet-Blue',[153,102,255],'9966ff',10053375], ['vaccc:lightvioletmagenta','lightvioletmagenta','Light Violet-Magenta',[204,102,255],'cc66ff',13395711], ['vaccc:lightweakblue','lightweakblue','Light Weak Blue',[153,153,204],'9999cc',10066380], ['vaccc:lightweakcyan','lightweakcyan','Light Weak Cyan',[153,204,204],'99cccc',10079436], ['vaccc:lightweakgreen','lightweakgreen','Light Weak Green',[153,204,153],'99cc99',10079385], ['vaccc:lightweakmagenta','lightweakmagenta','Light Weak Magenta',[204,153,204],'cc99cc',13408716], ['vaccc:lightweakred','lightweakred','Light Weak Red',[204,153,153],'cc9999',13408665], ['vaccc:lightweakyellow','lightweakyellow','Light Weak Yellow',[204,204,153],'cccc99',13421721], ['vaccc:lightyelloworange','lightyelloworange','Light Yellow-Orange',[255,204,51],'ffcc33',16763955], ['vaccc:lightyellowspring','lightyellowspring','Light Yellow-Spring',[204,255,51],'ccff33',13434675], ['vaccc:magenta','magenta','Magenta',[255,0,255],'ff00ff',16711935], ['vaccc:magentamagentapink','magentamagentapink','Magenta-Magenta-Pink',[255,0,204],'ff00cc',16711884], ['vaccc:magentamagentaviolet','magentamagentaviolet','Magenta-Magenta-Violet',[204,0,255],'cc00ff',13369599], ['vaccc:mediumazureblue','mediumazureblue','Medium Azure-Blue',[51,102,204],'3366cc',3368652], ['vaccc:mediumazurecyan','mediumazurecyan','Medium Azure-Cyan',[51,153,204],'3399cc',3381708], ['vaccc:mediumfadedblue','mediumfadedblue','Medium Faded Blue',[51,51,204],'3333cc',3355596], ['vaccc:mediumfadedcyan','mediumfadedcyan','Medium Faded Cyan',[51,204,204],'33cccc',3394764], ['vaccc:mediumfadedgreen','mediumfadedgreen','Medium Faded Green',[51,204,51],'33cc33',3394611], ['vaccc:mediumfadedmagenta','mediumfadedmagenta','Medium Faded Magenta',[204,51,204],'cc33cc',13382604], ['vaccc:mediumfadedred','mediumfadedred','Medium Faded Red',[204,51,51],'cc3333',13382451], ['vaccc:mediumfadedyellow','mediumfadedyellow','Medium Faded Yellow',[204,204,51],'cccc33',13421619], ['vaccc:mediumorangered','mediumorangered','Medium Orange-Red',[204,102,51],'cc6633',13395507], ['vaccc:mediumorangeyellow','mediumorangeyellow','Medium Orange-Yellow',[204,153,51],'cc9933',13408563], ['vaccc:mediumpinkmagenta','mediumpinkmagenta','Medium Pink-Magenta',[204,51,153],'cc3399',13382553], ['vaccc:mediumpinkred','mediumpinkred','Medium Pink-Red',[204,51,102],'cc3366',13382502], ['vaccc:mediumspringgreen','mediumspringgreen','Medium Spring-Green',[102,204,51],'66cc33',6736947], ['vaccc:mediumspringyellow','mediumspringyellow','Medium Spring-Yellow',[153,204,51],'99cc33',10079283], ['vaccc:mediumtealcyan','mediumtealcyan','Medium Teal-Cyan',[51,204,153],'33cc99',3394713], ['vaccc:mediumtealgreen','mediumtealgreen','Medium Teal-Green',[51,204,102],'33cc66',3394662], ['vaccc:mediumvioletblue','mediumvioletblue','Medium Violet-Blue',[102,51,204],'6633cc',6697932], ['vaccc:mediumvioletmagenta','mediumvioletmagenta','Medium Violet-Magenta',[153,51,204],'9933cc',10040268], ['vaccc:mediumweakblue','mediumweakblue','Medium Weak Blue',[102,102,153],'666699',6710937], ['vaccc:mediumweakcyan','mediumweakcyan','Medium Weak Cyan',[102,153,153],'669999',6723993], ['vaccc:mediumweakgreen','mediumweakgreen','Medium Weak Green',[102,153,102],'669966',6723942], ['vaccc:mediumweakmagenta','mediumweakmagenta','Medium Weak Magenta',[153,102,153],'996699',10053273], ['vaccc:mediumweakred','mediumweakred','Medium Weak Red',[153,102,102],'996666',10053222], ['vaccc:mediumweakyellow','mediumweakyellow','Medium Weak Yellow',[153,153,102],'999966',10066278], ['vaccc:obscuredullazure','obscuredullazure','Obscure Dull Azure',[0,51,102],'003366',13158], ['vaccc:obscuredullblue','obscuredullblue','Obscure Dull Blue',[0,0,102],'000066',102], ['vaccc:obscuredullcyan','obscuredullcyan','Obscure Dull Cyan',[0,102,102],'006666',26214], ['vaccc:obscuredullgreen','obscuredullgreen','Obscure Dull Green',[0,102,0],'006600',26112], ['vaccc:obscuredullmagenta','obscuredullmagenta','Obscure Dull Magenta',[102,0,102],'660066',6684774], ['vaccc:obscuredullorange','obscuredullorange','Obscure Dull Orange',[102,51,0],'663300',6697728], ['vaccc:obscuredullpink','obscuredullpink','Obscure Dull Pink',[102,0,51],'660033',6684723], ['vaccc:obscuredullred','obscuredullred','Obscure Dull Red',[102,0,0],'660000',6684672], ['vaccc:obscuredullspring','obscuredullspring','Obscure Dull Spring',[51,102,0],'336600',3368448], ['vaccc:obscuredullteal','obscuredullteal','Obscure Dull Teal',[0,102,51],'006633',26163], ['vaccc:obscuredullviolet','obscuredullviolet','Obscure Dull Violet',[51,0,102],'330066',3342438], ['vaccc:obscuredullyellow','obscuredullyellow','Obscure Dull Yellow',[102,102,0],'666600',6710784], ['vaccc:obscuregray','obscuregray','Obscure Gray',[51,51,51],'333333',3355443], ['vaccc:obscureweakblue','obscureweakblue','Obscure Weak Blue',[0,0,51],'000033',51], ['vaccc:obscureweakcyan','obscureweakcyan','Obscure Weak Cyan',[0,51,51],'003333',13107], ['vaccc:obscureweakgreen','obscureweakgreen','Obscure Weak Green',[0,51,0],'003300',13056], ['vaccc:obscureweakmagenta','obscureweakmagenta','Obscure Weak Magenta',[51,0,51],'330033',3342387], ['vaccc:obscureweakred','obscureweakred','Obscure Weak Red',[51,0,0],'330000',3342336], ['vaccc:obscureweakyellow','obscureweakyellow','Obscure Weak Yellow',[51,51,0],'333300',3355392], ['vaccc:orangeorangered','orangeorangered','Orange-Orange-Red',[255,102,0],'ff6600',16737792], ['vaccc:orangeorangeyellow','orangeorangeyellow','Orange-Orange-Yellow',[255,153,0],'ff9900',16750848], ['vaccc:paledullazure','paledullazure','Pale Dull Azure',[153,204,255],'99ccff',10079487], ['vaccc:paledullblue','paledullblue','Pale Dull Blue',[153,153,255],'9999ff',10066431], ['vaccc:paledullcyan','paledullcyan','Pale Dull Cyan',[153,255,255],'99ffff',10092543], ['vaccc:paledullgreen','paledullgreen','Pale Dull Green',[153,255,153],'99ff99',10092441], ['vaccc:paledullmagenta','paledullmagenta','Pale Dull Magenta',[255,153,255],'ff99ff',16751103], ['vaccc:paledullorange','paledullorange','Pale Dull Orange',[255,204,153],'ffcc99',16764057], ['vaccc:paledullpink','paledullpink','Pale Dull Pink',[255,153,204],'ff99cc',16751052], ['vaccc:paledullred','paledullred','Pale Dull Red',[255,153,153],'ff9999',16751001], ['vaccc:paledullspring','paledullspring','Pale Dull Spring',[204,255,153],'ccff99',13434777], ['vaccc:paledullteal','paledullteal','Pale Dull Teal',[153,255,204],'99ffcc',10092492], ['vaccc:paledullviolet','paledullviolet','Pale Dull Violet',[204,153,255],'cc99ff',13408767], ['vaccc:paledullyellow','paledullyellow','Pale Dull Yellow',[255,255,153],'ffff99',16777113], ['vaccc:palegray','palegray','Pale Gray',[204,204,204],'cccccc',13421772], ['vaccc:paleweakblue','paleweakblue','Pale Weak Blue',[204,204,255],'ccccff',13421823], ['vaccc:paleweakcyan','paleweakcyan','Pale Weak Cyan',[204,255,255],'ccffff',13434879], ['vaccc:paleweakgreen','paleweakgreen','Pale Weak Green',[204,255,204],'ccffcc',13434828], ['vaccc:paleweakmagenta','paleweakmagenta','Pale Weak Magenta',[255,204,255],'ffccff',16764159], ['vaccc:paleweakred','paleweakred','Pale Weak Red',[255,204,204],'ffcccc',16764108], ['vaccc:paleweakyellow','paleweakyellow','Pale Weak Yellow',[255,255,204],'ffffcc',16777164], ['vaccc:pinkpinkmagenta','pinkpinkmagenta','Pink-Pink-Magenta',[255,0,153],'ff0099',16711833], ['vaccc:pinkpinkred','pinkpinkred','Pink-Pink-Red',[255,0,102],'ff0066',16711782], ['vaccc:red','red','Red',[255,0,0],'ff0000',16711680], ['vaccc:redredorange','redredorange','Red-Red-Orange',[255,51,0],'ff3300',16724736], ['vaccc:redredpink','redredpink','Red-Red-Pink',[255,0,51],'ff0033',16711731], ['vaccc:springspringgreen','springspringgreen','Spring-Spring-Green',[102,255,0],'66ff00',6749952], ['vaccc:springspringyellow','springspringyellow','Spring-Spring-Yellow',[153,255,0],'99ff00',10092288], ['vaccc:tealtealcyan','tealtealcyan','Teal-Teal-Cyan',[0,255,153],'00ff99',65433], ['vaccc:tealtealgreen','tealtealgreen','Teal-Teal-Green',[0,255,102],'00ff66',65382], ['vaccc:violetvioletblue','violetvioletblue','Violet-Violet-Blue',[102,0,255],'6600ff',6684927], ['vaccc:violetvioletmagenta','violetvioletmagenta','Violet-Violet-Magenta',[153,0,255],'9900ff',10027263], ['vaccc:white','white','White',[255,255,255],'ffffff',16777215], ['vaccc:yellow','yellow','Yellow',[255,255,0],'ffff00',16776960], ['vaccc:yellowyelloworange','yellowyelloworange','Yellow-Yellow-Orange',[255,204,0],'ffcc00',16763904], ['vaccc:yellowyellowspring','yellowyellowspring','Yellow-Yellow-Spring',[204,255,0],'ccff00',13434624] ]; } sub _description { return { 'subtitle' => 'VisiBone Anglo-Centric Color Code', 'title' => 'VACCC', 'description' => 'VisiBone Anglo-Centric Color Code [http://www.visibone.com/vaccc/] Peter Hamer correctly points out that this naming scheme should not be confused with names given to spectral colors, such as those that follow the mnemonic "Roy G. Biv": Red, Orange, Yellow, Green, Blue, Indigo, Violet. The distinction is between the physical nature of light and the human perception of if. Humans can\'t distinguish yellow light from a mixture of red and green light. That\'s due to the color detection mechanism of the human eye. The "cones" on the surface of the retina respond differentially to red, green and blue light. (The "rods" on the other hand are very sensitive to the brightness of light but can\'t distinguish hues.) So computer phosphors don\'t attempt to transmit yellow light at all. They simulate it by transmitting both red and green. At least humans can be fooled in this way. There\'s much more to light than the human eye can measure. Besides the fact that visible light is a narrow subset of all the light coming from the sun, there a whole dimension in the variation of frequency and amplitude to which the eye is "tone deaf". This dimension is important to astronomers and chemists. Their instruments measure aspects of light that can reveal, for example, the composition of a star as well as that of a material found at a crime scene. Only when light is "for eyes only," your\'s or anyone\'s, can we simplify theory and measurement to varying quantities of red, green and blue. (Ever use a magnifying glass on your computer screen to see the little dots? Watch that eyestrain! Didn\'t I say a magnfying glass?!) So the physics of color and the perception of color are different disciplines. Another interesting distinction, "hues" on a computer monitor as well as in the mind of a user, follow a circular series, as named above in the hue list. Magenta and Pink are as close to each other in perception as Green and Teal. But the physics of light is linear, a spectrum. Violet in the color spectrum is the furthest thing from Red. With real light, there\'s no such thing as magenta. The eye, when the red and blue cones are stimulated "sees" magenta, but it doesn\'t correspond to any frequency of light, the way most other hues do. Incidentally, the distinction between Red, Green, Blue (RGB) and Cyan, Magenta, Yellow (CMY or CMYK when Black is added to the mix) is purely tactical. Printers use light-absorbing ink and computer monitors use light-transmitting phosphors. The perfect cyan ink would completely absorb red light and be completely transparent to green and blue. The tactic of mixing cyan and yellow ink to get green is backwards from mixing red and green light to get yellow. But the strategy is the same: fooling human eyeballs by manipulating the red, green and blue light that ultimately hits the retina. ' } } 1; Mozilla.pm100644000765000024 4613611667760546 22701 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionarypackage Color::Library::Dictionary::Mozilla; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::Mozilla; =pod =head1 NAME Color::Library::Dictionary::Mozilla - (Mozilla) Colors recognized by Mozilla (ColorNames.txt) =head1 DESCRIPTION From the mozilla source tree: /mozilla/layout/tools/ColorNames.txt =head1 COLORS aliceblue aliceblue #f0f8ff antiquewhite antiquewhite #faebd7 aqua aqua #00ffff aquamarine aquamarine #7fffd4 azure azure #f0ffff beige beige #f5f5dc bisque bisque #ffe4c4 black black #000000 blanchedalmond blanchedalmond #ffebcd blue blue #0000ff blueviolet blueviolet #8a2be2 brown brown #a52a2a burlywood burlywood #deb887 cadetblue cadetblue #5f9ea0 chartreuse chartreuse #7fff00 chocolate chocolate #d2691e coral coral #ff7f50 cornflowerblue cornflowerblue #6495ed cornsilk cornsilk #fff8dc crimson crimson #dc143c cyan cyan #00ffff darkblue darkblue #00008b darkcyan darkcyan #008b8b darkgoldenrod darkgoldenrod #b8860b darkgray darkgray #a9a9a9 darkgreen darkgreen #006400 darkgrey darkgrey #a9a9a9 darkkhaki darkkhaki #bdb76b darkmagenta darkmagenta #8b008b darkolivegreen darkolivegreen #556b2f darkorange darkorange #ff8c00 darkorchid darkorchid #9932cc darkred darkred #8b0000 darksalmon darksalmon #e9967a darkseagreen darkseagreen #8fbc8f darkslateblue darkslateblue #483d8b darkslategray darkslategray #2f4f4f darkslategrey darkslategrey #2f4f4f darkturquoise darkturquoise #00ced1 darkviolet darkviolet #9400d3 deeppink deeppink #ff1493 deepskyblue deepskyblue #00bfff dimgray dimgray #696969 dimgrey dimgrey #696969 dodgerblue dodgerblue #1e90ff firebrick firebrick #b22222 floralwhite floralwhite #fffaf0 forestgreen forestgreen #228b22 fuchsia fuchsia #ff00ff gainsboro gainsboro #dcdcdc ghostwhite ghostwhite #f8f8ff gold gold #ffd700 goldenrod goldenrod #daa520 gray gray #808080 green green #008000 greenyellow greenyellow #adff2f grey grey #808080 honeydew honeydew #f0fff0 hotpink hotpink #ff69b4 indianred indianred #cd5c5c indigo indigo #4b0082 ivory ivory #fffff0 khaki khaki #f0e68c lavender lavender #e6e6fa lavenderblush lavenderblush #fff0f5 lawngreen lawngreen #7cfc00 lemonchiffon lemonchiffon #fffacd lightblue lightblue #add8e6 lightcoral lightcoral #f08080 lightcyan lightcyan #e0ffff lightgoldenrodyellow lightgoldenrodyellow #fafad2 lightgreen lightgreen #90ee90 lightgrey lightgrey #d3d3d3 lightpink lightpink #ffb6c1 lightsalmon lightsalmon #ffa07a lightseagreen lightseagreen #20b2aa lightskyblue lightskyblue #87cefa lightslategray lightslategray #778899 lightslategrey lightslategrey #778899 lightsteelblue lightsteelblue #b0c4de lightyellow lightyellow #ffffe0 lime lime #00ff00 limegreen limegreen #32cd32 linen linen #faf0e6 magenta magenta #ff00ff maroon maroon #800000 mediumaquamarine mediumaquamarine #66cdaa mediumblue mediumblue #0000cd mediumorchid mediumorchid #ba55d3 mediumpurple mediumpurple #9370db mediumseagreen mediumseagreen #3cb371 mediumslateblue mediumslateblue #7b68ee mediumspringgreen mediumspringgreen #00fa9a mediumturquoise mediumturquoise #48d1cc mediumvioletred mediumvioletred #c71585 midnightblue midnightblue #191970 mintcream mintcream #f5fffa mistyrose mistyrose #ffe4e1 moccasin moccasin #ffe4b5 navajowhite navajowhite #ffdead navy navy #000080 oldlace oldlace #fdf5e6 olive olive #808000 olivedrab olivedrab #6b8e23 orange orange #ffa500 orangered orangered #ff4500 orchid orchid #da70d6 palegoldenrod palegoldenrod #eee8aa palegreen palegreen #98fb98 paleturquoise paleturquoise #afeeee palevioletred palevioletred #db7093 papayawhip papayawhip #ffefd5 peachpuff peachpuff #ffdab9 peru peru #cd853f pink pink #ffc0cb plum plum #dda0dd powderblue powderblue #b0e0e6 purple purple #800080 red red #ff0000 rosybrown rosybrown #bc8f8f royalblue royalblue #4169e1 saddlebrown saddlebrown #8b4513 salmon salmon #fa8072 sandybrown sandybrown #f4a460 seagreen seagreen #2e8b57 seashell seashell #fff5ee sienna sienna #a0522d silver silver #c0c0c0 skyblue skyblue #87ceeb slateblue slateblue #6a5acd slategray slategray #708090 slategrey slategrey #708090 snow snow #fffafa springgreen springgreen #00ff7f steelblue steelblue #4682b4 tan tan #d2b48c teal teal #008080 thistle thistle #d8bfd8 tomato tomato #ff6347 turquoise turquoise #40e0d0 violet violet #ee82ee wheat wheat #f5deb3 white white #ffffff whitesmoke whitesmoke #f5f5f5 yellow yellow #ffff00 yellowgreen yellowgreen #9acd32 =cut sub _load_color_list() { return [ ['mozilla:aliceblue','aliceblue','aliceblue',[240,248,255],'f0f8ff',15792383], ['mozilla:antiquewhite','antiquewhite','antiquewhite',[250,235,215],'faebd7',16444375], ['mozilla:aqua','aqua','aqua',[0,255,255],'00ffff',65535], ['mozilla:aquamarine','aquamarine','aquamarine',[127,255,212],'7fffd4',8388564], ['mozilla:azure','azure','azure',[240,255,255],'f0ffff',15794175], ['mozilla:beige','beige','beige',[245,245,220],'f5f5dc',16119260], ['mozilla:bisque','bisque','bisque',[255,228,196],'ffe4c4',16770244], ['mozilla:black','black','black',[0,0,0],'000000',0], ['mozilla:blanchedalmond','blanchedalmond','blanchedalmond',[255,235,205],'ffebcd',16772045], ['mozilla:blue','blue','blue',[0,0,255],'0000ff',255], ['mozilla:blueviolet','blueviolet','blueviolet',[138,43,226],'8a2be2',9055202], ['mozilla:brown','brown','brown',[165,42,42],'a52a2a',10824234], ['mozilla:burlywood','burlywood','burlywood',[222,184,135],'deb887',14596231], ['mozilla:cadetblue','cadetblue','cadetblue',[95,158,160],'5f9ea0',6266528], ['mozilla:chartreuse','chartreuse','chartreuse',[127,255,0],'7fff00',8388352], ['mozilla:chocolate','chocolate','chocolate',[210,105,30],'d2691e',13789470], ['mozilla:coral','coral','coral',[255,127,80],'ff7f50',16744272], ['mozilla:cornflowerblue','cornflowerblue','cornflowerblue',[100,149,237],'6495ed',6591981], ['mozilla:cornsilk','cornsilk','cornsilk',[255,248,220],'fff8dc',16775388], ['mozilla:crimson','crimson','crimson',[220,20,60],'dc143c',14423100], ['mozilla:cyan','cyan','cyan',[0,255,255],'00ffff',65535], ['mozilla:darkblue','darkblue','darkblue',[0,0,139],'00008b',139], ['mozilla:darkcyan','darkcyan','darkcyan',[0,139,139],'008b8b',35723], ['mozilla:darkgoldenrod','darkgoldenrod','darkgoldenrod',[184,134,11],'b8860b',12092939], ['mozilla:darkgray','darkgray','darkgray',[169,169,169],'a9a9a9',11119017], ['mozilla:darkgreen','darkgreen','darkgreen',[0,100,0],'006400',25600], ['mozilla:darkgrey','darkgrey','darkgrey',[169,169,169],'a9a9a9',11119017], ['mozilla:darkkhaki','darkkhaki','darkkhaki',[189,183,107],'bdb76b',12433259], ['mozilla:darkmagenta','darkmagenta','darkmagenta',[139,0,139],'8b008b',9109643], ['mozilla:darkolivegreen','darkolivegreen','darkolivegreen',[85,107,47],'556b2f',5597999], ['mozilla:darkorange','darkorange','darkorange',[255,140,0],'ff8c00',16747520], ['mozilla:darkorchid','darkorchid','darkorchid',[153,50,204],'9932cc',10040012], ['mozilla:darkred','darkred','darkred',[139,0,0],'8b0000',9109504], ['mozilla:darksalmon','darksalmon','darksalmon',[233,150,122],'e9967a',15308410], ['mozilla:darkseagreen','darkseagreen','darkseagreen',[143,188,143],'8fbc8f',9419919], ['mozilla:darkslateblue','darkslateblue','darkslateblue',[72,61,139],'483d8b',4734347], ['mozilla:darkslategray','darkslategray','darkslategray',[47,79,79],'2f4f4f',3100495], ['mozilla:darkslategrey','darkslategrey','darkslategrey',[47,79,79],'2f4f4f',3100495], ['mozilla:darkturquoise','darkturquoise','darkturquoise',[0,206,209],'00ced1',52945], ['mozilla:darkviolet','darkviolet','darkviolet',[148,0,211],'9400d3',9699539], ['mozilla:deeppink','deeppink','deeppink',[255,20,147],'ff1493',16716947], ['mozilla:deepskyblue','deepskyblue','deepskyblue',[0,191,255],'00bfff',49151], ['mozilla:dimgray','dimgray','dimgray',[105,105,105],'696969',6908265], ['mozilla:dimgrey','dimgrey','dimgrey',[105,105,105],'696969',6908265], ['mozilla:dodgerblue','dodgerblue','dodgerblue',[30,144,255],'1e90ff',2003199], ['mozilla:firebrick','firebrick','firebrick',[178,34,34],'b22222',11674146], ['mozilla:floralwhite','floralwhite','floralwhite',[255,250,240],'fffaf0',16775920], ['mozilla:forestgreen','forestgreen','forestgreen',[34,139,34],'228b22',2263842], ['mozilla:fuchsia','fuchsia','fuchsia',[255,0,255],'ff00ff',16711935], ['mozilla:gainsboro','gainsboro','gainsboro',[220,220,220],'dcdcdc',14474460], ['mozilla:ghostwhite','ghostwhite','ghostwhite',[248,248,255],'f8f8ff',16316671], ['mozilla:gold','gold','gold',[255,215,0],'ffd700',16766720], ['mozilla:goldenrod','goldenrod','goldenrod',[218,165,32],'daa520',14329120], ['mozilla:gray','gray','gray',[128,128,128],'808080',8421504], ['mozilla:green','green','green',[0,128,0],'008000',32768], ['mozilla:greenyellow','greenyellow','greenyellow',[173,255,47],'adff2f',11403055], ['mozilla:grey','grey','grey',[128,128,128],'808080',8421504], ['mozilla:honeydew','honeydew','honeydew',[240,255,240],'f0fff0',15794160], ['mozilla:hotpink','hotpink','hotpink',[255,105,180],'ff69b4',16738740], ['mozilla:indianred','indianred','indianred',[205,92,92],'cd5c5c',13458524], ['mozilla:indigo','indigo','indigo',[75,0,130],'4b0082',4915330], ['mozilla:ivory','ivory','ivory',[255,255,240],'fffff0',16777200], ['mozilla:khaki','khaki','khaki',[240,230,140],'f0e68c',15787660], ['mozilla:lavender','lavender','lavender',[230,230,250],'e6e6fa',15132410], ['mozilla:lavenderblush','lavenderblush','lavenderblush',[255,240,245],'fff0f5',16773365], ['mozilla:lawngreen','lawngreen','lawngreen',[124,252,0],'7cfc00',8190976], ['mozilla:lemonchiffon','lemonchiffon','lemonchiffon',[255,250,205],'fffacd',16775885], ['mozilla:lightblue','lightblue','lightblue',[173,216,230],'add8e6',11393254], ['mozilla:lightcoral','lightcoral','lightcoral',[240,128,128],'f08080',15761536], ['mozilla:lightcyan','lightcyan','lightcyan',[224,255,255],'e0ffff',14745599], ['mozilla:lightgoldenrodyellow','lightgoldenrodyellow','lightgoldenrodyellow',[250,250,210],'fafad2',16448210], ['mozilla:lightgreen','lightgreen','lightgreen',[144,238,144],'90ee90',9498256], ['mozilla:lightgrey','lightgrey','lightgrey',[211,211,211],'d3d3d3',13882323], ['mozilla:lightpink','lightpink','lightpink',[255,182,193],'ffb6c1',16758465], ['mozilla:lightsalmon','lightsalmon','lightsalmon',[255,160,122],'ffa07a',16752762], ['mozilla:lightseagreen','lightseagreen','lightseagreen',[32,178,170],'20b2aa',2142890], ['mozilla:lightskyblue','lightskyblue','lightskyblue',[135,206,250],'87cefa',8900346], ['mozilla:lightslategray','lightslategray','lightslategray',[119,136,153],'778899',7833753], ['mozilla:lightslategrey','lightslategrey','lightslategrey',[119,136,153],'778899',7833753], ['mozilla:lightsteelblue','lightsteelblue','lightsteelblue',[176,196,222],'b0c4de',11584734], ['mozilla:lightyellow','lightyellow','lightyellow',[255,255,224],'ffffe0',16777184], ['mozilla:lime','lime','lime',[0,255,0],'00ff00',65280], ['mozilla:limegreen','limegreen','limegreen',[50,205,50],'32cd32',3329330], ['mozilla:linen','linen','linen',[250,240,230],'faf0e6',16445670], ['mozilla:magenta','magenta','magenta',[255,0,255],'ff00ff',16711935], ['mozilla:maroon','maroon','maroon',[128,0,0],'800000',8388608], ['mozilla:mediumaquamarine','mediumaquamarine','mediumaquamarine',[102,205,170],'66cdaa',6737322], ['mozilla:mediumblue','mediumblue','mediumblue',[0,0,205],'0000cd',205], ['mozilla:mediumorchid','mediumorchid','mediumorchid',[186,85,211],'ba55d3',12211667], ['mozilla:mediumpurple','mediumpurple','mediumpurple',[147,112,219],'9370db',9662683], ['mozilla:mediumseagreen','mediumseagreen','mediumseagreen',[60,179,113],'3cb371',3978097], ['mozilla:mediumslateblue','mediumslateblue','mediumslateblue',[123,104,238],'7b68ee',8087790], ['mozilla:mediumspringgreen','mediumspringgreen','mediumspringgreen',[0,250,154],'00fa9a',64154], ['mozilla:mediumturquoise','mediumturquoise','mediumturquoise',[72,209,204],'48d1cc',4772300], ['mozilla:mediumvioletred','mediumvioletred','mediumvioletred',[199,21,133],'c71585',13047173], ['mozilla:midnightblue','midnightblue','midnightblue',[25,25,112],'191970',1644912], ['mozilla:mintcream','mintcream','mintcream',[245,255,250],'f5fffa',16121850], ['mozilla:mistyrose','mistyrose','mistyrose',[255,228,225],'ffe4e1',16770273], ['mozilla:moccasin','moccasin','moccasin',[255,228,181],'ffe4b5',16770229], ['mozilla:navajowhite','navajowhite','navajowhite',[255,222,173],'ffdead',16768685], ['mozilla:navy','navy','navy',[0,0,128],'000080',128], ['mozilla:oldlace','oldlace','oldlace',[253,245,230],'fdf5e6',16643558], ['mozilla:olive','olive','olive',[128,128,0],'808000',8421376], ['mozilla:olivedrab','olivedrab','olivedrab',[107,142,35],'6b8e23',7048739], ['mozilla:orange','orange','orange',[255,165,0],'ffa500',16753920], ['mozilla:orangered','orangered','orangered',[255,69,0],'ff4500',16729344], ['mozilla:orchid','orchid','orchid',[218,112,214],'da70d6',14315734], ['mozilla:palegoldenrod','palegoldenrod','palegoldenrod',[238,232,170],'eee8aa',15657130], ['mozilla:palegreen','palegreen','palegreen',[152,251,152],'98fb98',10025880], ['mozilla:paleturquoise','paleturquoise','paleturquoise',[175,238,238],'afeeee',11529966], ['mozilla:palevioletred','palevioletred','palevioletred',[219,112,147],'db7093',14381203], ['mozilla:papayawhip','papayawhip','papayawhip',[255,239,213],'ffefd5',16773077], ['mozilla:peachpuff','peachpuff','peachpuff',[255,218,185],'ffdab9',16767673], ['mozilla:peru','peru','peru',[205,133,63],'cd853f',13468991], ['mozilla:pink','pink','pink',[255,192,203],'ffc0cb',16761035], ['mozilla:plum','plum','plum',[221,160,221],'dda0dd',14524637], ['mozilla:powderblue','powderblue','powderblue',[176,224,230],'b0e0e6',11591910], ['mozilla:purple','purple','purple',[128,0,128],'800080',8388736], ['mozilla:red','red','red',[255,0,0],'ff0000',16711680], ['mozilla:rosybrown','rosybrown','rosybrown',[188,143,143],'bc8f8f',12357519], ['mozilla:royalblue','royalblue','royalblue',[65,105,225],'4169e1',4286945], ['mozilla:saddlebrown','saddlebrown','saddlebrown',[139,69,19],'8b4513',9127187], ['mozilla:salmon','salmon','salmon',[250,128,114],'fa8072',16416882], ['mozilla:sandybrown','sandybrown','sandybrown',[244,164,96],'f4a460',16032864], ['mozilla:seagreen','seagreen','seagreen',[46,139,87],'2e8b57',3050327], ['mozilla:seashell','seashell','seashell',[255,245,238],'fff5ee',16774638], ['mozilla:sienna','sienna','sienna',[160,82,45],'a0522d',10506797], ['mozilla:silver','silver','silver',[192,192,192],'c0c0c0',12632256], ['mozilla:skyblue','skyblue','skyblue',[135,206,235],'87ceeb',8900331], ['mozilla:slateblue','slateblue','slateblue',[106,90,205],'6a5acd',6970061], ['mozilla:slategray','slategray','slategray',[112,128,144],'708090',7372944], ['mozilla:slategrey','slategrey','slategrey',[112,128,144],'708090',7372944], ['mozilla:snow','snow','snow',[255,250,250],'fffafa',16775930], ['mozilla:springgreen','springgreen','springgreen',[0,255,127],'00ff7f',65407], ['mozilla:steelblue','steelblue','steelblue',[70,130,180],'4682b4',4620980], ['mozilla:tan','tan','tan',[210,180,140],'d2b48c',13808780], ['mozilla:teal','teal','teal',[0,128,128],'008080',32896], ['mozilla:thistle','thistle','thistle',[216,191,216],'d8bfd8',14204888], ['mozilla:tomato','tomato','tomato',[255,99,71],'ff6347',16737095], ['mozilla:turquoise','turquoise','turquoise',[64,224,208],'40e0d0',4251856], ['mozilla:violet','violet','violet',[238,130,238],'ee82ee',15631086], ['mozilla:wheat','wheat','wheat',[245,222,179],'f5deb3',16113331], ['mozilla:white','white','white',[255,255,255],'ffffff',16777215], ['mozilla:whitesmoke','whitesmoke','whitesmoke',[245,245,245],'f5f5f5',16119285], ['mozilla:yellow','yellow','yellow',[255,255,0],'ffff00',16776960], ['mozilla:yellowgreen','yellowgreen','yellowgreen',[154,205,50],'9acd32',10145074] ]; } sub _description { return { 'subtitle' => 'Colors recognized by Mozilla (ColorNames.txt)', 'title' => 'Mozilla', 'description' => 'From the mozilla source tree: /mozilla/layout/tools/ColorNames.txt ' } } 1; Windows.pm100644000765000024 521611667760546 22676 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionarypackage Color::Library::Dictionary::Windows; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::Windows; =pod =head1 NAME Color::Library::Dictionary::Windows - (Windows) Colors from the Windows system palette =head1 DESCRIPTION Static colors. Twenty colors found in the [Windows] system palette that cannot be set by an application. Sixteen of these colors are common across all color displays. L =head1 COLORS black black #000000 blue blue #0000ff cyan cyan #00ffff darkblue darkblue #000080 darkcyan darkcyan #008080 darkgray darkgray #808080 darkgreen darkgreen #008000 darkmagenta darkmagenta #800080 darkred darkred #800000 darkyellow darkyellow #808000 green green #00ff00 lightgray lightgray #c0c0c0 magenta magenta #ff00ff red red #ff0000 white white #ffffff yellow yellow #ffff00 =cut sub _load_color_list() { return [ ['windows:black','black','black',[0,0,0],'000000',0], ['windows:blue','blue','blue',[0,0,255],'0000ff',255], ['windows:cyan','cyan','cyan',[0,255,255],'00ffff',65535], ['windows:darkblue','darkblue','darkblue',[0,0,128],'000080',128], ['windows:darkcyan','darkcyan','darkcyan',[0,128,128],'008080',32896], ['windows:darkgray','darkgray','darkgray',[128,128,128],'808080',8421504], ['windows:darkgreen','darkgreen','darkgreen',[0,128,0],'008000',32768], ['windows:darkmagenta','darkmagenta','darkmagenta',[128,0,128],'800080',8388736], ['windows:darkred','darkred','darkred',[128,0,0],'800000',8388608], ['windows:darkyellow','darkyellow','darkyellow',[128,128,0],'808000',8421376], ['windows:green','green','green',[0,255,0],'00ff00',65280], ['windows:lightgray','lightgray','lightgray',[192,192,192],'c0c0c0',12632256], ['windows:magenta','magenta','magenta',[255,0,255],'ff00ff',16711935], ['windows:red','red','red',[255,0,0],'ff0000',16711680], ['windows:white','white','white',[255,255,255],'ffffff',16777215], ['windows:yellow','yellow','yellow',[255,255,0],'ffff00',16776960] ]; } sub _description { return { 'subtitle' => 'Colors from the Windows system palette', 'title' => 'Windows', 'description' => 'Static colors. Twenty colors found in the [Windows] system palette that cannot be set by an application. Sixteen of these colors are common across all color displays. [http://msdn.microsoft.com/archive/en-us/dnargdi/html/msdn_palette.asp?frame=true] ' } } 1; NBS_ISCC.pm100644000765000024 13021311667760546 22523 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionarypackage Color::Library::Dictionary::NBS_ISCC; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::NBS_ISCC; =pod =head1 NAME Color::Library::Dictionary::NBS_ISCC - (NBS/ISCC Centroids) Centroids of the NBS/ISCC catalog =head1 DESCRIPTION Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: NBS/ISCC Centroids L =head1 COLORS Black black #222222 Blackish Blue blackishblue #202830 Blackish Green blackishgreen #1a2421 Blackish Purple blackishpurple #291e29 Blackish Red blackishred #2e1d21 Bluish Black bluishblack #202428 Bluish Gray bluishgray #81878b Bluish White bluishwhite #e9e9ed Brilliant Blue brilliantblue #4997d0 Brilliant Bluish Green brilliantbluishgreen #00a693 Brilliant Green brilliantgreen #3eb489 Brilliant Greenish Blue brilliantgreenishblue #239eba Brilliant Greenish Yellow brilliantgreenishyellow #e9e450 Brilliant Orange brilliantorange #fd943f Brilliant Orange Yellow brilliantorangeyellow #ffc14f Brilliant Purple brilliantpurple #d399e6 Brilliant Purplish Blue brilliantpurplishblue #6c79b8 Brilliant Purplish Pink brilliantpurplishpink #ffc8d6 Brilliant Violet brilliantviolet #7e73b8 Brilliant Yellow brilliantyellow #fada5e Brilliant Yellow Green brilliantyellowgreen #bdda57 Brilliant Yellowish Green brilliantyellowishgreen #83d37d Brownish Black brownishblack #28201c Brownish Gray brownishgray #5b504f Brownish Orange brownishorange #ae6938 Brownish Pink brownishpink #c2ac99 Dark Blue darkblue #00304e Dark Bluish Gray darkbluishgray #51585e Dark Bluish Green darkbluishgreen #004b49 Dark Brown darkbrown #422518 Dark Gray darkgray #555555 Dark Grayish Blue darkgrayishblue #36454f Dark Grayish Brown darkgrayishbrown #3e322c Dark Grayish Green darkgrayishgreen #3a4b47 Dark Grayish Olive darkgrayisholive #363527 Dark Grayish Olive Green darkgrayisholivegreen #31362b Dark Grayish Purple darkgrayishpurple #50404d Dark Grayish Red darkgrayishred #543d3f Dark Grayish Reddish Brown darkgrayishreddishbrown #43302e Dark Grayish Yellow darkgrayishyellow #a18f60 Dark Grayish Yellowish Brown darkgrayishyellowishbrown #483c32 Dark Green darkgreen #1b4d3e Dark Greenish Blue darkgreenishblue #004958 Dark Greenish Gray darkgreenishgray #4e5755 Dark Greenish Yellow darkgreenishyellow #98943e Dark Olive darkolive #403d21 Dark Olive Brown darkolivebrown #3b3121 Dark Olive Green darkolivegreen #2b3d26 Dark Orange Yellow darkorangeyellow #be8a3d Dark Pink darkpink #c08081 Dark Purple darkpurple #563c5c Dark Purplish Blue darkpurplishblue #252440 Dark Purplish Gray darkpurplishgray #5d555b Dark Purplish Pink darkpurplishpink #c17e91 Dark Purplish Red darkpurplishred #673147 Dark Red darkred #722f37 Dark Reddish Brown darkreddishbrown #3e1d1e Dark Reddish Gray darkreddishgray #5c504f Dark Reddish Orange darkreddishorange #9e4732 Dark Reddish Purple darkreddishpurple #5d3954 Dark Violet darkviolet #2f2140 Dark Yellow darkyellow #ab9144 Dark Yellowish Brown darkyellowishbrown #4b3621 Dark Yellowish Green darkyellowishgreen #355e3b Dark Yellowish Pink darkyellowishpink #c48379 Deep Blue deepblue #00416a Deep Bluish Green deepbluishgreen #00443f Deep Brown deepbrown #593319 Deep Green deepgreen #00543d Deep Greenish Blue deepgreenishblue #2e8495 Deep Greenish Yellow deepgreenishyellow #9b9400 Deep Olive Green deepolivegreen #232f00 Deep Orange deeporange #be6516 Deep Orange Yellow deeporangeyellow #c98500 Deep Pink deeppink #e4717a Deep Purple deeppurple #602f6b Deep Purplish Blue deeppurplishblue #272458 Deep Purplish Pink deeppurplishpink #de6fa1 Deep Purplish Red deeppurplishred #78184a Deep Red deepred #841b2d Deep Reddish Brown deepreddishbrown #56070c Deep Reddish Orange deepreddishorange #aa381e Deep Reddish Purple deepreddishpurple #702963 Deep Violet deepviolet #32174d Deep Yellow deepyellow #af8d13 Deep Yellow Green deepyellowgreen #467129 Deep Yellowish Brown deepyellowishbrown #654522 Deep Yellowish Green deepyellowishgreen #00622d Deep Yellowish Pink deepyellowishpink #e66721 Grayish Blue grayishblue #536878 Grayish Brown grayishbrown #635147 Grayish Green grayishgreen #5e716a Grayish Greenish Yellow grayishgreenishyellow #b9b57d Grayish Olive grayisholive #5b5842 Grayish Olive Green grayisholivegreen #515744 Grayish Pink grayishpink #c4aead Grayish Purple grayishpurple #796878 Grayish Purplish Blue grayishpurplishblue #4c516d Grayish Purplish Pink grayishpurplishpink #c3a6b1 Grayish Purplish Red grayishpurplishred #915f6d Grayish Red grayishred #905d5d Grayish Reddish Brown grayishreddishbrown #674c47 Grayish Reddish Orange grayishreddishorange #b4745e Grayish Reddish Purple grayishreddishpurple #836479 Grayish Violet grayishviolet #554c69 Grayish Yellow grayishyellow #c2b280 Grayish Yellow Green grayishyellowgreen #8f9779 Grayish Yellowish Brown grayishyellowishbrown #7e6d5a Grayish Yellowish Pink grayishyellowishpink #c7ada3 Greenish Black greenishblack #1e2321 Greenish Gray greenishgray #7d8984 Greenish White greenishwhite #dfede8 Light Blue lightblue #70a3cc Light Bluish Gray lightbluishgray #b4bcc0 Light Bluish Green lightbluishgreen #66ada4 Light Brown lightbrown #a67b5b Light Brownish Gray lightbrownishgray #8e8279 Light Gray lightgray #b9b8b5 Light Grayish Brown lightgrayishbrown #958070 Light Grayish Olive lightgrayisholive #8c8767 Light Grayish Purplish Red lightgrayishpurplishred #af868e Light Grayish Red lightgrayishred #ad8884 Light Grayish Reddish Brown lightgrayishreddishbrown #977f73 Light Grayish Yellowish Brown lightgrayishyellowishbrown #ae9b82 Light Green lightgreen #6aab8e Light Greenish Blue lightgreenishblue #66aabc Light Greenish Gray lightgreenishgray #b2beb5 Light Greenish Yellow lightgreenishyellow #eae679 Light Olive lightolive #867e36 Light Olive Brown lightolivebrown #967117 Light Olive Gray lightolivegray #8a8776 Light Orange lightorange #fab57f Light Orange Yellow lightorangeyellow #fbc97f Light Pink lightpink #f9ccca Light Purple lightpurple #b695c0 Light Purplish Blue lightpurplishblue #8791bf Light Purplish Gray lightpurplishgray #bfb9bd Light Purplish Pink lightpurplishpink #efbbcc Light Reddish Brown lightreddishbrown #a87c6d Light Reddish Purple lightreddishpurple #b784a7 Light Violet lightviolet #8c82b6 Light Yellow lightyellow #f8de7e Light Yellow Green lightyellowgreen #c9dc89 Light Yellowish Brown lightyellowishbrown #c19a6b Light Yellowish Green lightyellowishgreen #93c592 Light Yellowish Pink lightyellowishpink #f4c2c2 Medium Gray mediumgray #848482 Moderate Blue moderateblue #436b95 Moderate Bluish Green moderatebluishgreen #317873 Moderate Brown moderatebrown #6f4e37 Moderate Green moderategreen #3b7861 Moderate Greenish Blue moderategreenishblue #367588 Moderate Greenish Yellow moderategreenishyellow #b9b459 Moderate Olive moderateolive #665d1e Moderate Olive Brown moderateolivebrown #6c541e Moderate Olive Green moderateolivegreen #4a5d23 Moderate Orange moderateorange #d99058 Moderate Orange Yellow moderateorangeyellow #e3a857 Moderate Pink moderatepink #dea5a4 Moderate Purple moderatepurple #86608e Moderate Purplish Blue moderatepurplishblue #4e5180 Moderate Purplish Pink moderatepurplishpink #d597ae Moderate Purplish Red moderatepurplishred #a8516e Moderate Red moderatered #ab4e52 Moderate Reddish Brown moderatereddishbrown #79443b Moderate Reddish Orange moderatereddishorange #cb6d51 Moderate Reddish Purple moderatereddishpurple #915c83 Moderate Violet moderateviolet #604e81 Moderate Yellow moderateyellow #c9ae5d Moderate Yellow Green moderateyellowgreen #8a9a5b Moderate Yellowish Brown moderateyellowishbrown #826644 Moderate Yellowish Green moderateyellowishgreen #679267 Moderate Yellowish Pink moderateyellowishpink #d9a6a9 Olive Black oliveblack #25241d Olive Gray olivegray #57554c Pale Blue paleblue #91a3b0 Pale Green palegreen #8da399 Pale Greenish Yellow palegreenishyellow #ebe8a4 Pale Orange Yellow paleorangeyellow #fad6a5 Pale Pink palepink #ead8d7 Pale Purple palepurple #aa98a9 Pale Purplish Blue palepurplishblue #8c92ac Pale Purplish Pink palepurplishpink #e8ccd7 Pale Reddish Purple palereddishpurple #aa8a9e Pale Violet paleviolet #9690ab Pale Yellow paleyellow #f3e5ab Pale Yellow Green paleyellowgreen #dadfb7 Pale Yellowish Pink paleyellowishpink #ecd5c5 Pinkish Gray pinkishgray #c1b6b3 Pinkish White pinkishwhite #eae3e1 Purplish Black purplishblack #242124 Purplish Gray purplishgray #8b8589 Purplish White purplishwhite #e8e3e5 Reddish Black reddishblack #282022 Reddish Gray reddishgray #8f817f Strong Blue strongblue #0067a5 Strong Bluish Green strongbluishgreen #007a74 Strong Brown strongbrown #80461b Strong Green stronggreen #007959 Strong Greenish Blue stronggreenishblue #007791 Strong Greenish Yellow stronggreenishyellow #beb72e Strong Olive Green strongolivegreen #404f00 Strong Orange strongorange #ed872d Strong Orange Yellow strongorangeyellow #eaa221 Strong Pink strongpink #ea9399 Strong Purple strongpurple #875692 Strong Purplish Blue strongpurplishblue #545aa7 Strong Purplish Pink strongpurplishpink #e68fac Strong Purplish Red strongpurplishred #b3446c Strong Red strongred #bc3f4a Strong Reddish Brown strongreddishbrown #882d17 Strong Reddish Orange strongreddishorange #d9603b Strong Reddish Purple strongreddishpurple #9e4f88 Strong Violet strongviolet #604e97 Strong Yellow strongyellow #d4af37 Strong Yellow Green strongyellowgreen #7e9f2e Strong Yellowish Brown strongyellowishbrown #996515 Strong Yellowish Green strongyellowishgreen #44944a Strong Yellowish Pink strongyellowishpink #f99379 Very Dark Bluish Green verydarkbluishgreen #002a29 Very Dark Green verydarkgreen #1c352d Very Dark Greenish Blue verydarkgreenishblue #002e3b Very Dark Purple verydarkpurple #301934 Very Dark Purplish Red verydarkpurplishred #38152c Very Dark Red verydarkred #3f1728 Very Dark Reddish Purple verydarkreddishpurple #341731 Very Dark Yellowish Green verydarkyellowishgreen #173620 Very Deep Purple verydeeppurple #401a4c Very Deep Purplish Red verydeeppurplishred #54133b Very Deep Red verydeepred #5c0923 Very Deep Reddish Purple verydeepreddishpurple #54194e Very Deep Yellowish Green verydeepyellowishgreen #003118 Very Light Blue verylightblue #a1caf1 Very Light Bluish Green verylightbluishgreen #96ded1 Very Light Green verylightgreen #8ed1b2 Very Light Greenish Blue verylightgreenishblue #9cd1dc Very Light Purple verylightpurple #d5badb Very Light Purplish Blue verylightpurplishblue #b3bce2 Very Light Violet verylightviolet #dcd0ff Very Light Yellowish Green verylightyellowishgreen #b6e5af Very Pale Blue verypaleblue #bcd4e6 Very Pale Green verypalegreen #c7e6d7 Very Pale Purple verypalepurple #d6cadd Very Pale Purplish Blue verypalepurplishblue #c0c8e1 Very Pale Violet verypaleviolet #c4c3dd Vivid Blue vividblue #00a1c2 Vivid Bluish Green vividbluishgreen #008882 Vivid Green vividgreen #008856 Vivid Greenish Blue vividgreenishblue #0085a1 Vivid Greenish Yellow vividgreenishyellow #dcd300 Vivid Orange vividorange #f38400 Vivid Orange Yellow vividorangeyellow #f6a600 Vivid Pink vividpink #ffb5ba Vivid Purple vividpurple #9a4eae Vivid Purplish Blue vividpurplishblue #30267a Vivid Purplish Red vividpurplishred #ce4676 Vivid Red vividred #be0032 Vivid Reddish Orange vividreddishorange #e25822 Vivid Reddish Purple vividreddishpurple #870074 Vivid Violet vividviolet #9065ca Vivid Yellow vividyellow #f3c300 Vivid Yellow Green vividyellowgreen #8db600 Vivid Yellowish Green vividyellowishgreen #27a64c Vivid Yellowish Pink vividyellowishpink #ffb7a5 White white #f2f3f4 Yellowish Gray yellowishgray #bfb8a5 Yellowish White yellowishwhite #f0ead6 =cut sub _load_color_list() { return [ ['nbs-iscc:black','black','Black',[34,34,34],'222222',2236962], ['nbs-iscc:blackishblue','blackishblue','Blackish Blue',[32,40,48],'202830',2107440], ['nbs-iscc:blackishgreen','blackishgreen','Blackish Green',[26,36,33],'1a2421',1713185], ['nbs-iscc:blackishpurple','blackishpurple','Blackish Purple',[41,30,41],'291e29',2694697], ['nbs-iscc:blackishred','blackishred','Blackish Red',[46,29,33],'2e1d21',3022113], ['nbs-iscc:bluishblack','bluishblack','Bluish Black',[32,36,40],'202428',2106408], ['nbs-iscc:bluishgray','bluishgray','Bluish Gray',[129,135,139],'81878b',8488843], ['nbs-iscc:bluishwhite','bluishwhite','Bluish White',[233,233,237],'e9e9ed',15329773], ['nbs-iscc:brilliantblue','brilliantblue','Brilliant Blue',[73,151,208],'4997d0',4822992], ['nbs-iscc:brilliantbluishgreen','brilliantbluishgreen','Brilliant Bluish Green',[0,166,147],'00a693',42643], ['nbs-iscc:brilliantgreen','brilliantgreen','Brilliant Green',[62,180,137],'3eb489',4109449], ['nbs-iscc:brilliantgreenishblue','brilliantgreenishblue','Brilliant Greenish Blue',[35,158,186],'239eba',2334394], ['nbs-iscc:brilliantgreenishyellow','brilliantgreenishyellow','Brilliant Greenish Yellow',[233,228,80],'e9e450',15328336], ['nbs-iscc:brilliantorange','brilliantorange','Brilliant Orange',[253,148,63],'fd943f',16618559], ['nbs-iscc:brilliantorangeyellow','brilliantorangeyellow','Brilliant Orange Yellow',[255,193,79],'ffc14f',16761167], ['nbs-iscc:brilliantpurple','brilliantpurple','Brilliant Purple',[211,153,230],'d399e6',13867494], ['nbs-iscc:brilliantpurplishblue','brilliantpurplishblue','Brilliant Purplish Blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc:brilliantpurplishpink','brilliantpurplishpink','Brilliant Purplish Pink',[255,200,214],'ffc8d6',16763094], ['nbs-iscc:brilliantviolet','brilliantviolet','Brilliant Violet',[126,115,184],'7e73b8',8287160], ['nbs-iscc:brilliantyellow','brilliantyellow','Brilliant Yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc:brilliantyellowgreen','brilliantyellowgreen','Brilliant Yellow Green',[189,218,87],'bdda57',12442199], ['nbs-iscc:brilliantyellowishgreen','brilliantyellowishgreen','Brilliant Yellowish Green',[131,211,125],'83d37d',8639357], ['nbs-iscc:brownishblack','brownishblack','Brownish Black',[40,32,28],'28201c',2629660], ['nbs-iscc:brownishgray','brownishgray','Brownish Gray',[91,80,79],'5b504f',5984335], ['nbs-iscc:brownishorange','brownishorange','Brownish Orange',[174,105,56],'ae6938',11430200], ['nbs-iscc:brownishpink','brownishpink','Brownish Pink',[194,172,153],'c2ac99',12758169], ['nbs-iscc:darkblue','darkblue','Dark Blue',[0,48,78],'00304e',12366], ['nbs-iscc:darkbluishgray','darkbluishgray','Dark Bluish Gray',[81,88,94],'51585e',5331038], ['nbs-iscc:darkbluishgreen','darkbluishgreen','Dark Bluish Green',[0,75,73],'004b49',19273], ['nbs-iscc:darkbrown','darkbrown','Dark Brown',[66,37,24],'422518',4334872], ['nbs-iscc:darkgray','darkgray','Dark Gray',[85,85,85],'555555',5592405], ['nbs-iscc:darkgrayishblue','darkgrayishblue','Dark Grayish Blue',[54,69,79],'36454f',3556687], ['nbs-iscc:darkgrayishbrown','darkgrayishbrown','Dark Grayish Brown',[62,50,44],'3e322c',4076076], ['nbs-iscc:darkgrayishgreen','darkgrayishgreen','Dark Grayish Green',[58,75,71],'3a4b47',3820359], ['nbs-iscc:darkgrayisholive','darkgrayisholive','Dark Grayish Olive',[54,53,39],'363527',3552551], ['nbs-iscc:darkgrayisholivegreen','darkgrayisholivegreen','Dark Grayish Olive Green',[49,54,43],'31362b',3225131], ['nbs-iscc:darkgrayishpurple','darkgrayishpurple','Dark Grayish Purple',[80,64,77],'50404d',5259341], ['nbs-iscc:darkgrayishred','darkgrayishred','Dark Grayish Red',[84,61,63],'543d3f',5520703], ['nbs-iscc:darkgrayishreddishbrown','darkgrayishreddishbrown','Dark Grayish Reddish Brown',[67,48,46],'43302e',4403246], ['nbs-iscc:darkgrayishyellow','darkgrayishyellow','Dark Grayish Yellow',[161,143,96],'a18f60',10588000], ['nbs-iscc:darkgrayishyellowishbrown','darkgrayishyellowishbrown','Dark Grayish Yellowish Brown',[72,60,50],'483c32',4734002], ['nbs-iscc:darkgreen','darkgreen','Dark Green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc:darkgreenishblue','darkgreenishblue','Dark Greenish Blue',[0,73,88],'004958',18776], ['nbs-iscc:darkgreenishgray','darkgreenishgray','Dark Greenish Gray',[78,87,85],'4e5755',5134165], ['nbs-iscc:darkgreenishyellow','darkgreenishyellow','Dark Greenish Yellow',[152,148,62],'98943e',9999422], ['nbs-iscc:darkolive','darkolive','Dark Olive',[64,61,33],'403d21',4209953], ['nbs-iscc:darkolivebrown','darkolivebrown','Dark Olive Brown',[59,49,33],'3b3121',3879201], ['nbs-iscc:darkolivegreen','darkolivegreen','Dark Olive Green',[43,61,38],'2b3d26',2833702], ['nbs-iscc:darkorangeyellow','darkorangeyellow','Dark Orange Yellow',[190,138,61],'be8a3d',12487229], ['nbs-iscc:darkpink','darkpink','Dark Pink',[192,128,129],'c08081',12615809], ['nbs-iscc:darkpurple','darkpurple','Dark Purple',[86,60,92],'563c5c',5651548], ['nbs-iscc:darkpurplishblue','darkpurplishblue','Dark Purplish Blue',[37,36,64],'252440',2434112], ['nbs-iscc:darkpurplishgray','darkpurplishgray','Dark Purplish Gray',[93,85,91],'5d555b',6116699], ['nbs-iscc:darkpurplishpink','darkpurplishpink','Dark Purplish Pink',[193,126,145],'c17e91',12680849], ['nbs-iscc:darkpurplishred','darkpurplishred','Dark Purplish Red',[103,49,71],'673147',6762823], ['nbs-iscc:darkred','darkred','Dark Red',[114,47,55],'722f37',7483191], ['nbs-iscc:darkreddishbrown','darkreddishbrown','Dark Reddish Brown',[62,29,30],'3e1d1e',4070686], ['nbs-iscc:darkreddishgray','darkreddishgray','Dark Reddish Gray',[92,80,79],'5c504f',6049871], ['nbs-iscc:darkreddishorange','darkreddishorange','Dark Reddish Orange',[158,71,50],'9e4732',10372914], ['nbs-iscc:darkreddishpurple','darkreddishpurple','Dark Reddish Purple',[93,57,84],'5d3954',6109524], ['nbs-iscc:darkviolet','darkviolet','Dark Violet',[47,33,64],'2f2140',3088704], ['nbs-iscc:darkyellow','darkyellow','Dark Yellow',[171,145,68],'ab9144',11243844], ['nbs-iscc:darkyellowishbrown','darkyellowishbrown','Dark Yellowish Brown',[75,54,33],'4b3621',4929057], ['nbs-iscc:darkyellowishgreen','darkyellowishgreen','Dark Yellowish Green',[53,94,59],'355e3b',3497531], ['nbs-iscc:darkyellowishpink','darkyellowishpink','Dark Yellowish Pink',[196,131,121],'c48379',12878713], ['nbs-iscc:deepblue','deepblue','Deep Blue',[0,65,106],'00416a',16746], ['nbs-iscc:deepbluishgreen','deepbluishgreen','Deep Bluish Green',[0,68,63],'00443f',17471], ['nbs-iscc:deepbrown','deepbrown','Deep Brown',[89,51,25],'593319',5845785], ['nbs-iscc:deepgreen','deepgreen','Deep Green',[0,84,61],'00543d',21565], ['nbs-iscc:deepgreenishblue','deepgreenishblue','Deep Greenish Blue',[46,132,149],'2e8495',3048597], ['nbs-iscc:deepgreenishyellow','deepgreenishyellow','Deep Greenish Yellow',[155,148,0],'9b9400',10195968], ['nbs-iscc:deepolivegreen','deepolivegreen','Deep Olive Green',[35,47,0],'232f00',2305792], ['nbs-iscc:deeporange','deeporange','Deep Orange',[190,101,22],'be6516',12477718], ['nbs-iscc:deeporangeyellow','deeporangeyellow','Deep Orange Yellow',[201,133,0],'c98500',13206784], ['nbs-iscc:deeppink','deeppink','Deep Pink',[228,113,122],'e4717a',14971258], ['nbs-iscc:deeppurple','deeppurple','Deep Purple',[96,47,107],'602f6b',6303595], ['nbs-iscc:deeppurplishblue','deeppurplishblue','Deep Purplish Blue',[39,36,88],'272458',2565208], ['nbs-iscc:deeppurplishpink','deeppurplishpink','Deep Purplish Pink',[222,111,161],'de6fa1',14577569], ['nbs-iscc:deeppurplishred','deeppurplishred','Deep Purplish Red',[120,24,74],'78184a',7870538], ['nbs-iscc:deepred','deepred','Deep Red',[132,27,45],'841b2d',8657709], ['nbs-iscc:deepreddishbrown','deepreddishbrown','Deep Reddish Brown',[86,7,12],'56070c',5637900], ['nbs-iscc:deepreddishorange','deepreddishorange','Deep Reddish Orange',[170,56,30],'aa381e',11155486], ['nbs-iscc:deepreddishpurple','deepreddishpurple','Deep Reddish Purple',[112,41,99],'702963',7350627], ['nbs-iscc:deepviolet','deepviolet','Deep Violet',[50,23,77],'32174d',3282765], ['nbs-iscc:deepyellow','deepyellow','Deep Yellow',[175,141,19],'af8d13',11504915], ['nbs-iscc:deepyellowgreen','deepyellowgreen','Deep Yellow Green',[70,113,41],'467129',4616489], ['nbs-iscc:deepyellowishbrown','deepyellowishbrown','Deep Yellowish Brown',[101,69,34],'654522',6636834], ['nbs-iscc:deepyellowishgreen','deepyellowishgreen','Deep Yellowish Green',[0,98,45],'00622d',25133], ['nbs-iscc:deepyellowishpink','deepyellowishpink','Deep Yellowish Pink',[230,103,33],'e66721',15099681], ['nbs-iscc:grayishblue','grayishblue','Grayish Blue',[83,104,120],'536878',5466232], ['nbs-iscc:grayishbrown','grayishbrown','Grayish Brown',[99,81,71],'635147',6508871], ['nbs-iscc:grayishgreen','grayishgreen','Grayish Green',[94,113,106],'5e716a',6189418], ['nbs-iscc:grayishgreenishyellow','grayishgreenishyellow','Grayish Greenish Yellow',[185,181,125],'b9b57d',12170621], ['nbs-iscc:grayisholive','grayisholive','Grayish Olive',[91,88,66],'5b5842',5986370], ['nbs-iscc:grayisholivegreen','grayisholivegreen','Grayish Olive Green',[81,87,68],'515744',5330756], ['nbs-iscc:grayishpink','grayishpink','Grayish Pink',[196,174,173],'c4aead',12889773], ['nbs-iscc:grayishpurple','grayishpurple','Grayish Purple',[121,104,120],'796878',7956600], ['nbs-iscc:grayishpurplishblue','grayishpurplishblue','Grayish Purplish Blue',[76,81,109],'4c516d',5001581], ['nbs-iscc:grayishpurplishpink','grayishpurplishpink','Grayish Purplish Pink',[195,166,177],'c3a6b1',12822193], ['nbs-iscc:grayishpurplishred','grayishpurplishred','Grayish Purplish Red',[145,95,109],'915f6d',9527149], ['nbs-iscc:grayishred','grayishred','Grayish Red',[144,93,93],'905d5d',9461085], ['nbs-iscc:grayishreddishbrown','grayishreddishbrown','Grayish Reddish Brown',[103,76,71],'674c47',6769735], ['nbs-iscc:grayishreddishorange','grayishreddishorange','Grayish Reddish Orange',[180,116,94],'b4745e',11826270], ['nbs-iscc:grayishreddishpurple','grayishreddishpurple','Grayish Reddish Purple',[131,100,121],'836479',8610937], ['nbs-iscc:grayishviolet','grayishviolet','Grayish Violet',[85,76,105],'554c69',5590121], ['nbs-iscc:grayishyellow','grayishyellow','Grayish Yellow',[194,178,128],'c2b280',12759680], ['nbs-iscc:grayishyellowgreen','grayishyellowgreen','Grayish Yellow Green',[143,151,121],'8f9779',9410425], ['nbs-iscc:grayishyellowishbrown','grayishyellowishbrown','Grayish Yellowish Brown',[126,109,90],'7e6d5a',8285530], ['nbs-iscc:grayishyellowishpink','grayishyellowishpink','Grayish Yellowish Pink',[199,173,163],'c7ada3',13086115], ['nbs-iscc:greenishblack','greenishblack','Greenish Black',[30,35,33],'1e2321',1975073], ['nbs-iscc:greenishgray','greenishgray','Greenish Gray',[125,137,132],'7d8984',8227204], ['nbs-iscc:greenishwhite','greenishwhite','Greenish White',[223,237,232],'dfede8',14675432], ['nbs-iscc:lightblue','lightblue','Light Blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc:lightbluishgray','lightbluishgray','Light Bluish Gray',[180,188,192],'b4bcc0',11844800], ['nbs-iscc:lightbluishgreen','lightbluishgreen','Light Bluish Green',[102,173,164],'66ada4',6729124], ['nbs-iscc:lightbrown','lightbrown','Light Brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc:lightbrownishgray','lightbrownishgray','Light Brownish Gray',[142,130,121],'8e8279',9339513], ['nbs-iscc:lightgray','lightgray','Light Gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc:lightgrayishbrown','lightgrayishbrown','Light Grayish Brown',[149,128,112],'958070',9797744], ['nbs-iscc:lightgrayisholive','lightgrayisholive','Light Grayish Olive',[140,135,103],'8c8767',9209703], ['nbs-iscc:lightgrayishpurplishred','lightgrayishpurplishred','Light Grayish Purplish Red',[175,134,142],'af868e',11503246], ['nbs-iscc:lightgrayishred','lightgrayishred','Light Grayish Red',[173,136,132],'ad8884',11372676], ['nbs-iscc:lightgrayishreddishbrown','lightgrayishreddishbrown','Light Grayish Reddish Brown',[151,127,115],'977f73',9928563], ['nbs-iscc:lightgrayishyellowishbrown','lightgrayishyellowishbrown','Light Grayish Yellowish Brown',[174,155,130],'ae9b82',11443074], ['nbs-iscc:lightgreen','lightgreen','Light Green',[106,171,142],'6aab8e',6990734], ['nbs-iscc:lightgreenishblue','lightgreenishblue','Light Greenish Blue',[102,170,188],'66aabc',6728380], ['nbs-iscc:lightgreenishgray','lightgreenishgray','Light Greenish Gray',[178,190,181],'b2beb5',11714229], ['nbs-iscc:lightgreenishyellow','lightgreenishyellow','Light Greenish Yellow',[234,230,121],'eae679',15394425], ['nbs-iscc:lightolive','lightolive','Light Olive',[134,126,54],'867e36',8814134], ['nbs-iscc:lightolivebrown','lightolivebrown','Light Olive Brown',[150,113,23],'967117',9859351], ['nbs-iscc:lightolivegray','lightolivegray','Light Olive Gray',[138,135,118],'8a8776',9078646], ['nbs-iscc:lightorange','lightorange','Light Orange',[250,181,127],'fab57f',16430463], ['nbs-iscc:lightorangeyellow','lightorangeyellow','Light Orange Yellow',[251,201,127],'fbc97f',16501119], ['nbs-iscc:lightpink','lightpink','Light Pink',[249,204,202],'f9ccca',16370890], ['nbs-iscc:lightpurple','lightpurple','Light Purple',[182,149,192],'b695c0',11965888], ['nbs-iscc:lightpurplishblue','lightpurplishblue','Light Purplish Blue',[135,145,191],'8791bf',8884671], ['nbs-iscc:lightpurplishgray','lightpurplishgray','Light Purplish Gray',[191,185,189],'bfb9bd',12564925], ['nbs-iscc:lightpurplishpink','lightpurplishpink','Light Purplish Pink',[239,187,204],'efbbcc',15711180], ['nbs-iscc:lightreddishbrown','lightreddishbrown','Light Reddish Brown',[168,124,109],'a87c6d',11041901], ['nbs-iscc:lightreddishpurple','lightreddishpurple','Light Reddish Purple',[183,132,167],'b784a7',12027047], ['nbs-iscc:lightviolet','lightviolet','Light Violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc:lightyellow','lightyellow','Light Yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc:lightyellowgreen','lightyellowgreen','Light Yellow Green',[201,220,137],'c9dc89',13229193], ['nbs-iscc:lightyellowishbrown','lightyellowishbrown','Light Yellowish Brown',[193,154,107],'c19a6b',12687979], ['nbs-iscc:lightyellowishgreen','lightyellowishgreen','Light Yellowish Green',[147,197,146],'93c592',9684370], ['nbs-iscc:lightyellowishpink','lightyellowishpink','Light Yellowish Pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc:mediumgray','mediumgray','Medium Gray',[132,132,130],'848482',8684674], ['nbs-iscc:moderateblue','moderateblue','Moderate Blue',[67,107,149],'436b95',4418453], ['nbs-iscc:moderatebluishgreen','moderatebluishgreen','Moderate Bluish Green',[49,120,115],'317873',3242099], ['nbs-iscc:moderatebrown','moderatebrown','Moderate Brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc:moderategreen','moderategreen','Moderate Green',[59,120,97],'3b7861',3897441], ['nbs-iscc:moderategreenishblue','moderategreenishblue','Moderate Greenish Blue',[54,117,136],'367588',3569032], ['nbs-iscc:moderategreenishyellow','moderategreenishyellow','Moderate Greenish Yellow',[185,180,89],'b9b459',12170329], ['nbs-iscc:moderateolive','moderateolive','Moderate Olive',[102,93,30],'665d1e',6708510], ['nbs-iscc:moderateolivebrown','moderateolivebrown','Moderate Olive Brown',[108,84,30],'6c541e',7099422], ['nbs-iscc:moderateolivegreen','moderateolivegreen','Moderate Olive Green',[74,93,35],'4a5d23',4873507], ['nbs-iscc:moderateorange','moderateorange','Moderate Orange',[217,144,88],'d99058',14258264], ['nbs-iscc:moderateorangeyellow','moderateorangeyellow','Moderate Orange Yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc:moderatepink','moderatepink','Moderate Pink',[222,165,164],'dea5a4',14591396], ['nbs-iscc:moderatepurple','moderatepurple','Moderate Purple',[134,96,142],'86608e',8806542], ['nbs-iscc:moderatepurplishblue','moderatepurplishblue','Moderate Purplish Blue',[78,81,128],'4e5180',5132672], ['nbs-iscc:moderatepurplishpink','moderatepurplishpink','Moderate Purplish Pink',[213,151,174],'d597ae',13997998], ['nbs-iscc:moderatepurplishred','moderatepurplishred','Moderate Purplish Red',[168,81,110],'a8516e',11030894], ['nbs-iscc:moderatered','moderatered','Moderate Red',[171,78,82],'ab4e52',11226706], ['nbs-iscc:moderatereddishbrown','moderatereddishbrown','Moderate Reddish Brown',[121,68,59],'79443b',7947323], ['nbs-iscc:moderatereddishorange','moderatereddishorange','Moderate Reddish Orange',[203,109,81],'cb6d51',13331793], ['nbs-iscc:moderatereddishpurple','moderatereddishpurple','Moderate Reddish Purple',[145,92,131],'915c83',9526403], ['nbs-iscc:moderateviolet','moderateviolet','Moderate Violet',[96,78,129],'604e81',6311553], ['nbs-iscc:moderateyellow','moderateyellow','Moderate Yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc:moderateyellowgreen','moderateyellowgreen','Moderate Yellow Green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc:moderateyellowishbrown','moderateyellowishbrown','Moderate Yellowish Brown',[130,102,68],'826644',8545860], ['nbs-iscc:moderateyellowishgreen','moderateyellowishgreen','Moderate Yellowish Green',[103,146,103],'679267',6787687], ['nbs-iscc:moderateyellowishpink','moderateyellowishpink','Moderate Yellowish Pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc:oliveblack','oliveblack','Olive Black',[37,36,29],'25241d',2434077], ['nbs-iscc:olivegray','olivegray','Olive Gray',[87,85,76],'57554c',5723468], ['nbs-iscc:paleblue','paleblue','Pale Blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc:palegreen','palegreen','Pale Green',[141,163,153],'8da399',9282457], ['nbs-iscc:palegreenishyellow','palegreenishyellow','Pale Greenish Yellow',[235,232,164],'ebe8a4',15460516], ['nbs-iscc:paleorangeyellow','paleorangeyellow','Pale Orange Yellow',[250,214,165],'fad6a5',16438949], ['nbs-iscc:palepink','palepink','Pale Pink',[234,216,215],'ead8d7',15390935], ['nbs-iscc:palepurple','palepurple','Pale Purple',[170,152,169],'aa98a9',11180201], ['nbs-iscc:palepurplishblue','palepurplishblue','Pale Purplish Blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc:palepurplishpink','palepurplishpink','Pale Purplish Pink',[232,204,215],'e8ccd7',15256791], ['nbs-iscc:palereddishpurple','palereddishpurple','Pale Reddish Purple',[170,138,158],'aa8a9e',11176606], ['nbs-iscc:paleviolet','paleviolet','Pale Violet',[150,144,171],'9690ab',9867435], ['nbs-iscc:paleyellow','paleyellow','Pale Yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc:paleyellowgreen','paleyellowgreen','Pale Yellow Green',[218,223,183],'dadfb7',14344119], ['nbs-iscc:paleyellowishpink','paleyellowishpink','Pale Yellowish Pink',[236,213,197],'ecd5c5',15521221], ['nbs-iscc:pinkishgray','pinkishgray','Pinkish Gray',[193,182,179],'c1b6b3',12695219], ['nbs-iscc:pinkishwhite','pinkishwhite','Pinkish White',[234,227,225],'eae3e1',15393761], ['nbs-iscc:purplishblack','purplishblack','Purplish Black',[36,33,36],'242124',2367780], ['nbs-iscc:purplishgray','purplishgray','Purplish Gray',[139,133,137],'8b8589',9143689], ['nbs-iscc:purplishwhite','purplishwhite','Purplish White',[232,227,229],'e8e3e5',15262693], ['nbs-iscc:reddishblack','reddishblack','Reddish Black',[40,32,34],'282022',2629666], ['nbs-iscc:reddishgray','reddishgray','Reddish Gray',[143,129,127],'8f817f',9404799], ['nbs-iscc:strongblue','strongblue','Strong Blue',[0,103,165],'0067a5',26533], ['nbs-iscc:strongbluishgreen','strongbluishgreen','Strong Bluish Green',[0,122,116],'007a74',31348], ['nbs-iscc:strongbrown','strongbrown','Strong Brown',[128,70,27],'80461b',8406555], ['nbs-iscc:stronggreen','stronggreen','Strong Green',[0,121,89],'007959',31065], ['nbs-iscc:stronggreenishblue','stronggreenishblue','Strong Greenish Blue',[0,119,145],'007791',30609], ['nbs-iscc:stronggreenishyellow','stronggreenishyellow','Strong Greenish Yellow',[190,183,46],'beb72e',12498734], ['nbs-iscc:strongolivegreen','strongolivegreen','Strong Olive Green',[64,79,0],'404f00',4214528], ['nbs-iscc:strongorange','strongorange','Strong Orange',[237,135,45],'ed872d',15566637], ['nbs-iscc:strongorangeyellow','strongorangeyellow','Strong Orange Yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc:strongpink','strongpink','Strong Pink',[234,147,153],'ea9399',15373209], ['nbs-iscc:strongpurple','strongpurple','Strong Purple',[135,86,146],'875692',8869522], ['nbs-iscc:strongpurplishblue','strongpurplishblue','Strong Purplish Blue',[84,90,167],'545aa7',5528231], ['nbs-iscc:strongpurplishpink','strongpurplishpink','Strong Purplish Pink',[230,143,172],'e68fac',15110060], ['nbs-iscc:strongpurplishred','strongpurplishred','Strong Purplish Red',[179,68,108],'b3446c',11748460], ['nbs-iscc:strongred','strongred','Strong Red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc:strongreddishbrown','strongreddishbrown','Strong Reddish Brown',[136,45,23],'882d17',8924439], ['nbs-iscc:strongreddishorange','strongreddishorange','Strong Reddish Orange',[217,96,59],'d9603b',14245947], ['nbs-iscc:strongreddishpurple','strongreddishpurple','Strong Reddish Purple',[158,79,136],'9e4f88',10375048], ['nbs-iscc:strongviolet','strongviolet','Strong Violet',[96,78,151],'604e97',6311575], ['nbs-iscc:strongyellow','strongyellow','Strong Yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc:strongyellowgreen','strongyellowgreen','Strong Yellow Green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc:strongyellowishbrown','strongyellowishbrown','Strong Yellowish Brown',[153,101,21],'996515',10052885], ['nbs-iscc:strongyellowishgreen','strongyellowishgreen','Strong Yellowish Green',[68,148,74],'44944a',4494410], ['nbs-iscc:strongyellowishpink','strongyellowishpink','Strong Yellowish Pink',[249,147,121],'f99379',16356217], ['nbs-iscc:verydarkbluishgreen','verydarkbluishgreen','Very Dark Bluish Green',[0,42,41],'002a29',10793], ['nbs-iscc:verydarkgreen','verydarkgreen','Very Dark Green',[28,53,45],'1c352d',1848621], ['nbs-iscc:verydarkgreenishblue','verydarkgreenishblue','Very Dark Greenish Blue',[0,46,59],'002e3b',11835], ['nbs-iscc:verydarkpurple','verydarkpurple','Very Dark Purple',[48,25,52],'301934',3152180], ['nbs-iscc:verydarkpurplishred','verydarkpurplishred','Very Dark Purplish Red',[56,21,44],'38152c',3675436], ['nbs-iscc:verydarkred','verydarkred','Very Dark Red',[63,23,40],'3f1728',4134696], ['nbs-iscc:verydarkreddishpurple','verydarkreddishpurple','Very Dark Reddish Purple',[52,23,49],'341731',3413809], ['nbs-iscc:verydarkyellowishgreen','verydarkyellowishgreen','Very Dark Yellowish Green',[23,54,32],'173620',1521184], ['nbs-iscc:verydeeppurple','verydeeppurple','Very Deep Purple',[64,26,76],'401a4c',4201036], ['nbs-iscc:verydeeppurplishred','verydeeppurplishred','Very Deep Purplish Red',[84,19,59],'54133b',5509947], ['nbs-iscc:verydeepred','verydeepred','Very Deep Red',[92,9,35],'5c0923',6031651], ['nbs-iscc:verydeepreddishpurple','verydeepreddishpurple','Very Deep Reddish Purple',[84,25,78],'54194e',5511502], ['nbs-iscc:verydeepyellowishgreen','verydeepyellowishgreen','Very Deep Yellowish Green',[0,49,24],'003118',12568], ['nbs-iscc:verylightblue','verylightblue','Very Light Blue',[161,202,241],'a1caf1',10603249], ['nbs-iscc:verylightbluishgreen','verylightbluishgreen','Very Light Bluish Green',[150,222,209],'96ded1',9887441], ['nbs-iscc:verylightgreen','verylightgreen','Very Light Green',[142,209,178],'8ed1b2',9359794], ['nbs-iscc:verylightgreenishblue','verylightgreenishblue','Very Light Greenish Blue',[156,209,220],'9cd1dc',10277340], ['nbs-iscc:verylightpurple','verylightpurple','Very Light Purple',[213,186,219],'d5badb',14007003], ['nbs-iscc:verylightpurplishblue','verylightpurplishblue','Very Light Purplish Blue',[179,188,226],'b3bce2',11779298], ['nbs-iscc:verylightviolet','verylightviolet','Very Light Violet',[220,208,255],'dcd0ff',14471423], ['nbs-iscc:verylightyellowishgreen','verylightyellowishgreen','Very Light Yellowish Green',[182,229,175],'b6e5af',11986351], ['nbs-iscc:verypaleblue','verypaleblue','Very Pale Blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc:verypalegreen','verypalegreen','Very Pale Green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc:verypalepurple','verypalepurple','Very Pale Purple',[214,202,221],'d6cadd',14076637], ['nbs-iscc:verypalepurplishblue','verypalepurplishblue','Very Pale Purplish Blue',[192,200,225],'c0c8e1',12634337], ['nbs-iscc:verypaleviolet','verypaleviolet','Very Pale Violet',[196,195,221],'c4c3dd',12895197], ['nbs-iscc:vividblue','vividblue','Vivid Blue',[0,161,194],'00a1c2',41410], ['nbs-iscc:vividbluishgreen','vividbluishgreen','Vivid Bluish Green',[0,136,130],'008882',34946], ['nbs-iscc:vividgreen','vividgreen','Vivid Green',[0,136,86],'008856',34902], ['nbs-iscc:vividgreenishblue','vividgreenishblue','Vivid Greenish Blue',[0,133,161],'0085a1',34209], ['nbs-iscc:vividgreenishyellow','vividgreenishyellow','Vivid Greenish Yellow',[220,211,0],'dcd300',14471936], ['nbs-iscc:vividorange','vividorange','Vivid Orange',[243,132,0],'f38400',15959040], ['nbs-iscc:vividorangeyellow','vividorangeyellow','Vivid Orange Yellow',[246,166,0],'f6a600',16164352], ['nbs-iscc:vividpink','vividpink','Vivid Pink',[255,181,186],'ffb5ba',16758202], ['nbs-iscc:vividpurple','vividpurple','Vivid Purple',[154,78,174],'9a4eae',10112686], ['nbs-iscc:vividpurplishblue','vividpurplishblue','Vivid Purplish Blue',[48,38,122],'30267a',3155578], ['nbs-iscc:vividpurplishred','vividpurplishred','Vivid Purplish Red',[206,70,118],'ce4676',13518454], ['nbs-iscc:vividred','vividred','Vivid Red',[190,0,50],'be0032',12451890], ['nbs-iscc:vividreddishorange','vividreddishorange','Vivid Reddish Orange',[226,88,34],'e25822',14833698], ['nbs-iscc:vividreddishpurple','vividreddishpurple','Vivid Reddish Purple',[135,0,116],'870074',8847476], ['nbs-iscc:vividviolet','vividviolet','Vivid Violet',[144,101,202],'9065ca',9463242], ['nbs-iscc:vividyellow','vividyellow','Vivid Yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc:vividyellowgreen','vividyellowgreen','Vivid Yellow Green',[141,182,0],'8db600',9287168], ['nbs-iscc:vividyellowishgreen','vividyellowishgreen','Vivid Yellowish Green',[39,166,76],'27a64c',2598476], ['nbs-iscc:vividyellowishpink','vividyellowishpink','Vivid Yellowish Pink',[255,183,165],'ffb7a5',16758693], ['nbs-iscc:white','white','White',[242,243,244],'f2f3f4',15922164], ['nbs-iscc:yellowishgray','yellowishgray','Yellowish Gray',[191,184,165],'bfb8a5',12564645], ['nbs-iscc:yellowishwhite','yellowishwhite','Yellowish White',[240,234,214],'f0ead6',15788758] ]; } sub _description { return { 'subtitle' => 'Centroids of the NBS/ISCC catalog', 'title' => 'NBS/ISCC Centroids', 'description' => ' Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: NBS/ISCC Centroids [http://swissnet.ai.mit.edu/~jaffer/Color/Dictionaries#NBS-ISCC%20Centroids] ' } } 1; Netscape.pm100644000765000024 3230011667760546 23020 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionarypackage Color::Library::Dictionary::Netscape; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::Netscape; =pod =head1 NAME Color::Library::Dictionary::Netscape - (Netscape) Colors recognized by Netscape =head1 DESCRIPTION Netscape Color Names with their Color Values L =head1 COLORS aquamarine aquamarine #70db93 baker'schocolate bakerschocolate #5c3317 black black #000000 blue blue #0000ff blueviolet blueviolet #9f5f9f brass brass #b5a642 brightgold brightgold #d9d919 bronze bronze #8c7853 bronzeii bronzeii #a67d3d brown brown #a62a2a cadetblue cadetblue #5f9f9f coolcopper coolcopper #d98719 copper copper #b87333 coral coral #ff7f00 cornflowerblue cornflowerblue #42426f cyan cyan #00ffff darkbrown darkbrown #5c4033 darkgreen darkgreen #2f4f2f darkgreencopper darkgreencopper #4a766e darkolivegreen darkolivegreen #4f4f2f darkorchid darkorchid #9932cd darkpurple darkpurple #871f78 darkslateblue darkslateblue #241882 darkslategrey darkslategrey #2f4f4f darktan darktan #97694f darkturquoise darkturquoise #7093db darkwood darkwood #855e42 dimgrey dimgrey #545454 dustyrose dustyrose #856363 feldspar feldspar #d19275 firebrick firebrick #8e2323 flesh flesh #f5ccb0 forestgreen forestgreen #238e23 gold gold #cd7f32 goldenrod goldenrod #dbdb70 green green #00ff00 greencopper greencopper #856363 greenyellow greenyellow #d19275 grey grey #545454 huntergreen huntergreen #8e2323 indianred indianred #f5ccb0 khaki khaki #238e23 lightblue lightblue #cd7f32 lightgrey lightgrey #dbdb70 lightsteelblue lightsteelblue #545454 lightwood lightwood #856363 limegreen limegreen #d19275 magenta magenta #ff00ff mandarianorange mandarianorange #8e2323 maroon maroon #f5ccb0 mediumaquamarine mediumaquamarine #238e23 mediumblue mediumblue #cd7f32 mediumforestgreen mediumforestgreen #dbdb70 mediumgoldenrod mediumgoldenrod #eaeaae mediumorchid mediumorchid #9370db mediumseagreen mediumseagreen #426f42 mediumslateblue mediumslateblue #7f00ff mediumspringgreen mediumspringgreen #7fff00 mediumturquoise mediumturquoise #70dbdb mediumvioletred mediumvioletred #db7093 mediumwood mediumwood #a68064 midnightblue midnightblue #2f2f4f navyblue navyblue #23238e neonblue neonblue #4d4dff neonpink neonpink #ff6ec7 newmidnightblue newmidnightblue #00009c newtan newtan #ebc79e oldgold oldgold #cfb53b orange orange #ff7f00 orangered orangered #ff2400 orchid orchid #db70db palegreen palegreen #8fbc8f pink pink #bc8f8f plum plum #eaadea quartz quartz #d9d9f3 red red #ff0000 richblue richblue #5959ab salmon salmon #6f4242 scarlet scarlet #8c1717 seagreen seagreen #238e68 semi-sweetchocolate semisweetchocolate #6b4226 sienna sienna #8e6b23 silver silver #e6e8fa skyblue skyblue #3299cc slateblue slateblue #007fff spicypink spicypink #ff1cae springgreen springgreen #00ff7f steelblue steelblue #236b8e summersky summersky #38b0de tan tan #db9370 thistle thistle #d8bfd8 turquoise turquoise #adeaea verydarkbrown verydarkbrown #5c4033 verylightgrey verylightgrey #cdcdcd violet violet #4f2f4f violetred violetred #cc3299 wheat wheat #d8d8bf white white #ffffff yellow yellow #ffff00 yellowgreen yellowgreen #99cc32 =cut sub _load_color_list() { return [ ['netscape:aquamarine','aquamarine','aquamarine',[112,219,147],'70db93',7396243], ['netscape:bakerschocolate','bakerschocolate','baker\'schocolate',[92,51,23],'5c3317',6042391], ['netscape:black','black','black',[0,0,0],'000000',0], ['netscape:blue','blue','blue',[0,0,255],'0000ff',255], ['netscape:blueviolet','blueviolet','blueviolet',[159,95,159],'9f5f9f',10444703], ['netscape:brass','brass','brass',[181,166,66],'b5a642',11904578], ['netscape:brightgold','brightgold','brightgold',[217,217,25],'d9d919',14276889], ['netscape:bronze','bronze','bronze',[140,120,83],'8c7853',9205843], ['netscape:bronzeii','bronzeii','bronzeii',[166,125,61],'a67d3d',10911037], ['netscape:brown','brown','brown',[166,42,42],'a62a2a',10889770], ['netscape:cadetblue','cadetblue','cadetblue',[95,159,159],'5f9f9f',6266783], ['netscape:coolcopper','coolcopper','coolcopper',[217,135,25],'d98719',14255897], ['netscape:copper','copper','copper',[184,115,51],'b87333',12088115], ['netscape:coral','coral','coral',[255,127,0],'ff7f00',16744192], ['netscape:cornflowerblue','cornflowerblue','cornflowerblue',[66,66,111],'42426f',4342383], ['netscape:cyan','cyan','cyan',[0,255,255],'00ffff',65535], ['netscape:darkbrown','darkbrown','darkbrown',[92,64,51],'5c4033',6045747], ['netscape:darkgreen','darkgreen','darkgreen',[47,79,47],'2f4f2f',3100463], ['netscape:darkgreencopper','darkgreencopper','darkgreencopper',[74,118,110],'4a766e',4879982], ['netscape:darkolivegreen','darkolivegreen','darkolivegreen',[79,79,47],'4f4f2f',5197615], ['netscape:darkorchid','darkorchid','darkorchid',[153,50,205],'9932cd',10040013], ['netscape:darkpurple','darkpurple','darkpurple',[135,31,120],'871f78',8855416], ['netscape:darkslateblue','darkslateblue','darkslateblue',[36,24,130],'241882',2365570], ['netscape:darkslategrey','darkslategrey','darkslategrey',[47,79,79],'2f4f4f',3100495], ['netscape:darktan','darktan','darktan',[151,105,79],'97694f',9922895], ['netscape:darkturquoise','darkturquoise','darkturquoise',[112,147,219],'7093db',7377883], ['netscape:darkwood','darkwood','darkwood',[133,94,66],'855e42',8740418], ['netscape:dimgrey','dimgrey','dimgrey',[84,84,84],'545454',5526612], ['netscape:dustyrose','dustyrose','dustyrose',[133,99,99],'856363',8741731], ['netscape:feldspar','feldspar','feldspar',[209,146,117],'d19275',13734517], ['netscape:firebrick','firebrick','firebrick',[142,35,35],'8e2323',9315107], ['netscape:flesh','flesh','flesh',[245,204,176],'f5ccb0',16108720], ['netscape:forestgreen','forestgreen','forestgreen',[35,142,35],'238e23',2330147], ['netscape:gold','gold','gold',[205,127,50],'cd7f32',13467442], ['netscape:goldenrod','goldenrod','goldenrod',[219,219,112],'dbdb70',14408560], ['netscape:green','green','green',[0,255,0],'00ff00',65280], ['netscape:greencopper','greencopper','greencopper',[133,99,99],'856363',8741731], ['netscape:greenyellow','greenyellow','greenyellow',[209,146,117],'d19275',13734517], ['netscape:grey','grey','grey',[84,84,84],'545454',5526612], ['netscape:huntergreen','huntergreen','huntergreen',[142,35,35],'8e2323',9315107], ['netscape:indianred','indianred','indianred',[245,204,176],'f5ccb0',16108720], ['netscape:khaki','khaki','khaki',[35,142,35],'238e23',2330147], ['netscape:lightblue','lightblue','lightblue',[205,127,50],'cd7f32',13467442], ['netscape:lightgrey','lightgrey','lightgrey',[219,219,112],'dbdb70',14408560], ['netscape:lightsteelblue','lightsteelblue','lightsteelblue',[84,84,84],'545454',5526612], ['netscape:lightwood','lightwood','lightwood',[133,99,99],'856363',8741731], ['netscape:limegreen','limegreen','limegreen',[209,146,117],'d19275',13734517], ['netscape:magenta','magenta','magenta',[255,0,255],'ff00ff',16711935], ['netscape:mandarianorange','mandarianorange','mandarianorange',[142,35,35],'8e2323',9315107], ['netscape:maroon','maroon','maroon',[245,204,176],'f5ccb0',16108720], ['netscape:mediumaquamarine','mediumaquamarine','mediumaquamarine',[35,142,35],'238e23',2330147], ['netscape:mediumblue','mediumblue','mediumblue',[205,127,50],'cd7f32',13467442], ['netscape:mediumforestgreen','mediumforestgreen','mediumforestgreen',[219,219,112],'dbdb70',14408560], ['netscape:mediumgoldenrod','mediumgoldenrod','mediumgoldenrod',[234,234,174],'eaeaae',15395502], ['netscape:mediumorchid','mediumorchid','mediumorchid',[147,112,219],'9370db',9662683], ['netscape:mediumseagreen','mediumseagreen','mediumseagreen',[66,111,66],'426f42',4353858], ['netscape:mediumslateblue','mediumslateblue','mediumslateblue',[127,0,255],'7f00ff',8323327], ['netscape:mediumspringgreen','mediumspringgreen','mediumspringgreen',[127,255,0],'7fff00',8388352], ['netscape:mediumturquoise','mediumturquoise','mediumturquoise',[112,219,219],'70dbdb',7396315], ['netscape:mediumvioletred','mediumvioletred','mediumvioletred',[219,112,147],'db7093',14381203], ['netscape:mediumwood','mediumwood','mediumwood',[166,128,100],'a68064',10911844], ['netscape:midnightblue','midnightblue','midnightblue',[47,47,79],'2f2f4f',3092303], ['netscape:navyblue','navyblue','navyblue',[35,35,142],'23238e',2302862], ['netscape:neonblue','neonblue','neonblue',[77,77,255],'4d4dff',5066239], ['netscape:neonpink','neonpink','neonpink',[255,110,199],'ff6ec7',16740039], ['netscape:newmidnightblue','newmidnightblue','newmidnightblue',[0,0,156],'00009c',156], ['netscape:newtan','newtan','newtan',[235,199,158],'ebc79e',15452062], ['netscape:oldgold','oldgold','oldgold',[207,181,59],'cfb53b',13612347], ['netscape:orange','orange','orange',[255,127,0],'ff7f00',16744192], ['netscape:orangered','orangered','orangered',[255,36,0],'ff2400',16720896], ['netscape:orchid','orchid','orchid',[219,112,219],'db70db',14381275], ['netscape:palegreen','palegreen','palegreen',[143,188,143],'8fbc8f',9419919], ['netscape:pink','pink','pink',[188,143,143],'bc8f8f',12357519], ['netscape:plum','plum','plum',[234,173,234],'eaadea',15379946], ['netscape:quartz','quartz','quartz',[217,217,243],'d9d9f3',14277107], ['netscape:red','red','red',[255,0,0],'ff0000',16711680], ['netscape:richblue','richblue','richblue',[89,89,171],'5959ab',5855659], ['netscape:salmon','salmon','salmon',[111,66,66],'6f4242',7291458], ['netscape:scarlet','scarlet','scarlet',[140,23,23],'8c1717',9180951], ['netscape:seagreen','seagreen','seagreen',[35,142,104],'238e68',2330216], ['netscape:semisweetchocolate','semisweetchocolate','semi-sweetchocolate',[107,66,38],'6b4226',7029286], ['netscape:sienna','sienna','sienna',[142,107,35],'8e6b23',9333539], ['netscape:silver','silver','silver',[230,232,250],'e6e8fa',15132922], ['netscape:skyblue','skyblue','skyblue',[50,153,204],'3299cc',3316172], ['netscape:slateblue','slateblue','slateblue',[0,127,255],'007fff',32767], ['netscape:spicypink','spicypink','spicypink',[255,28,174],'ff1cae',16719022], ['netscape:springgreen','springgreen','springgreen',[0,255,127],'00ff7f',65407], ['netscape:steelblue','steelblue','steelblue',[35,107,142],'236b8e',2321294], ['netscape:summersky','summersky','summersky',[56,176,222],'38b0de',3715294], ['netscape:tan','tan','tan',[219,147,112],'db9370',14390128], ['netscape:thistle','thistle','thistle',[216,191,216],'d8bfd8',14204888], ['netscape:turquoise','turquoise','turquoise',[173,234,234],'adeaea',11397866], ['netscape:verydarkbrown','verydarkbrown','verydarkbrown',[92,64,51],'5c4033',6045747], ['netscape:verylightgrey','verylightgrey','verylightgrey',[205,205,205],'cdcdcd',13487565], ['netscape:violet','violet','violet',[79,47,79],'4f2f4f',5189455], ['netscape:violetred','violetred','violetred',[204,50,153],'cc3299',13382297], ['netscape:wheat','wheat','wheat',[216,216,191],'d8d8bf',14211263], ['netscape:white','white','white',[255,255,255],'ffffff',16777215], ['netscape:yellow','yellow','yellow',[255,255,0],'ffff00',16776960], ['netscape:yellowgreen','yellowgreen','yellowgreen',[153,204,50],'99cc32',10079282] ]; } sub _description { return { 'subtitle' => 'Colors recognized by Netscape', 'title' => 'Netscape', 'description' => ' Netscape Color Names with their Color Values [http://www.timestream.com/mmedia/graphics/colors/ns3names.txt] ' } } 1; NBS_ISCC000755000765000024 011667760546 21765 5ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/DictionaryA.pm100644000765000024 14737011667760546 22717 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionary/NBS_ISCCpackage Color::Library::Dictionary::NBS_ISCC::A; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::NBS_ISCC::A; =pod =head1 NAME Color::Library::Dictionary::NBS_ISCC::A - (NBS/ISCC A) Dye Colors =head1 DESCRIPTION Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (A) Dye Colors American Association of Textile Chemists and Colorists and Society of Dyers and Colourists This combinatorial dictionary's 88 names map to 350 colors; 263 out of 267 centroids are covered. L =head1 COLORS black black #222222 blue blue #4997d0 blue blue #0067a5 blue blue #00416a blue blue #a1caf1 blue blue #70a3cc blue blue #436b95 blue blue #00304e blue blue #b3bce2 blue blue #8791bf blue blue #252440 bluish black bluishblack #202428 bluish gray bluishgray #b4bcc0 bluish gray bluishgray #81878b bluish gray bluishgray #51585e bluish green bluishgreen #00a693 bluish green bluishgreen #007a74 bluish green bluishgreen #00443f bluish green bluishgreen #96ded1 bluish green bluishgreen #66ada4 bluish green bluishgreen #317873 bluish green bluishgreen #004b49 bluish green bluishgreen #002a29 bluish olive bluisholive #404f00 bluish olive bluisholive #232f00 bluish olive bluisholive #4a5d23 bluish olive bluisholive #2b3d26 bluish olive bluisholive #515744 bluish olive bluisholive #31362b bluish pink bluishpink #ffc8d6 bluish pink bluishpink #e68fac bluish pink bluishpink #de6fa1 bluish pink bluishpink #efbbcc bluish pink bluishpink #d597ae bluish pink bluishpink #c17e91 bluish pink bluishpink #e8ccd7 bluish pink bluishpink #c3a6b1 bluish pink bluishpink #af868e bluish red bluishred #b3446c bluish red bluishred #78184a bluish red bluishred #54133b bluish red bluishred #a8516e bluish violet bluishviolet #7e73b8 bluish violet bluishviolet #604e97 bluish violet bluishviolet #32174d bluish violet bluishviolet #dcd0ff bluish violet bluishviolet #8c82b6 bluish violet bluishviolet #604e81 bluish violet bluishviolet #2f2140 bluish white bluishwhite #e9e9ed bordeaux bordeaux #673147 bordeaux bordeaux #38152c bordeaux bordeaux #915f6d bright blue brightblue #00a1c2 bright bluish green brightbluishgreen #008882 bright bluish red brightbluishred #ce4676 bright bluish violet brightbluishviolet #9065ca bright green brightgreen #008856 bright greenish blue brightgreenishblue #0085a1 bright greenish yellow brightgreenishyellow #dcd300 bright orange brightorange #f38400 bright red brightred #be0032 bright reddish blue brightreddishblue #30267a bright reddish orange brightreddishorange #e25822 bright reddish violet brightreddishviolet #870074 bright reddish yellow brightreddishyellow #f6a600 bright reddish yellow brightreddishyellow #f3c300 bright violet brightviolet #9a4eae bright yellow brightyellow #f3c300 bright yellowish green brightyellowishgreen #8db600 bright yellowish green brightyellowishgreen #27a64c bright yellowish orange brightyellowishorange #f6a600 bright yellowish red brightyellowishred #be0032 bright yellowish red brightyellowishred #e25822 brown brown #80461b brown brown #593319 brown brown #a67b5b brown brown #6f4e37 brown brown #422518 brownish black brownishblack #28201c brownish gray brownishgray #8e8279 brownish gray brownishgray #5b504f brownish gray brownishgray #bfb8a5 brownish olive brownisholive #967117 brownish olive brownisholive #6c541e brownish white brownishwhite #f0ead6 dull blue dullblue #bcd4e6 dull blue dullblue #91a3b0 dull blue dullblue #536878 dull blue dullblue #36454f dull blue dullblue #202830 dull blue dullblue #c0c8e1 dull blue dullblue #8c92ac dull blue dullblue #4c516d dull bluish green dullbluishgreen #c7e6d7 dull bluish green dullbluishgreen #8da399 dull bluish green dullbluishgreen #5e716a dull bluish green dullbluishgreen #3a4b47 dull bluish green dullbluishgreen #1a2421 dull bluish red dullbluishred #a8516e dull bluish red dullbluishred #673147 dull bluish red dullbluishred #38152c dull bluish violet dullbluishviolet #c4c3dd dull bluish violet dullbluishviolet #9690ab dull bluish violet dullbluishviolet #554c69 dull bluish violet dullbluishviolet #d6cadd dull bluish violet dullbluishviolet #aa98a9 dull bluish violet dullbluishviolet #796878 dull bluish violet dullbluishviolet #50404d dull bluish violet dullbluishviolet #291e29 dull bordeaux dullbordeaux #796878 dull bordeaux dullbordeaux #50404d dull bordeaux dullbordeaux #291e29 dull bordeaux dullbordeaux #673147 dull bordeaux dullbordeaux #38152c dull brownish olive dullbrownisholive #3b3121 dull green dullgreen #c7e6d7 dull green dullgreen #8da399 dull green dullgreen #5e716a dull green dullgreen #3a4b47 dull green dullgreen #1a2421 dull greenish blue dullgreenishblue #bcd4e6 dull greenish blue dullgreenishblue #91a3b0 dull greenish blue dullgreenishblue #536878 dull greenish blue dullgreenishblue #36454f dull greenish blue dullgreenishblue #202830 dull greenish yellow dullgreenishyellow #ebe8a4 dull greenish yellow dullgreenishyellow #b9b57d dull greenish yellow dullgreenishyellow #867e36 dull orange dullorange #d9a6a9 dull orange dullorange #a67b5b dull red dullred #ab4e52 dull red dullred #722f37 dull red dullred #3f1728 dull red dullred #905d5d dull red dullred #56070c dull red dullred #79443b dull reddish blue dullreddishblue #bcd4e6 dull reddish blue dullreddishblue #91a3b0 dull reddish blue dullreddishblue #536878 dull reddish blue dullreddishblue #36454f dull reddish blue dullreddishblue #202830 dull reddish blue dullreddishblue #c0c8e1 dull reddish blue dullreddishblue #8c92ac dull reddish blue dullreddishblue #4c516d dull reddish brown dullreddishbrown #722f37 dull reddish brown dullreddishbrown #3f1728 dull reddish brown dullreddishbrown #905d5d dull reddish brown dullreddishbrown #543d3f dull reddish brown dullreddishbrown #2e1d21 dull reddish brown dullreddishbrown #a87c6d dull reddish brown dullreddishbrown #79443b dull reddish brown dullreddishbrown #3e1d1e dull reddish brown dullreddishbrown #977f73 dull reddish brown dullreddishbrown #674c47 dull reddish brown dullreddishbrown #43302e dull reddish orange dullreddishorange #b4745e dull reddish violet dullreddishviolet #aa98a9 dull reddish violet dullreddishviolet #796878 dull reddish violet dullreddishviolet #50404d dull reddish violet dullreddishviolet #291e29 dull reddish violet dullreddishviolet #aa8a9e dull reddish violet dullreddishviolet #836479 dull reddish yellow dullreddishyellow #fad6a5 dull reddish yellow dullreddishyellow #f3e5ab dull reddish yellow dullreddishyellow #c2b280 dull reddish yellow dullreddishyellow #a18f60 dull violet dullviolet #d6cadd dull violet dullviolet #aa98a9 dull violet dullviolet #796878 dull violet dullviolet #50404d dull violet dullviolet #291e29 dull yellow dullyellow #f3e5ab dull yellow dullyellow #c2b280 dull yellow dullyellow #a18f60 dull yellowish brown dullyellowishbrown #c19a6b dull yellowish brown dullyellowishbrown #826644 dull yellowish brown dullyellowishbrown #4b3621 dull yellowish brown dullyellowishbrown #ae9b82 dull yellowish brown dullyellowishbrown #7e6d5a dull yellowish brown dullyellowishbrown #483c32 dull yellowish green dullyellowishgreen #dadfb7 dull yellowish green dullyellowishgreen #8f9779 dull yellowish orange dullyellowishorange #fad6a5 dull yellowish red dullyellowishred #b4745e gray gray #b9b8b5 gray gray #848482 gray gray #555555 green green #3eb489 green green #007959 green green #00543d green green #8ed1b2 green green #6aab8e green green #3b7861 green green #1b4d3e green green #1c352d greenish black greenishblack #25241d greenish black greenishblack #1e2321 greenish blue greenishblue #239eba greenish blue greenishblue #007791 greenish blue greenishblue #2e8495 greenish blue greenishblue #9cd1dc greenish blue greenishblue #66aabc greenish blue greenishblue #367588 greenish blue greenishblue #004958 greenish blue greenishblue #002e3b greenish gray greenishgray #8a8776 greenish gray greenishgray #57554c greenish gray greenishgray #b2beb5 greenish gray greenishgray #7d8984 greenish gray greenishgray #4e5755 greenish navy greenishnavy #00304e greenish navy greenishnavy #202830 greenish white greenishwhite #dfede8 greenish yellow greenishyellow #e9e450 greenish yellow greenishyellow #beb72e greenish yellow greenishyellow #9b9400 greenish yellow greenishyellow #eae679 greenish yellow greenishyellow #b9b459 greenish yellow greenishyellow #98943e navy navy #00304e navy navy #202830 navy navy #252440 olive olive #867e36 olive olive #665d1e olive olive #403d21 olive olive #8c8767 olive olive #5b5842 olive olive #363527 orange orange #fd943f orange orange #ed872d orange orange #be6516 orange orange #fab57f orange orange #d99058 orange orange #ae6938 pink pink #ffb5ba pink pink #ea9399 pink pink #e4717a pink pink #f9ccca pink pink #dea5a4 pink pink #c08081 pink pink #ead8d7 pink pink #c4aead pink pink #ad8884 pink pink #af868e red red #bc3f4a red red #841b2d red red #5c0923 red red #ab4e52 reddish black reddishblack #543d3f reddish black reddishblack #282022 reddish black reddishblack #242124 reddish blue reddishblue #6c79b8 reddish blue reddishblue #545aa7 reddish blue reddishblue #272458 reddish blue reddishblue #b3bce2 reddish blue reddishblue #8791bf reddish blue reddishblue #4e5180 reddish blue reddishblue #252440 reddish brown reddishbrown #841b2d reddish brown reddishbrown #5c0923 reddish brown reddishbrown #722f37 reddish brown reddishbrown #905d5d reddish brown reddishbrown #882d17 reddish brown reddishbrown #56070c reddish brown reddishbrown #79443b reddish gray reddishgray #c1b6b3 reddish gray reddishgray #8f817f reddish gray reddishgray #5c504f reddish gray reddishgray #bfb9bd reddish gray reddishgray #8b8589 reddish gray reddishgray #5d555b reddish navy reddishnavy #2f2140 reddish orange reddishorange #d9603b reddish orange reddishorange #aa381e reddish orange reddishorange #cb6d51 reddish orange reddishorange #9e4732 reddish violet reddishviolet #9e4f88 reddish violet reddishviolet #702963 reddish violet reddishviolet #54194e reddish violet reddishviolet #b784a7 reddish violet reddishviolet #915c83 reddish violet reddishviolet #5d3954 reddish violet reddishviolet #341731 reddish white reddishwhite #eae3e1 reddish white reddishwhite #e8e3e5 reddish yellow reddishyellow #ffc14f reddish yellow reddishyellow #eaa221 reddish yellow reddishyellow #c98500 reddish yellow reddishyellow #fbc97f reddish yellow reddishyellow #e3a857 reddish yellow reddishyellow #be8a3d reddish yellow reddishyellow #fada5e reddish yellow reddishyellow #d4af37 reddish yellow reddishyellow #af8d13 reddish yellow reddishyellow #f8de7e reddish yellow reddishyellow #c9ae5d reddish yellow reddishyellow #ab9144 violet violet #d399e6 violet violet #875692 violet violet #602f6b violet violet #401a4c violet violet #d5badb violet violet #b695c0 violet violet #86608e violet violet #563c5c violet violet #301934 white white #f2f3f4 yellow yellow #fada5e yellow yellow #d4af37 yellow yellow #af8d13 yellow yellow #f8de7e yellow yellow #c9ae5d yellow yellow #ab9144 yellowish brown yellowishbrown #996515 yellowish brown yellowishbrown #654522 yellowish green yellowishgreen #bdda57 yellowish green yellowishgreen #7e9f2e yellowish green yellowishgreen #467129 yellowish green yellowishgreen #c9dc89 yellowish green yellowishgreen #8a9a5b yellowish green yellowishgreen #4a5d23 yellowish green yellowishgreen #83d37d yellowish green yellowishgreen #44944a yellowish green yellowishgreen #00622d yellowish green yellowishgreen #003118 yellowish green yellowishgreen #b6e5af yellowish green yellowishgreen #93c592 yellowish green yellowishgreen #679267 yellowish green yellowishgreen #355e3b yellowish green yellowishgreen #173620 yellowish orange yellowishorange #ffc14f yellowish orange yellowishorange #eaa221 yellowish orange yellowishorange #c98500 yellowish orange yellowishorange #fbc97f yellowish orange yellowishorange #e3a857 yellowish orange yellowishorange #be8a3d yellowish pink yellowishpink #ffb7a5 yellowish pink yellowishpink #f88379 yellowish pink yellowishpink #e66761 yellowish pink yellowishpink #f4c2c2 yellowish pink yellowishpink #d9a6a9 yellowish pink yellowishpink #c48379 yellowish pink yellowishpink #ecd5c5 yellowish pink yellowishpink #c7ada3 yellowish red yellowishred #d9603b yellowish red yellowishred #aa381e yellowish red yellowishred #cb6d51 yellowish red yellowishred #9e4732 =cut sub _load_color_list() { return [ ['nbs-iscc-a:black.267','black','black',[34,34,34],'222222',2236962], ['nbs-iscc-a:blue.177','blue','blue',[73,151,208],'4997d0',4822992], ['nbs-iscc-a:blue.178','blue','blue',[0,103,165],'0067a5',26533], ['nbs-iscc-a:blue.179','blue','blue',[0,65,106],'00416a',16746], ['nbs-iscc-a:blue.180','blue','blue',[161,202,241],'a1caf1',10603249], ['nbs-iscc-a:blue.181','blue','blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-a:blue.182','blue','blue',[67,107,149],'436b95',4418453], ['nbs-iscc-a:blue.183','blue','blue',[0,48,78],'00304e',12366], ['nbs-iscc-a:blue.198','blue','blue',[179,188,226],'b3bce2',11779298], ['nbs-iscc-a:blue.199','blue','blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-a:blue.201','blue','blue',[37,36,64],'252440',2434112], ['nbs-iscc-a:bluishblack.193','bluishblack','bluish black',[32,36,40],'202428',2106408], ['nbs-iscc-a:bluishgray.190','bluishgray','bluish gray',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-a:bluishgray.191','bluishgray','bluish gray',[129,135,139],'81878b',8488843], ['nbs-iscc-a:bluishgray.192','bluishgray','bluish gray',[81,88,94],'51585e',5331038], ['nbs-iscc-a:bluishgreen.159','bluishgreen','bluish green',[0,166,147],'00a693',42643], ['nbs-iscc-a:bluishgreen.160','bluishgreen','bluish green',[0,122,116],'007a74',31348], ['nbs-iscc-a:bluishgreen.161','bluishgreen','bluish green',[0,68,63],'00443f',17471], ['nbs-iscc-a:bluishgreen.162','bluishgreen','bluish green',[150,222,209],'96ded1',9887441], ['nbs-iscc-a:bluishgreen.163','bluishgreen','bluish green',[102,173,164],'66ada4',6729124], ['nbs-iscc-a:bluishgreen.164','bluishgreen','bluish green',[49,120,115],'317873',3242099], ['nbs-iscc-a:bluishgreen.165','bluishgreen','bluish green',[0,75,73],'004b49',19273], ['nbs-iscc-a:bluishgreen.166','bluishgreen','bluish green',[0,42,41],'002a29',10793], ['nbs-iscc-a:bluisholive.123','bluisholive','bluish olive',[64,79,0],'404f00',4214528], ['nbs-iscc-a:bluisholive.124','bluisholive','bluish olive',[35,47,0],'232f00',2305792], ['nbs-iscc-a:bluisholive.125','bluisholive','bluish olive',[74,93,35],'4a5d23',4873507], ['nbs-iscc-a:bluisholive.126','bluisholive','bluish olive',[43,61,38],'2b3d26',2833702], ['nbs-iscc-a:bluisholive.127','bluisholive','bluish olive',[81,87,68],'515744',5330756], ['nbs-iscc-a:bluisholive.128','bluisholive','bluish olive',[49,54,43],'31362b',3225131], ['nbs-iscc-a:bluishpink.246','bluishpink','bluish pink',[255,200,214],'ffc8d6',16763094], ['nbs-iscc-a:bluishpink.247','bluishpink','bluish pink',[230,143,172],'e68fac',15110060], ['nbs-iscc-a:bluishpink.248','bluishpink','bluish pink',[222,111,161],'de6fa1',14577569], ['nbs-iscc-a:bluishpink.249','bluishpink','bluish pink',[239,187,204],'efbbcc',15711180], ['nbs-iscc-a:bluishpink.250','bluishpink','bluish pink',[213,151,174],'d597ae',13997998], ['nbs-iscc-a:bluishpink.251','bluishpink','bluish pink',[193,126,145],'c17e91',12680849], ['nbs-iscc-a:bluishpink.252','bluishpink','bluish pink',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-a:bluishpink.253','bluishpink','bluish pink',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-a:bluishpink.261','bluishpink','bluish pink',[175,134,142],'af868e',11503246], ['nbs-iscc-a:bluishred.255','bluishred','bluish red',[179,68,108],'b3446c',11748460], ['nbs-iscc-a:bluishred.256','bluishred','bluish red',[120,24,74],'78184a',7870538], ['nbs-iscc-a:bluishred.257','bluishred','bluish red',[84,19,59],'54133b',5509947], ['nbs-iscc-a:bluishred.258','bluishred','bluish red',[168,81,110],'a8516e',11030894], ['nbs-iscc-a:bluishviolet.206','bluishviolet','bluish violet',[126,115,184],'7e73b8',8287160], ['nbs-iscc-a:bluishviolet.207','bluishviolet','bluish violet',[96,78,151],'604e97',6311575], ['nbs-iscc-a:bluishviolet.208','bluishviolet','bluish violet',[50,23,77],'32174d',3282765], ['nbs-iscc-a:bluishviolet.209','bluishviolet','bluish violet',[220,208,255],'dcd0ff',14471423], ['nbs-iscc-a:bluishviolet.210','bluishviolet','bluish violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc-a:bluishviolet.211','bluishviolet','bluish violet',[96,78,129],'604e81',6311553], ['nbs-iscc-a:bluishviolet.212','bluishviolet','bluish violet',[47,33,64],'2f2140',3088704], ['nbs-iscc-a:bluishwhite.189','bluishwhite','bluish white',[233,233,237],'e9e9ed',15329773], ['nbs-iscc-a:bordeaux.259','bordeaux','bordeaux',[103,49,71],'673147',6762823], ['nbs-iscc-a:bordeaux.260','bordeaux','bordeaux',[56,21,44],'38152c',3675436], ['nbs-iscc-a:bordeaux.262','bordeaux','bordeaux',[145,95,109],'915f6d',9527149], ['nbs-iscc-a:brightblue.176','brightblue','bright blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-a:brightbluishgreen.158','brightbluishgreen','bright bluish green',[0,136,130],'008882',34946], ['nbs-iscc-a:brightbluishred.254','brightbluishred','bright bluish red ',[206,70,118],'ce4676',13518454], ['nbs-iscc-a:brightbluishviolet.205','brightbluishviolet','bright bluish violet',[144,101,202],'9065ca',9463242], ['nbs-iscc-a:brightgreen.139','brightgreen','bright green',[0,136,86],'008856',34902], ['nbs-iscc-a:brightgreenishblue.167','brightgreenishblue','bright greenish blue',[0,133,161],'0085a1',34209], ['nbs-iscc-a:brightgreenishyellow.97','brightgreenishyellow','bright greenish yellow',[220,211,0],'dcd300',14471936], ['nbs-iscc-a:brightorange.48','brightorange','bright orange',[243,132,0],'f38400',15959040], ['nbs-iscc-a:brightred.11','brightred','bright red',[190,0,50],'be0032',12451890], ['nbs-iscc-a:brightreddishblue.194','brightreddishblue','bright reddish blue',[48,38,122],'30267a',3155578], ['nbs-iscc-a:brightreddishorange.34','brightreddishorange','bright reddish orange',[226,88,34],'e25822',14833698], ['nbs-iscc-a:brightreddishviolet.236','brightreddishviolet','bright reddish violet',[135,0,116],'870074',8847476], ['nbs-iscc-a:brightreddishyellow.66','brightreddishyellow','bright reddish yellow',[246,166,0],'f6a600',16164352], ['nbs-iscc-a:brightreddishyellow.82','brightreddishyellow','bright reddish yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-a:brightviolet.216','brightviolet','bright violet',[154,78,174],'9a4eae',10112686], ['nbs-iscc-a:brightyellow.82','brightyellow','bright yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-a:brightyellowishgreen.115','brightyellowishgreen','bright yellowish green',[141,182,0],'8db600',9287168], ['nbs-iscc-a:brightyellowishgreen.129','brightyellowishgreen','bright yellowish green',[39,166,76],'27a64c',2598476], ['nbs-iscc-a:brightyellowishorange.66','brightyellowishorange','bright yellowish orange',[246,166,0],'f6a600',16164352], ['nbs-iscc-a:brightyellowishred.11','brightyellowishred','bright yellowish red',[190,0,50],'be0032',12451890], ['nbs-iscc-a:brightyellowishred.34','brightyellowishred','bright yellowish red',[226,88,34],'e25822',14833698], ['nbs-iscc-a:brown.55','brown','brown',[128,70,27],'80461b',8406555], ['nbs-iscc-a:brown.56','brown','brown',[89,51,25],'593319',5845785], ['nbs-iscc-a:brown.57','brown','brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-a:brown.58','brown','brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-a:brown.59','brown','brown',[66,37,24],'422518',4334872], ['nbs-iscc-a:brownishblack.65','brownishblack','brownish black',[40,32,28],'28201c',2629660], ['nbs-iscc-a:brownishgray.63','brownishgray','brownish gray',[142,130,121],'8e8279',9339513], ['nbs-iscc-a:brownishgray.64','brownishgray','brownish gray',[91,80,79],'5b504f',5984335], ['nbs-iscc-a:brownishgray.93','brownishgray','brownish gray',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-a:brownisholive.94','brownisholive','brownish olive',[150,113,23],'967117',9859351], ['nbs-iscc-a:brownisholive.95','brownisholive','brownish olive',[108,84,30],'6c541e',7099422], ['nbs-iscc-a:brownishwhite.92','brownishwhite','brownish white',[240,234,214],'f0ead6',15788758], ['nbs-iscc-a:dullblue.184','dullblue','dull blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-a:dullblue.185','dullblue','dull blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-a:dullblue.186','dullblue','dull blue',[83,104,120],'536878',5466232], ['nbs-iscc-a:dullblue.187','dullblue','dull blue',[54,69,79],'36454f',3556687], ['nbs-iscc-a:dullblue.188','dullblue','dull blue',[32,40,48],'202830',2107440], ['nbs-iscc-a:dullblue.202','dullblue','dull blue',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-a:dullblue.203','dullblue','dull blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-a:dullblue.204','dullblue','dull blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-a:dullbluishgreen.148','dullbluishgreen','dull bluish green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-a:dullbluishgreen.149','dullbluishgreen','dull bluish green',[141,163,153],'8da399',9282457], ['nbs-iscc-a:dullbluishgreen.150','dullbluishgreen','dull bluish green',[94,113,106],'5e716a',6189418], ['nbs-iscc-a:dullbluishgreen.151','dullbluishgreen','dull bluish green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-a:dullbluishgreen.152','dullbluishgreen','dull bluish green',[26,36,33],'1a2421',1713185], ['nbs-iscc-a:dullbluishred.258','dullbluishred','dull bluish red',[168,81,110],'a8516e',11030894], ['nbs-iscc-a:dullbluishred.259','dullbluishred','dull bluish red',[103,49,71],'673147',6762823], ['nbs-iscc-a:dullbluishred.260','dullbluishred','dull bluish red',[56,21,44],'38152c',3675436], ['nbs-iscc-a:dullbluishviolet.213','dullbluishviolet','dull bluish violet',[196,195,221],'c4c3dd',12895197], ['nbs-iscc-a:dullbluishviolet.214','dullbluishviolet','dull bluish violet',[150,144,171],'9690ab',9867435], ['nbs-iscc-a:dullbluishviolet.215','dullbluishviolet','dull bluish violet',[85,76,105],'554c69',5590121], ['nbs-iscc-a:dullbluishviolet.226','dullbluishviolet','dull bluish violet',[214,202,221],'d6cadd',14076637], ['nbs-iscc-a:dullbluishviolet.227','dullbluishviolet','dull bluish violet',[170,152,169],'aa98a9',11180201], ['nbs-iscc-a:dullbluishviolet.228','dullbluishviolet','dull bluish violet',[121,104,120],'796878',7956600], ['nbs-iscc-a:dullbluishviolet.229','dullbluishviolet','dull bluish violet',[80,64,77],'50404d',5259341], ['nbs-iscc-a:dullbluishviolet.230','dullbluishviolet','dull bluish violet',[41,30,41],'291e29',2694697], ['nbs-iscc-a:dullbordeaux.228','dullbordeaux','dull bordeaux',[121,104,120],'796878',7956600], ['nbs-iscc-a:dullbordeaux.229','dullbordeaux','dull bordeaux',[80,64,77],'50404d',5259341], ['nbs-iscc-a:dullbordeaux.230','dullbordeaux','dull bordeaux',[41,30,41],'291e29',2694697], ['nbs-iscc-a:dullbordeaux.259','dullbordeaux','dull bordeaux',[103,49,71],'673147',6762823], ['nbs-iscc-a:dullbordeaux.260','dullbordeaux','dull bordeaux',[56,21,44],'38152c',3675436], ['nbs-iscc-a:dullbrownisholive.96','dullbrownisholive','dull brownish olive',[59,49,33],'3b3121',3879201], ['nbs-iscc-a:dullgreen.148','dullgreen','dull green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-a:dullgreen.149','dullgreen','dull green',[141,163,153],'8da399',9282457], ['nbs-iscc-a:dullgreen.150','dullgreen','dull green',[94,113,106],'5e716a',6189418], ['nbs-iscc-a:dullgreen.151','dullgreen','dull green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-a:dullgreen.152','dullgreen','dull green',[26,36,33],'1a2421',1713185], ['nbs-iscc-a:dullgreenishblue.184','dullgreenishblue','dull greenish blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-a:dullgreenishblue.185','dullgreenishblue','dull greenish blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-a:dullgreenishblue.186','dullgreenishblue','dull greenish blue',[83,104,120],'536878',5466232], ['nbs-iscc-a:dullgreenishblue.187','dullgreenishblue','dull greenish blue',[54,69,79],'36454f',3556687], ['nbs-iscc-a:dullgreenishblue.188','dullgreenishblue','dull greenish blue',[32,40,48],'202830',2107440], ['nbs-iscc-a:dullgreenishyellow.104','dullgreenishyellow','dull greenish yellow',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-a:dullgreenishyellow.105','dullgreenishyellow','dull greenish yellow',[185,181,125],'b9b57d',12170621], ['nbs-iscc-a:dullgreenishyellow.106','dullgreenishyellow','dull greenish yellow',[134,126,54],'867e36',8814134], ['nbs-iscc-a:dullorange.29','dullorange','dull orange',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-a:dullorange.57','dullorange','dull orange',[166,123,91],'a67b5b',10910555], ['nbs-iscc-a:dullred.15','dullred','dull red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-a:dullred.16','dullred','dull red',[114,47,55],'722f37',7483191], ['nbs-iscc-a:dullred.17','dullred','dull red',[63,23,40],'3f1728',4134696], ['nbs-iscc-a:dullred.19','dullred','dull red',[144,93,93],'905d5d',9461085], ['nbs-iscc-a:dullred.41','dullred','dull red',[86,7,12],'56070c',5637900], ['nbs-iscc-a:dullred.43','dullred','dull red',[121,68,59],'79443b',7947323], ['nbs-iscc-a:dullreddishblue.184','dullreddishblue','dull reddish blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-a:dullreddishblue.185','dullreddishblue','dull reddish blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-a:dullreddishblue.186','dullreddishblue','dull reddish blue',[83,104,120],'536878',5466232], ['nbs-iscc-a:dullreddishblue.187','dullreddishblue','dull reddish blue',[54,69,79],'36454f',3556687], ['nbs-iscc-a:dullreddishblue.188','dullreddishblue','dull reddish blue',[32,40,48],'202830',2107440], ['nbs-iscc-a:dullreddishblue.202','dullreddishblue','dull reddish blue',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-a:dullreddishblue.203','dullreddishblue','dull reddish blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-a:dullreddishblue.204','dullreddishblue','dull reddish blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-a:dullreddishbrown.16','dullreddishbrown','dull reddish brown',[114,47,55],'722f37',7483191], ['nbs-iscc-a:dullreddishbrown.17','dullreddishbrown','dull reddish brown',[63,23,40],'3f1728',4134696], ['nbs-iscc-a:dullreddishbrown.19','dullreddishbrown','dull reddish brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-a:dullreddishbrown.20','dullreddishbrown','dull reddish brown',[84,61,63],'543d3f',5520703], ['nbs-iscc-a:dullreddishbrown.21','dullreddishbrown','dull reddish brown',[46,29,33],'2e1d21',3022113], ['nbs-iscc-a:dullreddishbrown.42','dullreddishbrown','dull reddish brown',[168,124,109],'a87c6d',11041901], ['nbs-iscc-a:dullreddishbrown.43','dullreddishbrown','dull reddish brown',[121,68,59],'79443b',7947323], ['nbs-iscc-a:dullreddishbrown.44','dullreddishbrown','dull reddish brown',[62,29,30],'3e1d1e',4070686], ['nbs-iscc-a:dullreddishbrown.45','dullreddishbrown','dull reddish brown',[151,127,115],'977f73',9928563], ['nbs-iscc-a:dullreddishbrown.46','dullreddishbrown','dull reddish brown',[103,76,71],'674c47',6769735], ['nbs-iscc-a:dullreddishbrown.47','dullreddishbrown','dull reddish brown',[67,48,46],'43302e',4403246], ['nbs-iscc-a:dullreddishorange.39','dullreddishorange','dull reddish orange',[180,116,94],'b4745e',11826270], ['nbs-iscc-a:dullreddishviolet.227','dullreddishviolet','dull reddish violet',[170,152,169],'aa98a9',11180201], ['nbs-iscc-a:dullreddishviolet.228','dullreddishviolet','dull reddish violet',[121,104,120],'796878',7956600], ['nbs-iscc-a:dullreddishviolet.229','dullreddishviolet','dull reddish violet',[80,64,77],'50404d',5259341], ['nbs-iscc-a:dullreddishviolet.230','dullreddishviolet','dull reddish violet',[41,30,41],'291e29',2694697], ['nbs-iscc-a:dullreddishviolet.244','dullreddishviolet','dull reddish violet',[170,138,158],'aa8a9e',11176606], ['nbs-iscc-a:dullreddishviolet.245','dullreddishviolet','dull reddish violet',[131,100,121],'836479',8610937], ['nbs-iscc-a:dullreddishyellow.73','dullreddishyellow','dull reddish yellow',[250,214,165],'fad6a5',16438949], ['nbs-iscc-a:dullreddishyellow.89','dullreddishyellow','dull reddish yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-a:dullreddishyellow.90','dullreddishyellow','dull reddish yellow',[194,178,128],'c2b280',12759680], ['nbs-iscc-a:dullreddishyellow.91','dullreddishyellow','dull reddish yellow',[161,143,96],'a18f60',10588000], ['nbs-iscc-a:dullviolet.226','dullviolet','dull violet',[214,202,221],'d6cadd',14076637], ['nbs-iscc-a:dullviolet.227','dullviolet','dull violet',[170,152,169],'aa98a9',11180201], ['nbs-iscc-a:dullviolet.228','dullviolet','dull violet',[121,104,120],'796878',7956600], ['nbs-iscc-a:dullviolet.229','dullviolet','dull violet',[80,64,77],'50404d',5259341], ['nbs-iscc-a:dullviolet.230','dullviolet','dull violet',[41,30,41],'291e29',2694697], ['nbs-iscc-a:dullyellow.89','dullyellow','dull yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-a:dullyellow.90','dullyellow','dull yellow',[194,178,128],'c2b280',12759680], ['nbs-iscc-a:dullyellow.91','dullyellow','dull yellow',[161,143,96],'a18f60',10588000], ['nbs-iscc-a:dullyellowishbrown.76','dullyellowishbrown','dull yellowish brown',[193,154,107],'c19a6b',12687979], ['nbs-iscc-a:dullyellowishbrown.77','dullyellowishbrown','dull yellowish brown',[130,102,68],'826644',8545860], ['nbs-iscc-a:dullyellowishbrown.78','dullyellowishbrown','dull yellowish brown',[75,54,33],'4b3621',4929057], ['nbs-iscc-a:dullyellowishbrown.79','dullyellowishbrown','dull yellowish brown',[174,155,130],'ae9b82',11443074], ['nbs-iscc-a:dullyellowishbrown.80','dullyellowishbrown','dull yellowish brown',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-a:dullyellowishbrown.81','dullyellowishbrown','dull yellowish brown',[72,60,50],'483c32',4734002], ['nbs-iscc-a:dullyellowishgreen.121','dullyellowishgreen','dull yellowish green',[218,223,183],'dadfb7',14344119], ['nbs-iscc-a:dullyellowishgreen.122','dullyellowishgreen','dull yellowish green',[143,151,121],'8f9779',9410425], ['nbs-iscc-a:dullyellowishorange.73','dullyellowishorange','dull yellowish orange',[250,214,165],'fad6a5',16438949], ['nbs-iscc-a:dullyellowishred.39','dullyellowishred','dull yellowish red',[180,116,94],'b4745e',11826270], ['nbs-iscc-a:gray.264','gray','gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-a:gray.265','gray','gray',[132,132,130],'848482',8684674], ['nbs-iscc-a:gray.266','gray','gray',[85,85,85],'555555',5592405], ['nbs-iscc-a:green.140','green','green',[62,180,137],'3eb489',4109449], ['nbs-iscc-a:green.141','green','green',[0,121,89],'007959',31065], ['nbs-iscc-a:green.142','green','green',[0,84,61],'00543d',21565], ['nbs-iscc-a:green.143','green','green',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-a:green.144','green','green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-a:green.145','green','green',[59,120,97],'3b7861',3897441], ['nbs-iscc-a:green.146','green','green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-a:green.147','green','green',[28,53,45],'1c352d',1848621], ['nbs-iscc-a:greenishblack.114','greenishblack','greenish black',[37,36,29],'25241d',2434077], ['nbs-iscc-a:greenishblack.157','greenishblack','greenish black',[30,35,33],'1e2321',1975073], ['nbs-iscc-a:greenishblue.168','greenishblue','greenish blue',[35,158,186],'239eba',2334394], ['nbs-iscc-a:greenishblue.169','greenishblue','greenish blue',[0,119,145],'007791',30609], ['nbs-iscc-a:greenishblue.170','greenishblue','greenish blue',[46,132,149],'2e8495',3048597], ['nbs-iscc-a:greenishblue.171','greenishblue','greenish blue',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-a:greenishblue.172','greenishblue','greenish blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-a:greenishblue.173','greenishblue','greenish blue',[54,117,136],'367588',3569032], ['nbs-iscc-a:greenishblue.174','greenishblue','greenish blue',[0,73,88],'004958',18776], ['nbs-iscc-a:greenishblue.175','greenishblue','greenish blue',[0,46,59],'002e3b',11835], ['nbs-iscc-a:greenishgray.112','greenishgray','greenish gray',[138,135,118],'8a8776',9078646], ['nbs-iscc-a:greenishgray.113','greenishgray','greenish gray',[87,85,76],'57554c',5723468], ['nbs-iscc-a:greenishgray.154','greenishgray','greenish gray',[178,190,181],'b2beb5',11714229], ['nbs-iscc-a:greenishgray.155','greenishgray','greenish gray',[125,137,132],'7d8984',8227204], ['nbs-iscc-a:greenishgray.156','greenishgray','greenish gray',[78,87,85],'4e5755',5134165], ['nbs-iscc-a:greenishnavy.183','greenishnavy','greenish navy',[0,48,78],'00304e',12366], ['nbs-iscc-a:greenishnavy.188','greenishnavy','greenish navy',[32,40,48],'202830',2107440], ['nbs-iscc-a:greenishwhite.153','greenishwhite','greenish white',[223,237,232],'dfede8',14675432], ['nbs-iscc-a:greenishyellow.98','greenishyellow','greenish yellow',[233,228,80],'e9e450',15328336], ['nbs-iscc-a:greenishyellow.99','greenishyellow','greenish yellow',[190,183,46],'beb72e',12498734], ['nbs-iscc-a:greenishyellow.100','greenishyellow','greenish yellow',[155,148,0],'9b9400',10195968], ['nbs-iscc-a:greenishyellow.101','greenishyellow','greenish yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-a:greenishyellow.102','greenishyellow','greenish yellow',[185,180,89],'b9b459',12170329], ['nbs-iscc-a:greenishyellow.103','greenishyellow','greenish yellow',[152,148,62],'98943e',9999422], ['nbs-iscc-a:navy.183','navy','navy',[0,48,78],'00304e',12366], ['nbs-iscc-a:navy.188','navy','navy',[32,40,48],'202830',2107440], ['nbs-iscc-a:navy.201','navy','navy',[37,36,64],'252440',2434112], ['nbs-iscc-a:olive.106','olive','olive',[134,126,54],'867e36',8814134], ['nbs-iscc-a:olive.107','olive','olive',[102,93,30],'665d1e',6708510], ['nbs-iscc-a:olive.108','olive','olive',[64,61,33],'403d21',4209953], ['nbs-iscc-a:olive.109','olive','olive',[140,135,103],'8c8767',9209703], ['nbs-iscc-a:olive.110','olive','olive',[91,88,66],'5b5842',5986370], ['nbs-iscc-a:olive.111','olive','olive',[54,53,39],'363527',3552551], ['nbs-iscc-a:orange.49','orange','orange',[253,148,63],'fd943f',16618559], ['nbs-iscc-a:orange.50','orange','orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-a:orange.51','orange','orange',[190,101,22],'be6516',12477718], ['nbs-iscc-a:orange.52','orange','orange',[250,181,127],'fab57f',16430463], ['nbs-iscc-a:orange.53','orange','orange',[217,144,88],'d99058',14258264], ['nbs-iscc-a:orange.54','orange','orange',[174,105,56],'ae6938',11430200], ['nbs-iscc-a:pink.1','pink','pink',[255,181,186],'ffb5ba',16758202], ['nbs-iscc-a:pink.2','pink','pink',[234,147,153],'ea9399',15373209], ['nbs-iscc-a:pink.3','pink','pink',[228,113,122],'e4717a',14971258], ['nbs-iscc-a:pink.4','pink','pink',[249,204,202],'f9ccca',16370890], ['nbs-iscc-a:pink.5','pink','pink',[222,165,164],'dea5a4',14591396], ['nbs-iscc-a:pink.6','pink','pink',[192,128,129],'c08081',12615809], ['nbs-iscc-a:pink.7','pink','pink',[234,216,215],'ead8d7',15390935], ['nbs-iscc-a:pink.8','pink','pink',[196,174,173],'c4aead',12889773], ['nbs-iscc-a:pink.18','pink','pink',[173,136,132],'ad8884',11372676], ['nbs-iscc-a:pink.261','pink','pink',[175,134,142],'af868e',11503246], ['nbs-iscc-a:red.12','red','red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-a:red.13','red','red',[132,27,45],'841b2d',8657709], ['nbs-iscc-a:red.14','red','red',[92,9,35],'5c0923',6031651], ['nbs-iscc-a:red.15','red','red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-a:reddishblack.20','reddishblack','reddish black',[84,61,63],'543d3f',5520703], ['nbs-iscc-a:reddishblack.24','reddishblack','reddish black',[40,32,34],'282022',2629666], ['nbs-iscc-a:reddishblack.235','reddishblack','reddish black',[36,33,36],'242124',2367780], ['nbs-iscc-a:reddishblue.195','reddishblue','reddish blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc-a:reddishblue.196','reddishblue','reddish blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-a:reddishblue.197','reddishblue','reddish blue',[39,36,88],'272458',2565208], ['nbs-iscc-a:reddishblue.198','reddishblue','reddish blue',[179,188,226],'b3bce2',11779298], ['nbs-iscc-a:reddishblue.199','reddishblue','reddish blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-a:reddishblue.200','reddishblue','reddish blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-a:reddishblue.201','reddishblue','reddish blue',[37,36,64],'252440',2434112], ['nbs-iscc-a:reddishbrown.13','reddishbrown','reddish brown',[132,27,45],'841b2d',8657709], ['nbs-iscc-a:reddishbrown.14','reddishbrown','reddish brown',[92,9,35],'5c0923',6031651], ['nbs-iscc-a:reddishbrown.16','reddishbrown','reddish brown',[114,47,55],'722f37',7483191], ['nbs-iscc-a:reddishbrown.19','reddishbrown','reddish brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-a:reddishbrown.40','reddishbrown','reddish brown',[136,45,23],'882d17',8924439], ['nbs-iscc-a:reddishbrown.41','reddishbrown','reddish brown',[86,7,12],'56070c',5637900], ['nbs-iscc-a:reddishbrown.43','reddishbrown','reddish brown',[121,68,59],'79443b',7947323], ['nbs-iscc-a:reddishgray.10','reddishgray','reddish gray',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-a:reddishgray.22','reddishgray','reddish gray',[143,129,127],'8f817f',9404799], ['nbs-iscc-a:reddishgray.23','reddishgray','reddish gray',[92,80,79],'5c504f',6049871], ['nbs-iscc-a:reddishgray.232','reddishgray','reddish gray',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-a:reddishgray.233','reddishgray','reddish gray',[139,133,137],'8b8589',9143689], ['nbs-iscc-a:reddishgray.234','reddishgray','reddish gray',[93,85,91],'5d555b',6116699], ['nbs-iscc-a:reddishnavy.212','reddishnavy','reddish navy',[47,33,64],'2f2140',3088704], ['nbs-iscc-a:reddishorange.35','reddishorange','reddish orange',[217,96,59],'d9603b',14245947], ['nbs-iscc-a:reddishorange.36','reddishorange','reddish orange',[170,56,30],'aa381e',11155486], ['nbs-iscc-a:reddishorange.37','reddishorange','reddish orange',[203,109,81],'cb6d51',13331793], ['nbs-iscc-a:reddishorange.38','reddishorange','reddish orange',[158,71,50],'9e4732',10372914], ['nbs-iscc-a:reddishviolet.237','reddishviolet','reddish violet',[158,79,136],'9e4f88',10375048], ['nbs-iscc-a:reddishviolet.238','reddishviolet','reddish violet',[112,41,99],'702963',7350627], ['nbs-iscc-a:reddishviolet.239','reddishviolet','reddish violet',[84,25,78],'54194e',5511502], ['nbs-iscc-a:reddishviolet.240','reddishviolet','reddish violet',[183,132,167],'b784a7',12027047], ['nbs-iscc-a:reddishviolet.241','reddishviolet','reddish violet',[145,92,131],'915c83',9526403], ['nbs-iscc-a:reddishviolet.242','reddishviolet','reddish violet',[93,57,84],'5d3954',6109524], ['nbs-iscc-a:reddishviolet.243','reddishviolet','reddish violet',[52,23,49],'341731',3413809], ['nbs-iscc-a:reddishwhite.9','reddishwhite','reddish white',[234,227,225],'eae3e1',15393761], ['nbs-iscc-a:reddishwhite.231','reddishwhite','reddish white',[232,227,229],'e8e3e5',15262693], ['nbs-iscc-a:reddishyellow.67','reddishyellow','reddish yellow',[255,193,79],'ffc14f',16761167], ['nbs-iscc-a:reddishyellow.68','reddishyellow','reddish yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-a:reddishyellow.69','reddishyellow','reddish yellow',[201,133,0],'c98500',13206784], ['nbs-iscc-a:reddishyellow.70','reddishyellow','reddish yellow',[251,201,127],'fbc97f',16501119], ['nbs-iscc-a:reddishyellow.71','reddishyellow','reddish yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-a:reddishyellow.72','reddishyellow','reddish yellow',[190,138,61],'be8a3d',12487229], ['nbs-iscc-a:reddishyellow.83','reddishyellow','reddish yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-a:reddishyellow.84','reddishyellow','reddish yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-a:reddishyellow.85','reddishyellow','reddish yellow',[175,141,19],'af8d13',11504915], ['nbs-iscc-a:reddishyellow.86','reddishyellow','reddish yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-a:reddishyellow.87','reddishyellow','reddish yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-a:reddishyellow.88','reddishyellow','reddish yellow',[171,145,68],'ab9144',11243844], ['nbs-iscc-a:violet.217','violet','violet',[211,153,230],'d399e6',13867494], ['nbs-iscc-a:violet.218','violet','violet',[135,86,146],'875692',8869522], ['nbs-iscc-a:violet.219','violet','violet',[96,47,107],'602f6b',6303595], ['nbs-iscc-a:violet.220','violet','violet',[64,26,76],'401a4c',4201036], ['nbs-iscc-a:violet.221','violet','violet',[213,186,219],'d5badb',14007003], ['nbs-iscc-a:violet.222','violet','violet',[182,149,192],'b695c0',11965888], ['nbs-iscc-a:violet.223','violet','violet',[134,96,142],'86608e',8806542], ['nbs-iscc-a:violet.224','violet','violet',[86,60,92],'563c5c',5651548], ['nbs-iscc-a:violet.225','violet','violet',[48,25,52],'301934',3152180], ['nbs-iscc-a:white.263','white','white',[242,243,244],'f2f3f4',15922164], ['nbs-iscc-a:yellow.83','yellow','yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-a:yellow.84','yellow','yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-a:yellow.85','yellow','yellow',[175,141,19],'af8d13',11504915], ['nbs-iscc-a:yellow.86','yellow','yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-a:yellow.87','yellow','yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-a:yellow.88','yellow','yellow',[171,145,68],'ab9144',11243844], ['nbs-iscc-a:yellowishbrown.74','yellowishbrown','yellowish brown',[153,101,21],'996515',10052885], ['nbs-iscc-a:yellowishbrown.75','yellowishbrown','yellowish brown',[101,69,34],'654522',6636834], ['nbs-iscc-a:yellowishgreen.116','yellowishgreen','yellowish green',[189,218,87],'bdda57',12442199], ['nbs-iscc-a:yellowishgreen.117','yellowishgreen','yellowish green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-a:yellowishgreen.118','yellowishgreen','yellowish green',[70,113,41],'467129',4616489], ['nbs-iscc-a:yellowishgreen.119','yellowishgreen','yellowish green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-a:yellowishgreen.120','yellowishgreen','yellowish green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-a:yellowishgreen.125','yellowishgreen','yellowish green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-a:yellowishgreen.130','yellowishgreen','yellowish green',[131,211,125],'83d37d',8639357], ['nbs-iscc-a:yellowishgreen.131','yellowishgreen','yellowish green',[68,148,74],'44944a',4494410], ['nbs-iscc-a:yellowishgreen.132','yellowishgreen','yellowish green',[0,98,45],'00622d',25133], ['nbs-iscc-a:yellowishgreen.133','yellowishgreen','yellowish green',[0,49,24],'003118',12568], ['nbs-iscc-a:yellowishgreen.134','yellowishgreen','yellowish green',[182,229,175],'b6e5af',11986351], ['nbs-iscc-a:yellowishgreen.135','yellowishgreen','yellowish green',[147,197,146],'93c592',9684370], ['nbs-iscc-a:yellowishgreen.136','yellowishgreen','yellowish green',[103,146,103],'679267',6787687], ['nbs-iscc-a:yellowishgreen.137','yellowishgreen','yellowish green',[53,94,59],'355e3b',3497531], ['nbs-iscc-a:yellowishgreen.138','yellowishgreen','yellowish green',[23,54,32],'173620',1521184], ['nbs-iscc-a:yellowishorange.67','yellowishorange','yellowish orange',[255,193,79],'ffc14f',16761167], ['nbs-iscc-a:yellowishorange.68','yellowishorange','yellowish orange',[234,162,33],'eaa221',15376929], ['nbs-iscc-a:yellowishorange.69','yellowishorange','yellowish orange',[201,133,0],'c98500',13206784], ['nbs-iscc-a:yellowishorange.70','yellowishorange','yellowish orange',[251,201,127],'fbc97f',16501119], ['nbs-iscc-a:yellowishorange.71','yellowishorange','yellowish orange',[227,168,87],'e3a857',14919767], ['nbs-iscc-a:yellowishorange.72','yellowishorange','yellowish orange',[190,138,61],'be8a3d',12487229], ['nbs-iscc-a:yellowishpink.25','yellowishpink','yellowish pink',[255,183,165],'ffb7a5',16758693], ['nbs-iscc-a:yellowishpink.26','yellowishpink','yellowish pink',[248,131,121],'f88379',16286585], ['nbs-iscc-a:yellowishpink.27','yellowishpink','yellowish pink',[230,103,97],'e66761',15099745], ['nbs-iscc-a:yellowishpink.28','yellowishpink','yellowish pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-a:yellowishpink.29','yellowishpink','yellowish pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-a:yellowishpink.30','yellowishpink','yellowish pink',[196,131,121],'c48379',12878713], ['nbs-iscc-a:yellowishpink.31','yellowishpink','yellowish pink',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-a:yellowishpink.32','yellowishpink','yellowish pink',[199,173,163],'c7ada3',13086115], ['nbs-iscc-a:yellowishred.35','yellowishred','yellowish red',[217,96,59],'d9603b',14245947], ['nbs-iscc-a:yellowishred.36','yellowishred','yellowish red',[170,56,30],'aa381e',11155486], ['nbs-iscc-a:yellowishred.37','yellowishred','yellowish red',[203,109,81],'cb6d51',13331793], ['nbs-iscc-a:yellowishred.38','yellowishred','yellowish red',[158,71,50],'9e4732',10372914] ]; } sub _description { return { 'subtitle' => 'Dye Colors', 'title' => 'NBS/ISCC A', 'description' => ' Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (A) Dye Colors American Association of Textile Chemists and Colorists and Society of Dyers and Colourists This combinatorial dictionary\'s 88 names map to 350 colors; 263 out of 267 centroids are covered. [http://swissnet.ai.mit.edu/~jaffer/Color/Dictionaries#A] ' } } 1; B.pm100644000765000024 33222611667760546 22714 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionary/NBS_ISCCpackage Color::Library::Dictionary::NBS_ISCC::B; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::NBS_ISCC::B; =pod =head1 NAME Color::Library::Dictionary::NBS_ISCC::B - (NBS/ISCC B) Colour Terminology in Biology =head1 DESCRIPTION Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (B) Colour Terminology in Biology Colour Terminology in Biology, H.A. Dade This combinatorial dictionary seems to be derived from Latin (eg. viridi-caeruleus). Its 128 names map to 789 colors, using 214 of the 267 centroids. But averaging over 6 colors per name means it has little descriptive power. L =head1 COLORS aerugineus aerugineus #93c592 aerugineus aerugineus #679267 aerugineus aerugineus #6aab8e aerugineus aerugineus #3b7861 aerugineus aerugineus #8da399 aerugineus aerugineus #5e716a aerugineus aerugineus #66ada4 aerugineus aerugineus #317873 armeniacus armeniacus #cb6d51 armeniacus armeniacus #d99058 atroardesiacus atroardesiacus #3a4b47 atroardesiacus atroardesiacus #4e5755 atroardesiacus atroardesiacus #00304e atroardesiacus atroardesiacus #536878 atroardesiacus atroardesiacus #36454f atroardesiacus atroardesiacus #202830 atroardesiacus atroardesiacus #51585e atroardesiacus atroardesiacus #202428 atroardesiacus atroardesiacus #5d555b atroardesiacus atroardesiacus #555555 atroardesiacus atroardesiacus #222222 atrocyaneus atrocyaneus #317873 atrocyaneus atrocyaneus #004b49 atrocyaneus atrocyaneus #367588 atrocyaneus atrocyaneus #004958 atrocyaneus atrocyaneus #436b95 atrocyaneus atrocyaneus #00304e atrocyaneus atrocyaneus #536878 atroherbaceus atroherbaceus #867e36 atroherbaceus atroherbaceus #665d1e atroherbaceus atroherbaceus #8a9a5b atroherbaceus atroherbaceus #4a5d23 atroherbaceus atroherbaceus #515744 atroherbaceus atroherbaceus #355e3b atroherbaceus atroherbaceus #3b7861 atroherbaceus atroherbaceus #5e716a atrolazulinus atrolazulinus #00a1c2 atrolazulinus atrolazulinus #0067a5 atrolazulinus atrolazulinus #00416a atrolazulinus atrolazulinus #436b95 atrolazulinus atrolazulinus #00304e atrolazulinus atrolazulinus #536878 atrolazulinus atrolazulinus #36454f atrolazulinus atrolazulinus #545aa7 atrolazulinus atrolazulinus #4e5180 atrolazulinus atrolazulinus #4c516d atrolividus atrolividus #86608e atrolividus atrolividus #563c5c atrolividus atrolividus #796878 atrolividus atrolividus #50404d atrolividus atrolividus #5d3954 atrolividus atrolividus #673147 atromurinus atromurinus #5b504f atromurinus atromurinus #555555 atropurpureus atropurpureus #602f6b atropurpureus atropurpureus #86608e atropurpureus atropurpureus #563c5c atropurpureus atropurpureus #50404d atropurpureus atropurpureus #9e4f88 atropurpureus atropurpureus #702963 atropurpureus atropurpureus #915c83 atropurpureus atropurpureus #5d3954 atropurpureus atropurpureus #341731 atropurpureus atropurpureus #673147 atrovenetus atrovenetus #3b7861 atrovenetus atrovenetus #1b4d3e atrovenetus atrovenetus #5e716a atrovenetus atrovenetus #3a4b47 atrovenetus atrovenetus #4e5755 atrovenetus atrovenetus #007a74 atrovenetus atrovenetus #317873 atrovenetus atrovenetus #004b49 atrovenetus atrovenetus #367588 atrovenetus atrovenetus #536878 atrovenetus atrovenetus #36454f atrovinosus atrovinosus #905d5d atrovinosus atrovinosus #543d3f atrovinosus atrovinosus #674c47 atrovinosus atrovinosus #50404d atrovinosus atrovinosus #673147 atrovinosus atrovinosus #915f6d atroviolaceus atroviolaceus #36454f atroviolaceus atroviolaceus #272458 atroviolaceus atroviolaceus #4e5180 atroviolaceus atroviolaceus #252440 atroviolaceus atroviolaceus #4c516d atroviolaceus atroviolaceus #604e81 atroviolaceus atroviolaceus #2f2140 atroviolaceus atroviolaceus #554c69 atroviolaceus atroviolaceus #602f6b atroviolaceus atroviolaceus #563c5c atroviolaceus atroviolaceus #796878 atroviolaceus atroviolaceus #50404d atroviridis atroviridis #7e9f2e atroviridis atroviridis #8a9a5b atroviridis atroviridis #4a5d23 atroviridis atroviridis #515744 atroviridis atroviridis #679267 atroviridis atroviridis #355e3b atroviridis atroviridis #3eb489 atroviridis atroviridis #007959 atroviridis atroviridis #3b7861 atroviridis atroviridis #1b4d3e atroviridis atroviridis #5e716a atroviridis atroviridis #3a4b47 atroviridis atroviridis #4e5755 atroviridis atroviridis #317873 atroviridis atroviridis #004b49 aurantiacus aurantiacus #f38400 aurantiacus aurantiacus #ed872d aurantiacus aurantiacus #eaa221 avellaneus avellaneus #c19a6b avellaneus avellaneus #826644 avellaneus avellaneus #ae9b82 badius badius #ab4e52 badius badius #905d5d badius badius #543d3f badius badius #882d17 badius badius #79443b badius badius #674c47 brunneo-vinosus brunneovinosus #905d5d brunneo-vinosus brunneovinosus #543d3f brunneo-vinosus brunneovinosus #5c504f brunneo-vinosus brunneovinosus #674c47 brunneo-vinosus brunneovinosus #635147 brunneo-vinosus brunneovinosus #5b504f brunneo-vinosus brunneovinosus #50404d brunneo-vinosus brunneovinosus #673147 bubalinus bubalinus #f4c2c2 bubalinus bubalinus #e3a857 bubalinus bubalinus #fad6a5 bubalinus bubalinus #f8de7e bubalinus bubalinus #c9ae5d bubalinus bubalinus #f3e5ab caeruleo-glaucus caeruleoglaucus #c7e6d7 caeruleo-glaucus caeruleoglaucus #96ded1 caeruleo-glaucus caeruleoglaucus #66aabc caeruleo-glaucus caeruleoglaucus #bcd4e6 caeruleo-glaucus caeruleoglaucus #91a3b0 caeruleo-griseus caeruleogriseus #bcd4e6 caeruleo-griseus caeruleogriseus #91a3b0 caeruleo-griseus caeruleogriseus #536878 caeruleo-griseus caeruleogriseus #81878b caeruleo-griseus caeruleogriseus #8c92ac caeruleus caeruleus #c7e6d7 caeruleus caeruleus #96ded1 caeruleus caeruleus #66ada4 caeruleus caeruleus #239eba caeruleus caeruleus #9cd1dc caeruleus caeruleus #66aabc caeruleus caeruleus #a1caf1 caeruleus caeruleus #70a3cc caeruleus caeruleus #bcd4e6 caeruleus caeruleus #91a3b0 caesius caesius #66aabc caesius caesius #367588 caesius caesius #70a3cc caesius caesius #436b95 caesius caesius #91a3b0 caesius caesius #536878 caesius caesius #8791bf caesius caesius #4e5180 caesius caesius #8c92ac caesius caesius #4c516d castaneus castaneus #79443b castaneus castaneus #3e1d1e castaneus castaneus #674c47 castaneus castaneus #43302e chlorinus chlorinus #8a9a5b chlorinus chlorinus #44944a chlorinus chlorinus #679267 cinnamomeus cinnamomeus #d9a6a9 cinnamomeus cinnamomeus #d99058 cinnamomeus cinnamomeus #a67b5b cinnamomeus cinnamomeus #e3a857 cinnamomeus cinnamomeus #be8a3d cinnamomeus cinnamomeus #996515 cinnamomeus cinnamomeus #c19a6b cinnamomeus cinnamomeus #826644 citrino-viridis citrinoviridis #b9b459 citrino-viridis citrinoviridis #98943e citrino-viridis citrinoviridis #867e36 corallinus corallinus #e4717a corallinus corallinus #ab4e52 corallinus corallinus #d9603b corallinus corallinus #cb6d51 croceus croceus #f4c2c2 croceus croceus #d99058 croceus croceus #fbc97f croceus croceus #e3a857 croceus croceus #fad6a5 cyaneus cyaneus #007791 cyaneus cyaneus #367588 cyaneus cyaneus #0067a5 cyaneus cyaneus #436b95 electrinus electrinus #fada5e electrinus electrinus #d4af37 electrinus electrinus #f8de7e electrinus electrinus #c9ae5d ferro-griseus ferrogriseus #57554c flavo-virens flavovirens #beb72e flavo-virens flavovirens #eae679 flavo-virens flavovirens #b9b459 flavo-virens flavovirens #ebe8a4 flavo-virens flavovirens #bdda57 flavo-virens flavovirens #7e9f2e flavo-virens flavovirens #c9dc89 flavo-virens flavovirens #8a9a5b flavo-virens flavovirens #dadfb7 flavus flavus #fada5e flavus flavus #d4af37 flavus flavus #f8de7e flavus flavus #e9e450 flavus flavus #beb72e fulvus fulvus #ae6938 fulvus fulvus #be8a3d fulvus fulvus #996515 fumosus fumosus #c1b6b3 fumosus fumosus #c2ac99 fumosus fumosus #ae9b82 fumosus fumosus #c2b280 fumosus fumosus #bfb8a5 fumosus fumosus #f2f3f4 fumosus fumosus #b9b8b5 fusco-niger fusconiger #5c504f fusco-niger fusconiger #3e322c fusco-niger fusconiger #5b504f fusco-niger fusconiger #483c32 fusco-niger fusconiger #50404d fusco-niger fusconiger #5d555b fusco-niger fusconiger #38152c fusco-niger fusconiger #555555 fuscus fuscus #905d5d fuscus fuscus #5c504f fuscus fuscus #5b504f fuscus fuscus #50404d fuscus fuscus #5d555b glauco-griseus glaucogriseus #8f9779 glauco-griseus glaucogriseus #c7e6d7 glauco-griseus glaucogriseus #8da399 glauco-griseus glaucogriseus #b2beb5 glauco-griseus glaucogriseus #7d8984 glauco-griseus glaucogriseus #91a3b0 glauco-griseus glaucogriseus #536878 glauco-griseus glaucogriseus #b4bcc0 glauco-griseus glaucogriseus #81878b glauco-venetus glaucovenetus #8da399 glauco-venetus glaucovenetus #5e716a glauco-venetus glaucovenetus #66ada4 glauco-venetus glaucovenetus #317873 glaucus glaucus #93c592 glaucus glaucus #c7e6d7 glaucus glaucus #8da399 glaucus glaucus #66ada4 glaucus glaucus #9cd1dc glaucus glaucus #bcd4e6 griseo-caeruleus griseocaeruleus #a1caf1 griseo-caeruleus griseocaeruleus #70a3cc griseo-caeruleus griseocaeruleus #bcd4e6 griseo-caeruleus griseocaeruleus #91a3b0 griseo-caeruleus griseocaeruleus #b3bce2 griseo-caeruleus griseocaeruleus #8791bf griseo-caeruleus griseocaeruleus #c0c8e1 griseo-caeruleus griseocaeruleus #8c92ac griseo-chlorinus griseochlorinus #eae679 griseo-chlorinus griseochlorinus #b9b459 griseo-chlorinus griseochlorinus #ebe8a4 griseo-chlorinus griseochlorinus #b9b57d griseo-chlorinus griseochlorinus #c9dc89 griseo-chlorinus griseochlorinus #8a9a5b griseo-chlorinus griseochlorinus #dadfb7 griseo-lavendulus griseolavendulus #8791bf griseo-lavendulus griseolavendulus #c0c8e1 griseo-lavendulus griseolavendulus #8c92ac griseo-lavendulus griseolavendulus #c4c3dd griseo-lavendulus griseolavendulus #9690ab griseo-lavendulus griseolavendulus #554c69 griseo-lavendulus griseolavendulus #b695c0 griseo-lavendulus griseolavendulus #aa98a9 griseo-lavendulus griseolavendulus #796878 griseo-lavendulus griseolavendulus #8b8589 griseo-lavendulus griseolavendulus #c3a6b1 griseo-lazulinus griseolazulinus #91a3b0 griseo-lazulinus griseolazulinus #536878 griseo-lazulinus griseolazulinus #8c92ac griseo-lazulinus griseolazulinus #4c516d griseo-lilacinus griseolilacinus #dea5a4 griseo-lilacinus griseolilacinus #aa8a9e griseo-lilacinus griseolilacinus #c3a6b1 griseo-lineus griseolineus #4997d0 griseo-lineus griseolineus #a1caf1 griseo-lineus griseolineus #70a3cc griseo-lineus griseolineus #8791bf griseo-lineus griseolineus #c0c8e1 griseo-lineus griseolineus #8c82b6 griseo-olivaceous griseoolivaceous #8c8767 griseo-olivaceous griseoolivaceous #8a8776 griseo-olivaceous griseoolivaceous #57554c griseo-roseus griseoroseus #ea9399 griseo-roseus griseoroseus #e4717a griseo-roseus griseoroseus #f9ccca griseo-roseus griseoroseus #dea5a4 griseo-roseus griseoroseus #c08081 griseo-roseus griseoroseus #ead8d7 griseo-roseus griseoroseus #c4aead griseo-roseus griseoroseus #de6fa1 griseo-roseus griseoroseus #efbbcc griseo-roseus griseoroseus #d597ae griseo-roseus griseoroseus #c17e91 griseo-sepiaceus griseosepiaceus #977f73 griseo-sepiaceus griseosepiaceus #958070 griseo-sepiaceus griseosepiaceus #635147 griseo-sepiaceus griseosepiaceus #5b504f griseo-sepiaceus griseosepiaceus #c19a6b griseo-sepiaceus griseosepiaceus #826644 griseo-sepiaceus griseosepiaceus #ae9b82 griseo-sepiaceus griseosepiaceus #7e6d5a griseo-venetus griseovenetus #96ded1 griseo-venetus griseovenetus #66ada4 griseo-violaceus griseoviolaceus #8c92ac griseo-violaceus griseoviolaceus #4c516d griseo-violaceus griseoviolaceus #604e81 griseo-violaceus griseoviolaceus #9690ab griseo-violaceus griseoviolaceus #554c69 griseo-viridis griseoviridis #44944a griseo-viridis griseoviridis #93c592 griseo-viridis griseoviridis #679267 griseo-viridis griseoviridis #6aab8e herbaceus herbaceus #b9b459 herbaceus herbaceus #98943e herbaceus herbaceus #867e36 herbaceus herbaceus #665d1e herbaceus herbaceus #7e9f2e herbaceus herbaceus #8a9a5b herbaceus herbaceus #8f9779 herbaceus herbaceus #4a5d23 herbaceus herbaceus #515744 herbaceus herbaceus #679267 herbaceus herbaceus #355e3b herbaceus herbaceus #3b7861 herbaceus herbaceus #5e716a herbaceus herbaceus #3a4b47 hinnuleus hinnuleus #977f73 hinnuleus hinnuleus #a67b5b hinnuleus hinnuleus #6f4e37 hinnuleus hinnuleus #958070 hinnuleus hinnuleus #635147 incarnatus incarnatus #e4717a incarnatus incarnatus #dea5a4 incarnatus incarnatus #f88379 incarnatus incarnatus #e66761 incarnatus incarnatus #f4c2c2 incarnatus incarnatus #d9a6a9 isabellinus isabellinus #826644 isabellinus isabellinus #a18f60 isabellinus isabellinus #967117 latericius latericius #79443b latericius latericius #977f73 latericius latericius #674c47 latericius latericius #a67b5b latericius latericius #6f4e37 latericius latericius #635147 lavendulo-griseus lavendulogriseus #91a3b0 lavendulo-griseus lavendulogriseus #b4bcc0 lavendulo-griseus lavendulogriseus #81878b lavendulo-griseus lavendulogriseus #bfb9bd lavendulo-griseus lavendulogriseus #8b8589 lavendulo-griseus lavendulogriseus #848482 lavendulus lavendulus #6c79b8 lavendulus lavendulus #b3bce2 lavendulus lavendulus #8791bf lavendulus lavendulus #7e73b8 lavendulus lavendulus #dcd0ff lavendulus lavendulus #8c82b6 lavendulus lavendulus #c4c3dd lavendulus lavendulus #9690ab lavendulus lavendulus #d6cadd lazulino-ardesiacus lazulinoardesiacus #00304e lazulino-ardesiacus lazulinoardesiacus #536878 lazulino-ardesiacus lazulinoardesiacus #36454f lazulino-ardesiacus lazulinoardesiacus #4c516d lazulinus lazulinus #00a1c2 lazulinus lazulinus #4997d0 lazulinus lazulinus #0067a5 lazulinus lazulinus #436b95 lazulinus lazulinus #30267a lazulinus lazulinus #6c79b8 lazulinus lazulinus #545aa7 lilacinus lilacinus #7e73b8 lilacinus lilacinus #8c82b6 lilacinus lilacinus #d399e6 lilacinus lilacinus #b695c0 lilacinus lilacinus #86608e lilacinus lilacinus #d6cadd lilacinus lilacinus #aa98a9 lilacinus lilacinus #9e4f88 lilacinus lilacinus #b784a7 lilacinus lilacinus #915c83 lilacinus lilacinus #aa8a9e lilacinus lilacinus #de6fa1 lilacinus lilacinus #efbbcc lilacinus lilacinus #d597ae lilacinus lilacinus #e8ccd7 lilacinus lilacinus #c3a6b1 lineus lineus #4997d0 lineus lineus #a1caf1 lineus lineus #70a3cc lineus lineus #bcd4e6 lineus lineus #91a3b0 lineus lineus #6c79b8 lineus lineus #b3bce2 lineus lineus #8791bf lineus lineus #c0c8e1 lineus lineus #8c92ac livido-purpureus lividopurpureus #86608e livido-purpureus lividopurpureus #b784a7 livido-purpureus lividopurpureus #915c83 livido-purpureus lividopurpureus #836479 livido-purpureus lividopurpureus #a8516e livido-purpureus lividopurpureus #915f6d livido-ruber lividoruber #a8516e livido-ruber lividoruber #915f6d livido-violaceus lividoviolaceus #604e97 livido-violaceus lividoviolaceus #8c82b6 livido-violaceus lividoviolaceus #604e81 livido-violaceus lividoviolaceus #875692 livido-violaceus lividoviolaceus #86608e livido-violaceus lividoviolaceus #796878 luteolus luteolus #fbc97f luteolus luteolus #e3a857 luteolus luteolus #fada5e luteolus luteolus #d4af37 luteolus luteolus #f8de7e luteolus luteolus #c9ae5d luteus luteus #ed872d luteus luteus #eaa221 luteus luteus #f3c300 luteus luteus #d4af37 malachiteus malachiteus #93c592 malachiteus malachiteus #679267 malachiteus malachiteus #3b7861 malvaceus malvaceus #d399e6 malvaceus malvaceus #875692 malvaceus malvaceus #b695c0 malvaceus malvaceus #9e4f88 malvaceus malvaceus #de6fa1 melleus melleus #e3a857 melleus melleus #996515 melleus melleus #c19a6b melleus melleus #826644 melleus melleus #c9ae5d melleus melleus #ab9144 melleus melleus #967117 miniatus miniatus #e25822 miniatus miniatus #d9603b miniatus miniatus #cb6d51 miniatus miniatus #9e4732 murinus murinus #5b504f murinus murinus #4b3621 murinus murinus #848482 murinus murinus #555555 niger niger #5b504f niger niger #57554c niger niger #36454f niger niger #50404d niger niger #5d555b niger niger #555555 niger niger #222222 obscuro-virens obscurovirens #665d1e obscuro-virens obscurovirens #5b5842 obscuro-virens obscurovirens #4a5d23 obscuro-virens obscurovirens #515744 obscuro-virens obscurovirens #3b7861 obscuro-virens obscurovirens #1b4d3e obscuro-virens obscurovirens #5e716a obscuro-virens obscurovirens #3a4b47 ochraceus ochraceus #f4c2c2 ochraceus ochraceus #d9a6a9 ochraceus ochraceus #ed872d ochraceus ochraceus #d99058 ochraceus ochraceus #eaa221 ochraceus ochraceus #c98500 ochraceus ochraceus #be8a3d olivaceo-bubalinus olivaceobubalinus #f3e5ab olivaceo-bubalinus olivaceobubalinus #c2b280 olivaceo-citrinus olivaceocitrinus #af8d13 olivaceo-citrinus olivaceocitrinus #ab9144 olivaceo-citrinus olivaceocitrinus #967117 olivaceo-citrinus olivaceocitrinus #6c541e olivaceo-citrinus olivaceocitrinus #98943e olivaceo-citrinus olivaceocitrinus #867e36 olivaceo-citrinus olivaceocitrinus #665d1e olivaceo-griseus olivaceogriseus #5b5842 olivaceo-griseus olivaceogriseus #8a8776 olivaceo-griseus olivaceogriseus #57554c olivaceo-niger olivaceoniger #57554c olivaceo-niger olivaceoniger #515744 olivaceo-niger olivaceoniger #31362b olivaceo-niger olivaceoniger #4e5755 olivaceo-niger olivaceoniger #555555 olivaceus olivaceus #7e6d5a olivaceus olivaceus #483c32 olivaceus olivaceus #ab9144 olivaceus olivaceus #a18f60 olivaceus olivaceus #967117 olivaceus olivaceus #6c541e olivaceus olivaceus #98943e olivaceus olivaceus #867e36 olivaceus olivaceus #665d1e olivaceus olivaceus #5b5842 persicinus persicinus #f88379 persicinus persicinus #f4c2c2 persicinus persicinus #d9a6a9 persicinus persicinus #d9603b persicinus persicinus #cb6d51 persicinus persicinus #fd943f persicinus persicinus #fab57f persicinus persicinus #d99058 pistaceus pistaceus #8a9a5b pistaceus pistaceus #8f9779 pistaceus pistaceus #93c592 pistaceus pistaceus #679267 pistaceus pistaceus #6aab8e pistaceus pistaceus #8da399 pistaceus pistaceus #5e716a plumbeo-niger plumbeoniger #51585e plumbeus plumbeus #91a3b0 plumbeus plumbeus #536878 plumbeus plumbeus #81878b plumbeus plumbeus #51585e prasinus prasinus #c9dc89 prasinus prasinus #b6e5af prasinus prasinus #93c592 prasinus prasinus #8ed1b2 prasinus prasinus #c7e6d7 primulinus primulinus #f3e5ab primulinus primulinus #eae679 primulinus primulinus #b9b459 purpureo-ardesiacus purpureoardesiacus #796878 purpureo-ardesiacus purpureoardesiacus #50404d purpureo-ardesiacus purpureoardesiacus #5d3954 purpureo-ardesiacus purpureoardesiacus #836479 purpureo-griseus purpureogriseus #796878 purpureo-griseus purpureogriseus #8b8589 purpureo-griseus purpureogriseus #5d555b purpureo-griseus purpureogriseus #848482 purpureus purpureus #9a4eae purpureus purpureus #875692 purpureus purpureus #602f6b purpureus purpureus #86608e purpureus purpureus #870074 purpureus purpureus #9e4f88 purpureus purpureus #702963 purpureus purpureus #b3446c purpureus purpureus #78184a purpureus purpureus #a8516e purpureus purpureus #915f6d roseo-bubalinus roseobubalinus #f4c2c2 roseo-bubalinus roseobubalinus #d9a6a9 roseo-bubalinus roseobubalinus #ecd5c5 roseo-bubalinus roseobubalinus #c7ada3 roseo-bubalinus roseobubalinus #c2ac99 roseo-bubalinus roseobubalinus #fad6a5 roseo-vinosus roseovinosus #f4c2c2 roseo-vinosus roseovinosus #d9a6a9 roseo-vinosus roseovinosus #ecd5c5 roseo-vinosus roseovinosus #c7ada3 roseo-vinosus roseovinosus #b4745e roseo-vinosus roseovinosus #a87c6d roseus roseus #ffb5ba roseus roseus #ea9399 roseus roseus #e4717a roseus roseus #ab4e52 roseus roseus #f88379 roseus roseus #e66761 roseus roseus #9e4f88 roseus roseus #ffc8d6 roseus roseus #e68fac roseus roseus #de6fa1 roseus roseus #efbbcc roseus roseus #ce4676 roseus roseus #b3446c ruber ruber #be0032 ruber ruber #bc3f4a ruber ruber #ce4676 ruber ruber #78184a ruber ruber #a8516e ruber ruber #915f6d salmoneus salmoneus #d9a6a9 salmoneus salmoneus #ecd5c5 salmoneus salmoneus #c2ac99 salmoneus salmoneus #fab57f salmoneus salmoneus #d99058 salmoneus salmoneus #e3a857 salmoneus salmoneus #fad6a5 salmoneus salmoneus #f3e5ab senatus senatus #be6516 senatus senatus #c98500 senatus senatus #be8a3d senatus senatus #996515 sepiaceus sepiaceus #6f4e37 sepiaceus sepiaceus #635147 sepiaceus sepiaceus #826644 sepiaceus sepiaceus #7e6d5a sepiaceus sepiaceus #483c32 sepiaceus sepiaceus #6c541e stramineus stramineus #f8de7e stramineus stramineus #f3e5ab stramineus stramineus #eae679 stramineus stramineus #b9b459 stramineus stramineus #ebe8a4 sublazulinus sublazulinus #4997d0 sublazulinus sublazulinus #0067a5 sublazulinus sublazulinus #a1caf1 sublazulinus sublazulinus #70a3cc sublazulinus sublazulinus #bcd4e6 sublazulinus sublazulinus #91a3b0 sublazulinus sublazulinus #30267a sublazulinus sublazulinus #6c79b8 sublazulinus sublazulinus #545aa7 sublazulinus sublazulinus #b3bce2 sublazulinus sublazulinus #8791bf sublazulinus sublazulinus #c0c8e1 sublazulinus sublazulinus #8c92ac submurinus submurinus #c1b6b3 submurinus submurinus #8e8279 submurinus submurinus #bfb8a5 submurinus submurinus #b9b8b5 subolivaceo-griseus subolivaceogriseus #f0ead6 subolivaceo-griseus subolivaceogriseus #bfb8a5 subolivaceo-griseus subolivaceogriseus #8c8767 subolivaceo-griseus subolivaceogriseus #8a8776 subpurpureo-griseus subpurpureogriseus #bfb9bd subpurpureo-griseus subpurpureogriseus #8b8589 subvinoso-griseus subvinosogriseus #c4aead subvinoso-griseus subvinosogriseus #c1b6b3 subvinoso-griseus subvinosogriseus #ad8884 subvinoso-griseus subvinosogriseus #905d5d subvinoso-griseus subvinosogriseus #8f817f subvinoso-griseus subvinosogriseus #958070 subvinoso-griseus subvinosogriseus #aa98a9 subvinoso-griseus subvinosogriseus #796878 subvinoso-griseus subvinosogriseus #bfb9bd subvinoso-griseus subvinosogriseus #8b8589 subvinoso-griseus subvinosogriseus #e8ccd7 subvinoso-griseus subvinosogriseus #c3a6b1 subvinosus subvinosus #f9ccca subvinosus subvinosus #dea5a4 subvinosus subvinosus #ead8d7 subvinosus subvinosus #c4aead subvinosus subvinosus #c1b6b3 subvinosus subvinosus #ecd5c5 subvinosus subvinosus #c7ada3 subviolaceous subviolaceous #30267a subviolaceous subviolaceous #6c79b8 subviolaceous subviolaceous #545aa7 subviolaceous subviolaceous #b3bce2 subviolaceous subviolaceous #8791bf subviolaceous subviolaceous #c0c8e1 subviolaceous subviolaceous #8c92ac subviolaceous subviolaceous #7e73b8 subviolaceous subviolaceous #dcd0ff subviolaceous subviolaceous #8c82b6 subviolaceous subviolaceous #c4c3dd subviolaceous subviolaceous #9690ab subviolaceous subviolaceous #d399e6 subviolaceous subviolaceous #d5badb subviolaceous subviolaceous #b695c0 subviridi-griseus subviridigriseus #b4bcc0 subviridi-griseus subviridigriseus #b9b8b5 subviridis subviridis #bdda57 subviridis subviridis #c9dc89 subviridis subviridis #dadfb7 subviridis subviridis #83d37d subviridis subviridis #93c592 sulphureus sulphureus #e9e450 sulphureus sulphureus #eae679 sulphureus sulphureus #b9b459 sulphureus sulphureus #ebe8a4 testaceus testaceus #f88379 testaceus testaceus #d9a6a9 testaceus testaceus #b4745e testaceus testaceus #a87c6d testaceus testaceus #79443b testaceus testaceus #d99058 testaceus testaceus #a67b5b umbrinus umbrinus #79443b umbrinus umbrinus #674c47 umbrinus umbrinus #80461b umbrinus umbrinus #a67b5b umbrinus umbrinus #6f4e37 umbrinus umbrinus #996515 umbrinus umbrinus #826644 umbrinus umbrinus #4b3621 venetus venetus #00a693 venetus venetus #007a74 venetus venetus #66ada4 venetus venetus #317873 vinoso-bubalinus vinosobubalinus #c1b6b3 vinoso-bubalinus vinosobubalinus #f4c2c2 vinoso-bubalinus vinosobubalinus #d9a6a9 vinoso-bubalinus vinosobubalinus #ecd5c5 vinoso-bubalinus vinosobubalinus #c7ada3 vinoso-bubalinus vinosobubalinus #c2ac99 vinoso-bubalinus vinosobubalinus #c19a6b vinoso-bubalinus vinosobubalinus #ae9b82 vinoso-griseus vinosogriseus #905d5d vinoso-griseus vinosogriseus #5c504f vinoso-griseus vinosogriseus #977f73 vinoso-griseus vinosogriseus #958070 vinoso-griseus vinosogriseus #635147 vinoso-griseus vinosogriseus #796878 vinoso-lividus vinosolividus #ad8884 vinoso-lividus vinosolividus #905d5d vinoso-lividus vinosolividus #a87c6d vinoso-lividus vinosolividus #674c47 vinoso-lividus vinosolividus #c17e91 vinoso-lividus vinosolividus #915f6d vinoso-purpureus vinosopurpureus #836479 vinosus vinosus #e4717a vinosus vinosus #c08081 vinosus vinosus #905d5d vinosus vinosus #f88379 violaceo-ardesiacus violaceoardesiacus #796878 violaceo-ardesiacus violaceoardesiacus #50404d violaceo-ardesiacus violaceoardesiacus #5d555b violaceo-griseus violaceogriseus #536878 violaceo-griseus violaceogriseus #4c516d violaceo-griseus violaceogriseus #796878 violaceo-griseus violaceogriseus #8b8589 violaceo-griseus violaceogriseus #5d555b violaceo-griseus violaceogriseus #848482 violaceo-griseus violaceogriseus #555555 violaceo-niger violaceoniger #50404d violaceo-niger violaceoniger #5d555b violaceo-niger violaceoniger #555555 violaceo-niger violaceoniger #222222 violaceus violaceus #30267a violaceus violaceus #545aa7 violaceus violaceus #4e5180 violaceus violaceus #9065ca violaceus violaceus #7e73b8 violaceus violaceus #604e97 violaceus violaceus #8c82b6 violaceus violaceus #604e81 violaceus violaceus #9a4eae violaceus violaceus #602f6b violaceus violaceus #86608e viridi-caeruleus viridicaeruleus #3eb489 viridi-caeruleus viridicaeruleus #6aab8e viridi-caeruleus viridicaeruleus #c7e6d7 viridi-caeruleus viridicaeruleus #96ded1 viridi-caeruleus viridicaeruleus #66ada4 viridi-flavus viridiflavus #e9e450 viridi-flavus viridiflavus #beb72e viridi-flavus viridiflavus #eae679 viridi-flavus viridiflavus #b9b459 viridi-flavus viridiflavus #ebe8a4 viridi-flavus viridiflavus #8db600 viridi-flavus viridiflavus #bdda57 viridi-flavus viridiflavus #7e9f2e viridi-flavus viridiflavus #c9dc89 viridi-flavus viridiflavus #8a9a5b viridi-glaucus viridiglaucus #c9dc89 viridi-glaucus viridiglaucus #dadfb7 viridi-glaucus viridiglaucus #8ed1b2 viridi-glaucus viridiglaucus #c7e6d7 viridi-griseus viridigriseus #8a9a5b viridi-griseus viridigriseus #8f9779 viridi-griseus viridigriseus #8da399 viridi-griseus viridigriseus #5e716a viridi-griseus viridigriseus #b2beb5 viridi-griseus viridigriseus #7d8984 viridi-griseus viridigriseus #81878b viridi-griseus viridigriseus #51585e viridi-griseus viridigriseus #b9b8b5 viridi-griseus viridigriseus #848482 viridi-niger viridiniger #555555 viridi-olivaceus viridiolivaceus #a18f60 viridi-olivaceus viridiolivaceus #867e36 viridi-olivaceus viridiolivaceus #8a9a5b viridi-olivaceus viridiolivaceus #8f9779 viridis viridis #8db600 viridis viridis #bdda57 viridis viridis #7e9f2e viridis viridis #83d37d viridis viridis #93c592 viridis viridis #3eb489 =cut sub _load_color_list() { return [ ['nbs-iscc-b:aerugineus.135','aerugineus','aerugineus ',[147,197,146],'93c592',9684370], ['nbs-iscc-b:aerugineus.136','aerugineus','aerugineus ',[103,146,103],'679267',6787687], ['nbs-iscc-b:aerugineus.144','aerugineus','aerugineus ',[106,171,142],'6aab8e',6990734], ['nbs-iscc-b:aerugineus.145','aerugineus','aerugineus ',[59,120,97],'3b7861',3897441], ['nbs-iscc-b:aerugineus.149','aerugineus','aerugineus ',[141,163,153],'8da399',9282457], ['nbs-iscc-b:aerugineus.150','aerugineus','aerugineus ',[94,113,106],'5e716a',6189418], ['nbs-iscc-b:aerugineus.163','aerugineus','aerugineus ',[102,173,164],'66ada4',6729124], ['nbs-iscc-b:aerugineus.164','aerugineus','aerugineus ',[49,120,115],'317873',3242099], ['nbs-iscc-b:armeniacus.37','armeniacus','armeniacus',[203,109,81],'cb6d51',13331793], ['nbs-iscc-b:armeniacus.53','armeniacus','armeniacus',[217,144,88],'d99058',14258264], ['nbs-iscc-b:atroardesiacus.151','atroardesiacus','atroardesiacus',[58,75,71],'3a4b47',3820359], ['nbs-iscc-b:atroardesiacus.156','atroardesiacus','atroardesiacus',[78,87,85],'4e5755',5134165], ['nbs-iscc-b:atroardesiacus.183','atroardesiacus','atroardesiacus',[0,48,78],'00304e',12366], ['nbs-iscc-b:atroardesiacus.186','atroardesiacus','atroardesiacus',[83,104,120],'536878',5466232], ['nbs-iscc-b:atroardesiacus.187','atroardesiacus','atroardesiacus',[54,69,79],'36454f',3556687], ['nbs-iscc-b:atroardesiacus.188','atroardesiacus','atroardesiacus',[32,40,48],'202830',2107440], ['nbs-iscc-b:atroardesiacus.192','atroardesiacus','atroardesiacus',[81,88,94],'51585e',5331038], ['nbs-iscc-b:atroardesiacus.193','atroardesiacus','atroardesiacus',[32,36,40],'202428',2106408], ['nbs-iscc-b:atroardesiacus.234','atroardesiacus','atroardesiacus',[93,85,91],'5d555b',6116699], ['nbs-iscc-b:atroardesiacus.266','atroardesiacus','atroardesiacus',[85,85,85],'555555',5592405], ['nbs-iscc-b:atroardesiacus.267','atroardesiacus','atroardesiacus',[34,34,34],'222222',2236962], ['nbs-iscc-b:atrocyaneus.164','atrocyaneus','atrocyaneus ',[49,120,115],'317873',3242099], ['nbs-iscc-b:atrocyaneus.165','atrocyaneus','atrocyaneus ',[0,75,73],'004b49',19273], ['nbs-iscc-b:atrocyaneus.173','atrocyaneus','atrocyaneus ',[54,117,136],'367588',3569032], ['nbs-iscc-b:atrocyaneus.174','atrocyaneus','atrocyaneus ',[0,73,88],'004958',18776], ['nbs-iscc-b:atrocyaneus.182','atrocyaneus','atrocyaneus ',[67,107,149],'436b95',4418453], ['nbs-iscc-b:atrocyaneus.183','atrocyaneus','atrocyaneus ',[0,48,78],'00304e',12366], ['nbs-iscc-b:atrocyaneus.186','atrocyaneus','atrocyaneus ',[83,104,120],'536878',5466232], ['nbs-iscc-b:atroherbaceus.106','atroherbaceus','atroherbaceus',[134,126,54],'867e36',8814134], ['nbs-iscc-b:atroherbaceus.107','atroherbaceus','atroherbaceus',[102,93,30],'665d1e',6708510], ['nbs-iscc-b:atroherbaceus.120','atroherbaceus','atroherbaceus',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-b:atroherbaceus.125','atroherbaceus','atroherbaceus',[74,93,35],'4a5d23',4873507], ['nbs-iscc-b:atroherbaceus.127','atroherbaceus','atroherbaceus',[81,87,68],'515744',5330756], ['nbs-iscc-b:atroherbaceus.137','atroherbaceus','atroherbaceus',[53,94,59],'355e3b',3497531], ['nbs-iscc-b:atroherbaceus.145','atroherbaceus','atroherbaceus',[59,120,97],'3b7861',3897441], ['nbs-iscc-b:atroherbaceus.150','atroherbaceus','atroherbaceus',[94,113,106],'5e716a',6189418], ['nbs-iscc-b:atrolazulinus.176','atrolazulinus','atrolazulinus',[0,161,194],'00a1c2',41410], ['nbs-iscc-b:atrolazulinus.178','atrolazulinus','atrolazulinus',[0,103,165],'0067a5',26533], ['nbs-iscc-b:atrolazulinus.179','atrolazulinus','atrolazulinus',[0,65,106],'00416a',16746], ['nbs-iscc-b:atrolazulinus.182','atrolazulinus','atrolazulinus',[67,107,149],'436b95',4418453], ['nbs-iscc-b:atrolazulinus.183','atrolazulinus','atrolazulinus',[0,48,78],'00304e',12366], ['nbs-iscc-b:atrolazulinus.186','atrolazulinus','atrolazulinus',[83,104,120],'536878',5466232], ['nbs-iscc-b:atrolazulinus.187','atrolazulinus','atrolazulinus',[54,69,79],'36454f',3556687], ['nbs-iscc-b:atrolazulinus.196','atrolazulinus','atrolazulinus',[84,90,167],'545aa7',5528231], ['nbs-iscc-b:atrolazulinus.200','atrolazulinus','atrolazulinus',[78,81,128],'4e5180',5132672], ['nbs-iscc-b:atrolazulinus.204','atrolazulinus','atrolazulinus',[76,81,109],'4c516d',5001581], ['nbs-iscc-b:atrolividus.223','atrolividus','atrolividus',[134,96,142],'86608e',8806542], ['nbs-iscc-b:atrolividus.224','atrolividus','atrolividus',[86,60,92],'563c5c',5651548], ['nbs-iscc-b:atrolividus.228','atrolividus','atrolividus',[121,104,120],'796878',7956600], ['nbs-iscc-b:atrolividus.229','atrolividus','atrolividus',[80,64,77],'50404d',5259341], ['nbs-iscc-b:atrolividus.242','atrolividus','atrolividus',[93,57,84],'5d3954',6109524], ['nbs-iscc-b:atrolividus.259','atrolividus','atrolividus',[103,49,71],'673147',6762823], ['nbs-iscc-b:atromurinus.64','atromurinus','atromurinus',[91,80,79],'5b504f',5984335], ['nbs-iscc-b:atromurinus.266','atromurinus','atromurinus',[85,85,85],'555555',5592405], ['nbs-iscc-b:atropurpureus.219','atropurpureus','atropurpureus',[96,47,107],'602f6b',6303595], ['nbs-iscc-b:atropurpureus.223','atropurpureus','atropurpureus',[134,96,142],'86608e',8806542], ['nbs-iscc-b:atropurpureus.224','atropurpureus','atropurpureus',[86,60,92],'563c5c',5651548], ['nbs-iscc-b:atropurpureus.229','atropurpureus','atropurpureus',[80,64,77],'50404d',5259341], ['nbs-iscc-b:atropurpureus.237','atropurpureus','atropurpureus',[158,79,136],'9e4f88',10375048], ['nbs-iscc-b:atropurpureus.238','atropurpureus','atropurpureus',[112,41,99],'702963',7350627], ['nbs-iscc-b:atropurpureus.241','atropurpureus','atropurpureus',[145,92,131],'915c83',9526403], ['nbs-iscc-b:atropurpureus.242','atropurpureus','atropurpureus',[93,57,84],'5d3954',6109524], ['nbs-iscc-b:atropurpureus.243','atropurpureus','atropurpureus',[52,23,49],'341731',3413809], ['nbs-iscc-b:atropurpureus.259','atropurpureus','atropurpureus',[103,49,71],'673147',6762823], ['nbs-iscc-b:atrovenetus.145','atrovenetus','atrovenetus',[59,120,97],'3b7861',3897441], ['nbs-iscc-b:atrovenetus.146','atrovenetus','atrovenetus',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-b:atrovenetus.150','atrovenetus','atrovenetus',[94,113,106],'5e716a',6189418], ['nbs-iscc-b:atrovenetus.151','atrovenetus','atrovenetus',[58,75,71],'3a4b47',3820359], ['nbs-iscc-b:atrovenetus.156','atrovenetus','atrovenetus',[78,87,85],'4e5755',5134165], ['nbs-iscc-b:atrovenetus.160','atrovenetus','atrovenetus',[0,122,116],'007a74',31348], ['nbs-iscc-b:atrovenetus.164','atrovenetus','atrovenetus',[49,120,115],'317873',3242099], ['nbs-iscc-b:atrovenetus.165','atrovenetus','atrovenetus',[0,75,73],'004b49',19273], ['nbs-iscc-b:atrovenetus.173','atrovenetus','atrovenetus',[54,117,136],'367588',3569032], ['nbs-iscc-b:atrovenetus.186','atrovenetus','atrovenetus',[83,104,120],'536878',5466232], ['nbs-iscc-b:atrovenetus.187','atrovenetus','atrovenetus',[54,69,79],'36454f',3556687], ['nbs-iscc-b:atrovinosus.19','atrovinosus','atrovinosus',[144,93,93],'905d5d',9461085], ['nbs-iscc-b:atrovinosus.20','atrovinosus','atrovinosus',[84,61,63],'543d3f',5520703], ['nbs-iscc-b:atrovinosus.46','atrovinosus','atrovinosus',[103,76,71],'674c47',6769735], ['nbs-iscc-b:atrovinosus.229','atrovinosus','atrovinosus',[80,64,77],'50404d',5259341], ['nbs-iscc-b:atrovinosus.259','atrovinosus','atrovinosus',[103,49,71],'673147',6762823], ['nbs-iscc-b:atrovinosus.262','atrovinosus','atrovinosus',[145,95,109],'915f6d',9527149], ['nbs-iscc-b:atroviolaceus.187','atroviolaceus','atroviolaceus',[54,69,79],'36454f',3556687], ['nbs-iscc-b:atroviolaceus.197','atroviolaceus','atroviolaceus',[39,36,88],'272458',2565208], ['nbs-iscc-b:atroviolaceus.200','atroviolaceus','atroviolaceus',[78,81,128],'4e5180',5132672], ['nbs-iscc-b:atroviolaceus.201','atroviolaceus','atroviolaceus',[37,36,64],'252440',2434112], ['nbs-iscc-b:atroviolaceus.204','atroviolaceus','atroviolaceus',[76,81,109],'4c516d',5001581], ['nbs-iscc-b:atroviolaceus.211','atroviolaceus','atroviolaceus',[96,78,129],'604e81',6311553], ['nbs-iscc-b:atroviolaceus.212','atroviolaceus','atroviolaceus',[47,33,64],'2f2140',3088704], ['nbs-iscc-b:atroviolaceus.215','atroviolaceus','atroviolaceus',[85,76,105],'554c69',5590121], ['nbs-iscc-b:atroviolaceus.219','atroviolaceus','atroviolaceus',[96,47,107],'602f6b',6303595], ['nbs-iscc-b:atroviolaceus.224','atroviolaceus','atroviolaceus',[86,60,92],'563c5c',5651548], ['nbs-iscc-b:atroviolaceus.228','atroviolaceus','atroviolaceus',[121,104,120],'796878',7956600], ['nbs-iscc-b:atroviolaceus.229','atroviolaceus','atroviolaceus',[80,64,77],'50404d',5259341], ['nbs-iscc-b:atroviridis.117','atroviridis','atroviridis',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-b:atroviridis.120','atroviridis','atroviridis',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-b:atroviridis.125','atroviridis','atroviridis',[74,93,35],'4a5d23',4873507], ['nbs-iscc-b:atroviridis.127','atroviridis','atroviridis',[81,87,68],'515744',5330756], ['nbs-iscc-b:atroviridis.136','atroviridis','atroviridis',[103,146,103],'679267',6787687], ['nbs-iscc-b:atroviridis.137','atroviridis','atroviridis',[53,94,59],'355e3b',3497531], ['nbs-iscc-b:atroviridis.140','atroviridis','atroviridis',[62,180,137],'3eb489',4109449], ['nbs-iscc-b:atroviridis.141','atroviridis','atroviridis',[0,121,89],'007959',31065], ['nbs-iscc-b:atroviridis.145','atroviridis','atroviridis',[59,120,97],'3b7861',3897441], ['nbs-iscc-b:atroviridis.146','atroviridis','atroviridis',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-b:atroviridis.150','atroviridis','atroviridis',[94,113,106],'5e716a',6189418], ['nbs-iscc-b:atroviridis.151','atroviridis','atroviridis',[58,75,71],'3a4b47',3820359], ['nbs-iscc-b:atroviridis.156','atroviridis','atroviridis',[78,87,85],'4e5755',5134165], ['nbs-iscc-b:atroviridis.164','atroviridis','atroviridis',[49,120,115],'317873',3242099], ['nbs-iscc-b:atroviridis.165','atroviridis','atroviridis',[0,75,73],'004b49',19273], ['nbs-iscc-b:aurantiacus.48','aurantiacus','aurantiacus',[243,132,0],'f38400',15959040], ['nbs-iscc-b:aurantiacus.50','aurantiacus','aurantiacus',[237,135,45],'ed872d',15566637], ['nbs-iscc-b:aurantiacus.68','aurantiacus','aurantiacus',[234,162,33],'eaa221',15376929], ['nbs-iscc-b:avellaneus.76','avellaneus','avellaneus',[193,154,107],'c19a6b',12687979], ['nbs-iscc-b:avellaneus.77','avellaneus','avellaneus',[130,102,68],'826644',8545860], ['nbs-iscc-b:avellaneus.79','avellaneus','avellaneus',[174,155,130],'ae9b82',11443074], ['nbs-iscc-b:badius.15','badius','badius',[171,78,82],'ab4e52',11226706], ['nbs-iscc-b:badius.19','badius','badius',[144,93,93],'905d5d',9461085], ['nbs-iscc-b:badius.20','badius','badius',[84,61,63],'543d3f',5520703], ['nbs-iscc-b:badius.40','badius','badius',[136,45,23],'882d17',8924439], ['nbs-iscc-b:badius.43','badius','badius',[121,68,59],'79443b',7947323], ['nbs-iscc-b:badius.46','badius','badius',[103,76,71],'674c47',6769735], ['nbs-iscc-b:brunneovinosus.19','brunneovinosus','brunneo-vinosus',[144,93,93],'905d5d',9461085], ['nbs-iscc-b:brunneovinosus.20','brunneovinosus','brunneo-vinosus',[84,61,63],'543d3f',5520703], ['nbs-iscc-b:brunneovinosus.23','brunneovinosus','brunneo-vinosus',[92,80,79],'5c504f',6049871], ['nbs-iscc-b:brunneovinosus.46','brunneovinosus','brunneo-vinosus',[103,76,71],'674c47',6769735], ['nbs-iscc-b:brunneovinosus.61','brunneovinosus','brunneo-vinosus',[99,81,71],'635147',6508871], ['nbs-iscc-b:brunneovinosus.64','brunneovinosus','brunneo-vinosus',[91,80,79],'5b504f',5984335], ['nbs-iscc-b:brunneovinosus.229','brunneovinosus','brunneo-vinosus',[80,64,77],'50404d',5259341], ['nbs-iscc-b:brunneovinosus.259','brunneovinosus','brunneo-vinosus',[103,49,71],'673147',6762823], ['nbs-iscc-b:bubalinus.28','bubalinus','bubalinus',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-b:bubalinus.71','bubalinus','bubalinus',[227,168,87],'e3a857',14919767], ['nbs-iscc-b:bubalinus.73','bubalinus','bubalinus',[250,214,165],'fad6a5',16438949], ['nbs-iscc-b:bubalinus.86','bubalinus','bubalinus',[248,222,126],'f8de7e',16309886], ['nbs-iscc-b:bubalinus.87','bubalinus','bubalinus',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-b:bubalinus.89','bubalinus','bubalinus',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-b:caeruleoglaucus.148','caeruleoglaucus','caeruleo-glaucus',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-b:caeruleoglaucus.162','caeruleoglaucus','caeruleo-glaucus',[150,222,209],'96ded1',9887441], ['nbs-iscc-b:caeruleoglaucus.172','caeruleoglaucus','caeruleo-glaucus',[102,170,188],'66aabc',6728380], ['nbs-iscc-b:caeruleoglaucus.184','caeruleoglaucus','caeruleo-glaucus',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-b:caeruleoglaucus.185','caeruleoglaucus','caeruleo-glaucus',[145,163,176],'91a3b0',9544624], ['nbs-iscc-b:caeruleogriseus.184','caeruleogriseus','caeruleo-griseus',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-b:caeruleogriseus.185','caeruleogriseus','caeruleo-griseus',[145,163,176],'91a3b0',9544624], ['nbs-iscc-b:caeruleogriseus.186','caeruleogriseus','caeruleo-griseus',[83,104,120],'536878',5466232], ['nbs-iscc-b:caeruleogriseus.191','caeruleogriseus','caeruleo-griseus',[129,135,139],'81878b',8488843], ['nbs-iscc-b:caeruleogriseus.203','caeruleogriseus','caeruleo-griseus',[140,146,172],'8c92ac',9212588], ['nbs-iscc-b:caeruleus.148','caeruleus','caeruleus',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-b:caeruleus.162','caeruleus','caeruleus',[150,222,209],'96ded1',9887441], ['nbs-iscc-b:caeruleus.163','caeruleus','caeruleus',[102,173,164],'66ada4',6729124], ['nbs-iscc-b:caeruleus.168','caeruleus','caeruleus',[35,158,186],'239eba',2334394], ['nbs-iscc-b:caeruleus.171','caeruleus','caeruleus',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-b:caeruleus.172','caeruleus','caeruleus',[102,170,188],'66aabc',6728380], ['nbs-iscc-b:caeruleus.180','caeruleus','caeruleus',[161,202,241],'a1caf1',10603249], ['nbs-iscc-b:caeruleus.181','caeruleus','caeruleus',[112,163,204],'70a3cc',7381964], ['nbs-iscc-b:caeruleus.184','caeruleus','caeruleus',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-b:caeruleus.185','caeruleus','caeruleus',[145,163,176],'91a3b0',9544624], ['nbs-iscc-b:caesius.172','caesius','caesius',[102,170,188],'66aabc',6728380], ['nbs-iscc-b:caesius.173','caesius','caesius',[54,117,136],'367588',3569032], ['nbs-iscc-b:caesius.181','caesius','caesius',[112,163,204],'70a3cc',7381964], ['nbs-iscc-b:caesius.182','caesius','caesius',[67,107,149],'436b95',4418453], ['nbs-iscc-b:caesius.185','caesius','caesius',[145,163,176],'91a3b0',9544624], ['nbs-iscc-b:caesius.186','caesius','caesius',[83,104,120],'536878',5466232], ['nbs-iscc-b:caesius.199','caesius','caesius',[135,145,191],'8791bf',8884671], ['nbs-iscc-b:caesius.200','caesius','caesius',[78,81,128],'4e5180',5132672], ['nbs-iscc-b:caesius.203','caesius','caesius',[140,146,172],'8c92ac',9212588], ['nbs-iscc-b:caesius.204','caesius','caesius',[76,81,109],'4c516d',5001581], ['nbs-iscc-b:castaneus.43','castaneus','castaneus',[121,68,59],'79443b',7947323], ['nbs-iscc-b:castaneus.44','castaneus','castaneus',[62,29,30],'3e1d1e',4070686], ['nbs-iscc-b:castaneus.46','castaneus','castaneus',[103,76,71],'674c47',6769735], ['nbs-iscc-b:castaneus.47','castaneus','castaneus',[67,48,46],'43302e',4403246], ['nbs-iscc-b:chlorinus.120','chlorinus','chlorinus',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-b:chlorinus.131','chlorinus','chlorinus',[68,148,74],'44944a',4494410], ['nbs-iscc-b:chlorinus.136','chlorinus','chlorinus',[103,146,103],'679267',6787687], ['nbs-iscc-b:cinnamomeus.29','cinnamomeus','cinnamomeus',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-b:cinnamomeus.53','cinnamomeus','cinnamomeus',[217,144,88],'d99058',14258264], ['nbs-iscc-b:cinnamomeus.57','cinnamomeus','cinnamomeus',[166,123,91],'a67b5b',10910555], ['nbs-iscc-b:cinnamomeus.71','cinnamomeus','cinnamomeus',[227,168,87],'e3a857',14919767], ['nbs-iscc-b:cinnamomeus.72','cinnamomeus','cinnamomeus',[190,138,61],'be8a3d',12487229], ['nbs-iscc-b:cinnamomeus.74','cinnamomeus','cinnamomeus',[153,101,21],'996515',10052885], ['nbs-iscc-b:cinnamomeus.76','cinnamomeus','cinnamomeus',[193,154,107],'c19a6b',12687979], ['nbs-iscc-b:cinnamomeus.77','cinnamomeus','cinnamomeus',[130,102,68],'826644',8545860], ['nbs-iscc-b:citrinoviridis.102','citrinoviridis','citrino-viridis ',[185,180,89],'b9b459',12170329], ['nbs-iscc-b:citrinoviridis.103','citrinoviridis','citrino-viridis ',[152,148,62],'98943e',9999422], ['nbs-iscc-b:citrinoviridis.106','citrinoviridis','citrino-viridis ',[134,126,54],'867e36',8814134], ['nbs-iscc-b:corallinus.3','corallinus','corallinus ',[228,113,122],'e4717a',14971258], ['nbs-iscc-b:corallinus.15','corallinus','corallinus ',[171,78,82],'ab4e52',11226706], ['nbs-iscc-b:corallinus.35','corallinus','corallinus ',[217,96,59],'d9603b',14245947], ['nbs-iscc-b:corallinus.37','corallinus','corallinus ',[203,109,81],'cb6d51',13331793], ['nbs-iscc-b:croceus.28','croceus','croceus',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-b:croceus.53','croceus','croceus',[217,144,88],'d99058',14258264], ['nbs-iscc-b:croceus.70','croceus','croceus',[251,201,127],'fbc97f',16501119], ['nbs-iscc-b:croceus.71','croceus','croceus',[227,168,87],'e3a857',14919767], ['nbs-iscc-b:croceus.73','croceus','croceus',[250,214,165],'fad6a5',16438949], ['nbs-iscc-b:cyaneus.169','cyaneus','cyaneus',[0,119,145],'007791',30609], ['nbs-iscc-b:cyaneus.173','cyaneus','cyaneus',[54,117,136],'367588',3569032], ['nbs-iscc-b:cyaneus.178','cyaneus','cyaneus',[0,103,165],'0067a5',26533], ['nbs-iscc-b:cyaneus.182','cyaneus','cyaneus',[67,107,149],'436b95',4418453], ['nbs-iscc-b:electrinus.83','electrinus','electrinus',[250,218,94],'fada5e',16439902], ['nbs-iscc-b:electrinus.84','electrinus','electrinus',[212,175,55],'d4af37',13938487], ['nbs-iscc-b:electrinus.86','electrinus','electrinus',[248,222,126],'f8de7e',16309886], ['nbs-iscc-b:electrinus.87','electrinus','electrinus',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-b:ferrogriseus.113','ferrogriseus','ferro-griseus',[87,85,76],'57554c',5723468], ['nbs-iscc-b:flavovirens.99','flavovirens','flavo-virens',[190,183,46],'beb72e',12498734], ['nbs-iscc-b:flavovirens.101','flavovirens','flavo-virens',[234,230,121],'eae679',15394425], ['nbs-iscc-b:flavovirens.102','flavovirens','flavo-virens',[185,180,89],'b9b459',12170329], ['nbs-iscc-b:flavovirens.104','flavovirens','flavo-virens',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-b:flavovirens.116','flavovirens','flavo-virens',[189,218,87],'bdda57',12442199], ['nbs-iscc-b:flavovirens.117','flavovirens','flavo-virens',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-b:flavovirens.119','flavovirens','flavo-virens',[201,220,137],'c9dc89',13229193], ['nbs-iscc-b:flavovirens.120','flavovirens','flavo-virens',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-b:flavovirens.121','flavovirens','flavo-virens',[218,223,183],'dadfb7',14344119], ['nbs-iscc-b:flavus.83','flavus','flavus',[250,218,94],'fada5e',16439902], ['nbs-iscc-b:flavus.84','flavus','flavus',[212,175,55],'d4af37',13938487], ['nbs-iscc-b:flavus.86','flavus','flavus',[248,222,126],'f8de7e',16309886], ['nbs-iscc-b:flavus.98','flavus','flavus',[233,228,80],'e9e450',15328336], ['nbs-iscc-b:flavus.99','flavus','flavus',[190,183,46],'beb72e',12498734], ['nbs-iscc-b:fulvus.54','fulvus','fulvus',[174,105,56],'ae6938',11430200], ['nbs-iscc-b:fulvus.72','fulvus','fulvus',[190,138,61],'be8a3d',12487229], ['nbs-iscc-b:fulvus.74','fulvus','fulvus',[153,101,21],'996515',10052885], ['nbs-iscc-b:fumosus.10','fumosus','fumosus',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-b:fumosus.33','fumosus','fumosus',[194,172,153],'c2ac99',12758169], ['nbs-iscc-b:fumosus.79','fumosus','fumosus',[174,155,130],'ae9b82',11443074], ['nbs-iscc-b:fumosus.90','fumosus','fumosus',[194,178,128],'c2b280',12759680], ['nbs-iscc-b:fumosus.93','fumosus','fumosus',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-b:fumosus.263','fumosus','fumosus',[242,243,244],'f2f3f4',15922164], ['nbs-iscc-b:fumosus.264','fumosus','fumosus',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-b:fusconiger.23','fusconiger','fusco-niger',[92,80,79],'5c504f',6049871], ['nbs-iscc-b:fusconiger.62','fusconiger','fusco-niger',[62,50,44],'3e322c',4076076], ['nbs-iscc-b:fusconiger.64','fusconiger','fusco-niger',[91,80,79],'5b504f',5984335], ['nbs-iscc-b:fusconiger.81','fusconiger','fusco-niger',[72,60,50],'483c32',4734002], ['nbs-iscc-b:fusconiger.229','fusconiger','fusco-niger',[80,64,77],'50404d',5259341], ['nbs-iscc-b:fusconiger.234','fusconiger','fusco-niger',[93,85,91],'5d555b',6116699], ['nbs-iscc-b:fusconiger.260','fusconiger','fusco-niger',[56,21,44],'38152c',3675436], ['nbs-iscc-b:fusconiger.266','fusconiger','fusco-niger',[85,85,85],'555555',5592405], ['nbs-iscc-b:fuscus.19','fuscus','fuscus',[144,93,93],'905d5d',9461085], ['nbs-iscc-b:fuscus.23','fuscus','fuscus',[92,80,79],'5c504f',6049871], ['nbs-iscc-b:fuscus.64','fuscus','fuscus',[91,80,79],'5b504f',5984335], ['nbs-iscc-b:fuscus.229','fuscus','fuscus',[80,64,77],'50404d',5259341], ['nbs-iscc-b:fuscus.234','fuscus','fuscus',[93,85,91],'5d555b',6116699], ['nbs-iscc-b:glaucogriseus.122','glaucogriseus','glauco-griseus',[143,151,121],'8f9779',9410425], ['nbs-iscc-b:glaucogriseus.148','glaucogriseus','glauco-griseus',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-b:glaucogriseus.149','glaucogriseus','glauco-griseus',[141,163,153],'8da399',9282457], ['nbs-iscc-b:glaucogriseus.154','glaucogriseus','glauco-griseus',[178,190,181],'b2beb5',11714229], ['nbs-iscc-b:glaucogriseus.155','glaucogriseus','glauco-griseus',[125,137,132],'7d8984',8227204], ['nbs-iscc-b:glaucogriseus.185','glaucogriseus','glauco-griseus',[145,163,176],'91a3b0',9544624], ['nbs-iscc-b:glaucogriseus.186','glaucogriseus','glauco-griseus',[83,104,120],'536878',5466232], ['nbs-iscc-b:glaucogriseus.190','glaucogriseus','glauco-griseus',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-b:glaucogriseus.191','glaucogriseus','glauco-griseus',[129,135,139],'81878b',8488843], ['nbs-iscc-b:glaucovenetus.149','glaucovenetus','glauco-venetus ',[141,163,153],'8da399',9282457], ['nbs-iscc-b:glaucovenetus.150','glaucovenetus','glauco-venetus ',[94,113,106],'5e716a',6189418], ['nbs-iscc-b:glaucovenetus.163','glaucovenetus','glauco-venetus ',[102,173,164],'66ada4',6729124], ['nbs-iscc-b:glaucovenetus.164','glaucovenetus','glauco-venetus ',[49,120,115],'317873',3242099], ['nbs-iscc-b:glaucus.135','glaucus','glaucus',[147,197,146],'93c592',9684370], ['nbs-iscc-b:glaucus.148','glaucus','glaucus',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-b:glaucus.149','glaucus','glaucus',[141,163,153],'8da399',9282457], ['nbs-iscc-b:glaucus.163','glaucus','glaucus',[102,173,164],'66ada4',6729124], ['nbs-iscc-b:glaucus.171','glaucus','glaucus',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-b:glaucus.184','glaucus','glaucus',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-b:griseocaeruleus.180','griseocaeruleus','griseo-caeruleus',[161,202,241],'a1caf1',10603249], ['nbs-iscc-b:griseocaeruleus.181','griseocaeruleus','griseo-caeruleus',[112,163,204],'70a3cc',7381964], ['nbs-iscc-b:griseocaeruleus.184','griseocaeruleus','griseo-caeruleus',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-b:griseocaeruleus.185','griseocaeruleus','griseo-caeruleus',[145,163,176],'91a3b0',9544624], ['nbs-iscc-b:griseocaeruleus.198','griseocaeruleus','griseo-caeruleus',[179,188,226],'b3bce2',11779298], ['nbs-iscc-b:griseocaeruleus.199','griseocaeruleus','griseo-caeruleus',[135,145,191],'8791bf',8884671], ['nbs-iscc-b:griseocaeruleus.202','griseocaeruleus','griseo-caeruleus',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-b:griseocaeruleus.203','griseocaeruleus','griseo-caeruleus',[140,146,172],'8c92ac',9212588], ['nbs-iscc-b:griseochlorinus.101','griseochlorinus','griseo-chlorinus',[234,230,121],'eae679',15394425], ['nbs-iscc-b:griseochlorinus.102','griseochlorinus','griseo-chlorinus',[185,180,89],'b9b459',12170329], ['nbs-iscc-b:griseochlorinus.104','griseochlorinus','griseo-chlorinus',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-b:griseochlorinus.105','griseochlorinus','griseo-chlorinus',[185,181,125],'b9b57d',12170621], ['nbs-iscc-b:griseochlorinus.119','griseochlorinus','griseo-chlorinus',[201,220,137],'c9dc89',13229193], ['nbs-iscc-b:griseochlorinus.120','griseochlorinus','griseo-chlorinus',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-b:griseochlorinus.121','griseochlorinus','griseo-chlorinus',[218,223,183],'dadfb7',14344119], ['nbs-iscc-b:griseolavendulus.199','griseolavendulus','griseo-lavendulus',[135,145,191],'8791bf',8884671], ['nbs-iscc-b:griseolavendulus.202','griseolavendulus','griseo-lavendulus',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-b:griseolavendulus.203','griseolavendulus','griseo-lavendulus',[140,146,172],'8c92ac',9212588], ['nbs-iscc-b:griseolavendulus.213','griseolavendulus','griseo-lavendulus',[196,195,221],'c4c3dd',12895197], ['nbs-iscc-b:griseolavendulus.214','griseolavendulus','griseo-lavendulus',[150,144,171],'9690ab',9867435], ['nbs-iscc-b:griseolavendulus.215','griseolavendulus','griseo-lavendulus',[85,76,105],'554c69',5590121], ['nbs-iscc-b:griseolavendulus.222','griseolavendulus','griseo-lavendulus',[182,149,192],'b695c0',11965888], ['nbs-iscc-b:griseolavendulus.227','griseolavendulus','griseo-lavendulus',[170,152,169],'aa98a9',11180201], ['nbs-iscc-b:griseolavendulus.228','griseolavendulus','griseo-lavendulus',[121,104,120],'796878',7956600], ['nbs-iscc-b:griseolavendulus.233','griseolavendulus','griseo-lavendulus',[139,133,137],'8b8589',9143689], ['nbs-iscc-b:griseolavendulus.253','griseolavendulus','griseo-lavendulus',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-b:griseolazulinus.185','griseolazulinus','griseo-lazulinus',[145,163,176],'91a3b0',9544624], ['nbs-iscc-b:griseolazulinus.186','griseolazulinus','griseo-lazulinus',[83,104,120],'536878',5466232], ['nbs-iscc-b:griseolazulinus.203','griseolazulinus','griseo-lazulinus',[140,146,172],'8c92ac',9212588], ['nbs-iscc-b:griseolazulinus.204','griseolazulinus','griseo-lazulinus',[76,81,109],'4c516d',5001581], ['nbs-iscc-b:griseolilacinus.5','griseolilacinus','griseo-lilacinus',[222,165,164],'dea5a4',14591396], ['nbs-iscc-b:griseolilacinus.244','griseolilacinus','griseo-lilacinus',[170,138,158],'aa8a9e',11176606], ['nbs-iscc-b:griseolilacinus.253','griseolilacinus','griseo-lilacinus',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-b:griseolineus.177','griseolineus','griseo-lineus',[73,151,208],'4997d0',4822992], ['nbs-iscc-b:griseolineus.180','griseolineus','griseo-lineus',[161,202,241],'a1caf1',10603249], ['nbs-iscc-b:griseolineus.181','griseolineus','griseo-lineus',[112,163,204],'70a3cc',7381964], ['nbs-iscc-b:griseolineus.199','griseolineus','griseo-lineus',[135,145,191],'8791bf',8884671], ['nbs-iscc-b:griseolineus.202','griseolineus','griseo-lineus',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-b:griseolineus.210','griseolineus','griseo-lineus',[140,130,182],'8c82b6',9208502], ['nbs-iscc-b:griseoolivaceous.109','griseoolivaceous','griseo-olivaceous',[140,135,103],'8c8767',9209703], ['nbs-iscc-b:griseoolivaceous.112','griseoolivaceous','griseo-olivaceous',[138,135,118],'8a8776',9078646], ['nbs-iscc-b:griseoolivaceous.113','griseoolivaceous','griseo-olivaceous',[87,85,76],'57554c',5723468], ['nbs-iscc-b:griseoroseus.2','griseoroseus','griseo-roseus',[234,147,153],'ea9399',15373209], ['nbs-iscc-b:griseoroseus.3','griseoroseus','griseo-roseus',[228,113,122],'e4717a',14971258], ['nbs-iscc-b:griseoroseus.4','griseoroseus','griseo-roseus',[249,204,202],'f9ccca',16370890], ['nbs-iscc-b:griseoroseus.5','griseoroseus','griseo-roseus',[222,165,164],'dea5a4',14591396], ['nbs-iscc-b:griseoroseus.6','griseoroseus','griseo-roseus',[192,128,129],'c08081',12615809], ['nbs-iscc-b:griseoroseus.7','griseoroseus','griseo-roseus',[234,216,215],'ead8d7',15390935], ['nbs-iscc-b:griseoroseus.8','griseoroseus','griseo-roseus',[196,174,173],'c4aead',12889773], ['nbs-iscc-b:griseoroseus.248','griseoroseus','griseo-roseus',[222,111,161],'de6fa1',14577569], ['nbs-iscc-b:griseoroseus.249','griseoroseus','griseo-roseus',[239,187,204],'efbbcc',15711180], ['nbs-iscc-b:griseoroseus.250','griseoroseus','griseo-roseus',[213,151,174],'d597ae',13997998], ['nbs-iscc-b:griseoroseus.251','griseoroseus','griseo-roseus',[193,126,145],'c17e91',12680849], ['nbs-iscc-b:griseosepiaceus.45','griseosepiaceus','griseo-sepiaceus',[151,127,115],'977f73',9928563], ['nbs-iscc-b:griseosepiaceus.60','griseosepiaceus','griseo-sepiaceus',[149,128,112],'958070',9797744], ['nbs-iscc-b:griseosepiaceus.61','griseosepiaceus','griseo-sepiaceus',[99,81,71],'635147',6508871], ['nbs-iscc-b:griseosepiaceus.64','griseosepiaceus','griseo-sepiaceus',[91,80,79],'5b504f',5984335], ['nbs-iscc-b:griseosepiaceus.76','griseosepiaceus','griseo-sepiaceus',[193,154,107],'c19a6b',12687979], ['nbs-iscc-b:griseosepiaceus.77','griseosepiaceus','griseo-sepiaceus',[130,102,68],'826644',8545860], ['nbs-iscc-b:griseosepiaceus.79','griseosepiaceus','griseo-sepiaceus',[174,155,130],'ae9b82',11443074], ['nbs-iscc-b:griseosepiaceus.80','griseosepiaceus','griseo-sepiaceus',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-b:griseovenetus.162','griseovenetus','griseo-venetus',[150,222,209],'96ded1',9887441], ['nbs-iscc-b:griseovenetus.163','griseovenetus','griseo-venetus',[102,173,164],'66ada4',6729124], ['nbs-iscc-b:griseoviolaceus.203','griseoviolaceus','griseo-violaceus',[140,146,172],'8c92ac',9212588], ['nbs-iscc-b:griseoviolaceus.204','griseoviolaceus','griseo-violaceus',[76,81,109],'4c516d',5001581], ['nbs-iscc-b:griseoviolaceus.211','griseoviolaceus','griseo-violaceus',[96,78,129],'604e81',6311553], ['nbs-iscc-b:griseoviolaceus.214','griseoviolaceus','griseo-violaceus',[150,144,171],'9690ab',9867435], ['nbs-iscc-b:griseoviolaceus.215','griseoviolaceus','griseo-violaceus',[85,76,105],'554c69',5590121], ['nbs-iscc-b:griseoviridis.131','griseoviridis','griseo-viridis',[68,148,74],'44944a',4494410], ['nbs-iscc-b:griseoviridis.135','griseoviridis','griseo-viridis',[147,197,146],'93c592',9684370], ['nbs-iscc-b:griseoviridis.136','griseoviridis','griseo-viridis',[103,146,103],'679267',6787687], ['nbs-iscc-b:griseoviridis.144','griseoviridis','griseo-viridis',[106,171,142],'6aab8e',6990734], ['nbs-iscc-b:herbaceus.102','herbaceus','herbaceus',[185,180,89],'b9b459',12170329], ['nbs-iscc-b:herbaceus.103','herbaceus','herbaceus',[152,148,62],'98943e',9999422], ['nbs-iscc-b:herbaceus.106','herbaceus','herbaceus',[134,126,54],'867e36',8814134], ['nbs-iscc-b:herbaceus.107','herbaceus','herbaceus',[102,93,30],'665d1e',6708510], ['nbs-iscc-b:herbaceus.117','herbaceus','herbaceus',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-b:herbaceus.120','herbaceus','herbaceus',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-b:herbaceus.122','herbaceus','herbaceus',[143,151,121],'8f9779',9410425], ['nbs-iscc-b:herbaceus.125','herbaceus','herbaceus',[74,93,35],'4a5d23',4873507], ['nbs-iscc-b:herbaceus.127','herbaceus','herbaceus',[81,87,68],'515744',5330756], ['nbs-iscc-b:herbaceus.136','herbaceus','herbaceus',[103,146,103],'679267',6787687], ['nbs-iscc-b:herbaceus.137','herbaceus','herbaceus',[53,94,59],'355e3b',3497531], ['nbs-iscc-b:herbaceus.145','herbaceus','herbaceus',[59,120,97],'3b7861',3897441], ['nbs-iscc-b:herbaceus.150','herbaceus','herbaceus',[94,113,106],'5e716a',6189418], ['nbs-iscc-b:herbaceus.151','herbaceus','herbaceus',[58,75,71],'3a4b47',3820359], ['nbs-iscc-b:hinnuleus.45','hinnuleus','hinnuleus',[151,127,115],'977f73',9928563], ['nbs-iscc-b:hinnuleus.57','hinnuleus','hinnuleus',[166,123,91],'a67b5b',10910555], ['nbs-iscc-b:hinnuleus.58','hinnuleus','hinnuleus',[111,78,55],'6f4e37',7294519], ['nbs-iscc-b:hinnuleus.60','hinnuleus','hinnuleus',[149,128,112],'958070',9797744], ['nbs-iscc-b:hinnuleus.61','hinnuleus','hinnuleus',[99,81,71],'635147',6508871], ['nbs-iscc-b:incarnatus.3','incarnatus','incarnatus',[228,113,122],'e4717a',14971258], ['nbs-iscc-b:incarnatus.5','incarnatus','incarnatus',[222,165,164],'dea5a4',14591396], ['nbs-iscc-b:incarnatus.26','incarnatus','incarnatus',[248,131,121],'f88379',16286585], ['nbs-iscc-b:incarnatus.27','incarnatus','incarnatus',[230,103,97],'e66761',15099745], ['nbs-iscc-b:incarnatus.28','incarnatus','incarnatus',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-b:incarnatus.29','incarnatus','incarnatus',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-b:isabellinus.77','isabellinus','isabellinus',[130,102,68],'826644',8545860], ['nbs-iscc-b:isabellinus.91','isabellinus','isabellinus',[161,143,96],'a18f60',10588000], ['nbs-iscc-b:isabellinus.94','isabellinus','isabellinus',[150,113,23],'967117',9859351], ['nbs-iscc-b:latericius.43','latericius','latericius',[121,68,59],'79443b',7947323], ['nbs-iscc-b:latericius.45','latericius','latericius',[151,127,115],'977f73',9928563], ['nbs-iscc-b:latericius.46','latericius','latericius',[103,76,71],'674c47',6769735], ['nbs-iscc-b:latericius.57','latericius','latericius',[166,123,91],'a67b5b',10910555], ['nbs-iscc-b:latericius.58','latericius','latericius',[111,78,55],'6f4e37',7294519], ['nbs-iscc-b:latericius.61','latericius','latericius',[99,81,71],'635147',6508871], ['nbs-iscc-b:lavendulogriseus.185','lavendulogriseus','lavendulo-griseus ',[145,163,176],'91a3b0',9544624], ['nbs-iscc-b:lavendulogriseus.190','lavendulogriseus','lavendulo-griseus ',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-b:lavendulogriseus.191','lavendulogriseus','lavendulo-griseus ',[129,135,139],'81878b',8488843], ['nbs-iscc-b:lavendulogriseus.232','lavendulogriseus','lavendulo-griseus ',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-b:lavendulogriseus.233','lavendulogriseus','lavendulo-griseus ',[139,133,137],'8b8589',9143689], ['nbs-iscc-b:lavendulogriseus.265','lavendulogriseus','lavendulo-griseus ',[132,132,130],'848482',8684674], ['nbs-iscc-b:lavendulus.195','lavendulus','lavendulus',[108,121,184],'6c79b8',7109048], ['nbs-iscc-b:lavendulus.198','lavendulus','lavendulus',[179,188,226],'b3bce2',11779298], ['nbs-iscc-b:lavendulus.199','lavendulus','lavendulus',[135,145,191],'8791bf',8884671], ['nbs-iscc-b:lavendulus.206','lavendulus','lavendulus',[126,115,184],'7e73b8',8287160], ['nbs-iscc-b:lavendulus.209','lavendulus','lavendulus',[220,208,255],'dcd0ff',14471423], ['nbs-iscc-b:lavendulus.210','lavendulus','lavendulus',[140,130,182],'8c82b6',9208502], ['nbs-iscc-b:lavendulus.213','lavendulus','lavendulus',[196,195,221],'c4c3dd',12895197], ['nbs-iscc-b:lavendulus.214','lavendulus','lavendulus',[150,144,171],'9690ab',9867435], ['nbs-iscc-b:lavendulus.226','lavendulus','lavendulus',[214,202,221],'d6cadd',14076637], ['nbs-iscc-b:lazulinoardesiacus.183','lazulinoardesiacus','lazulino-ardesiacus',[0,48,78],'00304e',12366], ['nbs-iscc-b:lazulinoardesiacus.186','lazulinoardesiacus','lazulino-ardesiacus',[83,104,120],'536878',5466232], ['nbs-iscc-b:lazulinoardesiacus.187','lazulinoardesiacus','lazulino-ardesiacus',[54,69,79],'36454f',3556687], ['nbs-iscc-b:lazulinoardesiacus.204','lazulinoardesiacus','lazulino-ardesiacus',[76,81,109],'4c516d',5001581], ['nbs-iscc-b:lazulinus.176','lazulinus','lazulinus',[0,161,194],'00a1c2',41410], ['nbs-iscc-b:lazulinus.177','lazulinus','lazulinus',[73,151,208],'4997d0',4822992], ['nbs-iscc-b:lazulinus.178','lazulinus','lazulinus',[0,103,165],'0067a5',26533], ['nbs-iscc-b:lazulinus.182','lazulinus','lazulinus',[67,107,149],'436b95',4418453], ['nbs-iscc-b:lazulinus.194','lazulinus','lazulinus',[48,38,122],'30267a',3155578], ['nbs-iscc-b:lazulinus.195','lazulinus','lazulinus',[108,121,184],'6c79b8',7109048], ['nbs-iscc-b:lazulinus.196','lazulinus','lazulinus',[84,90,167],'545aa7',5528231], ['nbs-iscc-b:lilacinus.206','lilacinus','lilacinus',[126,115,184],'7e73b8',8287160], ['nbs-iscc-b:lilacinus.210','lilacinus','lilacinus',[140,130,182],'8c82b6',9208502], ['nbs-iscc-b:lilacinus.217','lilacinus','lilacinus',[211,153,230],'d399e6',13867494], ['nbs-iscc-b:lilacinus.222','lilacinus','lilacinus',[182,149,192],'b695c0',11965888], ['nbs-iscc-b:lilacinus.223','lilacinus','lilacinus',[134,96,142],'86608e',8806542], ['nbs-iscc-b:lilacinus.226','lilacinus','lilacinus',[214,202,221],'d6cadd',14076637], ['nbs-iscc-b:lilacinus.227','lilacinus','lilacinus',[170,152,169],'aa98a9',11180201], ['nbs-iscc-b:lilacinus.237','lilacinus','lilacinus',[158,79,136],'9e4f88',10375048], ['nbs-iscc-b:lilacinus.240','lilacinus','lilacinus',[183,132,167],'b784a7',12027047], ['nbs-iscc-b:lilacinus.241','lilacinus','lilacinus',[145,92,131],'915c83',9526403], ['nbs-iscc-b:lilacinus.244','lilacinus','lilacinus',[170,138,158],'aa8a9e',11176606], ['nbs-iscc-b:lilacinus.248','lilacinus','lilacinus',[222,111,161],'de6fa1',14577569], ['nbs-iscc-b:lilacinus.249','lilacinus','lilacinus',[239,187,204],'efbbcc',15711180], ['nbs-iscc-b:lilacinus.250','lilacinus','lilacinus',[213,151,174],'d597ae',13997998], ['nbs-iscc-b:lilacinus.252','lilacinus','lilacinus',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-b:lilacinus.253','lilacinus','lilacinus',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-b:lineus.177','lineus','lineus',[73,151,208],'4997d0',4822992], ['nbs-iscc-b:lineus.180','lineus','lineus',[161,202,241],'a1caf1',10603249], ['nbs-iscc-b:lineus.181','lineus','lineus',[112,163,204],'70a3cc',7381964], ['nbs-iscc-b:lineus.184','lineus','lineus',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-b:lineus.185','lineus','lineus',[145,163,176],'91a3b0',9544624], ['nbs-iscc-b:lineus.195','lineus','lineus',[108,121,184],'6c79b8',7109048], ['nbs-iscc-b:lineus.198','lineus','lineus',[179,188,226],'b3bce2',11779298], ['nbs-iscc-b:lineus.199','lineus','lineus',[135,145,191],'8791bf',8884671], ['nbs-iscc-b:lineus.202','lineus','lineus',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-b:lineus.203','lineus','lineus',[140,146,172],'8c92ac',9212588], ['nbs-iscc-b:lividopurpureus.223','lividopurpureus','livido-purpureus',[134,96,142],'86608e',8806542], ['nbs-iscc-b:lividopurpureus.240','lividopurpureus','livido-purpureus',[183,132,167],'b784a7',12027047], ['nbs-iscc-b:lividopurpureus.241','lividopurpureus','livido-purpureus',[145,92,131],'915c83',9526403], ['nbs-iscc-b:lividopurpureus.245','lividopurpureus','livido-purpureus',[131,100,121],'836479',8610937], ['nbs-iscc-b:lividopurpureus.258','lividopurpureus','livido-purpureus',[168,81,110],'a8516e',11030894], ['nbs-iscc-b:lividopurpureus.262','lividopurpureus','livido-purpureus',[145,95,109],'915f6d',9527149], ['nbs-iscc-b:lividoruber.258','lividoruber','livido-ruber',[168,81,110],'a8516e',11030894], ['nbs-iscc-b:lividoruber.262','lividoruber','livido-ruber',[145,95,109],'915f6d',9527149], ['nbs-iscc-b:lividoviolaceus.207','lividoviolaceus','livido-violaceus',[96,78,151],'604e97',6311575], ['nbs-iscc-b:lividoviolaceus.210','lividoviolaceus','livido-violaceus',[140,130,182],'8c82b6',9208502], ['nbs-iscc-b:lividoviolaceus.211','lividoviolaceus','livido-violaceus',[96,78,129],'604e81',6311553], ['nbs-iscc-b:lividoviolaceus.218','lividoviolaceus','livido-violaceus',[135,86,146],'875692',8869522], ['nbs-iscc-b:lividoviolaceus.223','lividoviolaceus','livido-violaceus',[134,96,142],'86608e',8806542], ['nbs-iscc-b:lividoviolaceus.228','lividoviolaceus','livido-violaceus',[121,104,120],'796878',7956600], ['nbs-iscc-b:luteolus.70','luteolus','luteolus',[251,201,127],'fbc97f',16501119], ['nbs-iscc-b:luteolus.71','luteolus','luteolus',[227,168,87],'e3a857',14919767], ['nbs-iscc-b:luteolus.83','luteolus','luteolus',[250,218,94],'fada5e',16439902], ['nbs-iscc-b:luteolus.84','luteolus','luteolus',[212,175,55],'d4af37',13938487], ['nbs-iscc-b:luteolus.86','luteolus','luteolus',[248,222,126],'f8de7e',16309886], ['nbs-iscc-b:luteolus.87','luteolus','luteolus',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-b:luteus.50','luteus','luteus',[237,135,45],'ed872d',15566637], ['nbs-iscc-b:luteus.68','luteus','luteus',[234,162,33],'eaa221',15376929], ['nbs-iscc-b:luteus.82','luteus','luteus',[243,195,0],'f3c300',15975168], ['nbs-iscc-b:luteus.84','luteus','luteus',[212,175,55],'d4af37',13938487], ['nbs-iscc-b:malachiteus.135','malachiteus','malachiteus',[147,197,146],'93c592',9684370], ['nbs-iscc-b:malachiteus.136','malachiteus','malachiteus',[103,146,103],'679267',6787687], ['nbs-iscc-b:malachiteus.145','malachiteus','malachiteus',[59,120,97],'3b7861',3897441], ['nbs-iscc-b:malvaceus.217','malvaceus','malvaceus',[211,153,230],'d399e6',13867494], ['nbs-iscc-b:malvaceus.218','malvaceus','malvaceus',[135,86,146],'875692',8869522], ['nbs-iscc-b:malvaceus.222','malvaceus','malvaceus',[182,149,192],'b695c0',11965888], ['nbs-iscc-b:malvaceus.237','malvaceus','malvaceus',[158,79,136],'9e4f88',10375048], ['nbs-iscc-b:malvaceus.248','malvaceus','malvaceus',[222,111,161],'de6fa1',14577569], ['nbs-iscc-b:melleus.71','melleus','melleus',[227,168,87],'e3a857',14919767], ['nbs-iscc-b:melleus.74','melleus','melleus',[153,101,21],'996515',10052885], ['nbs-iscc-b:melleus.76','melleus','melleus',[193,154,107],'c19a6b',12687979], ['nbs-iscc-b:melleus.77','melleus','melleus',[130,102,68],'826644',8545860], ['nbs-iscc-b:melleus.87','melleus','melleus',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-b:melleus.88','melleus','melleus',[171,145,68],'ab9144',11243844], ['nbs-iscc-b:melleus.94','melleus','melleus',[150,113,23],'967117',9859351], ['nbs-iscc-b:miniatus.34','miniatus','miniatus ',[226,88,34],'e25822',14833698], ['nbs-iscc-b:miniatus.35','miniatus','miniatus ',[217,96,59],'d9603b',14245947], ['nbs-iscc-b:miniatus.37','miniatus','miniatus ',[203,109,81],'cb6d51',13331793], ['nbs-iscc-b:miniatus.38','miniatus','miniatus ',[158,71,50],'9e4732',10372914], ['nbs-iscc-b:murinus.64','murinus','murinus ',[91,80,79],'5b504f',5984335], ['nbs-iscc-b:murinus.78','murinus','murinus ',[75,54,33],'4b3621',4929057], ['nbs-iscc-b:murinus.265','murinus','murinus ',[132,132,130],'848482',8684674], ['nbs-iscc-b:murinus.266','murinus','murinus ',[85,85,85],'555555',5592405], ['nbs-iscc-b:niger.64','niger','niger',[91,80,79],'5b504f',5984335], ['nbs-iscc-b:niger.113','niger','niger',[87,85,76],'57554c',5723468], ['nbs-iscc-b:niger.187','niger','niger',[54,69,79],'36454f',3556687], ['nbs-iscc-b:niger.229','niger','niger',[80,64,77],'50404d',5259341], ['nbs-iscc-b:niger.234','niger','niger',[93,85,91],'5d555b',6116699], ['nbs-iscc-b:niger.266','niger','niger',[85,85,85],'555555',5592405], ['nbs-iscc-b:niger.267','niger','niger',[34,34,34],'222222',2236962], ['nbs-iscc-b:obscurovirens.107','obscurovirens','obscuro-virens',[102,93,30],'665d1e',6708510], ['nbs-iscc-b:obscurovirens.110','obscurovirens','obscuro-virens',[91,88,66],'5b5842',5986370], ['nbs-iscc-b:obscurovirens.125','obscurovirens','obscuro-virens',[74,93,35],'4a5d23',4873507], ['nbs-iscc-b:obscurovirens.127','obscurovirens','obscuro-virens',[81,87,68],'515744',5330756], ['nbs-iscc-b:obscurovirens.145','obscurovirens','obscuro-virens',[59,120,97],'3b7861',3897441], ['nbs-iscc-b:obscurovirens.146','obscurovirens','obscuro-virens',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-b:obscurovirens.150','obscurovirens','obscuro-virens',[94,113,106],'5e716a',6189418], ['nbs-iscc-b:obscurovirens.151','obscurovirens','obscuro-virens',[58,75,71],'3a4b47',3820359], ['nbs-iscc-b:ochraceus.28','ochraceus','ochraceus',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-b:ochraceus.29','ochraceus','ochraceus',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-b:ochraceus.50','ochraceus','ochraceus',[237,135,45],'ed872d',15566637], ['nbs-iscc-b:ochraceus.53','ochraceus','ochraceus',[217,144,88],'d99058',14258264], ['nbs-iscc-b:ochraceus.68','ochraceus','ochraceus',[234,162,33],'eaa221',15376929], ['nbs-iscc-b:ochraceus.69','ochraceus','ochraceus',[201,133,0],'c98500',13206784], ['nbs-iscc-b:ochraceus.72','ochraceus','ochraceus',[190,138,61],'be8a3d',12487229], ['nbs-iscc-b:olivaceobubalinus.89','olivaceobubalinus','olivaceo-bubalinus',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-b:olivaceobubalinus.90','olivaceobubalinus','olivaceo-bubalinus',[194,178,128],'c2b280',12759680], ['nbs-iscc-b:olivaceocitrinus.85','olivaceocitrinus','olivaceo-citrinus',[175,141,19],'af8d13',11504915], ['nbs-iscc-b:olivaceocitrinus.88','olivaceocitrinus','olivaceo-citrinus',[171,145,68],'ab9144',11243844], ['nbs-iscc-b:olivaceocitrinus.94','olivaceocitrinus','olivaceo-citrinus',[150,113,23],'967117',9859351], ['nbs-iscc-b:olivaceocitrinus.95','olivaceocitrinus','olivaceo-citrinus',[108,84,30],'6c541e',7099422], ['nbs-iscc-b:olivaceocitrinus.103','olivaceocitrinus','olivaceo-citrinus',[152,148,62],'98943e',9999422], ['nbs-iscc-b:olivaceocitrinus.106','olivaceocitrinus','olivaceo-citrinus',[134,126,54],'867e36',8814134], ['nbs-iscc-b:olivaceocitrinus.107','olivaceocitrinus','olivaceo-citrinus',[102,93,30],'665d1e',6708510], ['nbs-iscc-b:olivaceogriseus.110','olivaceogriseus','olivaceo-griseus',[91,88,66],'5b5842',5986370], ['nbs-iscc-b:olivaceogriseus.112','olivaceogriseus','olivaceo-griseus',[138,135,118],'8a8776',9078646], ['nbs-iscc-b:olivaceogriseus.113','olivaceogriseus','olivaceo-griseus',[87,85,76],'57554c',5723468], ['nbs-iscc-b:olivaceoniger.113','olivaceoniger','olivaceo-niger',[87,85,76],'57554c',5723468], ['nbs-iscc-b:olivaceoniger.127','olivaceoniger','olivaceo-niger',[81,87,68],'515744',5330756], ['nbs-iscc-b:olivaceoniger.128','olivaceoniger','olivaceo-niger',[49,54,43],'31362b',3225131], ['nbs-iscc-b:olivaceoniger.156','olivaceoniger','olivaceo-niger',[78,87,85],'4e5755',5134165], ['nbs-iscc-b:olivaceoniger.266','olivaceoniger','olivaceo-niger',[85,85,85],'555555',5592405], ['nbs-iscc-b:olivaceus.80','olivaceus','olivaceus ',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-b:olivaceus.81','olivaceus','olivaceus ',[72,60,50],'483c32',4734002], ['nbs-iscc-b:olivaceus.88','olivaceus','olivaceus ',[171,145,68],'ab9144',11243844], ['nbs-iscc-b:olivaceus.91','olivaceus','olivaceus ',[161,143,96],'a18f60',10588000], ['nbs-iscc-b:olivaceus.94','olivaceus','olivaceus ',[150,113,23],'967117',9859351], ['nbs-iscc-b:olivaceus.95','olivaceus','olivaceus ',[108,84,30],'6c541e',7099422], ['nbs-iscc-b:olivaceus.103','olivaceus','olivaceus ',[152,148,62],'98943e',9999422], ['nbs-iscc-b:olivaceus.106','olivaceus','olivaceus ',[134,126,54],'867e36',8814134], ['nbs-iscc-b:olivaceus.107','olivaceus','olivaceus ',[102,93,30],'665d1e',6708510], ['nbs-iscc-b:olivaceus.110','olivaceus','olivaceus ',[91,88,66],'5b5842',5986370], ['nbs-iscc-b:persicinus.26','persicinus','persicinus',[248,131,121],'f88379',16286585], ['nbs-iscc-b:persicinus.28','persicinus','persicinus',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-b:persicinus.29','persicinus','persicinus',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-b:persicinus.35','persicinus','persicinus',[217,96,59],'d9603b',14245947], ['nbs-iscc-b:persicinus.37','persicinus','persicinus',[203,109,81],'cb6d51',13331793], ['nbs-iscc-b:persicinus.49','persicinus','persicinus',[253,148,63],'fd943f',16618559], ['nbs-iscc-b:persicinus.52','persicinus','persicinus',[250,181,127],'fab57f',16430463], ['nbs-iscc-b:persicinus.53','persicinus','persicinus',[217,144,88],'d99058',14258264], ['nbs-iscc-b:pistaceus.120','pistaceus','pistaceus',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-b:pistaceus.122','pistaceus','pistaceus',[143,151,121],'8f9779',9410425], ['nbs-iscc-b:pistaceus.135','pistaceus','pistaceus',[147,197,146],'93c592',9684370], ['nbs-iscc-b:pistaceus.136','pistaceus','pistaceus',[103,146,103],'679267',6787687], ['nbs-iscc-b:pistaceus.144','pistaceus','pistaceus',[106,171,142],'6aab8e',6990734], ['nbs-iscc-b:pistaceus.149','pistaceus','pistaceus',[141,163,153],'8da399',9282457], ['nbs-iscc-b:pistaceus.150','pistaceus','pistaceus',[94,113,106],'5e716a',6189418], ['nbs-iscc-b:plumbeoniger.192','plumbeoniger','plumbeo-niger',[81,88,94],'51585e',5331038], ['nbs-iscc-b:plumbeus.185','plumbeus','plumbeus',[145,163,176],'91a3b0',9544624], ['nbs-iscc-b:plumbeus.186','plumbeus','plumbeus',[83,104,120],'536878',5466232], ['nbs-iscc-b:plumbeus.191','plumbeus','plumbeus',[129,135,139],'81878b',8488843], ['nbs-iscc-b:plumbeus.192','plumbeus','plumbeus',[81,88,94],'51585e',5331038], ['nbs-iscc-b:prasinus.119','prasinus','prasinus',[201,220,137],'c9dc89',13229193], ['nbs-iscc-b:prasinus.134','prasinus','prasinus',[182,229,175],'b6e5af',11986351], ['nbs-iscc-b:prasinus.135','prasinus','prasinus',[147,197,146],'93c592',9684370], ['nbs-iscc-b:prasinus.143','prasinus','prasinus',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-b:prasinus.148','prasinus','prasinus',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-b:primulinus.89','primulinus','primulinus',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-b:primulinus.101','primulinus','primulinus',[234,230,121],'eae679',15394425], ['nbs-iscc-b:primulinus.102','primulinus','primulinus',[185,180,89],'b9b459',12170329], ['nbs-iscc-b:purpureoardesiacus.228','purpureoardesiacus','purpureo-ardesiacus',[121,104,120],'796878',7956600], ['nbs-iscc-b:purpureoardesiacus.229','purpureoardesiacus','purpureo-ardesiacus',[80,64,77],'50404d',5259341], ['nbs-iscc-b:purpureoardesiacus.242','purpureoardesiacus','purpureo-ardesiacus',[93,57,84],'5d3954',6109524], ['nbs-iscc-b:purpureoardesiacus.245','purpureoardesiacus','purpureo-ardesiacus',[131,100,121],'836479',8610937], ['nbs-iscc-b:purpureogriseus.228','purpureogriseus','purpureo-griseus',[121,104,120],'796878',7956600], ['nbs-iscc-b:purpureogriseus.233','purpureogriseus','purpureo-griseus',[139,133,137],'8b8589',9143689], ['nbs-iscc-b:purpureogriseus.234','purpureogriseus','purpureo-griseus',[93,85,91],'5d555b',6116699], ['nbs-iscc-b:purpureogriseus.265','purpureogriseus','purpureo-griseus',[132,132,130],'848482',8684674], ['nbs-iscc-b:purpureus.216','purpureus','purpureus',[154,78,174],'9a4eae',10112686], ['nbs-iscc-b:purpureus.218','purpureus','purpureus',[135,86,146],'875692',8869522], ['nbs-iscc-b:purpureus.219','purpureus','purpureus',[96,47,107],'602f6b',6303595], ['nbs-iscc-b:purpureus.223','purpureus','purpureus',[134,96,142],'86608e',8806542], ['nbs-iscc-b:purpureus.236','purpureus','purpureus',[135,0,116],'870074',8847476], ['nbs-iscc-b:purpureus.237','purpureus','purpureus',[158,79,136],'9e4f88',10375048], ['nbs-iscc-b:purpureus.238','purpureus','purpureus',[112,41,99],'702963',7350627], ['nbs-iscc-b:purpureus.255','purpureus','purpureus',[179,68,108],'b3446c',11748460], ['nbs-iscc-b:purpureus.256','purpureus','purpureus',[120,24,74],'78184a',7870538], ['nbs-iscc-b:purpureus.258','purpureus','purpureus',[168,81,110],'a8516e',11030894], ['nbs-iscc-b:purpureus.262','purpureus','purpureus',[145,95,109],'915f6d',9527149], ['nbs-iscc-b:roseobubalinus.28','roseobubalinus','roseo-bubalinus',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-b:roseobubalinus.29','roseobubalinus','roseo-bubalinus',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-b:roseobubalinus.31','roseobubalinus','roseo-bubalinus',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-b:roseobubalinus.32','roseobubalinus','roseo-bubalinus',[199,173,163],'c7ada3',13086115], ['nbs-iscc-b:roseobubalinus.33','roseobubalinus','roseo-bubalinus',[194,172,153],'c2ac99',12758169], ['nbs-iscc-b:roseobubalinus.73','roseobubalinus','roseo-bubalinus',[250,214,165],'fad6a5',16438949], ['nbs-iscc-b:roseovinosus.28','roseovinosus','roseo-vinosus',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-b:roseovinosus.29','roseovinosus','roseo-vinosus',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-b:roseovinosus.31','roseovinosus','roseo-vinosus',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-b:roseovinosus.32','roseovinosus','roseo-vinosus',[199,173,163],'c7ada3',13086115], ['nbs-iscc-b:roseovinosus.39','roseovinosus','roseo-vinosus',[180,116,94],'b4745e',11826270], ['nbs-iscc-b:roseovinosus.42','roseovinosus','roseo-vinosus',[168,124,109],'a87c6d',11041901], ['nbs-iscc-b:roseus.1','roseus','roseus',[255,181,186],'ffb5ba',16758202], ['nbs-iscc-b:roseus.2','roseus','roseus',[234,147,153],'ea9399',15373209], ['nbs-iscc-b:roseus.3','roseus','roseus',[228,113,122],'e4717a',14971258], ['nbs-iscc-b:roseus.15','roseus','roseus',[171,78,82],'ab4e52',11226706], ['nbs-iscc-b:roseus.26','roseus','roseus',[248,131,121],'f88379',16286585], ['nbs-iscc-b:roseus.27','roseus','roseus',[230,103,97],'e66761',15099745], ['nbs-iscc-b:roseus.237','roseus','roseus',[158,79,136],'9e4f88',10375048], ['nbs-iscc-b:roseus.246','roseus','roseus',[255,200,214],'ffc8d6',16763094], ['nbs-iscc-b:roseus.247','roseus','roseus',[230,143,172],'e68fac',15110060], ['nbs-iscc-b:roseus.248','roseus','roseus',[222,111,161],'de6fa1',14577569], ['nbs-iscc-b:roseus.249','roseus','roseus',[239,187,204],'efbbcc',15711180], ['nbs-iscc-b:roseus.254','roseus','roseus',[206,70,118],'ce4676',13518454], ['nbs-iscc-b:roseus.255','roseus','roseus',[179,68,108],'b3446c',11748460], ['nbs-iscc-b:ruber.11','ruber','ruber',[190,0,50],'be0032',12451890], ['nbs-iscc-b:ruber.12','ruber','ruber',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-b:ruber.254','ruber','ruber',[206,70,118],'ce4676',13518454], ['nbs-iscc-b:ruber.256','ruber','ruber',[120,24,74],'78184a',7870538], ['nbs-iscc-b:ruber.258','ruber','ruber',[168,81,110],'a8516e',11030894], ['nbs-iscc-b:ruber.262','ruber','ruber',[145,95,109],'915f6d',9527149], ['nbs-iscc-b:salmoneus.29','salmoneus','salmoneus',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-b:salmoneus.31','salmoneus','salmoneus',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-b:salmoneus.33','salmoneus','salmoneus',[194,172,153],'c2ac99',12758169], ['nbs-iscc-b:salmoneus.52','salmoneus','salmoneus',[250,181,127],'fab57f',16430463], ['nbs-iscc-b:salmoneus.53','salmoneus','salmoneus',[217,144,88],'d99058',14258264], ['nbs-iscc-b:salmoneus.71','salmoneus','salmoneus',[227,168,87],'e3a857',14919767], ['nbs-iscc-b:salmoneus.73','salmoneus','salmoneus',[250,214,165],'fad6a5',16438949], ['nbs-iscc-b:salmoneus.89','salmoneus','salmoneus',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-b:senatus.51','senatus','senatus',[190,101,22],'be6516',12477718], ['nbs-iscc-b:senatus.69','senatus','senatus',[201,133,0],'c98500',13206784], ['nbs-iscc-b:senatus.72','senatus','senatus',[190,138,61],'be8a3d',12487229], ['nbs-iscc-b:senatus.74','senatus','senatus',[153,101,21],'996515',10052885], ['nbs-iscc-b:sepiaceus.58','sepiaceus','sepiaceus',[111,78,55],'6f4e37',7294519], ['nbs-iscc-b:sepiaceus.61','sepiaceus','sepiaceus',[99,81,71],'635147',6508871], ['nbs-iscc-b:sepiaceus.77','sepiaceus','sepiaceus',[130,102,68],'826644',8545860], ['nbs-iscc-b:sepiaceus.80','sepiaceus','sepiaceus',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-b:sepiaceus.81','sepiaceus','sepiaceus',[72,60,50],'483c32',4734002], ['nbs-iscc-b:sepiaceus.95','sepiaceus','sepiaceus',[108,84,30],'6c541e',7099422], ['nbs-iscc-b:stramineus.86','stramineus','stramineus',[248,222,126],'f8de7e',16309886], ['nbs-iscc-b:stramineus.89','stramineus','stramineus',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-b:stramineus.101','stramineus','stramineus',[234,230,121],'eae679',15394425], ['nbs-iscc-b:stramineus.102','stramineus','stramineus',[185,180,89],'b9b459',12170329], ['nbs-iscc-b:stramineus.104','stramineus','stramineus',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-b:sublazulinus.177','sublazulinus','sublazulinus',[73,151,208],'4997d0',4822992], ['nbs-iscc-b:sublazulinus.178','sublazulinus','sublazulinus',[0,103,165],'0067a5',26533], ['nbs-iscc-b:sublazulinus.180','sublazulinus','sublazulinus',[161,202,241],'a1caf1',10603249], ['nbs-iscc-b:sublazulinus.181','sublazulinus','sublazulinus',[112,163,204],'70a3cc',7381964], ['nbs-iscc-b:sublazulinus.184','sublazulinus','sublazulinus',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-b:sublazulinus.185','sublazulinus','sublazulinus',[145,163,176],'91a3b0',9544624], ['nbs-iscc-b:sublazulinus.194','sublazulinus','sublazulinus',[48,38,122],'30267a',3155578], ['nbs-iscc-b:sublazulinus.195','sublazulinus','sublazulinus',[108,121,184],'6c79b8',7109048], ['nbs-iscc-b:sublazulinus.196','sublazulinus','sublazulinus',[84,90,167],'545aa7',5528231], ['nbs-iscc-b:sublazulinus.198','sublazulinus','sublazulinus',[179,188,226],'b3bce2',11779298], ['nbs-iscc-b:sublazulinus.199','sublazulinus','sublazulinus',[135,145,191],'8791bf',8884671], ['nbs-iscc-b:sublazulinus.202','sublazulinus','sublazulinus',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-b:sublazulinus.203','sublazulinus','sublazulinus',[140,146,172],'8c92ac',9212588], ['nbs-iscc-b:submurinus.10','submurinus','submurinus',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-b:submurinus.63','submurinus','submurinus',[142,130,121],'8e8279',9339513], ['nbs-iscc-b:submurinus.93','submurinus','submurinus',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-b:submurinus.264','submurinus','submurinus',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-b:subolivaceogriseus.92','subolivaceogriseus','subolivaceo-griseus',[240,234,214],'f0ead6',15788758], ['nbs-iscc-b:subolivaceogriseus.93','subolivaceogriseus','subolivaceo-griseus',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-b:subolivaceogriseus.109','subolivaceogriseus','subolivaceo-griseus',[140,135,103],'8c8767',9209703], ['nbs-iscc-b:subolivaceogriseus.112','subolivaceogriseus','subolivaceo-griseus',[138,135,118],'8a8776',9078646], ['nbs-iscc-b:subpurpureogriseus.232','subpurpureogriseus','subpurpureo-griseus',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-b:subpurpureogriseus.233','subpurpureogriseus','subpurpureo-griseus',[139,133,137],'8b8589',9143689], ['nbs-iscc-b:subvinosogriseus.8','subvinosogriseus','subvinoso-griseus',[196,174,173],'c4aead',12889773], ['nbs-iscc-b:subvinosogriseus.10','subvinosogriseus','subvinoso-griseus',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-b:subvinosogriseus.18','subvinosogriseus','subvinoso-griseus',[173,136,132],'ad8884',11372676], ['nbs-iscc-b:subvinosogriseus.19','subvinosogriseus','subvinoso-griseus',[144,93,93],'905d5d',9461085], ['nbs-iscc-b:subvinosogriseus.22','subvinosogriseus','subvinoso-griseus',[143,129,127],'8f817f',9404799], ['nbs-iscc-b:subvinosogriseus.60','subvinosogriseus','subvinoso-griseus',[149,128,112],'958070',9797744], ['nbs-iscc-b:subvinosogriseus.227','subvinosogriseus','subvinoso-griseus',[170,152,169],'aa98a9',11180201], ['nbs-iscc-b:subvinosogriseus.228','subvinosogriseus','subvinoso-griseus',[121,104,120],'796878',7956600], ['nbs-iscc-b:subvinosogriseus.232','subvinosogriseus','subvinoso-griseus',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-b:subvinosogriseus.233','subvinosogriseus','subvinoso-griseus',[139,133,137],'8b8589',9143689], ['nbs-iscc-b:subvinosogriseus.252','subvinosogriseus','subvinoso-griseus',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-b:subvinosogriseus.253','subvinosogriseus','subvinoso-griseus',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-b:subvinosus.4','subvinosus','subvinosus',[249,204,202],'f9ccca',16370890], ['nbs-iscc-b:subvinosus.5','subvinosus','subvinosus',[222,165,164],'dea5a4',14591396], ['nbs-iscc-b:subvinosus.7','subvinosus','subvinosus',[234,216,215],'ead8d7',15390935], ['nbs-iscc-b:subvinosus.8','subvinosus','subvinosus',[196,174,173],'c4aead',12889773], ['nbs-iscc-b:subvinosus.10','subvinosus','subvinosus',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-b:subvinosus.31','subvinosus','subvinosus',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-b:subvinosus.32','subvinosus','subvinosus',[199,173,163],'c7ada3',13086115], ['nbs-iscc-b:subviolaceous.194','subviolaceous','subviolaceous',[48,38,122],'30267a',3155578], ['nbs-iscc-b:subviolaceous.195','subviolaceous','subviolaceous',[108,121,184],'6c79b8',7109048], ['nbs-iscc-b:subviolaceous.196','subviolaceous','subviolaceous',[84,90,167],'545aa7',5528231], ['nbs-iscc-b:subviolaceous.198','subviolaceous','subviolaceous',[179,188,226],'b3bce2',11779298], ['nbs-iscc-b:subviolaceous.199','subviolaceous','subviolaceous',[135,145,191],'8791bf',8884671], ['nbs-iscc-b:subviolaceous.202','subviolaceous','subviolaceous',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-b:subviolaceous.203','subviolaceous','subviolaceous',[140,146,172],'8c92ac',9212588], ['nbs-iscc-b:subviolaceous.206','subviolaceous','subviolaceous',[126,115,184],'7e73b8',8287160], ['nbs-iscc-b:subviolaceous.209','subviolaceous','subviolaceous',[220,208,255],'dcd0ff',14471423], ['nbs-iscc-b:subviolaceous.210','subviolaceous','subviolaceous',[140,130,182],'8c82b6',9208502], ['nbs-iscc-b:subviolaceous.213','subviolaceous','subviolaceous',[196,195,221],'c4c3dd',12895197], ['nbs-iscc-b:subviolaceous.214','subviolaceous','subviolaceous',[150,144,171],'9690ab',9867435], ['nbs-iscc-b:subviolaceous.217','subviolaceous','subviolaceous',[211,153,230],'d399e6',13867494], ['nbs-iscc-b:subviolaceous.221','subviolaceous','subviolaceous',[213,186,219],'d5badb',14007003], ['nbs-iscc-b:subviolaceous.222','subviolaceous','subviolaceous',[182,149,192],'b695c0',11965888], ['nbs-iscc-b:subviridigriseus.190','subviridigriseus','subviridi-griseus',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-b:subviridigriseus.264','subviridigriseus','subviridi-griseus',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-b:subviridis.116','subviridis','subviridis',[189,218,87],'bdda57',12442199], ['nbs-iscc-b:subviridis.119','subviridis','subviridis',[201,220,137],'c9dc89',13229193], ['nbs-iscc-b:subviridis.121','subviridis','subviridis',[218,223,183],'dadfb7',14344119], ['nbs-iscc-b:subviridis.130','subviridis','subviridis',[131,211,125],'83d37d',8639357], ['nbs-iscc-b:subviridis.135','subviridis','subviridis',[147,197,146],'93c592',9684370], ['nbs-iscc-b:sulphureus.98','sulphureus','sulphureus',[233,228,80],'e9e450',15328336], ['nbs-iscc-b:sulphureus.101','sulphureus','sulphureus',[234,230,121],'eae679',15394425], ['nbs-iscc-b:sulphureus.102','sulphureus','sulphureus',[185,180,89],'b9b459',12170329], ['nbs-iscc-b:sulphureus.104','sulphureus','sulphureus',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-b:testaceus.26','testaceus','testaceus',[248,131,121],'f88379',16286585], ['nbs-iscc-b:testaceus.29','testaceus','testaceus',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-b:testaceus.39','testaceus','testaceus',[180,116,94],'b4745e',11826270], ['nbs-iscc-b:testaceus.42','testaceus','testaceus',[168,124,109],'a87c6d',11041901], ['nbs-iscc-b:testaceus.43','testaceus','testaceus',[121,68,59],'79443b',7947323], ['nbs-iscc-b:testaceus.53','testaceus','testaceus',[217,144,88],'d99058',14258264], ['nbs-iscc-b:testaceus.57','testaceus','testaceus',[166,123,91],'a67b5b',10910555], ['nbs-iscc-b:umbrinus.43','umbrinus','umbrinus',[121,68,59],'79443b',7947323], ['nbs-iscc-b:umbrinus.46','umbrinus','umbrinus',[103,76,71],'674c47',6769735], ['nbs-iscc-b:umbrinus.55','umbrinus','umbrinus',[128,70,27],'80461b',8406555], ['nbs-iscc-b:umbrinus.57','umbrinus','umbrinus',[166,123,91],'a67b5b',10910555], ['nbs-iscc-b:umbrinus.58','umbrinus','umbrinus',[111,78,55],'6f4e37',7294519], ['nbs-iscc-b:umbrinus.74','umbrinus','umbrinus',[153,101,21],'996515',10052885], ['nbs-iscc-b:umbrinus.77','umbrinus','umbrinus',[130,102,68],'826644',8545860], ['nbs-iscc-b:umbrinus.78','umbrinus','umbrinus',[75,54,33],'4b3621',4929057], ['nbs-iscc-b:venetus.159','venetus','venetus',[0,166,147],'00a693',42643], ['nbs-iscc-b:venetus.160','venetus','venetus',[0,122,116],'007a74',31348], ['nbs-iscc-b:venetus.163','venetus','venetus',[102,173,164],'66ada4',6729124], ['nbs-iscc-b:venetus.164','venetus','venetus',[49,120,115],'317873',3242099], ['nbs-iscc-b:vinosobubalinus.10','vinosobubalinus','vinoso-bubalinus',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-b:vinosobubalinus.28','vinosobubalinus','vinoso-bubalinus',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-b:vinosobubalinus.29','vinosobubalinus','vinoso-bubalinus',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-b:vinosobubalinus.31','vinosobubalinus','vinoso-bubalinus',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-b:vinosobubalinus.32','vinosobubalinus','vinoso-bubalinus',[199,173,163],'c7ada3',13086115], ['nbs-iscc-b:vinosobubalinus.33','vinosobubalinus','vinoso-bubalinus',[194,172,153],'c2ac99',12758169], ['nbs-iscc-b:vinosobubalinus.76','vinosobubalinus','vinoso-bubalinus',[193,154,107],'c19a6b',12687979], ['nbs-iscc-b:vinosobubalinus.79','vinosobubalinus','vinoso-bubalinus',[174,155,130],'ae9b82',11443074], ['nbs-iscc-b:vinosogriseus.19','vinosogriseus','vinoso-griseus',[144,93,93],'905d5d',9461085], ['nbs-iscc-b:vinosogriseus.23','vinosogriseus','vinoso-griseus',[92,80,79],'5c504f',6049871], ['nbs-iscc-b:vinosogriseus.45','vinosogriseus','vinoso-griseus',[151,127,115],'977f73',9928563], ['nbs-iscc-b:vinosogriseus.60','vinosogriseus','vinoso-griseus',[149,128,112],'958070',9797744], ['nbs-iscc-b:vinosogriseus.61','vinosogriseus','vinoso-griseus',[99,81,71],'635147',6508871], ['nbs-iscc-b:vinosogriseus.228','vinosogriseus','vinoso-griseus',[121,104,120],'796878',7956600], ['nbs-iscc-b:vinosolividus.18','vinosolividus','vinoso-lividus',[173,136,132],'ad8884',11372676], ['nbs-iscc-b:vinosolividus.19','vinosolividus','vinoso-lividus',[144,93,93],'905d5d',9461085], ['nbs-iscc-b:vinosolividus.42','vinosolividus','vinoso-lividus',[168,124,109],'a87c6d',11041901], ['nbs-iscc-b:vinosolividus.46','vinosolividus','vinoso-lividus',[103,76,71],'674c47',6769735], ['nbs-iscc-b:vinosolividus.251','vinosolividus','vinoso-lividus',[193,126,145],'c17e91',12680849], ['nbs-iscc-b:vinosolividus.262','vinosolividus','vinoso-lividus',[145,95,109],'915f6d',9527149], ['nbs-iscc-b:vinosopurpureus.245','vinosopurpureus','vinoso-purpureus',[131,100,121],'836479',8610937], ['nbs-iscc-b:vinosus.3','vinosus','vinosus',[228,113,122],'e4717a',14971258], ['nbs-iscc-b:vinosus.6','vinosus','vinosus',[192,128,129],'c08081',12615809], ['nbs-iscc-b:vinosus.19','vinosus','vinosus',[144,93,93],'905d5d',9461085], ['nbs-iscc-b:vinosus.26','vinosus','vinosus',[248,131,121],'f88379',16286585], ['nbs-iscc-b:violaceoardesiacus.228','violaceoardesiacus','violaceo-ardesiacus',[121,104,120],'796878',7956600], ['nbs-iscc-b:violaceoardesiacus.229','violaceoardesiacus','violaceo-ardesiacus',[80,64,77],'50404d',5259341], ['nbs-iscc-b:violaceoardesiacus.234','violaceoardesiacus','violaceo-ardesiacus',[93,85,91],'5d555b',6116699], ['nbs-iscc-b:violaceogriseus.186','violaceogriseus','violaceo-griseus',[83,104,120],'536878',5466232], ['nbs-iscc-b:violaceogriseus.204','violaceogriseus','violaceo-griseus',[76,81,109],'4c516d',5001581], ['nbs-iscc-b:violaceogriseus.228','violaceogriseus','violaceo-griseus',[121,104,120],'796878',7956600], ['nbs-iscc-b:violaceogriseus.233','violaceogriseus','violaceo-griseus',[139,133,137],'8b8589',9143689], ['nbs-iscc-b:violaceogriseus.234','violaceogriseus','violaceo-griseus',[93,85,91],'5d555b',6116699], ['nbs-iscc-b:violaceogriseus.265','violaceogriseus','violaceo-griseus',[132,132,130],'848482',8684674], ['nbs-iscc-b:violaceogriseus.266','violaceogriseus','violaceo-griseus',[85,85,85],'555555',5592405], ['nbs-iscc-b:violaceoniger.229','violaceoniger','violaceo-niger',[80,64,77],'50404d',5259341], ['nbs-iscc-b:violaceoniger.234','violaceoniger','violaceo-niger',[93,85,91],'5d555b',6116699], ['nbs-iscc-b:violaceoniger.266','violaceoniger','violaceo-niger',[85,85,85],'555555',5592405], ['nbs-iscc-b:violaceoniger.267','violaceoniger','violaceo-niger',[34,34,34],'222222',2236962], ['nbs-iscc-b:violaceus.194','violaceus','violaceus',[48,38,122],'30267a',3155578], ['nbs-iscc-b:violaceus.196','violaceus','violaceus',[84,90,167],'545aa7',5528231], ['nbs-iscc-b:violaceus.200','violaceus','violaceus',[78,81,128],'4e5180',5132672], ['nbs-iscc-b:violaceus.205','violaceus','violaceus',[144,101,202],'9065ca',9463242], ['nbs-iscc-b:violaceus.206','violaceus','violaceus',[126,115,184],'7e73b8',8287160], ['nbs-iscc-b:violaceus.207','violaceus','violaceus',[96,78,151],'604e97',6311575], ['nbs-iscc-b:violaceus.210','violaceus','violaceus',[140,130,182],'8c82b6',9208502], ['nbs-iscc-b:violaceus.211','violaceus','violaceus',[96,78,129],'604e81',6311553], ['nbs-iscc-b:violaceus.216','violaceus','violaceus',[154,78,174],'9a4eae',10112686], ['nbs-iscc-b:violaceus.219','violaceus','violaceus',[96,47,107],'602f6b',6303595], ['nbs-iscc-b:violaceus.223','violaceus','violaceus',[134,96,142],'86608e',8806542], ['nbs-iscc-b:viridicaeruleus.140','viridicaeruleus','viridi-caeruleus',[62,180,137],'3eb489',4109449], ['nbs-iscc-b:viridicaeruleus.144','viridicaeruleus','viridi-caeruleus',[106,171,142],'6aab8e',6990734], ['nbs-iscc-b:viridicaeruleus.148','viridicaeruleus','viridi-caeruleus',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-b:viridicaeruleus.162','viridicaeruleus','viridi-caeruleus',[150,222,209],'96ded1',9887441], ['nbs-iscc-b:viridicaeruleus.163','viridicaeruleus','viridi-caeruleus',[102,173,164],'66ada4',6729124], ['nbs-iscc-b:viridiflavus.98','viridiflavus','viridi-flavus',[233,228,80],'e9e450',15328336], ['nbs-iscc-b:viridiflavus.99','viridiflavus','viridi-flavus',[190,183,46],'beb72e',12498734], ['nbs-iscc-b:viridiflavus.101','viridiflavus','viridi-flavus',[234,230,121],'eae679',15394425], ['nbs-iscc-b:viridiflavus.102','viridiflavus','viridi-flavus',[185,180,89],'b9b459',12170329], ['nbs-iscc-b:viridiflavus.104','viridiflavus','viridi-flavus',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-b:viridiflavus.115','viridiflavus','viridi-flavus',[141,182,0],'8db600',9287168], ['nbs-iscc-b:viridiflavus.116','viridiflavus','viridi-flavus',[189,218,87],'bdda57',12442199], ['nbs-iscc-b:viridiflavus.117','viridiflavus','viridi-flavus',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-b:viridiflavus.119','viridiflavus','viridi-flavus',[201,220,137],'c9dc89',13229193], ['nbs-iscc-b:viridiflavus.120','viridiflavus','viridi-flavus',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-b:viridiglaucus.119','viridiglaucus','viridi-glaucus',[201,220,137],'c9dc89',13229193], ['nbs-iscc-b:viridiglaucus.121','viridiglaucus','viridi-glaucus',[218,223,183],'dadfb7',14344119], ['nbs-iscc-b:viridiglaucus.143','viridiglaucus','viridi-glaucus',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-b:viridiglaucus.148','viridiglaucus','viridi-glaucus',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-b:viridigriseus.120','viridigriseus','viridi-griseus',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-b:viridigriseus.122','viridigriseus','viridi-griseus',[143,151,121],'8f9779',9410425], ['nbs-iscc-b:viridigriseus.149','viridigriseus','viridi-griseus',[141,163,153],'8da399',9282457], ['nbs-iscc-b:viridigriseus.150','viridigriseus','viridi-griseus',[94,113,106],'5e716a',6189418], ['nbs-iscc-b:viridigriseus.154','viridigriseus','viridi-griseus',[178,190,181],'b2beb5',11714229], ['nbs-iscc-b:viridigriseus.155','viridigriseus','viridi-griseus',[125,137,132],'7d8984',8227204], ['nbs-iscc-b:viridigriseus.191','viridigriseus','viridi-griseus',[129,135,139],'81878b',8488843], ['nbs-iscc-b:viridigriseus.192','viridigriseus','viridi-griseus',[81,88,94],'51585e',5331038], ['nbs-iscc-b:viridigriseus.264','viridigriseus','viridi-griseus',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-b:viridigriseus.265','viridigriseus','viridi-griseus',[132,132,130],'848482',8684674], ['nbs-iscc-b:viridiniger.266','viridiniger','viridi-niger',[85,85,85],'555555',5592405], ['nbs-iscc-b:viridiolivaceus.91','viridiolivaceus','viridi-olivaceus ',[161,143,96],'a18f60',10588000], ['nbs-iscc-b:viridiolivaceus.106','viridiolivaceus','viridi-olivaceus ',[134,126,54],'867e36',8814134], ['nbs-iscc-b:viridiolivaceus.120','viridiolivaceus','viridi-olivaceus ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-b:viridiolivaceus.122','viridiolivaceus','viridi-olivaceus ',[143,151,121],'8f9779',9410425], ['nbs-iscc-b:viridis.115','viridis','viridis',[141,182,0],'8db600',9287168], ['nbs-iscc-b:viridis.116','viridis','viridis',[189,218,87],'bdda57',12442199], ['nbs-iscc-b:viridis.117','viridis','viridis',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-b:viridis.130','viridis','viridis',[131,211,125],'83d37d',8639357], ['nbs-iscc-b:viridis.135','viridis','viridis',[147,197,146],'93c592',9684370], ['nbs-iscc-b:viridis.140','viridis','viridis',[62,180,137],'3eb489',4109449] ]; } sub _description { return { 'subtitle' => 'Colour Terminology in Biology', 'title' => 'NBS/ISCC B', 'description' => ' Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (B) Colour Terminology in Biology Colour Terminology in Biology, H.A. Dade This combinatorial dictionary seems to be derived from Latin (eg. viridi-caeruleus). Its 128 names map to 789 colors, using 214 of the 267 centroids. But averaging over 6 colors per name means it has little descriptive power. [http://swissnet.ai.mit.edu/~jaffer/Color/Dictionaries#B] ' } } 1; F.pm100644000765000024 12341311667760546 22714 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionary/NBS_ISCCpackage Color::Library::Dictionary::NBS_ISCC::F; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::NBS_ISCC::F; =pod =head1 NAME Color::Library::Dictionary::NBS_ISCC::F - (NBS/ISCC F) Colors; (for) Ready-Mixed Paints =head1 DESCRIPTION Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (F) Colors; (for) Ready-Mixed Paints Federal Specification TT-C-595, Colors; (for) Ready-Mixed Paints This dictionary is a hybrid of combinatorial and idiosyncratic terms. 134 names map to 174 colors, using only 73 out of 267 centroids. L =head1 COLORS aircraft cream aircraftcream #c2b280 aircraft gray aircraftgray #b9b8b5 anti-corrosive brown anticorrosivebrown #422518 anti-corrosive green anticorrosivegreen #403d21 azure blue azureblue #8791bf battleship gray battleshipgray #848482 black black #222222 black boottopping blackboottopping #222222 black deck blackdeck #222222 blue blue #436b95 blue drab bluedrab #4e5755 blue gray bluegray #848482 blue green bluegreen #93c592 blue striping bluestriping #0067a5 blue tint bluetint #c7e6d7 bright blue brightblue #0067a5 bright green brightgreen #3b7861 brilliant yellow brilliantyellow #f3c300 brown striping brownstriping #56070c brown striping brownstriping #593319 buff buff #e3a857 buff buff #c19a6b buff buff #c2b280 buff buff #d99058 buff buff #be8a3d cameo rose cameorose #fad6a5 cameo rose cameorose #f4c2c2 canary yellow canaryyellow #f8de7e canyon brown canyonbrown #635147 chrome green chromegreen #173620 chrome yellow chromeyellow #f6a600 chrome yellow chromeyellow #eaa221 clear blue clearblue #367588 cream cream #c2b280 cream striping creamstriping #f8de7e dark earth darkearth #7e6d5a dark earth darkearth #6c541e dark gray darkgray #555555 dark green darkgreen #355e3b dark green darkgreen #3a4b47 dark green deck darkgreendeck #3a4b47 dark gull gray darkgullgray #848482 dark putty darkputty #57554c dark red boottopping darkredboottopping #3e322c dark zinc yellow primer darkzincyellowprimer #515744 deep navy gray deepnavygray #555555 deep reddish brown deepreddishbrown #3e1d1e desert sand desertsand #958070 desert sand desertsand #a67b5b dull red dullred #79443b earth brown earthbrown #635147 earth red earthred #6f4e37 earth yellow earthyellow #c19a6b eggshell eggshell #f3e5ab eggshell eggshell #f0ead6 engine gray enginegray #555555 engine gray enginegray #848482 exterior green #14 or exterior green no. fourteen exteriorgreen14orexteriorgreennofourteen #2b3d26 exterior green #15 or exterior green no. fifteen exteriorgreen15orexteriorgreennofifteen #8a9a5b field drab fielddrab #7e6d5a field drab fielddrab #6c541e fire red firered #be0032 flat cream flatcream #f3e5ab forest green forestgreen #2b3d26 forest green forestgreen #355e3b gloss black glossblack #222222 government wall green governmentwallgreen #8f9779 gray gray #848482 gray gray #c2b280 gray gray #bfb8a5 gray #12 gray12 #bfb8a5 gray #7 gray7 #8c8767 gray #7 gray7 #8a8776 gray deck graydeck #555555 gray deck graydeck #848482 gray tint graytint #c2b280 gray wood graywood #848482 green green #355e3b green green #355e3b green green #1c352d green green #2b3d26 green green #b9b57d green green #403d21 green green #3b7861 green boottopping greenboottopping #355e3b green striping greenstriping #355e3b green tint greentint #dadfb7 green zinc yellow primer greenzincyellowprimer #8a9a5b haze-gray hazegray #848482 highlight buff highlightbuff #c2b280 hospital ship green hospitalshipgreen #679267 hull black hullblack #222222 hull gray hullgray #91a3b0 insignia blue insigniablue #252440 insignia blue insigniablue #36454f insignia red insigniared #be0032 insignia red insigniared #ab4e52 insignia white insigniawhite #f2f3f4 instrument black instrumentblack #222222 interior green interiorgreen #4a5d23 intermediate blue intermediateblue #536878 international orange internationalorange #e25822 ivory ivory #f8de7e ivory cream ivorycream #f3e5ab jet jet #222222 jet black jetblack #222222 lemon yellow lemonyellow #f3c300 light blue lightblue #436b95 light blue lightblue #317873 light blue lightblue #367588 light blue lightblue #8ed1b2 light blue lightblue #317873 light blue lightblue #367588 light blue enamel lightblueenamel #00304e light blue,, light blue 5 lightbluelightblue5 #c7e6d7 light gray lightgray #b9b8b5 light gray lightgray #f3e5ab light gray lightgray #c2b280 light gray lightgray #848482 light gray lightgray #b9b8b5 light gray boottopping lightgrayboottopping #848482 light green lightgreen #44944a light green lightgreen #c9dc89 light green lightgreen #679267 light green lightgreen #b9b57d light green lightgreen #8a9a5b light green lightgreen #b2beb5 light gull gray lightgullgray #b9b8b5 light ivory lightivory #f3e5ab light navy gray lightnavygray #848482 light olive lightolive #8c8767 light red boottopping lightredboottopping #56070c light yellow lightyellow #f3c300 light yellow lightyellow #f8de7e loam loam #57554c machinery green machinerygreen #5e716a marine green marinegreen #3b3121 maroon maroon #56070c maroon maroon #674c47 medium blue mediumblue #536878 medium blue mediumblue #436b95 medium gray mediumgray #8c8767 medium gray mediumgray #848482 medium gray mediumgray #8a8776 medium green mediumgreen #3a4b47 medium green mediumgreen #00622d medium green mediumgreen #5e716a medium navy gray mediumnavygray #848482 medium tan mediumtan #826644 metallic brown metallicbrown #56070c metallic brown metallicbrown #56070c metallic brown metallicbrown #593319 metallic red metallicred #56070c middle stone middlestone #967117 middlestone middlestone #967117 mosstone mosstone #8a9a5b national school bus chrome nationalschoolbuschrome #f6a600 navy gray navygray #555555 ocean gray oceangray #536878 ocean gray oceangray #848482 olive drab olivedrab #3b3121 olive drab olivedrab #5b5842 olive drab olivedrab #403d21 olive green olivegreen #403d21 orange orange #d9603b orange orange #e25822 orange orange #ed872d orange yellow orangeyellow #f6a600 orange yellow orangeyellow #eaa221 oyster gray oystergray #b9b8b5 peach peach #fad6a5 pea green peagreen #679267 pearl gray pearlgray #c2b280 pearl gray pearlgray #b9b8b5 pullman green pullmangreen #2b3d26 pullman green pullmangreen #403d21 pullman green pullmangreen #5b5842 purple purple #86608e red red #be0032 red red #be0032 red red #ab4e52 red boottopping redboottopping #56070c red deck reddeck #56070c red lead redlead #d9603b red lead and oil redleadandoil #e25822 red lead modified redleadmodified #aa381e red oxide redoxide #56070c red striping redstriping #be0032 road and tire gray roadandtiregray #848482 royal blue royalblue #00304e sand sand #958070 sand sand #c2b280 sand sand #a18f60 sea blue seablue #202830 sea blue seablue #202830 sea blue seablue #51585e sea blue seablue #51585e sea gray seagray #555555 seal brown sealbrown #6f4e37 slate slate #555555 soft yellow softyellow #f8de7e spring green springgreen #8f9779 spruce green sprucegreen #515744 suntan suntan #f3e5ab terra cotta terracotta #a87c6d vermilion vermilion #be0032 vineyard green vineyardgreen #1a2421 vivid orange vividorange #e25822 warm gray warmgray #c2b280 willow green willowgreen #44944a yellow yellow #f6a600 yellow yellow #eaa221 yellow yellow #f6a600 yellow striping yellowstriping #f6a600 yellow striping yellowstriping #eaa221 yellow tint yellowtint #fad6a5 zinc chromate zincchromate #8a9a5b zinc yellow primer zincyellowprimer #c9ae5d =cut sub _load_color_list() { return [ ['nbs-iscc-f:aircraftcream.90','aircraftcream','aircraft cream',[194,178,128],'c2b280',12759680], ['nbs-iscc-f:aircraftgray.264','aircraftgray','aircraft gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-f:anticorrosivebrown.59','anticorrosivebrown','anti-corrosive brown',[66,37,24],'422518',4334872], ['nbs-iscc-f:anticorrosivegreen.108','anticorrosivegreen','anti-corrosive green',[64,61,33],'403d21',4209953], ['nbs-iscc-f:azureblue.199','azureblue','azure blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-f:battleshipgray.265','battleshipgray','battleship gray',[132,132,130],'848482',8684674], ['nbs-iscc-f:black.267','black','black',[34,34,34],'222222',2236962], ['nbs-iscc-f:blackboottopping.267','blackboottopping','black boottopping',[34,34,34],'222222',2236962], ['nbs-iscc-f:blackdeck.267','blackdeck','black deck',[34,34,34],'222222',2236962], ['nbs-iscc-f:blue.182','blue','blue',[67,107,149],'436b95',4418453], ['nbs-iscc-f:bluedrab.156','bluedrab','blue drab',[78,87,85],'4e5755',5134165], ['nbs-iscc-f:bluegray.265','bluegray','blue gray',[132,132,130],'848482',8684674], ['nbs-iscc-f:bluegreen.135','bluegreen','blue green',[147,197,146],'93c592',9684370], ['nbs-iscc-f:bluestriping.178','bluestriping','blue striping',[0,103,165],'0067a5',26533], ['nbs-iscc-f:bluetint.148','bluetint','blue tint',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-f:brightblue.178','brightblue','bright blue',[0,103,165],'0067a5',26533], ['nbs-iscc-f:brightgreen.145','brightgreen','bright green',[59,120,97],'3b7861',3897441], ['nbs-iscc-f:brilliantyellow.82','brilliantyellow','brilliant yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-f:brownstriping.41','brownstriping','brown striping',[86,7,12],'56070c',5637900], ['nbs-iscc-f:brownstriping.56','brownstriping','brown striping',[89,51,25],'593319',5845785], ['nbs-iscc-f:buff.71','buff','buff',[227,168,87],'e3a857',14919767], ['nbs-iscc-f:buff.76','buff','buff',[193,154,107],'c19a6b',12687979], ['nbs-iscc-f:buff.90','buff','buff',[194,178,128],'c2b280',12759680], ['nbs-iscc-f:buff.53','buff','buff',[217,144,88],'d99058',14258264], ['nbs-iscc-f:buff.72','buff','buff',[190,138,61],'be8a3d',12487229], ['nbs-iscc-f:cameorose.73','cameorose','cameo rose',[250,214,165],'fad6a5',16438949], ['nbs-iscc-f:cameorose.28','cameorose','cameo rose',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-f:canaryyellow.86','canaryyellow','canary yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-f:canyonbrown.61','canyonbrown','canyon brown',[99,81,71],'635147',6508871], ['nbs-iscc-f:chromegreen.138','chromegreen','chrome green',[23,54,32],'173620',1521184], ['nbs-iscc-f:chromeyellow.66','chromeyellow','chrome yellow',[246,166,0],'f6a600',16164352], ['nbs-iscc-f:chromeyellow.68','chromeyellow','chrome yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-f:clearblue.173','clearblue','clear blue',[54,117,136],'367588',3569032], ['nbs-iscc-f:cream.90','cream','cream',[194,178,128],'c2b280',12759680], ['nbs-iscc-f:creamstriping.86','creamstriping','cream striping',[248,222,126],'f8de7e',16309886], ['nbs-iscc-f:darkearth.80','darkearth','dark earth',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-f:darkearth.95','darkearth','dark earth',[108,84,30],'6c541e',7099422], ['nbs-iscc-f:darkgray.266','darkgray','dark gray',[85,85,85],'555555',5592405], ['nbs-iscc-f:darkgreen.137','darkgreen','dark green',[53,94,59],'355e3b',3497531], ['nbs-iscc-f:darkgreen.151','darkgreen','dark green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-f:darkgreendeck.151','darkgreendeck','dark green deck',[58,75,71],'3a4b47',3820359], ['nbs-iscc-f:darkgullgray.265','darkgullgray','dark gull gray',[132,132,130],'848482',8684674], ['nbs-iscc-f:darkputty.113','darkputty','dark putty',[87,85,76],'57554c',5723468], ['nbs-iscc-f:darkredboottopping.62','darkredboottopping','dark red boottopping ',[62,50,44],'3e322c',4076076], ['nbs-iscc-f:darkzincyellowprimer.127','darkzincyellowprimer','dark zinc yellow primer',[81,87,68],'515744',5330756], ['nbs-iscc-f:deepnavygray.266','deepnavygray','deep navy gray',[85,85,85],'555555',5592405], ['nbs-iscc-f:deepreddishbrown.44','deepreddishbrown','deep reddish brown',[62,29,30],'3e1d1e',4070686], ['nbs-iscc-f:desertsand.60','desertsand','desert sand',[149,128,112],'958070',9797744], ['nbs-iscc-f:desertsand.57','desertsand','desert sand',[166,123,91],'a67b5b',10910555], ['nbs-iscc-f:dullred.43','dullred','dull red',[121,68,59],'79443b',7947323], ['nbs-iscc-f:earthbrown.61','earthbrown','earth brown',[99,81,71],'635147',6508871], ['nbs-iscc-f:earthred.58','earthred','earth red ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-f:earthyellow.76','earthyellow','earth yellow',[193,154,107],'c19a6b',12687979], ['nbs-iscc-f:eggshell.89','eggshell','eggshell ',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-f:eggshell.92','eggshell','eggshell ',[240,234,214],'f0ead6',15788758], ['nbs-iscc-f:enginegray.266','enginegray','engine gray',[85,85,85],'555555',5592405], ['nbs-iscc-f:enginegray.265','enginegray','engine gray',[132,132,130],'848482',8684674], ['nbs-iscc-f:exteriorgreen14orexteriorgreennofourteen.126','exteriorgreen14orexteriorgreennofourteen','exterior green #14 or exterior green no. fourteen',[43,61,38],'2b3d26',2833702], ['nbs-iscc-f:exteriorgreen15orexteriorgreennofifteen.120','exteriorgreen15orexteriorgreennofifteen','exterior green #15 or exterior green no. fifteen',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-f:fielddrab.80','fielddrab','field drab',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-f:fielddrab.95','fielddrab','field drab',[108,84,30],'6c541e',7099422], ['nbs-iscc-f:firered.11','firered','fire red',[190,0,50],'be0032',12451890], ['nbs-iscc-f:flatcream.89','flatcream','flat cream',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-f:forestgreen.126','forestgreen','forest green',[43,61,38],'2b3d26',2833702], ['nbs-iscc-f:forestgreen.137','forestgreen','forest green',[53,94,59],'355e3b',3497531], ['nbs-iscc-f:glossblack.267','glossblack','gloss black',[34,34,34],'222222',2236962], ['nbs-iscc-f:governmentwallgreen.122','governmentwallgreen','government wall green',[143,151,121],'8f9779',9410425], ['nbs-iscc-f:gray.265','gray','gray',[132,132,130],'848482',8684674], ['nbs-iscc-f:gray.90','gray','gray',[194,178,128],'c2b280',12759680], ['nbs-iscc-f:gray.93','gray','gray',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-f:gray12.93','gray12','gray #12 ',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-f:gray7.109','gray7','gray #7 ',[140,135,103],'8c8767',9209703], ['nbs-iscc-f:gray7.112','gray7','gray #7 ',[138,135,118],'8a8776',9078646], ['nbs-iscc-f:graydeck.266','graydeck','gray deck',[85,85,85],'555555',5592405], ['nbs-iscc-f:graydeck.265','graydeck','gray deck',[132,132,130],'848482',8684674], ['nbs-iscc-f:graytint.90','graytint','gray tint',[194,178,128],'c2b280',12759680], ['nbs-iscc-f:graywood.265','graywood','gray wood',[132,132,130],'848482',8684674], ['nbs-iscc-f:green.137','green','green',[53,94,59],'355e3b',3497531], ['nbs-iscc-f:green.137','green','green',[53,94,59],'355e3b',3497531], ['nbs-iscc-f:green.147','green','green',[28,53,45],'1c352d',1848621], ['nbs-iscc-f:green.126','green','green',[43,61,38],'2b3d26',2833702], ['nbs-iscc-f:green.105','green','green',[185,181,125],'b9b57d',12170621], ['nbs-iscc-f:green.108','green','green',[64,61,33],'403d21',4209953], ['nbs-iscc-f:green.145','green','green',[59,120,97],'3b7861',3897441], ['nbs-iscc-f:greenboottopping.137','greenboottopping','green boottopping',[53,94,59],'355e3b',3497531], ['nbs-iscc-f:greenstriping.137','greenstriping','green striping',[53,94,59],'355e3b',3497531], ['nbs-iscc-f:greentint.121','greentint','green tint',[218,223,183],'dadfb7',14344119], ['nbs-iscc-f:greenzincyellowprimer.120','greenzincyellowprimer','green zinc yellow primer',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-f:hazegray.265','hazegray','haze-gray',[132,132,130],'848482',8684674], ['nbs-iscc-f:highlightbuff.90','highlightbuff','highlight buff',[194,178,128],'c2b280',12759680], ['nbs-iscc-f:hospitalshipgreen.136','hospitalshipgreen','hospital ship green',[103,146,103],'679267',6787687], ['nbs-iscc-f:hullblack.267','hullblack','hull black',[34,34,34],'222222',2236962], ['nbs-iscc-f:hullgray.185','hullgray','hull gray',[145,163,176],'91a3b0',9544624], ['nbs-iscc-f:insigniablue.201','insigniablue','insignia blue',[37,36,64],'252440',2434112], ['nbs-iscc-f:insigniablue.187','insigniablue','insignia blue',[54,69,79],'36454f',3556687], ['nbs-iscc-f:insigniared.11','insigniared','insignia red',[190,0,50],'be0032',12451890], ['nbs-iscc-f:insigniared.15','insigniared','insignia red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-f:insigniawhite.263','insigniawhite','insignia white',[242,243,244],'f2f3f4',15922164], ['nbs-iscc-f:instrumentblack.267','instrumentblack','instrument black',[34,34,34],'222222',2236962], ['nbs-iscc-f:interiorgreen.125','interiorgreen','interior green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-f:intermediateblue.186','intermediateblue','intermediate blue',[83,104,120],'536878',5466232], ['nbs-iscc-f:internationalorange.34','internationalorange','international orange',[226,88,34],'e25822',14833698], ['nbs-iscc-f:ivory.86','ivory','ivory',[248,222,126],'f8de7e',16309886], ['nbs-iscc-f:ivorycream.89','ivorycream','ivory cream',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-f:jet.267','jet','jet',[34,34,34],'222222',2236962], ['nbs-iscc-f:jetblack.267','jetblack','jet black',[34,34,34],'222222',2236962], ['nbs-iscc-f:lemonyellow.82','lemonyellow','lemon yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-f:lightblue.182','lightblue','light blue',[67,107,149],'436b95',4418453], ['nbs-iscc-f:lightblue.164','lightblue','light blue',[49,120,115],'317873',3242099], ['nbs-iscc-f:lightblue.173','lightblue','light blue',[54,117,136],'367588',3569032], ['nbs-iscc-f:lightblue.143','lightblue','light blue',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-f:lightblue.164','lightblue','light blue',[49,120,115],'317873',3242099], ['nbs-iscc-f:lightblue.173','lightblue','light blue',[54,117,136],'367588',3569032], ['nbs-iscc-f:lightblueenamel.183','lightblueenamel','light blue enamel',[0,48,78],'00304e',12366], ['nbs-iscc-f:lightbluelightblue5.148','lightbluelightblue5','light blue,, light blue 5',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-f:lightgray.264','lightgray','light gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-f:lightgray.89','lightgray','light gray',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-f:lightgray.90','lightgray','light gray',[194,178,128],'c2b280',12759680], ['nbs-iscc-f:lightgray.265','lightgray','light gray',[132,132,130],'848482',8684674], ['nbs-iscc-f:lightgray.264','lightgray','light gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-f:lightgrayboottopping.265','lightgrayboottopping','light gray boottopping',[132,132,130],'848482',8684674], ['nbs-iscc-f:lightgreen.131','lightgreen','light green',[68,148,74],'44944a',4494410], ['nbs-iscc-f:lightgreen.119','lightgreen','light green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-f:lightgreen.136','lightgreen','light green',[103,146,103],'679267',6787687], ['nbs-iscc-f:lightgreen.105','lightgreen','light green',[185,181,125],'b9b57d',12170621], ['nbs-iscc-f:lightgreen.120','lightgreen','light green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-f:lightgreen.154','lightgreen','light green',[178,190,181],'b2beb5',11714229], ['nbs-iscc-f:lightgullgray.264','lightgullgray','light gull gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-f:lightivory.89','lightivory','light ivory',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-f:lightnavygray.265','lightnavygray','light navy gray',[132,132,130],'848482',8684674], ['nbs-iscc-f:lightolive.109','lightolive','light olive',[140,135,103],'8c8767',9209703], ['nbs-iscc-f:lightredboottopping.41','lightredboottopping','light red boottopping ',[86,7,12],'56070c',5637900], ['nbs-iscc-f:lightyellow.82','lightyellow','light yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-f:lightyellow.86','lightyellow','light yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-f:loam.113','loam','loam',[87,85,76],'57554c',5723468], ['nbs-iscc-f:machinerygreen.150','machinerygreen','machinery green',[94,113,106],'5e716a',6189418], ['nbs-iscc-f:marinegreen.96','marinegreen','marine green',[59,49,33],'3b3121',3879201], ['nbs-iscc-f:maroon.41','maroon','maroon',[86,7,12],'56070c',5637900], ['nbs-iscc-f:maroon.46','maroon','maroon',[103,76,71],'674c47',6769735], ['nbs-iscc-f:mediumblue.186','mediumblue','medium blue',[83,104,120],'536878',5466232], ['nbs-iscc-f:mediumblue.182','mediumblue','medium blue',[67,107,149],'436b95',4418453], ['nbs-iscc-f:mediumgray.109','mediumgray','medium gray',[140,135,103],'8c8767',9209703], ['nbs-iscc-f:mediumgray.265','mediumgray','medium gray',[132,132,130],'848482',8684674], ['nbs-iscc-f:mediumgray.112','mediumgray','medium gray',[138,135,118],'8a8776',9078646], ['nbs-iscc-f:mediumgreen.151','mediumgreen','medium green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-f:mediumgreen.132','mediumgreen','medium green',[0,98,45],'00622d',25133], ['nbs-iscc-f:mediumgreen.150','mediumgreen','medium green',[94,113,106],'5e716a',6189418], ['nbs-iscc-f:mediumnavygray.265','mediumnavygray','medium navy gray',[132,132,130],'848482',8684674], ['nbs-iscc-f:mediumtan.77','mediumtan','medium tan',[130,102,68],'826644',8545860], ['nbs-iscc-f:metallicbrown.41','metallicbrown','metallic brown ',[86,7,12],'56070c',5637900], ['nbs-iscc-f:metallicbrown.41','metallicbrown','metallic brown ',[86,7,12],'56070c',5637900], ['nbs-iscc-f:metallicbrown.56','metallicbrown','metallic brown ',[89,51,25],'593319',5845785], ['nbs-iscc-f:metallicred.41','metallicred','metallic red ',[86,7,12],'56070c',5637900], ['nbs-iscc-f:middlestone.94','middlestone','middle stone ',[150,113,23],'967117',9859351], ['nbs-iscc-f:middlestone.94','middlestone','middlestone ',[150,113,23],'967117',9859351], ['nbs-iscc-f:mosstone.120','mosstone','mosstone ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-f:nationalschoolbuschrome.66','nationalschoolbuschrome','national school bus chrome ',[246,166,0],'f6a600',16164352], ['nbs-iscc-f:navygray.266','navygray','navy gray',[85,85,85],'555555',5592405], ['nbs-iscc-f:oceangray.186','oceangray','ocean gray',[83,104,120],'536878',5466232], ['nbs-iscc-f:oceangray.265','oceangray','ocean gray',[132,132,130],'848482',8684674], ['nbs-iscc-f:olivedrab.96','olivedrab','olive drab',[59,49,33],'3b3121',3879201], ['nbs-iscc-f:olivedrab.110','olivedrab','olive drab',[91,88,66],'5b5842',5986370], ['nbs-iscc-f:olivedrab.108','olivedrab','olive drab',[64,61,33],'403d21',4209953], ['nbs-iscc-f:olivegreen.108','olivegreen','olive green',[64,61,33],'403d21',4209953], ['nbs-iscc-f:orange.35','orange','orange',[217,96,59],'d9603b',14245947], ['nbs-iscc-f:orange.34','orange','orange',[226,88,34],'e25822',14833698], ['nbs-iscc-f:orange.50','orange','orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-f:orangeyellow.66','orangeyellow','orange yellow',[246,166,0],'f6a600',16164352], ['nbs-iscc-f:orangeyellow.68','orangeyellow','orange yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-f:oystergray.264','oystergray','oyster gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-f:peach.73','peach','peach',[250,214,165],'fad6a5',16438949], ['nbs-iscc-f:peagreen.136','peagreen','pea green',[103,146,103],'679267',6787687], ['nbs-iscc-f:pearlgray.90','pearlgray','pearl gray',[194,178,128],'c2b280',12759680], ['nbs-iscc-f:pearlgray.264','pearlgray','pearl gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-f:pullmangreen.126','pullmangreen','pullman green',[43,61,38],'2b3d26',2833702], ['nbs-iscc-f:pullmangreen.108','pullmangreen','pullman green',[64,61,33],'403d21',4209953], ['nbs-iscc-f:pullmangreen.110','pullmangreen','pullman green',[91,88,66],'5b5842',5986370], ['nbs-iscc-f:purple.223','purple','purple',[134,96,142],'86608e',8806542], ['nbs-iscc-f:red.11','red','red',[190,0,50],'be0032',12451890], ['nbs-iscc-f:red.11','red','red',[190,0,50],'be0032',12451890], ['nbs-iscc-f:red.15','red','red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-f:redboottopping.41','redboottopping','red boottopping',[86,7,12],'56070c',5637900], ['nbs-iscc-f:reddeck.41','reddeck','red deck',[86,7,12],'56070c',5637900], ['nbs-iscc-f:redlead.35','redlead','red lead',[217,96,59],'d9603b',14245947], ['nbs-iscc-f:redleadandoil.34','redleadandoil','red lead and oil',[226,88,34],'e25822',14833698], ['nbs-iscc-f:redleadmodified.36','redleadmodified','red lead modified',[170,56,30],'aa381e',11155486], ['nbs-iscc-f:redoxide.41','redoxide','red oxide',[86,7,12],'56070c',5637900], ['nbs-iscc-f:redstriping.11','redstriping','red striping',[190,0,50],'be0032',12451890], ['nbs-iscc-f:roadandtiregray.265','roadandtiregray','road and tire gray',[132,132,130],'848482',8684674], ['nbs-iscc-f:royalblue.183','royalblue','royal blue',[0,48,78],'00304e',12366], ['nbs-iscc-f:sand.60','sand','sand',[149,128,112],'958070',9797744], ['nbs-iscc-f:sand.90','sand','sand',[194,178,128],'c2b280',12759680], ['nbs-iscc-f:sand.91','sand','sand',[161,143,96],'a18f60',10588000], ['nbs-iscc-f:seablue.188','seablue','sea blue',[32,40,48],'202830',2107440], ['nbs-iscc-f:seablue.188','seablue','sea blue',[32,40,48],'202830',2107440], ['nbs-iscc-f:seablue.192','seablue','sea blue',[81,88,94],'51585e',5331038], ['nbs-iscc-f:seablue.192','seablue','sea blue',[81,88,94],'51585e',5331038], ['nbs-iscc-f:seagray.266','seagray','sea gray',[85,85,85],'555555',5592405], ['nbs-iscc-f:sealbrown.58','sealbrown','seal brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-f:slate.266','slate','slate',[85,85,85],'555555',5592405], ['nbs-iscc-f:softyellow.86','softyellow','soft yellow ',[248,222,126],'f8de7e',16309886], ['nbs-iscc-f:springgreen.122','springgreen','spring green',[143,151,121],'8f9779',9410425], ['nbs-iscc-f:sprucegreen.127','sprucegreen','spruce green',[81,87,68],'515744',5330756], ['nbs-iscc-f:suntan.89','suntan','suntan',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-f:terracotta.42','terracotta','terra cotta',[168,124,109],'a87c6d',11041901], ['nbs-iscc-f:vermilion.11','vermilion','vermilion',[190,0,50],'be0032',12451890], ['nbs-iscc-f:vineyardgreen.152','vineyardgreen','vineyard green ',[26,36,33],'1a2421',1713185], ['nbs-iscc-f:vividorange.34','vividorange','vivid orange',[226,88,34],'e25822',14833698], ['nbs-iscc-f:warmgray.90','warmgray','warm gray ',[194,178,128],'c2b280',12759680], ['nbs-iscc-f:willowgreen.131','willowgreen','willow green',[68,148,74],'44944a',4494410], ['nbs-iscc-f:yellow.66','yellow','yellow',[246,166,0],'f6a600',16164352], ['nbs-iscc-f:yellow.68','yellow','yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-f:yellow.66','yellow','yellow',[246,166,0],'f6a600',16164352], ['nbs-iscc-f:yellowstriping.66','yellowstriping','yellow striping',[246,166,0],'f6a600',16164352], ['nbs-iscc-f:yellowstriping.68','yellowstriping','yellow striping',[234,162,33],'eaa221',15376929], ['nbs-iscc-f:yellowtint.73','yellowtint','yellow tint',[250,214,165],'fad6a5',16438949], ['nbs-iscc-f:zincchromate.120','zincchromate','zinc chromate',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-f:zincyellowprimer.87','zincyellowprimer','zinc yellow primer ',[201,174,93],'c9ae5d',13217373] ]; } sub _description { return { 'subtitle' => 'Colors; (for) Ready-Mixed Paints', 'title' => 'NBS/ISCC F', 'description' => ' Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (F) Colors; (for) Ready-Mixed Paints Federal Specification TT-C-595, Colors; (for) Ready-Mixed Paints This dictionary is a hybrid of combinatorial and idiosyncratic terms. 134 names map to 174 colors, using only 73 out of 267 centroids. [http://swissnet.ai.mit.edu/~jaffer/Color/Dictionaries#F] ' } } 1; H.pm100644000765000024 11410711667760546 22716 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionary/NBS_ISCCpackage Color::Library::Dictionary::NBS_ISCC::H; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::NBS_ISCC::H; =pod =head1 NAME Color::Library::Dictionary::NBS_ISCC::H - (NBS/ISCC H) Horticultural Colour Charts =head1 DESCRIPTION Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (H) Horticultural Colour Charts Horticultural Colour Charts, R. F. Wilson Most names are of plants or flowers. 199 names map to 261 colors, using only 95 of 267 centroids. L =head1 COLORS aconite violet aconiteviolet #2f2140 agathia green agathiagreen #7e9f2e agathia green agathiagreen #44944a amaranth rose amaranthrose #e68fac amber yellow amberyellow #fada5e amber yellow amberyellow #f8de7e amethyst violet amethystviolet #9a4eae apricot apricot #eaa221 aster violet asterviolet #9065ca aureolin aureolin #f3c300 azalea pink azaleapink #ffb7a5 azalea pink azaleapink #e66761 barium yellow bariumyellow #fada5e beetroot purple beetrootpurple #78184a beetroot purple beetrootpurple #54133b begonia begonia #e66761 bishop's violet bishopsviolet #9a4eae blood red bloodred #be0032 bluebird blue bluebirdblue #545aa7 bluebird blue bluebirdblue #4e5180 bluebird blue bluebirdblue #604e97 bluebird blue bluebirdblue #604e81 brick red brickred #d9603b burnt orange burntorange #d9603b buttercup yellow buttercupyellow #f3c300 butterfly blue butterflyblue #4997d0 butterfly blue butterflyblue #0067a5 cadmium orange cadmiumorange #f38400 cadmium orange cadmiumorange #fd943f cadmium orange cadmiumorange #ed872d camelia rose cameliarose #e4717a campanula violet campanulaviolet #9065ca canary yellow canaryyellow #f3c300 capri blue capriblue #007a74 capri blue capriblue #007791 capsicum red capsicumred #e25822 cardinal red cardinalred #be0032 carmine carmine #be0032 carmine rose carminerose #ffb5ba carmine rose carminerose #e4717a carnation green carnationgreen #7d8984 carrot red carrotred #ed872d carrot red carrotred #d99058 cerulein Blue ceruleinblue #0067a5 chartreuse green chartreusegreen #bdda57 cherry cherry #be0032 china rose chinarose #b3446c chinese coral chinesecoral #f88379 chinese coral chinesecoral #cb6d51 chinese yellow chineseyellow #fada5e chrysanthemum crimson chrysanthemumcrimson #841b2d chrysocolla green chrysocollagreen #3eb489 chrysocolla green chrysocollagreen #007959 citron green citrongreen #beb72e citron green citrongreen #b9b459 claret rose claretrose #bc3f4a cobalt blue cobaltblue #00a1c2 cobalt violet cobaltviolet #875692 coral pink coralpink #e66761 cornflower blue cornflowerblue #30267a crimson crimson #be0032 crimson crimson #ce4676 currant red currantred #be0032 cyclamen purple cyclamenpurple #870074 cypress green cypressgreen #83d37d dahlia purple dahliapurple #673147 dahlia purple dahliapurple #38152c dauphin's violet dauphinsviolet #604e81 dawn pink dawnpink #ffb5ba delft rose delftrose #bc3f4a dianthus purple dianthuspurple #ce4676 doge purple dogepurple #702963 dresden yellow dresdenyellow #e9e450 dutch vermilion dutchvermilion #e25822 egyptian buff egyptianbuff #fbc97f egyptian buff egyptianbuff #fad6a5 emerald green emeraldgreen #44944a empire rose empirerose #e4717a empire yellow empireyellow #f3c300 enamel blue enamelblue #00a1c2 erythrite red erythritered #a8516e ethyl blue ethylblue #66aabc faïence blue faenceblue #239eba fern green ferngreen #7e9f2e fire red firered #e25822 flax blue flaxblue #6c79b8 flax blue flaxblue #545aa7 flax blue flaxblue #7e73b8 french blue frenchblue #30267a french rose frenchrose #f88379 fuchsia purple fuchsiapurple #ce4676 fuchsine pink fuchsinepink #de6fa1 garnet brown garnetbrown #722f37 garnet lake garnetlake #78184a gentian blue gentianblue #30267a geranium lake geraniumlake #be0032 heliotrope heliotrope #7e73b8 hyacinth blue hyacinthblue #9065ca imperial purple imperialpurple #875692 indian blue indianblue #007791 indian lake indianlake #841b2d indian orange indianorange #e25822 indian yellow indianyellow #ffc14f indian yellow indianyellow #fbc97f ivy green ivygreen #31362b jade green jadegreen #007a74 jasper red jasperred #bc3f4a kingfisher blue kingfisherblue #007791 langite green langitegreen #007a74 lavender green lavendergreen #8f9779 leek green leekgreen #4a5d23 leek green leekgreen #515744 lemon yellow lemonyellow #f3c300 lettuce green lettucegreen #7e9f2e light chrome yellow lightchromeyellow #f3c300 lilac purple lilacpurple #a8516e lobelia blue lobeliablue #9065ca magenta magenta #ce4676 magenta rose magentarose #b3446c magnolia purple magnoliapurple #a8516e maize yellow maizeyellow #ffc14f maize yellow maizeyellow #eaa221 maize yellow maizeyellow #fbc97f maize yellow maizeyellow #e3a857 maize yellow maizeyellow #fada5e maize yellow maizeyellow #d4af37 majolica yellow majolicayellow #ed872d majolica yellow majolicayellow #d99058 majolica yellow majolicayellow #eaa221 majolica yellow majolicayellow #e3a857 mallow purple mallowpurple #870074 mandarin red mandarinred #e25822 marigold orange marigoldorange #e25822 marigold orange marigoldorange #f38400 marigold orange marigoldorange #ed872d maroon maroon #3f1728 mars orange marsorange #cb6d51 mauve mauve #d399e6 mauve mauve #875692 mauvette mauvette #8c82b6 mauvette mauvette #9690ab methyl violet methylviolet #9065ca mimeosa yellow mimeosayellow #e9e450 mineral violet mineralviolet #875692 moorish blue moorishblue #9065ca naples yellow naplesyellow #fada5e naples yellow naplesyellow #f8de7e nasturtium orange nasturtiumorange #ed872d nasturtium red nasturtiumred #e25822 neyron rose neyronrose #de6fa1 nickel green nickelgreen #3eb489 orange orange #e25822 orange buff orangebuff #fbc97f orange buff orangebuff #e3a857 orange buff orangebuff #fada5e orange buff orangebuff #d4af37 orange buff orangebuff #f8de7e orange buff orangebuff #c9ae5d orchid purple orchidpurple #870074 oriental blue orientalblue #00a1c2 orient pink orientpink #f4c2c2 orient pink orientpink #d9a6a9 orient red orientred #be0032 orpiment orange orpimentorange #f38400 orpiment orange orpimentorange #ed872d oxblood red oxbloodred #722f37 pansy purple pansypurple #841b2d pansy purple pansypurple #78184a pansy violet pansyviolet #915c83 paris green parisgreen #44944a parsley green parsleygreen #4a5d23 pastel lavender pastellavender #d6cadd pastel lilac pastellilac #d6cadd pastel mauve pastelmauve #e8ccd7 peach peach #f4c2c2 peach peach #d9a6a9 peach peach #fab57f pea green peagreen #bdda57 peony purple peonypurple #ce4676 persian blue persianblue #0067a5 persian rose persianrose #870074 persian rose persianrose #ce4676 persimmon orange persimmonorange #f38400 persimmon orange persimmonorange #ed872d petunia purple petuniapurple #9a4eae petunia purple petuniapurple #870074 phlox pink phloxpink #de6fa1 phlox purple phloxpurple #870074 plum purple plumpurple #301934 pod green podgreen #8a9a5b poppy red poppyred #e25822 porcelain blue porcelainblue #007791 porcelain rose porcelainrose #e4717a porcelain rose porcelainrose #e66761 primrose yellow primroseyellow #dcd300 princess blue princessblue #00416a purple madder purplemadder #722f37 rhodamine pink rhodaminepink #e68fac rhodamine purple rhodaminepurple #ce4676 rhodonite red rhodonitered #ab4e52 rose bengal rosebengal #ce4676 roseine purple roseinepurple #870074 rose madder rosemadder #ce4676 rose opal roseopal #bc3f4a rose pink rosepink #ea9399 rose pink rosepink #efbbcc rose purple rosepurple #b695c0 rose red rosered #be0032 royal purple royalpurple #602f6b ruby red rubyred #841b2d saffron yellow saffronyellow #eaa221 sage green sagegreen #4a5d23 sage green sagegreen #515744 salmon salmon #f4c2c2 salmon salmon #fab57f sap green sapgreen #8db600 sap green sapgreen #bdda57 saturn red saturnred #e25822 scarlet scarlet #be0032 scheeles green scheelesgreen #7e9f2e sea blue seablue #545aa7 sea lavender violet sealavenderviolet #7e73b8 shell pink shellpink #f88379 shrimp red shrimpred #f88379 signal red signalred #be0032 solferino purple solferinopurple #ce4676 spanish orange spanishorange #ed872d spectrum blue spectrumblue #00a1c2 spectrum violet spectrumviolet #401a4c spinach green spinachgreen #4a5d23 spinach green spinachgreen #355e3b spinel pink spinelpink #e4717a spinel red spinelred #b3446c spiraea red spiraeared #ce4676 straw yellow strawyellow #fada5e sulphur yellow sulphuryellow #f3c300 sulphur yellow sulphuryellow #dcd300 sung green sunggreen #b2beb5 tangerine orange tangerineorange #f38400 tangerine orange tangerineorange #ed872d turkey red turkeyred #be0032 tyrian purple tyrianpurple #ce4676 tyrian rose tyrianrose #ce4676 uranium green uraniumgreen #bdda57 venetian pink venetianpink #f9ccca verdigris verdigris #6aab8e vermilion vermilion #be0032 vermilion vermilion #e25822 veronese green veronesegreen #bdda57 veronese green veronesegreen #83d37d veronica violet veronicaviolet #7e73b8 victoria violet victoriaviolet #32174d violet violet #9065ca violet purple violetpurple #702963 viridian green viridiangreen #3eb489 viridian green viridiangreen #007959 willow green willowgreen #8a9a5b willow green willowgreen #8f9779 wisteria blue wisteriablue #7e73b8 yellow ochre yellowochre #eaa221 yellow ochre yellowochre #e3a857 =cut sub _load_color_list() { return [ ['nbs-iscc-h:aconiteviolet.212','aconiteviolet','aconite violet',[47,33,64],'2f2140',3088704], ['nbs-iscc-h:agathiagreen.117','agathiagreen','agathia green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-h:agathiagreen.131','agathiagreen','agathia green',[68,148,74],'44944a',4494410], ['nbs-iscc-h:amaranthrose.247','amaranthrose','amaranth rose',[230,143,172],'e68fac',15110060], ['nbs-iscc-h:amberyellow.83','amberyellow','amber yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-h:amberyellow.86','amberyellow','amber yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-h:amethystviolet.216','amethystviolet','amethyst violet',[154,78,174],'9a4eae',10112686], ['nbs-iscc-h:apricot.68','apricot','apricot',[234,162,33],'eaa221',15376929], ['nbs-iscc-h:asterviolet.205','asterviolet','aster violet',[144,101,202],'9065ca',9463242], ['nbs-iscc-h:aureolin.82','aureolin','aureolin',[243,195,0],'f3c300',15975168], ['nbs-iscc-h:azaleapink.25','azaleapink','azalea pink',[255,183,165],'ffb7a5',16758693], ['nbs-iscc-h:azaleapink.27','azaleapink','azalea pink',[230,103,97],'e66761',15099745], ['nbs-iscc-h:bariumyellow.83','bariumyellow','barium yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-h:beetrootpurple.256','beetrootpurple','beetroot purple',[120,24,74],'78184a',7870538], ['nbs-iscc-h:beetrootpurple.257','beetrootpurple','beetroot purple',[84,19,59],'54133b',5509947], ['nbs-iscc-h:begonia.27','begonia','begonia',[230,103,97],'e66761',15099745], ['nbs-iscc-h:bishopsviolet.216','bishopsviolet','bishop\'s violet',[154,78,174],'9a4eae',10112686], ['nbs-iscc-h:bloodred.11','bloodred','blood red',[190,0,50],'be0032',12451890], ['nbs-iscc-h:bluebirdblue.196','bluebirdblue','bluebird blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-h:bluebirdblue.200','bluebirdblue','bluebird blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-h:bluebirdblue.207','bluebirdblue','bluebird blue',[96,78,151],'604e97',6311575], ['nbs-iscc-h:bluebirdblue.211','bluebirdblue','bluebird blue',[96,78,129],'604e81',6311553], ['nbs-iscc-h:brickred.35','brickred','brick red',[217,96,59],'d9603b',14245947], ['nbs-iscc-h:burntorange.35','burntorange','burnt orange',[217,96,59],'d9603b',14245947], ['nbs-iscc-h:buttercupyellow.82','buttercupyellow','buttercup yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-h:butterflyblue.177','butterflyblue','butterfly blue',[73,151,208],'4997d0',4822992], ['nbs-iscc-h:butterflyblue.178','butterflyblue','butterfly blue',[0,103,165],'0067a5',26533], ['nbs-iscc-h:cadmiumorange.48','cadmiumorange','cadmium orange',[243,132,0],'f38400',15959040], ['nbs-iscc-h:cadmiumorange.49','cadmiumorange','cadmium orange',[253,148,63],'fd943f',16618559], ['nbs-iscc-h:cadmiumorange.50','cadmiumorange','cadmium orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-h:cameliarose.3','cameliarose','camelia rose',[228,113,122],'e4717a',14971258], ['nbs-iscc-h:campanulaviolet.205','campanulaviolet','campanula violet',[144,101,202],'9065ca',9463242], ['nbs-iscc-h:canaryyellow.82','canaryyellow','canary yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-h:capriblue.160','capriblue','capri blue ',[0,122,116],'007a74',31348], ['nbs-iscc-h:capriblue.169','capriblue','capri blue ',[0,119,145],'007791',30609], ['nbs-iscc-h:capsicumred.34','capsicumred','capsicum red',[226,88,34],'e25822',14833698], ['nbs-iscc-h:cardinalred.11','cardinalred','cardinal red',[190,0,50],'be0032',12451890], ['nbs-iscc-h:carmine.11','carmine','carmine',[190,0,50],'be0032',12451890], ['nbs-iscc-h:carminerose.1','carminerose','carmine rose',[255,181,186],'ffb5ba',16758202], ['nbs-iscc-h:carminerose.3','carminerose','carmine rose',[228,113,122],'e4717a',14971258], ['nbs-iscc-h:carnationgreen.155','carnationgreen','carnation green',[125,137,132],'7d8984',8227204], ['nbs-iscc-h:carrotred.50','carrotred','carrot red',[237,135,45],'ed872d',15566637], ['nbs-iscc-h:carrotred.53','carrotred','carrot red',[217,144,88],'d99058',14258264], ['nbs-iscc-h:ceruleinblue.178','ceruleinblue','cerulein Blue ',[0,103,165],'0067a5',26533], ['nbs-iscc-h:chartreusegreen.116','chartreusegreen','chartreuse green',[189,218,87],'bdda57',12442199], ['nbs-iscc-h:cherry.11','cherry','cherry',[190,0,50],'be0032',12451890], ['nbs-iscc-h:chinarose.255','chinarose','china rose',[179,68,108],'b3446c',11748460], ['nbs-iscc-h:chinesecoral.26','chinesecoral','chinese coral',[248,131,121],'f88379',16286585], ['nbs-iscc-h:chinesecoral.37','chinesecoral','chinese coral',[203,109,81],'cb6d51',13331793], ['nbs-iscc-h:chineseyellow.83','chineseyellow','chinese yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-h:chrysanthemumcrimson.13','chrysanthemumcrimson','chrysanthemum crimson',[132,27,45],'841b2d',8657709], ['nbs-iscc-h:chrysocollagreen.140','chrysocollagreen','chrysocolla green',[62,180,137],'3eb489',4109449], ['nbs-iscc-h:chrysocollagreen.141','chrysocollagreen','chrysocolla green',[0,121,89],'007959',31065], ['nbs-iscc-h:citrongreen.99','citrongreen','citron green',[190,183,46],'beb72e',12498734], ['nbs-iscc-h:citrongreen.102','citrongreen','citron green',[185,180,89],'b9b459',12170329], ['nbs-iscc-h:claretrose.12','claretrose','claret rose',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-h:cobaltblue.176','cobaltblue','cobalt blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-h:cobaltviolet.218','cobaltviolet','cobalt violet',[135,86,146],'875692',8869522], ['nbs-iscc-h:coralpink.27','coralpink','coral pink',[230,103,97],'e66761',15099745], ['nbs-iscc-h:cornflowerblue.194','cornflowerblue','cornflower blue',[48,38,122],'30267a',3155578], ['nbs-iscc-h:crimson.11','crimson','crimson',[190,0,50],'be0032',12451890], ['nbs-iscc-h:crimson.254','crimson','crimson',[206,70,118],'ce4676',13518454], ['nbs-iscc-h:currantred.11','currantred','currant red',[190,0,50],'be0032',12451890], ['nbs-iscc-h:cyclamenpurple.236','cyclamenpurple','cyclamen purple',[135,0,116],'870074',8847476], ['nbs-iscc-h:cypressgreen.130','cypressgreen','cypress green',[131,211,125],'83d37d',8639357], ['nbs-iscc-h:dahliapurple.259','dahliapurple','dahlia purple',[103,49,71],'673147',6762823], ['nbs-iscc-h:dahliapurple.260','dahliapurple','dahlia purple',[56,21,44],'38152c',3675436], ['nbs-iscc-h:dauphinsviolet.211','dauphinsviolet','dauphin\'s violet',[96,78,129],'604e81',6311553], ['nbs-iscc-h:dawnpink.1','dawnpink','dawn pink',[255,181,186],'ffb5ba',16758202], ['nbs-iscc-h:delftrose.12','delftrose','delft rose',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-h:dianthuspurple.254','dianthuspurple','dianthus purple',[206,70,118],'ce4676',13518454], ['nbs-iscc-h:dogepurple.238','dogepurple','doge purple',[112,41,99],'702963',7350627], ['nbs-iscc-h:dresdenyellow.98','dresdenyellow','dresden yellow',[233,228,80],'e9e450',15328336], ['nbs-iscc-h:dutchvermilion.34','dutchvermilion','dutch vermilion',[226,88,34],'e25822',14833698], ['nbs-iscc-h:egyptianbuff.70','egyptianbuff','egyptian buff',[251,201,127],'fbc97f',16501119], ['nbs-iscc-h:egyptianbuff.73','egyptianbuff','egyptian buff',[250,214,165],'fad6a5',16438949], ['nbs-iscc-h:emeraldgreen.131','emeraldgreen','emerald green',[68,148,74],'44944a',4494410], ['nbs-iscc-h:empirerose.3','empirerose','empire rose',[228,113,122],'e4717a',14971258], ['nbs-iscc-h:empireyellow.82','empireyellow','empire yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-h:enamelblue.176','enamelblue','enamel blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-h:erythritered.258','erythritered','erythrite red',[168,81,110],'a8516e',11030894], ['nbs-iscc-h:ethylblue.172','ethylblue','ethyl blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-h:faenceblue.168','faenceblue','faïence blue ',[35,158,186],'239eba',2334394], ['nbs-iscc-h:ferngreen.117','ferngreen','fern green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-h:firered.34','firered','fire red',[226,88,34],'e25822',14833698], ['nbs-iscc-h:flaxblue.195','flaxblue','flax blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc-h:flaxblue.196','flaxblue','flax blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-h:flaxblue.206','flaxblue','flax blue',[126,115,184],'7e73b8',8287160], ['nbs-iscc-h:frenchblue.194','frenchblue','french blue',[48,38,122],'30267a',3155578], ['nbs-iscc-h:frenchrose.26','frenchrose','french rose ',[248,131,121],'f88379',16286585], ['nbs-iscc-h:fuchsiapurple.254','fuchsiapurple','fuchsia purple',[206,70,118],'ce4676',13518454], ['nbs-iscc-h:fuchsinepink.248','fuchsinepink','fuchsine pink',[222,111,161],'de6fa1',14577569], ['nbs-iscc-h:garnetbrown.16','garnetbrown','garnet brown',[114,47,55],'722f37',7483191], ['nbs-iscc-h:garnetlake.256','garnetlake','garnet lake',[120,24,74],'78184a',7870538], ['nbs-iscc-h:gentianblue.194','gentianblue','gentian blue',[48,38,122],'30267a',3155578], ['nbs-iscc-h:geraniumlake.11','geraniumlake','geranium lake',[190,0,50],'be0032',12451890], ['nbs-iscc-h:heliotrope.206','heliotrope','heliotrope',[126,115,184],'7e73b8',8287160], ['nbs-iscc-h:hyacinthblue.205','hyacinthblue','hyacinth blue',[144,101,202],'9065ca',9463242], ['nbs-iscc-h:imperialpurple.218','imperialpurple','imperial purple',[135,86,146],'875692',8869522], ['nbs-iscc-h:indianblue.169','indianblue','indian blue',[0,119,145],'007791',30609], ['nbs-iscc-h:indianlake.13','indianlake','indian lake',[132,27,45],'841b2d',8657709], ['nbs-iscc-h:indianorange.34','indianorange','indian orange',[226,88,34],'e25822',14833698], ['nbs-iscc-h:indianyellow.67','indianyellow','indian yellow',[255,193,79],'ffc14f',16761167], ['nbs-iscc-h:indianyellow.70','indianyellow','indian yellow',[251,201,127],'fbc97f',16501119], ['nbs-iscc-h:ivygreen.128','ivygreen','ivy green',[49,54,43],'31362b',3225131], ['nbs-iscc-h:jadegreen.160','jadegreen','jade green',[0,122,116],'007a74',31348], ['nbs-iscc-h:jasperred.12','jasperred','jasper red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-h:kingfisherblue.169','kingfisherblue','kingfisher blue',[0,119,145],'007791',30609], ['nbs-iscc-h:langitegreen.160','langitegreen','langite green',[0,122,116],'007a74',31348], ['nbs-iscc-h:lavendergreen.122','lavendergreen','lavender green',[143,151,121],'8f9779',9410425], ['nbs-iscc-h:leekgreen.125','leekgreen','leek green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-h:leekgreen.127','leekgreen','leek green',[81,87,68],'515744',5330756], ['nbs-iscc-h:lemonyellow.82','lemonyellow','lemon yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-h:lettucegreen.117','lettucegreen','lettuce green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-h:lightchromeyellow.82','lightchromeyellow','light chrome yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-h:lilacpurple.258','lilacpurple','lilac purple',[168,81,110],'a8516e',11030894], ['nbs-iscc-h:lobeliablue.205','lobeliablue','lobelia blue',[144,101,202],'9065ca',9463242], ['nbs-iscc-h:magenta.254','magenta','magenta',[206,70,118],'ce4676',13518454], ['nbs-iscc-h:magentarose.255','magentarose','magenta rose ',[179,68,108],'b3446c',11748460], ['nbs-iscc-h:magnoliapurple.258','magnoliapurple','magnolia purple',[168,81,110],'a8516e',11030894], ['nbs-iscc-h:maizeyellow.67','maizeyellow','maize yellow',[255,193,79],'ffc14f',16761167], ['nbs-iscc-h:maizeyellow.68','maizeyellow','maize yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-h:maizeyellow.70','maizeyellow','maize yellow',[251,201,127],'fbc97f',16501119], ['nbs-iscc-h:maizeyellow.71','maizeyellow','maize yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-h:maizeyellow.83','maizeyellow','maize yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-h:maizeyellow.84','maizeyellow','maize yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-h:majolicayellow.50','majolicayellow','majolica yellow',[237,135,45],'ed872d',15566637], ['nbs-iscc-h:majolicayellow.53','majolicayellow','majolica yellow',[217,144,88],'d99058',14258264], ['nbs-iscc-h:majolicayellow.68','majolicayellow','majolica yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-h:majolicayellow.71','majolicayellow','majolica yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-h:mallowpurple.236','mallowpurple','mallow purple',[135,0,116],'870074',8847476], ['nbs-iscc-h:mandarinred.34','mandarinred','mandarin red',[226,88,34],'e25822',14833698], ['nbs-iscc-h:marigoldorange.34','marigoldorange','marigold orange',[226,88,34],'e25822',14833698], ['nbs-iscc-h:marigoldorange.48','marigoldorange','marigold orange',[243,132,0],'f38400',15959040], ['nbs-iscc-h:marigoldorange.50','marigoldorange','marigold orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-h:maroon.17','maroon','maroon',[63,23,40],'3f1728',4134696], ['nbs-iscc-h:marsorange.37','marsorange','mars orange',[203,109,81],'cb6d51',13331793], ['nbs-iscc-h:mauve.217','mauve','mauve',[211,153,230],'d399e6',13867494], ['nbs-iscc-h:mauve.218','mauve','mauve',[135,86,146],'875692',8869522], ['nbs-iscc-h:mauvette.210','mauvette','mauvette',[140,130,182],'8c82b6',9208502], ['nbs-iscc-h:mauvette.214','mauvette','mauvette',[150,144,171],'9690ab',9867435], ['nbs-iscc-h:methylviolet.205','methylviolet','methyl violet ',[144,101,202],'9065ca',9463242], ['nbs-iscc-h:mimeosayellow.98','mimeosayellow','mimeosa yellow ',[233,228,80],'e9e450',15328336], ['nbs-iscc-h:mineralviolet.218','mineralviolet','mineral violet ',[135,86,146],'875692',8869522], ['nbs-iscc-h:moorishblue.205','moorishblue','moorish blue ',[144,101,202],'9065ca',9463242], ['nbs-iscc-h:naplesyellow.83','naplesyellow','naples yellow ',[250,218,94],'fada5e',16439902], ['nbs-iscc-h:naplesyellow.86','naplesyellow','naples yellow ',[248,222,126],'f8de7e',16309886], ['nbs-iscc-h:nasturtiumorange.50','nasturtiumorange','nasturtium orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-h:nasturtiumred.34','nasturtiumred','nasturtium red',[226,88,34],'e25822',14833698], ['nbs-iscc-h:neyronrose.248','neyronrose','neyron rose ',[222,111,161],'de6fa1',14577569], ['nbs-iscc-h:nickelgreen.140','nickelgreen','nickel green',[62,180,137],'3eb489',4109449], ['nbs-iscc-h:orange.34','orange','orange',[226,88,34],'e25822',14833698], ['nbs-iscc-h:orangebuff.70','orangebuff','orange buff',[251,201,127],'fbc97f',16501119], ['nbs-iscc-h:orangebuff.71','orangebuff','orange buff',[227,168,87],'e3a857',14919767], ['nbs-iscc-h:orangebuff.83','orangebuff','orange buff',[250,218,94],'fada5e',16439902], ['nbs-iscc-h:orangebuff.84','orangebuff','orange buff',[212,175,55],'d4af37',13938487], ['nbs-iscc-h:orangebuff.86','orangebuff','orange buff',[248,222,126],'f8de7e',16309886], ['nbs-iscc-h:orangebuff.87','orangebuff','orange buff',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-h:orchidpurple.236','orchidpurple','orchid purple',[135,0,116],'870074',8847476], ['nbs-iscc-h:orientalblue.176','orientalblue','oriental blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-h:orientpink.28','orientpink','orient pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-h:orientpink.29','orientpink','orient pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-h:orientred.11','orientred','orient red',[190,0,50],'be0032',12451890], ['nbs-iscc-h:orpimentorange.48','orpimentorange','orpiment orange',[243,132,0],'f38400',15959040], ['nbs-iscc-h:orpimentorange.50','orpimentorange','orpiment orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-h:oxbloodred.16','oxbloodred','oxblood red',[114,47,55],'722f37',7483191], ['nbs-iscc-h:pansypurple.13','pansypurple','pansy purple',[132,27,45],'841b2d',8657709], ['nbs-iscc-h:pansypurple.256','pansypurple','pansy purple',[120,24,74],'78184a',7870538], ['nbs-iscc-h:pansyviolet.241','pansyviolet','pansy violet',[145,92,131],'915c83',9526403], ['nbs-iscc-h:parisgreen.131','parisgreen','paris green',[68,148,74],'44944a',4494410], ['nbs-iscc-h:parsleygreen.125','parsleygreen','parsley green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-h:pastellavender.226','pastellavender','pastel lavender',[214,202,221],'d6cadd',14076637], ['nbs-iscc-h:pastellilac.226','pastellilac','pastel lilac',[214,202,221],'d6cadd',14076637], ['nbs-iscc-h:pastelmauve.252','pastelmauve','pastel mauve',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-h:peach.28','peach','peach',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-h:peach.29','peach','peach',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-h:peach.52','peach','peach',[250,181,127],'fab57f',16430463], ['nbs-iscc-h:peagreen.116','peagreen','pea green',[189,218,87],'bdda57',12442199], ['nbs-iscc-h:peonypurple.254','peonypurple','peony purple',[206,70,118],'ce4676',13518454], ['nbs-iscc-h:persianblue.178','persianblue','persian blue',[0,103,165],'0067a5',26533], ['nbs-iscc-h:persianrose.236','persianrose','persian rose',[135,0,116],'870074',8847476], ['nbs-iscc-h:persianrose.254','persianrose','persian rose',[206,70,118],'ce4676',13518454], ['nbs-iscc-h:persimmonorange.48','persimmonorange','persimmon orange',[243,132,0],'f38400',15959040], ['nbs-iscc-h:persimmonorange.50','persimmonorange','persimmon orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-h:petuniapurple.216','petuniapurple','petunia purple',[154,78,174],'9a4eae',10112686], ['nbs-iscc-h:petuniapurple.236','petuniapurple','petunia purple',[135,0,116],'870074',8847476], ['nbs-iscc-h:phloxpink.248','phloxpink','phlox pink',[222,111,161],'de6fa1',14577569], ['nbs-iscc-h:phloxpurple.236','phloxpurple','phlox purple',[135,0,116],'870074',8847476], ['nbs-iscc-h:plumpurple.225','plumpurple','plum purple',[48,25,52],'301934',3152180], ['nbs-iscc-h:podgreen.120','podgreen','pod green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-h:poppyred.34','poppyred','poppy red',[226,88,34],'e25822',14833698], ['nbs-iscc-h:porcelainblue.169','porcelainblue','porcelain blue',[0,119,145],'007791',30609], ['nbs-iscc-h:porcelainrose.3','porcelainrose','porcelain rose',[228,113,122],'e4717a',14971258], ['nbs-iscc-h:porcelainrose.27','porcelainrose','porcelain rose',[230,103,97],'e66761',15099745], ['nbs-iscc-h:primroseyellow.97','primroseyellow','primrose yellow',[220,211,0],'dcd300',14471936], ['nbs-iscc-h:princessblue.179','princessblue','princess blue',[0,65,106],'00416a',16746], ['nbs-iscc-h:purplemadder.16','purplemadder','purple madder',[114,47,55],'722f37',7483191], ['nbs-iscc-h:rhodaminepink.247','rhodaminepink','rhodamine pink',[230,143,172],'e68fac',15110060], ['nbs-iscc-h:rhodaminepurple.254','rhodaminepurple','rhodamine purple',[206,70,118],'ce4676',13518454], ['nbs-iscc-h:rhodonitered.15','rhodonitered','rhodonite red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-h:rosebengal.254','rosebengal','rose bengal',[206,70,118],'ce4676',13518454], ['nbs-iscc-h:roseinepurple.236','roseinepurple','roseine purple',[135,0,116],'870074',8847476], ['nbs-iscc-h:rosemadder.254','rosemadder','rose madder',[206,70,118],'ce4676',13518454], ['nbs-iscc-h:roseopal.12','roseopal','rose opal',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-h:rosepink.2','rosepink','rose pink',[234,147,153],'ea9399',15373209], ['nbs-iscc-h:rosepink.249','rosepink','rose pink',[239,187,204],'efbbcc',15711180], ['nbs-iscc-h:rosepurple.222','rosepurple','rose purple',[182,149,192],'b695c0',11965888], ['nbs-iscc-h:rosered.11','rosered','rose red',[190,0,50],'be0032',12451890], ['nbs-iscc-h:royalpurple.219','royalpurple','royal purple',[96,47,107],'602f6b',6303595], ['nbs-iscc-h:rubyred.13','rubyred','ruby red',[132,27,45],'841b2d',8657709], ['nbs-iscc-h:saffronyellow.68','saffronyellow','saffron yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-h:sagegreen.125','sagegreen','sage green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-h:sagegreen.127','sagegreen','sage green',[81,87,68],'515744',5330756], ['nbs-iscc-h:salmon.28','salmon','salmon',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-h:salmon.52','salmon','salmon',[250,181,127],'fab57f',16430463], ['nbs-iscc-h:sapgreen.115','sapgreen','sap green',[141,182,0],'8db600',9287168], ['nbs-iscc-h:sapgreen.116','sapgreen','sap green',[189,218,87],'bdda57',12442199], ['nbs-iscc-h:saturnred.34','saturnred','saturn red',[226,88,34],'e25822',14833698], ['nbs-iscc-h:scarlet.11','scarlet','scarlet',[190,0,50],'be0032',12451890], ['nbs-iscc-h:scheelesgreen.117','scheelesgreen','scheeles green ',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-h:seablue.196','seablue','sea blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-h:sealavenderviolet.206','sealavenderviolet','sea lavender violet',[126,115,184],'7e73b8',8287160], ['nbs-iscc-h:shellpink.26','shellpink','shell pink',[248,131,121],'f88379',16286585], ['nbs-iscc-h:shrimpred.26','shrimpred','shrimp red',[248,131,121],'f88379',16286585], ['nbs-iscc-h:signalred.11','signalred','signal red',[190,0,50],'be0032',12451890], ['nbs-iscc-h:solferinopurple.254','solferinopurple','solferino purple',[206,70,118],'ce4676',13518454], ['nbs-iscc-h:spanishorange.50','spanishorange','spanish orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-h:spectrumblue.176','spectrumblue','spectrum blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-h:spectrumviolet.220','spectrumviolet','spectrum violet',[64,26,76],'401a4c',4201036], ['nbs-iscc-h:spinachgreen.125','spinachgreen','spinach green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-h:spinachgreen.137','spinachgreen','spinach green',[53,94,59],'355e3b',3497531], ['nbs-iscc-h:spinelpink.3','spinelpink','spinel pink',[228,113,122],'e4717a',14971258], ['nbs-iscc-h:spinelred.255','spinelred','spinel red',[179,68,108],'b3446c',11748460], ['nbs-iscc-h:spiraeared.254','spiraeared','spiraea red',[206,70,118],'ce4676',13518454], ['nbs-iscc-h:strawyellow.83','strawyellow','straw yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-h:sulphuryellow.82','sulphuryellow','sulphur yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-h:sulphuryellow.97','sulphuryellow','sulphur yellow',[220,211,0],'dcd300',14471936], ['nbs-iscc-h:sunggreen.154','sunggreen','sung green',[178,190,181],'b2beb5',11714229], ['nbs-iscc-h:tangerineorange.48','tangerineorange','tangerine orange',[243,132,0],'f38400',15959040], ['nbs-iscc-h:tangerineorange.50','tangerineorange','tangerine orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-h:turkeyred.11','turkeyred','turkey red',[190,0,50],'be0032',12451890], ['nbs-iscc-h:tyrianpurple.254','tyrianpurple','tyrian purple',[206,70,118],'ce4676',13518454], ['nbs-iscc-h:tyrianrose.254','tyrianrose','tyrian rose',[206,70,118],'ce4676',13518454], ['nbs-iscc-h:uraniumgreen.116','uraniumgreen','uranium green ',[189,218,87],'bdda57',12442199], ['nbs-iscc-h:venetianpink.4','venetianpink','venetian pink',[249,204,202],'f9ccca',16370890], ['nbs-iscc-h:verdigris.144','verdigris','verdigris',[106,171,142],'6aab8e',6990734], ['nbs-iscc-h:vermilion.11','vermilion','vermilion',[190,0,50],'be0032',12451890], ['nbs-iscc-h:vermilion.34','vermilion','vermilion',[226,88,34],'e25822',14833698], ['nbs-iscc-h:veronesegreen.116','veronesegreen','veronese green',[189,218,87],'bdda57',12442199], ['nbs-iscc-h:veronesegreen.130','veronesegreen','veronese green',[131,211,125],'83d37d',8639357], ['nbs-iscc-h:veronicaviolet.206','veronicaviolet','veronica violet',[126,115,184],'7e73b8',8287160], ['nbs-iscc-h:victoriaviolet.208','victoriaviolet','victoria violet',[50,23,77],'32174d',3282765], ['nbs-iscc-h:violet.205','violet','violet',[144,101,202],'9065ca',9463242], ['nbs-iscc-h:violetpurple.238','violetpurple','violet purple',[112,41,99],'702963',7350627], ['nbs-iscc-h:viridiangreen.140','viridiangreen','viridian green',[62,180,137],'3eb489',4109449], ['nbs-iscc-h:viridiangreen.141','viridiangreen','viridian green',[0,121,89],'007959',31065], ['nbs-iscc-h:willowgreen.120','willowgreen','willow green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-h:willowgreen.122','willowgreen','willow green',[143,151,121],'8f9779',9410425], ['nbs-iscc-h:wisteriablue.206','wisteriablue','wisteria blue',[126,115,184],'7e73b8',8287160], ['nbs-iscc-h:yellowochre.68','yellowochre','yellow ochre',[234,162,33],'eaa221',15376929], ['nbs-iscc-h:yellowochre.71','yellowochre','yellow ochre',[227,168,87],'e3a857',14919767] ]; } sub _description { return { 'subtitle' => 'Horticultural Colour Charts', 'title' => 'NBS/ISCC H', 'description' => ' Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (H) Horticultural Colour Charts Horticultural Colour Charts, R. F. Wilson Most names are of plants or flowers. 199 names map to 261 colors, using only 95 of 267 centroids. [http://swissnet.ai.mit.edu/~jaffer/Color/Dictionaries#H] ' } } 1; M.pm100644000765000024 273462711667760546 22764 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionary/NBS_ISCCpackage Color::Library::Dictionary::NBS_ISCC::M; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::NBS_ISCC::M; =pod =head1 NAME Color::Library::Dictionary::NBS_ISCC::M - (NBS/ISCC M) Dictionary of Color =head1 DESCRIPTION Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (M) Dictionary of Color Maerz and Paul, Dictionary of Color, 1st ed. This idiosyncratic dictionary's 3064 names map to 4401 colors, using 223 of the 267 centroids. L =head1 COLORS abbey abbey #604e97 absinthe [green] absinthegreen #8a9a5b absinthe yellow absintheyellow #b9b57d acacia acacia #eae679 acacia acacia #b9b459 academy blue academyblue #367588 acajou acajou #79443b acanthe acanthe #6c541e acier acier #8c8767 ackermann's green ackermannsgreen #355e3b aconite violet aconiteviolet #86608e acorn acorn #7e6d5a adamia adamia #563c5c adelaide adelaide #32174d aden aden #6aab8e admiral admiral #291e29 admiral admiral #242124 adobe adobe #826644 adrianople red adrianoplered #ab4e52 adriatic adriatic #317873 adust adust #ae6938 aero aero #536878 afghan afghan #3e322c afghan red afghanred #be0032 african african #222222 african brown africanbrown #3e322c afterglow afterglow #9690ab agate agate #882d17 agate agate #80461b agate grey agategrey #b9b8b5 ageratum blue ageratumblue #aa98a9 ageratum violet ageratumviolet #796878 air blue airblue #436b95 airedale airedale #826644 airedale airedale #7e6d5a airway airway #70a3cc akbar akbar #56070c akbar akbar #79443b alabaster alabaster #ecd5c5 alabaster alabaster #bfb8a5 alamo alamo #80461b alcanna alcanna #882d17 alcazar alcazar #722f37 alcazar alcazar #882d17 alderney alderney #826644 alesan alesan #977f73 alesan alesan #a67b5b alesan alesan #958070 alexandria blue alexandriablue #00a1c2 alexandria blue alexandriablue #0067a5 alfalfa alfalfa #355e3b algerian algerian #6f4e37 algerian red algerianred #56070c algonquin algonquin #be6516 algonquin algonquin #ae6938 alhambra alhambra #3a4b47 alhambra alhambra #004b49 alice blue aliceblue #91a3b0 alkermes alkermes #be0032 almond almond #a67b5b almond almond #958070 almond almond #c19a6b almond almond #ae9b82 almond blossom almondblossom #f9ccca almond blossom almondblossom #dea5a4 almond blossom almondblossom #ead8d7 almond blossom almondblossom #c4aead almond brown almondbrown #a67b5b almond brown almondbrown #958070 almond brown almondbrown #c19a6b almond brown almondbrown #ae9b82 almond green almondgreen #5e716a almond [pink] almondpink #f9ccca almond [pink] almondpink #dea5a4 almond [pink] almondpink #ead8d7 almond [pink] almondpink #c4aead aloes [green] aloesgreen #8da399 aloma aloma #a67b5b aloma aloma #c19a6b aloma aloma #826644 alpine alpine #536878 alpine green alpinegreen #3a4b47 aluminum aluminum #b9b8b5 aluminum aluminum #848482 amaranth amaranth #702963 amaranthine amaranthine #673147 amaranth pink amaranthpink #de6fa1 amaranth purple amaranthpurple #78184a amarna amarna #00543d amarna amarna #1b4d3e amarylis amarylis #ab4e52 amarylis amarylis #905d5d amazon amazon #3b7861 amber brown amberbrown #ae6938 amberglow amberglow #ae6938 amberglow amberglow #a67b5b amber white amberwhite #f3e5ab amber white amberwhite #c2b280 amber white amberwhite #ebe8a4 amber white amberwhite #b9b57d amber white amberwhite #dadfb7 amber [yellow] amberyellow #f8de7e amber [yellow] amberyellow #c9ae5d ambrosia ambrosia #79443b ambulance ambulance #43302e amelie amelie #3e322c american beauty americanbeauty #722f37 american green americangreen #679267 american green americangreen #355e3b american green americangreen #5e716a amethyst [violet] amethystviolet #86608e amethyst [violet] amethystviolet #563c5c amethyst [violet] amethystviolet #796878 amparo blue amparoblue #0067a5 amparo blue amparoblue #6c79b8 amparo purple amparopurple #86608e amulet amulet #004b49 anamite anamite #8c8767 anatolia anatolia #56070c anatta anatta #d9a6a9 andorra andorra #3e1d1e andorra andorra #43302e andorre andorre #679267 andorre andorre #5e716a andover green andovergreen #515744 andrinople berries andrinopleberries #eaa221 andrinople berries andrinopleberries #e3a857 anemone anemone #aa8a9e angel red angelred #79443b animal rouge animalrouge #be0032 animal rouge animalrouge #bc3f4a annapolis annapolis #555555 annatto annatto #d9a6a9 annotto annotto #d9a6a9 antelope antelope #967117 antimony yellow antimonyyellow #e3a857 antique antique #967117 antique antique #6c541e antique brass antiquebrass #867e36 antique brass antiquebrass #8c8767 antique bronze antiquebronze #826644 antique brown antiquebrown #6f4e37 antique drab antiquedrab #826644 antique drab antiquedrab #967117 antique drab antiquedrab #6c541e antique fuchsia antiquefuchsia #86608e antique fuchsia antiquefuchsia #915c83 antique gold antiquegold #be8a3d antique gold antiquegold #996515 antique green antiquegreen #3a4b47 antique red antiquered #cb6d51 antique red antiquered #9e4732 antique red antiquered #b4745e antique red antiquered #79443b antique ruby antiqueruby #841b2d antwerp blue antwerpblue #2e8495 antwerp blue antwerpblue #436b95 antwerp brown antwerpbrown #483c32 antwerp red antwerpred #79443b apache apache #6f4e37 aphrodite aphrodite #66ada4 appleblossom [pink] appleblossompink #905d5d apple-fallow applefallow #841b2d apple-fallow applefallow #ab4e52 apple green applegreen #8a9a5b apricot apricot #d99058 apricot yellow apricotyellow #f8de7e apricot yellow apricotyellow #c9ae5d aquagreen aquagreen #93c592 aquamarine aquamarine #66aabc aquamarine aquamarine #91a3b0 arab [brown] arabbrown #80461b arabesque arabesque #cb6d51 arabian brown arabianbrown #80461b arabian brown arabianbrown #6f4e37 arabian red arabianred #56070c araby araby #b4745e araby araby #a87c6d aragon aragon #79443b arbutus arbutus #ea9399 arbutus arbutus #e4717a arbutus arbutus #e68fac arbutus arbutus #de6fa1 arcadian green arcadiangreen #93c592 archel archel #a8516e archil archil #a8516e arctic arctic #222222 arctic blue arcticblue #536878 ardoise ardoise #536878 ardoise ardoise #796878 argali argali #5b504f argali argali #555555 argent argent #848482 argentina argentina #422518 argus brown argusbrown #6f4e37 argyle purple argylepurple #aa8a9e argyle purple argylepurple #836479 arizona arizona #c19a6b armada armada #43302e armada armada #3e322c armenian blue armenianblue #00a1c2 armenian blue armenianblue #0067a5 armenian bole armenianbole #79443b armenian red armenianred #80461b armenian stone armenianstone #436b95 army brown armybrown #a67b5b arno blue arnoblue #367588 arno blue arnoblue #004958 arnotto arnotto #d9a6a9 arona arona #36454f arrowwood arrowwood #967117 arsenate arsenate #007959 art brown artbrown #422518 artemesia green artemesiagreen #7d8984 art gray, art grey artgrayartgrey #8b8589 art gray, art grey artgrayartgrey #848482 art green artgreen #8a9a5b art green artgreen #4a5d23 artichoke green artichokegreen #8f9779 artificial vermilion artificialvermilion #915f6d artillery artillery #be0032 ascot tan ascottan #635147 ashes of rose ashesofrose #915f6d ash [grey] ashgrey #b2beb5 asmalte asmalte #00416a asmalte asmalte #436b95 asparagus green asparagusgreen #dadfb7 aspen green aspengreen #5e716a asphalt asphalt #555555 asphaltum asphaltum #483c32 asphodel green asphodelgreen #8a9a5b aster aster #796878 aster purple asterpurple #78184a athenia athenia #905d5d atlantic atlantic #36454f atlantis atlantis #004958 atlantis atlantis #36454f atmosphere atmosphere #c2ac99 atmosphere atmosphere #ae9b82 atmosphere atmosphere #bfb8a5 atramentous atramentous #51585e attar of roses attarofroses #b4745e attar of roses attarofroses #a87c6d aubergine aubergine #291e29 aubergine aubergine #242124 auburn auburn #6f4e37 aubusson aubusson #722f37 aucuba aucuba #867e36 aureolin aureolin #fada5e aureolin aureolin #d4af37 auricula purple auriculapurple #702963 auripigmentum auripigmentum #fada5e auripigmentum auripigmentum #d4af37 auripigmentum auripigmentum #f8de7e auripigmentum auripigmentum #c9ae5d aurora [orange] auroraorange #f88379 aurora [orange] auroraorange #e66761 aurora [orange] auroraorange #cb6d51 aurora red aurorared #ab4e52 aurora red aurorared #e66761 aurora red aurorared #cb6d51 aurora yellow aurorayellow #ed872d aurora yellow aurorayellow #d99058 aurora yellow aurorayellow #eaa221 aurora yellow aurorayellow #e3a857 aurore aurore #dea5a4 aurum aurum #967117 australian pine australianpine #355e3b auteuil auteuil #e3a857 autumn autumn #5b5842 autumn autumn #363527 autumn blonde autumnblonde #977f73 autumn blonde autumnblonde #6f4e37 autumn blonde autumnblonde #958070 autumn blonde autumnblonde #635147 autumn brown autumnbrown #483c32 autumn glory autumnglory #722f37 autumn glory autumnglory #9e4732 autumn green autumngreen #8a9a5b autumn green autumngreen #4a5d23 autumn leaf autumnleaf #be6516 autumn leaf autumnleaf #ae6938 autumn leaf autumnleaf #80461b autumn oak autumnoak #674c47 avellaneous avellaneous #a67b5b avellaneous avellaneous #996515 avignon berries avignonberries #eaa221 avignon berries avignonberries #e3a857 azalea azalea #905d5d aztec aztec #996515 aztec aztec #c19a6b aztec aztec #826644 aztec maroon aztecmaroon #915f6d azulin azulin #536878 baby blue babyblue #91a3b0 baby blue babyblue #b4bcc0 baby blue babyblue #81878b baby pink babypink #f4c2c2 baby pink babypink #d9a6a9 baby rose babyrose #f88379 bacchus bacchus #a8516e bachelor button bachelorbutton #e4717a bagdad bagdad #00304e bagdad bagdad #36454f bagdad bagdad #202830 bakst green bakstgreen #1b4d3e balge yellow balgeyellow #fada5e ball lake balllake #be0032 ball lake balllake #bc3f4a balsam balsam #36454f balsam green balsamgreen #222222 baltic baltic #3a4b47 baltic baltic #004b49 bambino bambino #91a3b0 bamboo bamboo #c19a6b bamboo bamboo #826644 banana banana #c2b280 banner banner #4c516d banshee banshee #3a4b47 barberry barberry #841b2d barberry barberry #ab4e52 bark bark #3b3121 barwood barwood #ab4e52 basketball basketball #9065ca bastard saffron bastardsaffron #be0032 bat bat #555555 bath stone bathstone #fad6a5 battleship grey battleshipgrey #848482 bay bay #6f4e37 bayou bayou #3a4b47 beach beach #8c8767 beach beach #8a8776 beach tan beachtan #635147 bear bear #555555 bear's hair bearshair #555555 bearskin [grey] bearskingrey #555555 beaucaire beaucaire #007791 beaucaire beaucaire #367588 beaver beaver #5b504f beaverpelt beaverpelt #57554c beech beech #5b5842 beech beech #57554c beechnut beechnut #635147 beef's blood beefsblood #79443b beeswax beeswax #826644 beetle beetle #515744 begonia begonia #e4717a begonia rose begoniarose #ab4e52 beige beige #f3e5ab beige beige #c2b280 beige soirée beigesoire #c19a6b belladonna belladonna #563c5c belleek belleek #fad6a5 belleek belleek #ae9b82 belleek belleek #c2b280 belleek belleek #bfb8a5 bellemonte bellemonte #ab4e52 bellflower bellflower #272458 berlin brown berlinbrown #905d5d berlin brown berlinbrown #674c47 berlin red berlinred #79443b bermuda bermuda #e4717a beryl beryl #66aabc beryl blue berylblue #66aabc beryl green berylgreen #66ada4 biarritz biarritz #ae9b82 biarritz biarritz #967117 big four yellow, big 4 yellow bigfouryellowbig4yellow #f38400 big four yellow, big 4 yellow bigfouryellowbig4yellow #ed872d billiard billiard #1b4d3e biscay green biscaygreen #8a9a5b biscuit biscuit #a67b5b biscuit biscuit #958070 biscuit biscuit #c19a6b biscuit biscuit #ae9b82 bishop bishop #604e81 bishop's purple bishopspurple #915c83 bishop's violet bishopsviolet #915c83 biskra biskra #483c32 bismarck bismarck #79443b bismarck brown bismarckbrown #826644 bison bison #483c32 bisque bisque #fad6a5 bisque bisque #bfb8a5 bister bister #635147 bister bister #7e6d5a bistre bistre #635147 bistre bistre #7e6d5a bistre green bistregreen #ab9144 bistre green bistregreen #a18f60 bittersweet bittersweet #aa381e bittersweet bittersweet #9e4732 bittersweet orange bittersweetorange #be6516 bittersweet pink bittersweetpink #f88379 bitumen bitumen #483c32 bladder green bladdergreen #867e36 blaze blaze #ab4e52 blaze blaze #9e4732 bleu de lyons bleudelyons #00416a bleu de lyons bleudelyons #436b95 bleu d'orient bleudorient #0067a5 bleu louise bleulouise #317873 bleu louise bleulouise #367588 bleu passé bleupass #91a3b0 bleu passé bleupass #536878 bleu passé bleupass #81878b blond blond #c19a6b blond blond #a18f60 blondine blondine #7e6d5a blonket blonket #b4bcc0 blood red bloodred #bc3f4a blood red bloodred #ab4e52 blossom blossom #dea5a4 blue ashes blueashes #436b95 blue aster blueaster #436b95 bluebell bluebell #436b95 bluebell bluebell #00304e blue bice bluebice #436b95 blue bird, bluebird bluebirdbluebird #436b95 blue devil bluedevil #4c516d blue fox bluefox #5c504f blue grass bluegrass #004b49 blue haze bluehaze #555555 bluejay bluejay #00416a bluejay bluejay #00304e blue jewel bluejewel #007791 blue lavender bluelavender #8c92ac blue lotus bluelotus #70a3cc blue ochre blueochre #5e716a blue ochre blueochre #536878 blue orchid blueorchid #536878 blue sapphire bluesapphire #367588 blue spruce bluespruce #3b7861 blue spruce bluespruce #5e716a bluet bluet #436b95 blue turquoise blueturquoise #66ada4 blue turquoise blueturquoise #66aabc blue untramarine ash blueuntramarineash #436b95 blue verditer blueverditer #436b95 blunket blunket #b4bcc0 blush blush #d9a6a9 blush blush #a67b5b blush rose blushrose #905d5d boa boa #8a9a5b boa boa #dadfb7 boa boa #93c592 bobolink bobolink #7e6d5a bois de rose boisderose #905d5d bokhara bokhara #673147 bole bole #79443b bole armoniack bolearmoniack #79443b bolus bolus #79443b bombay bombay #80461b bombay bombay #6f4e37 bone brown bonebrown #6c541e bone brown bonebrown #3b3121 bonfire bonfire #bc3f4a bonito bonito #5b504f bonnie blue bonnieblue #00a1c2 boreal boreal #79443b bosphorus bosphorus #3a4b47 botticelli botticelli #702963 bottle green bottlegreen #3a4b47 bottle green bottlegreen #004b49 bougainville bougainville #86608e bougainville bougainville #915c83 boulevard boulevard #5b504f bouquet green bouquetgreen #6aab8e bourgeon bourgeon #8a9a5b box green boxgreen #8a9a5b bracken bracken #6c541e bracken bracken #3b3121 bramble bramble #2f2140 bran bran #a67b5b bran bran #c19a6b brass brass #c9ae5d brazen yellow brazenyellow #c9ae5d brazil brown brazilbrown #43302e brazil [red] brazilred #9e4732 brazilwood brazilwood #ab4e52 brazilwood brazilwood #905d5d bremen blue bremenblue #317873 bremen green bremengreen #679267 brewster green brewstergreen #4a5d23 briar briar #80461b briar briar #6f4e37 briarwood briarwood #3e322c brickdust brickdust #841b2d brick red brickred #80461b brick red brickred #6f4e37 bridal rose bridalrose #c08081 brigand brigand #bc3f4a brigand brigand #ab4e52 brigand brigand #d9603b brigand brigand #cb6d51 brimstone [yellow] brimstoneyellow #eae679 brittany brittany #367588 brittany brittany #436b95 brittany brittany #536878 broccoli brown broccolibrown #5b504f broncho broncho #483c32 broncho broncho #6c541e broncho broncho #3b3121 bronze bronze #826644 bronze brown bronzebrown #5b504f bronze clair bronzeclair #ae9b82 bronze green bronzegreen #515744 bronze lustre bronzelustre #5b5842 bronze nude bronzenude #6c541e bronze red bronzered #ab4e52 bronzesheen bronzesheen #5b5842 bronze yellow bronzeyellow #d99058 bronze yellow bronzeyellow #be8a3d brown bay brownbay #635147 brown bread brownbread #80461b brown bread brownbread #6f4e37 brown madder brownmadder #79443b brown ochre brownochre #d99058 brown pink brownpink #be8a3d brown pink brownpink #996515 brown red brownred #79443b brown stone brownstone #635147 brownstone brownstone #635147 brown sugar brownsugar #6f4e37 brown sugar brownsugar #635147 brown sugar brownsugar #826644 brown sugar brownsugar #7e6d5a bruges bruges #004958 bruges bruges #36454f brushwood brushwood #635147 brussels brown brusselsbrown #6f4e37 brussels brown brusselsbrown #635147 brussels brown brusselsbrown #826644 brussels brown brusselsbrown #7e6d5a buccaneer buccaneer #bc3f4a buccaneer buccaneer #ab4e52 buccaneer buccaneer #aa381e buccaneer buccaneer #9e4732 buckskin buckskin #977f73 buckskin buckskin #958070 buckthorn berries buckthornberries #eaa221 buckthorn berries buckthornberries #e3a857 buckthorn brown buckthornbrown #be8a3d buckthorn brown buckthornbrown #996515 buckthorn brown buckthornbrown #c19a6b buckthorn brown buckthornbrown #826644 buckthorn brown buckthornbrown #ab9144 buckthorn brown buckthornbrown #a18f60 buckthorn brown buckthornbrown #967117 buddha buddha #bc3f4a buddha buddha #ab4e52 bud green budgreen #44944a buff buff #e3a857 buffalo buffalo #826644 bulgare bulgare #905d5d bunny bunny #826644 bure bure #996515 bure bure #c19a6b bure bure #826644 burel burel #6f4e37 burgundy burgundy #50404d burgundy burgundy #291e29 burgundy violet burgundyviolet #875692 burlwood burlwood #958070 burlwood burlwood #ae9b82 burma burma #ae6938 burmese gold burmesegold #cb6d51 burmese ruby burmeseruby #722f37 burn blue burnblue #bcd4e6 burn blue burnblue #91a3b0 burn blue burnblue #c0c8e1 burn blue burnblue #8c92ac burnished gold burnishedgold #be8a3d burnished gold burnishedgold #996515 burnished gold burnishedgold #c19a6b burnished gold burnishedgold #ab9144 burnished gold burnishedgold #967117 burnous burnous #fad6a5 burnt burnt #a18f60 burnt almond burntalmond #6f4e37 burnt carmine burntcarmine #841b2d burnt carmine burntcarmine #ab4e52 burnt coral burntcoral #cb6d51 burnt crimson lake burntcrimsonlake #841b2d burnt crimson lake burntcrimsonlake #ab4e52 burnt italian earth burntitalianearth #9e4732 burnt italian ochre burntitalianochre #9e4732 burnt lake burntlake #841b2d burnt lake burntlake #ab4e52 burnt ochre burntochre #cb6d51 burnt orange burntorange #cb6d51 burnt roman ochre burntromanochre #ed872d burnt rose burntrose #56070c burnt rose burntrose #79443b burnt russet burntrusset #722f37 burnt russet burntrusset #79443b burnt sienna burntsienna #9e4732 burnt terre verte burntterreverte #6f4e37 burnt umber burntumber #6f4e37 buttercup [yellow] buttercupyellow #c2b280 butterfly butterfly #b9b459 butternut butternut #6c541e butterscotch butterscotch #6f4e37 butterscotch butterscotch #826644 byron byron #483c32 byzantine byzantine #ce4676 byzantium byzantium #702963 byzantium byzantium #5d3954 cabaret cabaret #6aab8e cabbage green cabbagegreen #7d8984 cacao cacao #826644 cacao brown cacaobrown #80461b cacha cacha #6f4e37 cachou cachou #6f4e37 cactus cactus #355e3b cadet cadet #536878 cadet blue cadetblue #436b95 cadet grey cadetgrey #81878b cadmium carmine cadmiumcarmine #bc3f4a cadmium green cadmiumgreen #007959 cadmium lemon cadmiumlemon #dcd300 cadmium lemon cadmiumlemon #e9e450 cadmium orange cadmiumorange #ed872d cadmium purple cadmiumpurple #841b2d cadmium purple cadmiumpurple #ab4e52 cadmium vermilion cadmiumvermilion #bc3f4a cadmium vermilion cadmiumvermilion #ab4e52 cadmium yellow cadmiumyellow #ed872d cadmium yellow cadmiumyellow #d99058 cadmium yellow cadmiumyellow #eaa221 cadmium yellow cadmiumyellow #e3a857 caen stone caenstone #fad6a5 caeruleum caeruleum #0085a1 caeruleum caeruleum #00a1c2 café-au-lait cafaulait #977f73 café-au-lait cafaulait #a67b5b café-au-lait cafaulait #958070 café crème cafcrme #a67b5b café crème cafcrme #6f4e37 café crème cafcrme #826644 café noir cafnoir #483c32 cairo cairo #00416a calabash calabash #826644 calabash calabash #967117 calamine blue calamineblue #66aabc caldera caldera #79443b caledonian brown caledonianbrown #80461b caliaturwood caliaturwood #ab4e52 california color californiacolor #6f4e37 california green californiagreen #a18f60 calla green callagreen #8a9a5b calliste green callistegreen #7e9f2e calliste green callistegreen #8a9a5b cambridge blue cambridgeblue #66ada4 cambridge red cambridgered #ab4e52 cambridge red cambridgered #905d5d camel camel #5b504f camellia camellia #bc3f4a camellia camellia #ab4e52 camels hair or camel's hair camelshairorcamelshair #7e6d5a cameo blue cameoblue #66ada4 cameo brown cameobrown #905d5d cameo brown cameobrown #a87c6d cameo brown cameobrown #79443b cameo brown cameobrown #674c47 cameo green cameogreen #93c592 cameo green cameogreen #6aab8e cameo green cameogreen #8da399 cameo pink cameopink #c3a6b1 cameo yellow cameoyellow #f3e5ab campanula campanula #604e97 campanula campanula #604e81 campanula blue campanulablue #8791bf campanula blue campanulablue #6c79b8 campanula blue campanulablue #7e73b8 campanula purple campanulapurple #836479 campanula violet campanulaviolet #836479 camérier camrier #563c5c camwood camwood #ab4e52 canard canard #004b49 canard canard #004958 canary-bird green canarybirdgreen #ab9144 canary green canarygreen #ab9144 canary [yellow] canaryyellow #c9ae5d candida candida #af868e candy pink candypink #e4717a candy pink candypink #f88379 candy pink candypink #e66761 canna canna #cb6d51 canna canna #9e4732 canna canna #b4745e canna canna #79443b cannon cannon #1a2421 canterbury canterbury #604e97 canton [blue] cantonblue #00304e canton jade cantonjade #317873 canyon canyon #722f37 canyon canyon #673147 cappagh cappagh #6f4e37 cappah brown cappahbrown #6f4e37 capri capri #007791 caprice caprice #870074 caprice caprice #d6cadd capucine capucine #c9ae5d capucine buff capucinebuff #fad6a5 capucine lake capucinelake #f88379 capucine lake capucinelake #cb6d51 capucine lake capucinelake #ed872d capucine lake capucinelake #d99058 capucine madder capucinemadder #d99058 capucine orange capucineorange #d99058 capucine red capucinered #ffb7a5 capucine red capucinered #d9603b capucine yellow capucineyellow #d99058 caput mortuum caputmortuum #79443b caraibe caraibe #6f4e37 caraibe caraibe #635147 caraibe caraibe #826644 caraibe caraibe #7e6d5a caramel caramel #ae6938 caramel caramel #a67b5b carbuncle carbuncle #43302e cardinal [red] cardinalred #be0032 carmine carmine #be0032 carmine carmine #bc3f4a carmine lake carminelake #be0032 carmine lake carminelake #bc3f4a carnation carnation #f3e5ab carnation carnation #c2b280 carnation [red] carnationred #ab4e52 carnation rose carnationrose #ea9399 carnelian carnelian #b4745e carnelian red carnelianred #cb6d51 carnival red carnivalred #bc3f4a carob brown carobbrown #6f4e37 caroubier caroubier #6f4e37 carrara green carraragreen #1b4d3e carrot red carrotred #ed872d carrot red carrotred #d99058 carthamus red carthamusred #be0032 carthamus rose carthamusrose #be0032 cartouche cartouche #6f4e37 cartridge buff cartridgebuff #f3e5ab cartridge buff cartridgebuff #c2b280 cascade cascade #66ada4 cashew cashew #6f4e37 cashew lake cashewlake #6f4e37 cashew nut cashewnut #635147 cashoo cashoo #6f4e37 casino pink casinopink #b3446c cassel brown casselbrown #6f4e37 cassel earth casselearth #6f4e37 cassel yellow casselyellow #fada5e cassel yellow casselyellow #d4af37 cassel yellow casselyellow #f8de7e cassel yellow casselyellow #c9ae5d casserole casserole #79443b castaneous castaneous #635147 castellon castellon #79443b castile earth castileearth #6f4e37 castilian brown castilianbrown #79443b castilian red castilianred #be0032 castor castor #5b504f castor grey castorgrey #4e5755 catalpa catalpa #796878 catawba catawba #3f1728 catawba catawba #2e1d21 cate cate #6f4e37 catechu catechu #6f4e37 cathay cathay #ae6938 cathay cathay #996515 cathedral cathedral #2f2140 cathedral blue cathedralblue #436b95 cathedral blue cathedralblue #4e5180 cattail cattail #483c32 cattleya cattleya #86608e caucasia caucasia #7e6d5a cauldron cauldron #722f37 cauldron cauldron #882d17 cauldron cauldron #79443b cavalry cavalry #e3a857 cedar cedar #674c47 cedarbark cedarbark #905d5d cedarbark cedarbark #79443b cedar green cedargreen #4a5d23 cedar wood cedarwood #79443b cedre cedre #4a5d23 celadon green celadongreen #8f9779 celandine green celandinegreen #5e716a celest celest #536878 celest celest #8c92ac celestial celestial #436b95 celestial blue celestialblue #91a3b0 cellini cellini #870074 cellini cellini #ce4676 cement cement #848482 cendrillon cendrillon #3a4b47 cendrillon cendrillon #51585e centennial brown centennialbrown #996515 centennial brown centennialbrown #c19a6b centennial brown centennialbrown #826644 centre blue centreblue #436b95 ceramic ceramic #436b95 ceres ceres #d99058 cerise cerise #ab4e52 cerro green cerrogreen #8a9a5b cerro green cerrogreen #4a5d23 certosa certosa #98943e certosa certosa #867e36 certosa certosa #8a9a5b cerulean cerulean #70a3cc cerulean cerulean #8791bf cerulean blue ceruleanblue #0085a1 cerulean blue ceruleanblue #00a1c2 ceylon blue ceylonblue #004958 chaetura black chaeturablack #222222 chaetura drab chaeturadrab #555555 chalcedony yellow chalcedonyyellow #eae679 chalet red chaletred #905d5d chamois chamois #c2b280 chamois skin chamoisskin #c2b280 chamoline chamoline #be8a3d chamoline chamoline #996515 chamoline chamoline #c19a6b chamoline chamoline #826644 chamoline chamoline #ab9144 chamoline chamoline #a18f60 chamoline chamoline #967117 champagne champagne #fad6a5 champagne champagne #ae9b82 champagne champagne #c2b280 champagne champagne #bfb8a5 chantilly chantilly #6aab8e charcoal grey charcoalgrey #555555 chardon chardon #673147 charles x charlesx #673147 chartreuse chartreuse #e9e450 chartreuse chartreuse #beb72e chartreuse chartreuse #eae679 chartreuse chartreuse #b9b459 chartreuse green chartreusegreen #98943e chartreuse yellow chartreuseyellow #eae679 chartreuse yellow chartreuseyellow #b9b459 chasseur chasseur #173620 chatemuc chatemuc #ab4e52 chatenay pink chatenaypink #f4c2c2 chatenay pink chatenaypink #d9a6a9 chaudron chaudron #cb6d51 chaudron chaudron #9e4732 chaudron chaudron #b4745e chaudron chaudron #79443b checkerberry checkerberry #be0032 chemic blue chemicblue #004958 chemic green chemicgreen #317873 cherokee cherokee #cb6d51 cherry cherry #e25822 cherry bloom cherrybloom #f88379 cherry blossom cherryblossom #ab4e52 cherry red cherryred #e25822 cherub cherub #d9a6a9 chessylite blue chessyliteblue #436b95 chestnut chestnut #635147 chevreuse chevreuse #905d5d chevreuse chevreuse #79443b chianti chianti #841b2d chickadee gray chickadeegray #57554c chicle chicle #635147 chicory chicory #8c92ac chicory blue chicoryblue #dadfb7 chicory blue chicoryblue #8c92ac chimney red chimneyred #841b2d chimney red chimneyred #ab4e52 china blue chinablue #436b95 china blue chinablue #536878 china rose chinarose #a8516e chinchilla chinchilla #848482 chin-chin blue chinchinblue #536878 chinese gold chinesegold #ae6938 chinese green chinesegreen #93c592 chinese green chinesegreen #6aab8e chinese green chinesegreen #1b4d3e chinese green chinesegreen #004b49 chinese lake chineselake #be0032 chinese lake chineselake #bc3f4a chinese orange chineseorange #ffb7a5 chinese orange chineseorange #d9603b chinese red chinesered #aa381e chinese red chinesered #9e4732 chinese red chinesered #882d17 chinese rouge chineserouge #be0032 chinese vermilion chinesevermilion #be0032 chinese violet chineseviolet #86608e chinese yellow chineseyellow #fada5e chinese yellow chineseyellow #d4af37 chinese yellow chineseyellow #f8de7e chinese yellow chineseyellow #c9ae5d chinese yellow chineseyellow #e3a857 ch'ing ching #00a1c2 chinook chinook #9e4732 chip chip #8c8767 chip chip #8a8776 chipmunk chipmunk #996515 chippendale chippendale #3e322c chiswick chiswick #00304e chocolate chocolate #3e322c chocolate brown chocolatebrown #3e322c chocolate maroon chocolatemaroon #722f37 chrome citron chromecitron #f8de7e chrome green chromegreen #007959 chrome green chromegreen #3b7861 chrome lemon chromelemon #f8de7e chrome orange chromeorange #e25822 chrome orange chromeorange #f38400 chrome primrose chromeprimrose #e9e450 chrome primrose chromeprimrose #eae679 chrome scarlet chromescarlet #d9603b chromium green chromiumgreen #8a9a5b chromium oxide chromiumoxide #679267 chrysanthemum chrysanthemum #841b2d chrysanthemum chrysanthemum #722f37 chrysocollo chrysocollo #679267 chrysolite green chrysolitegreen #b9b459 chrysolite green chrysolitegreen #b9b57d chrysolite green chrysolitegreen #8a9a5b chrysopraise [green] chrysopraisegreen #3eb489 chrysopraise [green] chrysopraisegreen #6aab8e chukker brown chukkerbrown #635147 chukker brown chukkerbrown #7e6d5a chutney chutney #79443b cigarette cigarette #6f4e37 cinder [grey] cindergrey #8b8589 cineraria cineraria #ce4676 cinereous cinereous #b9b8b5 cinnamon cinnamon #a67b5b cinnamon cinnamon #c19a6b cinnamon brown cinnamonbrown #6f4e37 cinnamon brown cinnamonbrown #826644 cinnamon pink cinnamonpink #a87c6d circassian circassian #6f4e37 citrine citrine #867e36 citronelle citronelle #e9e450 citronelle citronelle #beb72e citronelle citronelle #eae679 citronelle citronelle #b9b459 citron green citrongreen #b9b459 citron green citrongreen #b9b57d citron [yellow] citronyellow #f8de7e citrus citrus #eae679 civette green civettegreen #355e3b clair de lune clairdelune #8da399 claret cup claretcup #915f6d claret lees claretlees #673147 claret [red] claretred #ab4e52 claver claver #915c83 clay clay #996515 clay clay #c19a6b clay clay #826644 clay bank claybank #ae6938 clay drab claydrab #826644 clay drab claydrab #967117 clematis clematis #604e97 cleopatra cleopatra #00a1c2 clochette clochette #4e5180 clochette clochette #604e81 cloisonné cloisonn #00a1c2 cloisonné cloisonn #30267a cloud cloud #536878 cloud grey cloudgrey #8b8589 cloud grey cloudgrey #848482 cloudy amber cloudyamber #c2b280 cloudy amber cloudyamber #a18f60 clove clove #6f4e37 clove brown clovebrown #5b504f clove pink clovepink #722f37 clover clover #915c83 cobalt blue cobaltblue #007791 cobalt glass cobaltglass #00416a cobalt glass cobaltglass #436b95 cobalt green cobaltgreen #679267 cobalt red cobaltred #ce4676 cobalt red cobaltred #b3446c cobalt ultramarine cobaltultramarine #007791 cobalt violet cobaltviolet #86608e cobalt yellow cobaltyellow #fada5e cobalt yellow cobaltyellow #d4af37 cobblestone cobblestone #555555 cobweb cobweb #ae9b82 coccineous coccineous #be0032 cocher cocher #6c541e cochin cochin #6f4e37 cochineal cochineal #be0032 cockatoo cockatoo #f8de7e cocoa cocoa #6f4e37 cocoa brown cocoabrown #6f4e37 cocobala cocobala #905d5d cocobala cocobala #674c47 coconut coconut #635147 coconut brown coconutbrown #6f4e37 cod grey codgrey #5b5842 cod grey codgrey #57554c coeruleum coeruleum #0085a1 coeruleum coeruleum #00a1c2 coffee coffee #6f4e37 cognac cognac #6f4e37 colcothar colcothar #79443b colewort green colewortgreen #7d8984 colibri colibri #317873 collie collie #7e6d5a cologne brown colognebrown #6f4e37 cologne earth cologneearth #6f4e37 cologne yellow cologneyellow #d4af37 colonial colonial #00416a colonial colonial #00304e colonial colonial #272458 colonial colonial #4e5180 colonial buff colonialbuff #f8de7e colonial buff colonialbuff #f3e5ab colonial yellow colonialyellow #c9ae5d columbia columbia #0067a5 columbia blue columbiablue #91a3b0 columbian red columbianred #79443b columbine blue columbineblue #4e5180 columbine blue columbineblue #604e81 columbine red columbinered #673147 comet comet #00304e commelina blue commelinablue #436b95 commodore commodore #30267a como como #367588 conch shell conchshell #f88379 concord concord #2f2140 condor condor #826644 confetti confetti #e4717a confetti confetti #ab4e52 congo [brown] congobrown #483c32 congo pink congopink #b4745e continental blue continentalblue #50404d continental blue continentalblue #242124 cookie cookie #6f4e37 coolie coolie #4e5180 coolie coolie #252440 copenhagen [blue] copenhagenblue #536878 copenhagen [blue] copenhagenblue #4c516d copper copper #b4745e copper blue copperblue #436b95 copper brown copperbrown #80461b copper green coppergreen #679267 copperleaf copperleaf #79443b copper lustre copperlustre #80461b copper red copperred #b4745e copper rose copperrose #ab4e52 copper yellow copperyellow #c9ae5d copra copra #5c504f coptic coptic #79443b coquelicot coquelicot #be0032 coquelicot coquelicot #e25822 coquette coquette #f88379 coquette coquette #d9a6a9 coralbell coralbell #ab4e52 coralbell coralbell #cb6d51 coral blush coralblush #f88379 coral blush coralblush #e66761 coral blush coralblush #cb6d51 coral pink coralpink #d9a6a9 coral [red] coralred #e4717a coral sands coralsands #d9a6a9 coral sands coralsands #c7ada3 corcir corcir #a8516e cordova cordova #79443b cordovan cordovan #483c32 cordovan cordovan #222222 corial corial #d9a6a9 corial corial #a87c6d corinth corinth #915f6d corinthian pink corinthianpink #dea5a4 corinthian pink corinthianpink #ad8884 corinthian purple corinthianpurple #673147 corinthian purple corinthianpurple #915f6d corinthian red corinthianred #905d5d cork cork #a67b5b cork cork #a8516e corker corker #a8516e corkur corkur #a8516e corn corn #c9ae5d cornelian red cornelianred #b4745e cornflower [blue] cornflowerblue #4e5180 cornhusk cornhusk #fad6a5 cornhusk cornhusk #c19a6b cornsilk cornsilk #f8de7e coromandel coromandel #79443b coronation coronation #5d3954 coronation coronation #673147 corsage green corsagegreen #6aab8e corsage green corsagegreen #66ada4 corsair corsair #00304e corsican blue corsicanblue #4e5180 corsican blue corsicanblue #252440 corsican blue corsicanblue #2f2140 corydalis green corydalisgreen #8f9779 cosmos cosmos #c17e91 cossack cossack #5e716a cossack green cossackgreen #355e3b cosse green cossegreen #8a9a5b cotch cotch #6f4e37 cotinga purple cotingapurple #602f6b cotinga purple cotingapurple #563c5c cotinga purple cotingapurple #702963 cotinga purple cotingapurple #5d3954 cotrine cotrine #be8a3d cotrine cotrine #c19a6b courge green courgegreen #98943e courge green courgegreen #867e36 courge green courgegreen #8a9a5b cowboy cowboy #6f4e37 cowboy cowboy #635147 cowboy cowboy #826644 cowboy cowboy #7e6d5a cowslip cowslip #ed872d cowslip cowslip #d99058 crabapple crabapple #cb6d51 cracker cracker #c19a6b crag crag #57554c crane crane #8b8589 crash crash #c2b280 crash crash #a18f60 crash crash #967117 crash crash #8c8767 crawshay red crawshayred #9e4732 crawshay red crawshayred #80461b crayon blue crayonblue #536878 cream cream #f3e5ab cream beige creambeige #a87c6d cream beige creambeige #a67b5b cream beige creambeige #958070 cream buff creambuff #f3e5ab cream buff creambuff #c2b280 creole creole #ae6938 creole creole #a67b5b cress green cressgreen #8a9a5b cresson cresson #8a9a5b crevette crevette #f88379 crimson lake crimsonlake #ab4e52 crimson madder crimsonmadder #be0032 crimson maple crimsonmaple #56070c croceus croceus #d99058 croceus croceus #e3a857 crocreal crocreal #d99058 crocreal crocreal #e3a857 crocus crocus #d99058 crocus crocus #e3a857 crocus crocus #aa8a9e crocus crocus #836479 crocus martis crocusmartis #79443b crostil crostil #a8516e crotal crotal #a8516e crottle crottle #a8516e crowshay red crowshayred #9e4732 crowshay red crowshayred #80461b cruiser cruiser #555555 crushed berry crushedberry #905d5d crushed strawberry crushedstrawberry #e4717a crushed violets crushedviolets #796878 crystal grey crystalgrey #8b8589 crystal palace blue crystalpalaceblue #00304e crystal palace green crystalpalacegreen #57554c crystals of venus crystalsofvenus #679267 cub cub #57554c cuba cuba #722f37 cuba cuba #79443b cuban sand cubansand #ae9b82 cudbear cudbear #a8516e cuir cuir #c19a6b cuisse de nymphe cuissedenymphe #f3e5ab cullen earth cullenearth #6f4e37 cupid pink cupidpink #d9a6a9 cupreous cupreous #f8de7e curcuma curcuma #f8de7e currant [red] currantred #bc3f4a cutch cutch #6f4e37 cuyahoga red cuyahogared #722f37 cyan blue cyanblue #317873 cyan blue cyanblue #367588 cyanine blue cyanineblue #00a1c2 cyanine blue cyanineblue #4e5180 cyanine blue cyanineblue #252440 cyclamen cyclamen #341731 cygnet cygnet #673147 cypress [green] cypressgreen #4a5d23 cypress green cypressgreen #44944a cyprus earth cyprusearth #826644 cyprus earth cyprusearth #4b3621 cyprus umber cyprusumber #826644 cyprus umber cyprusumber #4b3621 daffodile [yellow] daffodileyellow #e3a857 daffodil yellow daffodilyellow #ed872d daffodil yellow daffodilyellow #d99058 daffodil yellow daffodilyellow #eaa221 daffodil yellow daffodilyellow #e3a857 dagestan dagestan #00304e dahlia dahlia #86608e dahlia carmine dahliacarmine #673147 dahlia mauve dahliamauve #915c83 dahlia purple dahliapurple #673147 dahlia purple dahliapurple #38152c damascen damascen #604e81 damascen damascen #2f2140 damask damask #905d5d damonico damonico #f88379 damonico damonico #cb6d51 damonico damonico #ed872d damonico damonico #d99058 damson damson #604e81 damson damson #2f2140 danaë dana #ed872d danaë dana #d99058 danaë dana #536878 dandelion dandelion #fada5e dante dante #50404d dante dante #5d3954 dante dante #673147 danube green danubegreen #355e3b danube green danubegreen #3a4b47 daphne daphne #436b95 daphne pink daphnepink #915f6d daphne red daphnered #a8516e daphne red daphnered #915f6d dark beaver darkbeaver #6f4e37 dark beaver darkbeaver #635147 dark cardinal darkcardinal #722f37 dark gobelin blue darkgobelinblue #367588 dark gobelin blue darkgobelinblue #536878 dark wedgwood [blue] darkwedgwoodblue #4e5180 dark wedgwood [blue] darkwedgwoodblue #4c516d date date #483c32 datura datura #86608e dauphine dauphine #ad8884 davy's grey davysgrey #555555 dawn dawn #dea5a4 dawn grey dawngrey #848482 daybreak daybreak #8c82b6 daybreak daybreak #b695c0 daytona daytona #8e8279 débutante pink dbutantepink #dea5a4 dead carnations deadcarnations #a8516e dead leaf deadleaf #be6516 dead leaf deadleaf #ae6938 dead leaf deadleaf #80461b deauville sand deauvillesand #977f73 deauville sand deauvillesand #958070 deep brunswick green deepbrunswickgreen #1b4d3e deep chrome green deepchromegreen #355e3b deep chrome yellow deepchromeyellow #e3a857 deep stone deepstone #ab9144 deep stone deepstone #a18f60 deep stone deepstone #967117 deer deer #7e6d5a delft blue delftblue #4c516d della robbia dellarobbia #545aa7 del monte delmonte #796878 delphinium delphinium #4997d0 delphinium delphinium #0067a5 delphinium delphinium #70a3cc de'medici demedici #673147 denmark denmark #536878 denver denver #848482 derby blue derbyblue #2f2140 desert desert #c19a6b devil's red devilsred #bc3f4a devil's red devilsred #ab4e52 devon [brown] devonbrown #905d5d dewey red deweyred #bc3f4a dewey red deweyred #ab4e52 dewkiss dewkiss #5e716a diadem diadem #aa98a9 diana diana #70a3cc dianthus dianthus #ab4e52 dianthus dianthus #905d5d diavolo diavolo #905d5d digitalis digitalis #796878 di palito dipalito #e3a857 directoire blue directoireblue #00a1c2 directoire blue directoireblue #0067a5 distilled green distilledgreen #679267 diva blue divablue #0067a5 diva blue divablue #436b95 doe doe #a67b5b doe doe #958070 doe doe #c19a6b doe doe #ae9b82 doe-skin brown doeskinbrown #a87c6d doge doge #ab4e52 dogwood dogwood #a67b5b dogwood dogwood #6f4e37 dogwood dogwood #826644 dolly pink dollypink #ab4e52 domingo domingo #79443b domingo brown domingobrown #422518 dorado dorado #c19a6b doubloon doubloon #d99058 dove dove #555555 dove dove #673147 dove grey dovegrey #8b8589 dover grey dovergrey #555555 dozer dozer #00304e drab drab #967117 drabolive drabolive #5b5842 dragonfly dragonfly #004958 dragon's blood dragonsblood #905d5d dragon's blood dragonsblood #b4745e dragon's blood dragonsblood #a87c6d drake drake #004958 drake's-neck green drakesneckgreen #004958 dregs of wine dregsofwine #722f37 dregs of wine dregsofwine #56070c dregs of wine dregsofwine #3e1d1e dresden blue dresdenblue #436b95 dresden brown dresdenbrown #826644 dresden brown dresdenbrown #967117 dresden brown dresdenbrown #6c541e dryad dryad #5e716a dry rose dryrose #905d5d dry rose dryrose #79443b du barry dubarry #f88379 duck blue duckblue #007791 duck green duckgreen #004b49 duckling duckling #004958 duckling duckling #36454f duck-wing duckwing #4c516d du gueslin dugueslin #00304e du gueslin dugueslin #252440 du gueslin dugueslin #4c516d dumont's blue dumontsblue #00416a dumont's blue dumontsblue #436b95 dune dune #8c8767 durango durango #6f4e37 dusk dusk #5d555b dust dust #967117 dusty green dustygreen #8c8767 dutch azure dutchazure #00416a dutch azure dutchazure #436b95 dutch blue dutchblue #536878 dutch orange dutchorange #eaa221 dutch orange dutchorange #e3a857 dutch pink dutchpink #fada5e dutch pink dutchpink #d4af37 dutch pink dutchpink #f8de7e dutch pink dutchpink #c9ae5d dutch scarlet dutchscarlet #be0032 dutch vermilion dutchvermilion #e25822 dutch ware blue dutchwareblue #4c516d dyer's broom dyersbroom #eae679 dyer's broom dyersbroom #b9b459 dyer's greenwood dyersgreenwood #eae679 dyer's greenwood dyersgreenwood #b9b459 dyer's saffron dyerssaffron #be0032 eagle eagle #5b504f eau-de-javel green eaudejavelgreen #b9b459 eau-de-nile eaudenile #8a9a5b eau-de-nile eaudenile #dadfb7 eau-de-nile eaudenile #93c592 eburnean eburnean #f3e5ab ecclesiastic ecclesiastic #870074 ecclesiastic ecclesiastic #9e4f88 ecru ecru #f3e5ab ecru ecru #c2b280 eden green edengreen #44944a eden green edengreen #679267 eggplant eggplant #291e29 eggplant eggplant #242124 eggshell blue eggshellblue #8da399 eggshell blue eggshellblue #66ada4 eggshell green eggshellgreen #8da399 eggshell green eggshellgreen #66ada4 eglantine eglantine #ce4676 egypt egypt #0067a5 egyptian egyptian #905d5d egyptian blue egyptianblue #00a1c2 egyptian blue egyptianblue #0067a5 egyptian brown egyptianbrown #483c32 egyptian green egyptiangreen #3b7861 egyptian red egyptianred #722f37 egyptian red egyptianred #882d17 eifel eifel #905d5d eifel eifel #79443b elderberry elderberry #2f2140 eldorado eldorado #ae6938 electric [blue] electricblue #536878 electric green electricgreen #536878 elephant green elephantgreen #173620 elephant skin elephantskin #5b504f elf elf #6aab8e elf elf #8da399 elfin green elfingreen #6aab8e elk elk #483c32 elm green elmgreen #4a5d23 elmwood elmwood #ae9b82 elmwood elmwood #967117 email email #317873 email email #367588 ember ember #ab4e52 emberglow emberglow #ab4e52 emberglow emberglow #e66761 emberglow emberglow #cb6d51 emerald green emeraldgreen #679267 emerald green emeraldgreen #3eb489 emeraude emeraude #679267 emeraude emeraude #007959 emeraude emeraude #3b7861 eminence eminence #563c5c emperor green emperorgreen #3eb489 empire empire #007959 empire blue empireblue #436b95 empire green empiregreen #355e3b empire green empiregreen #3a4b47 empire yellow empireyellow #fada5e empire yellow empireyellow #f8de7e enamel blue enamelblue #00416a enamel blue enamelblue #436b95 endive endive #e9e450 endive endive #eae679 endive blue endiveblue #91a3b0 endive blue endiveblue #aa98a9 english blue englishblue #436b95 english green englishgreen #7e9f2e english green englishgreen #44944a english green englishgreen #1b4d3e english grey englishgrey #57554c english inde englishinde #50404d english ivy englishivy #355e3b english oak englishoak #6f4e37 english ochre englishochre #e3a857 english pink englishpink #fada5e english pink englishpink #d4af37 english pink englishpink #f8de7e english pink englishpink #c9ae5d english red englishred #bc3f4a english red englishred #ab4e52 english red englishred #d9603b english red englishred #cb6d51 english red englishred #9e4732 english red englishred #80461b english red englishred #79443b english vermilion englishvermilion #bc3f4a english violet englishviolet #563c5c ensign ensign #00304e epinauche epinauche #3a4b47 epsom epsom #8a9a5b erin erin #3b7861 erlau green erlaugreen #679267 escadre escadre #536878 eschel eschel #00416a eschel eschel #436b95 eskimo eskimo #79443b esthetic grey estheticgrey #7d8984 etain blue etainblue #c7e6d7 etain blue etainblue #bcd4e6 etain blue etainblue #c7e6d7 etain blue etainblue #96ded1 etain blue etainblue #9cd1dc etain blue etainblue #bcd4e6 etang etang #8da399 etang etang #b2beb5 ether ether #66aabc ethereal blue etherealblue #70a3cc ethereal blue etherealblue #8791bf eton blue etonblue #66ada4 etruscan etruscan #79443b etruscan etruscan #6f4e37 etruscan red etruscanred #b4745e eucalyptus [green] eucalyptusgreen #c2b280 eucalyptus [green] eucalyptusgreen #8f9779 eugenia red eugeniared #ab4e52 eugenie eugenie #796878 eupatorium purple eupatoriumpurple #915c83 eureka red eurekared #722f37 eve green evegreen #e9e450 eve green evegreen #83d37d eve green evegreen #44944a evenglow evenglow #8f817f eventide eventide #9690ab everglade everglade #222222 evergreen evergreen #355e3b evêque evque #563c5c faded rose fadedrose #905d5d faience faience #007791 faience faience #367588 fairway fairway #1a2421 fairy green fairygreen #679267 fakir fakir #fad6a5 falcon falcon #3e322c fallow fallow #c19a6b fandango fandango #ce4676 faon faon #977f73 faon faon #6f4e37 faon faon #958070 faon faon #635147 fashion gray fashiongray #555555 fawn [brown] fawnbrown #977f73 fawn [brown] fawnbrown #6f4e37 fawn [brown] fawnbrown #958070 fawn [brown] fawnbrown #635147 feldspar feldspar #6aab8e fern fern #8a9a5b fernambucowood fernambucowood #ab4e52 fernambucowood fernambucowood #905d5d fern green ferngreen #8a9a5b fern green ferngreen #8f9779 ferruginous ferruginous #9e4732 ferruginous ferruginous #80461b feuille feuille #6f4e37 feuille morte feuillemorte #be6516 feuille morte feuillemorte #ae6938 feuille morte feuillemorte #80461b feulamort feulamort #be6516 feulamort feulamort #ae6938 feulamort feulamort #80461b fez fez #be0032 field's orange vermilion fieldsorangevermilion #d9603b fiery red fieryred #e25822 fiesta fiesta #e4717a fieulamort fieulamort #be6516 fieulamort fieulamort #ae6938 fieulamort fieulamort #80461b filbert [brown] filbertbrown #a67b5b filbert [brown] filbertbrown #996515 filemot filemot #be6516 filemot filemot #ae6938 filemot filemot #80461b fillemot fillemot #be6516 fillemot fillemot #ae6938 fillemot fillemot #80461b firecracker firecracker #e25822 firefly firefly #bc3f4a firefly firefly #ab4e52 fire red firered #e25822 fire scarlet firescarlet #be0032 fireweed fireweed #602f6b fir [green] firgreen #355e3b fir [green] firgreen #173620 fir [green] firgreen #3a4b47 firmament firmament #536878 firmament blue firmamentblue #66aabc fish grey fishgrey #5b5842 fish grey fishgrey #57554c flag flag #2f2140 flame blue flameblue #4e5180 flame blue flameblue #4c516d flame orange flameorange #e25822 flame [scarlet] flamescarlet #e25822 flaming maple flamingmaple #be0032 flaming maple flamingmaple #bc3f4a flaming maple flamingmaple #841b2d flaming maple flamingmaple #ab4e52 flamingo flamingo #cb6d51 flammeous flammeous #d9603b flash flash #bc3f4a flash flash #ab4e52 flash flash #aa381e flash flash #9e4732 flax flax #c2b280 flaxen flaxen #c2b280 flaxflower blossom flaxflowerblossom #536878 flaxflower blue flaxflowerblue #436b95 flaxflower blue flaxflowerblue #8791bf flea flea #722f37 flemish blue flemishblue #36454f flesh flesh #fad6a5 flesh flesh #bfb8a5 flesh blond fleshblond #d9a6a9 flesh blond fleshblond #c7ada3 flesh blond fleshblond #c2ac99 flesh ochre fleshochre #9e4732 fleur-de-lys fleurdelys #86608e flint flint #222222 flint grey flintgrey #848482 flirt flirt #ab4e52 florence brown florencebrown #905d5d florence earth florenceearth #79443b florentine florentine #e25822 florentine lake florentinelake #be0032 florentine lake florentinelake #bc3f4a florida gold floridagold #eaa221 florida gold floridagold #e3a857 floss flower blue flossflowerblue #aa98a9 flower de luce green flowerdelucegreen #355e3b fluorite green fluoritegreen #679267 fluorite violet fluoriteviolet #563c5c fluorite violet fluoriteviolet #301934 fog fog #b9b8b5 foliage brown foliagebrown #be6516 foliage brown foliagebrown #ae6938 foliage brown foliagebrown #80461b foliage green foliagegreen #8a9a5b folimort folimort #be6516 folimort folimort #ae6938 folimort folimort #80461b folkstone folkstone #ae9b82 folly folly #be0032 folly folly #bc3f4a fontainebleau fontainebleau #905d5d forest forest #3a4b47 forest green forestgreen #4a5d23 forest of dean red forestofdeanred #9e4732 forest of dean red forestofdeanred #80461b forget-me-not [blue] forgetmenotblue #91a3b0 forget-me-not [blue] forgetmenotblue #536878 formosa formosa #d99058 formosa formosa #a67b5b forsythia forsythia #e3a857 fox fox #826644 fox fox #967117 fox fox #6c541e foxglove foxglove #604e97 foxglove foxglove #604e81 fox trot foxtrot #66ada4 fragonard fragonard #ab4e52 france france #00304e france rose francerose #e4717a france rose francerose #282022 freedom freedom #00304e freestone freestone #fad6a5 french beige frenchbeige #a67b5b french berries frenchberries #eaa221 french berries frenchberries #e3a857 french blue frenchblue #0067a5 french blue frenchblue #545aa7 french green frenchgreen #679267 french green frenchgreen #3b7861 french grey frenchgrey #b2beb5 french grey frenchgrey #b9b8b5 french lilac frenchlilac #86608e french lilac frenchlilac #796878 french maroon frenchmaroon #905d5d french nude frenchnude #977f73 french nude frenchnude #a67b5b french nude frenchnude #958070 french ochre frenchochre #e3a857 french pink frenchpink #fad6a5 french pink frenchpink #c9ae5d french purple frenchpurple #a8516e french scarlet frenchscarlet #be0032 french ultramarine frenchultramarine #0067a5 french ultramarine frenchultramarine #545aa7 french vermilion frenchvermilion #e25822 [french] veronese green frenchveronesegreen #007959 [french] veronese green frenchveronesegreen #3b7861 french white frenchwhite #bfb9bd french white frenchwhite #e8ccd7 french yellow frenchyellow #ae6938 french yellow frenchyellow #996515 french yellow frenchyellow #a67b5b friar friar #635147 friar friar #3e322c frost grey frostgrey #848482 frosty green frostygreen #3a4b47 fuchsia fuchsia #870074 fudge fudge #6f4e37 fujiyama fujiyama #79443b fuscous fuscous #5b504f fustet fustet #fada5e fustet fustet #d4af37 fustic fustic #c9ae5d fustic fustic #c2b280 gage green gagegreen #8f9779 gaiety gaiety #e4717a galleon galleon #3e322c gallstone gallstone #d4af37 gambia gambia #6f4e37 gamboge gamboge #d4af37 gardenia green gardeniagreen #3a4b47 gargoyle gargoyle #555555 garland green garlandgreen #4a5d23 garland green garlandgreen #355e3b garnet garnet #722f37 garnet brown garnetbrown #722f37 garnet brown garnetbrown #79443b garnet red garnetred #841b2d garnet red garnetred #722f37 garter blue garterblue #4c516d gaude gaude #eae679 gaude gaude #b9b459 gaude lake gaudelake #f8de7e gaudy green gaudygreen #8a9a5b gaudy green gaudygreen #4a5d23 gay green gaygreen #8a9a5b gazelle [brown] gazellebrown #635147 gazelle [brown] gazellebrown #7e6d5a geisha geisha #915c83 geisha geisha #a8516e geisha geisha #915f6d gendarme [blue] gendarmeblue #317873 gendarme [blue] gendarmeblue #367588 generall generall #fada5e generall generall #d4af37 generall generall #f8de7e generall generall #c9ae5d genestrole genestrole #eae679 genestrole genestrole #b9b459 genet genet #eae679 genet genet #b9b459 geneva blue genevablue #4c516d genista genista #d99058 genoa blue genoablue #536878 gentian gentian #436b95 gentian gentian #8791bf gentian blue gentianblue #4e5180 genuine ultramarine [blue] genuineultramarineblue #00a1c2 genuine ultramarine [blue] genuineultramarineblue #0067a5 geranium geranium #bc3f4a geranium lake geraniumlake #be0032 geranium petal geraniumpetal #be0032 geranium pink geraniumpink #e4717a ghent ghent #00304e giallolini giallolini #f8de7e giallolini giallolini #c9ae5d giallolini giallolini #f3e5ab giallolini giallolini #c2b280 giallolino giallolino #f8de7e giallolino giallolino #c9ae5d giallolino giallolino #f3e5ab giallolino giallolino #c2b280 gigas gigas #86608e gild gild #eaa221 gild gild #e3a857 gilded gilded #eaa221 gilded gilded #e3a857 gilt gilt #eaa221 gilt gilt #e3a857 gingeline gingeline #80461b gingeoline gingeoline #80461b ginger ginger #80461b gingerline gingerline #80461b gingerspice gingerspice #79443b gingioline gingioline #80461b giraffe giraffe #ae6938 giraffe giraffe #a67b5b glacier glacier #36454f glacier blue glacierblue #536878 gladiolus gladiolus #bc3f4a glaïeul glaeul #ad8884 glaïeul glaeul #c48379 glass green glassgreen #c9dc89 glass grey glassgrey #b4bcc0 glaucous glaucous #dadfb7 glaucous-blue glaucousblue #536878 glaucous-green glaucousgreen #c7e6d7 glaucous-grey glaucousgrey #b4bcc0 glaucous-grey glaucousgrey #b9b8b5 glint o'gold glintogold #c9ae5d gloaming gloaming #ad8884 glory glory #272458 glory glory #32174d gloxinia gloxinia #602f6b gmelin's blue gmelinsblue #0067a5 gmelin's blue gmelinsblue #545aa7 gnaphalium green gnaphaliumgreen #8da399 goat goat #5b504f gobelin blue gobelinblue #536878 gobelin blue gobelinblue #367588 gobelin blue gobelinblue #536878 gobelin green gobelingreen #3b7861 gobelin scarlet gobelinscarlet #be0032 gold gold #967117 gold bronze goldbronze #635147 gold bronze goldbronze #7e6d5a gold brown goldbrown #80461b gold earth goldearth #e3a857 golden golden #c19a6b golden golden #a18f60 golden golden #967117 golden brown goldenbrown #80461b golden chestnut goldenchestnut #6f4e37 golden coral goldencoral #f88379 golden corn goldencorn #e3a857 golden feather goldenfeather #fada5e golden feather goldenfeather #d4af37 golden feather goldenfeather #f8de7e golden feather goldenfeather #c9ae5d golden glow goldenglow #e3a857 golden glow goldenglow #d4af37 golden green goldengreen #c2b280 golden green goldengreen #a18f60 golden ochre goldenochre #d99058 golden poppy goldenpoppy #e25822 golden rod goldenrod #d4af37 golden wheat goldenwheat #e3a857 golden yellow goldenyellow #eaa221 golden yellow goldenyellow #e3a857 golden yellow goldenyellow #be8a3d golden yellow goldenyellow #996515 gold leaf goldleaf #d99058 gold leaf goldleaf #be8a3d gold ochre goldochre #d99058 gold yellow goldyellow #eaa221 gold yellow goldyellow #e3a857 golf green golfgreen #355e3b golf [red] golfred #bc3f4a golf [red] golfred #ab4e52 gooseberry gooseberry #673147 gooseberry green gooseberrygreen #679267 goose grey goosegrey #483c32 gorevan gorevan #6f4e37 goura goura #50404d goya goya #bc3f4a grain grain #fad6a5 grain grain #c19a6b grain grain #ae9b82 grain grain #be0032 grain in grain grainingrain #be0032 granada granada #43302e granada granada #3e322c granat granat #be0032 granat granat #e25822 granatflower granatflower #be0032 granatflower granatflower #e25822 granite granite #8b8589 granite blue graniteblue #b9b8b5 grape grape #2f2140 grape blue grapeblue #2f2140 grapefruit grapefruit #b9b459 grape green grapegreen #867e36 grapejuice grapejuice #602f6b grapenuts grapenuts #6f4e37 graphite graphite #50404d graphite graphite #222222 grass green grassgreen #8a9a5b grasshopper grasshopper #8a9a5b gravel gravel #ae9b82 grayn grayn #be0032 grebe grebe #5d555b grebe grebe #555555 grecian rose grecianrose #ad8884 grecian rose grecianrose #c48379 green ash greenash #93c592 green finch greenfinch #867e36 green slate greenslate #5e716a green slate greenslate #4e5755 green stone greenstone #8f9779 grenadine red grenadinered #cb6d51 grenat grenat #722f37 gretna green gretnagreen #679267 gretna green gretnagreen #3b7861 grey 31 grey31 #5b504f grey dawn greydawn #8b8589 grey dawn greydawn #848482 grey drab greydrab #8c8767 greyn greyn #be0032 grey stone greystone #8a8776 grey ultramarine ash greyultramarineash #b2beb5 gridelin gridelin #a8516e griffin griffin #555555 gris-de-lin grisdelin #a8516e grotto [blue] grottoblue #007791 grouse grouse #635147 grouse grouse #7e6d5a guignet's green guignetsgreen #004b49 guimet's blue guimetsblue #0067a5 guimet's blue guimetsblue #545aa7 guinea green guineagreen #007a74 guinea hen guineahen #555555 gull gull #848482 gull grey gullgrey #8b8589 gunmetal gunmetal #555555 gypsy gypsy #80461b gypsy red gypsyred #ab4e52 haematite red haematitered #722f37 haematite red haematitered #905d5d haematite red haematitered #543d3f hair brown hairbrown #5b504f hair brown hairbrown #555555 hamadan hamadan #967117 hamburg lake hamburglake #be0032 hamburg lake hamburglake #bc3f4a hampstead brown hampsteadbrown #674c47 hankow hankow #00304e hankow hankow #252440 hankow hankow #4c516d harbor blue harborblue #51585e harlem blue harlemblue #2e8495 harlem blue harlemblue #436b95 harlequin harlequin #44944a harrison red harrisonred #be0032 harvard crimson harvardcrimson #ab4e52 harvest harvest #ae6938 harvest harvest #a67b5b hathi gray hathigray #7d8984 hathor hathor #00a1c2 hathor hathor #0067a5 havana rose havanarose #905d5d hay hay #b9b57d hazel hazel #a67b5b hazel hazel #996515 hazelnut hazelnut #a67b5b hazelnut hazelnut #996515 hazy blue hazyblue #93c592 hazy blue hazyblue #6aab8e hazy blue hazyblue #8da399 heather heather #915f6d hebe hebe #ab4e52 heliotrope heliotrope #5d3954 heliotrope grey heliotropegrey #aa98a9 heliotrope grey heliotropegrey #796878 heliotrope grey heliotropegrey #8b8589 hellebore green helleboregreen #4a5d23 hellebore green helleboregreen #8a9a5b hellebore green helleboregreen #8f9779 hellebore green helleboregreen #4a5d23 hellebore green helleboregreen #515744 hellebore red helleborered #a8516e helvetia blue helvetiablue #00416a hemlock hemlock #1a2421 hemp hemp #8c8767 henna henna #882d17 hepatica hepatica #86608e hermosa pink hermosapink #ea9399 hermosa pink hermosapink #dea5a4 heron heron #536878 hibernian green hiberniangreen #355e3b highland green highlandgreen #1e2321 hindu hindu #3e322c hispano hispano #80461b hockey hockey #be0032 holland blue hollandblue #00304e holly berry hollyberry #bc3f4a holly berry hollyberry #ab4e52 holly green hollygreen #4a5d23 holly green hollygreen #00622d holly green hollygreen #355e3b hollyhock hollyhock #78184a hollywood hollywood #841b2d hollywood hollywood #ab4e52 homage blue homageblue #252440 honey beige honeybeige #c19a6b honey bird honeybird #239eba honeydew honeydew #f88379 honeydew honeydew #d99058 honeysuckle honeysuckle #c19a6b honeysweet honeysweet #c9ae5d honeysweet honeysweet #c2b280 honey [yellow] honeyyellow #a18f60 hopi hopi #a67b5b horace vernet's blue horacevernetsblue #30267a horizon [blue] horizonblue #dfede8 horsechestnut horsechestnut #3e322c hortense violet hortenseviolet #86608e hortensia hortensia #563c5c hortensia hortensia #301934 hortensia hortensia #50404d hortensia hortensia #291e29 huckleberry huckleberry #2f2140 hudson seal hudsonseal #555555 hudson seal hudsonseal #222222 hummingbird hummingbird #317873 hungarian blue hungarianblue #436b95 hungarian green hungariangreen #679267 hunter [green] huntergreen #173620 hunter's green huntersgreen #173620 huron huron #317873 hussar hussar #536878 hyacinth hyacinth #8c82b6 hyacinth hyacinth #86608e hyacinth blue hyacinthblue #272458 hyacinth red hyacinthred #b4745e hyacinth violet hyacinthviolet #602f6b hydrangea blue hydrangeablue #536878 hydrangea blue hydrangeablue #8c92ac hydrangea pink hydrangeapink #dea5a4 hydrangea red hydrangeared #905d5d hydro hydro #536878 hypermic red hypermicred #be0032 hyssop violet hyssopviolet #796878 ibis pink ibispink #f88379 ibis pink ibispink #d9a6a9 ibis red ibisred #43302e iceberg iceberg #536878 immenssee immenssee #5e716a imperial imperial #602f6b imperial imperial #563c5c imperial imperial #702963 imperial imperial #5d3954 imperial blue imperialblue #00416a imperial green imperialgreen #679267 imperial green imperialgreen #3eb489 imperial jade imperialjade #355e3b imperial purple imperialpurple #554c69 imperial stone imperialstone #967117 imperial yellow imperialyellow #e3a857 inca gold incagold #e3a857 indebaudias indebaudias #50404d inde blue indeblue #50404d independence independence #2f2140 india ink indiaink #555555 indian indian #ae6938 indiana indiana #ce4676 indian blue indianblue #50404d indian brown indianbrown #483c32 indian brown indianbrown #6c541e indian brown indianbrown #3b3121 indian buff indianbuff #c19a6b indian lake indianlake #a8516e indian orange indianorange #e25822 indian pink indianpink #a87c6d indian purple indianpurple #673147 indian red indianred #79443b indian red indianred #882d17 indian saffron indiansaffron #f8de7e indian tan indiantan #996515 indian tan indiantan #c19a6b indian tan indiantan #826644 indian turquoise indianturquoise #317873 indian yellow indianyellow #eaa221 indian yellow indianyellow #e3a857 india red indiared #56070c india spice indiaspice #a67b5b india tan indiatan #6f4e37 indico indico #50404d indico carmine indicocarmine #007791 indigo indigo #50404d indigo carmine indigocarmine #007791 indigo extract indigoextract #007791 indo indo #536878 infanta infanta #436b95 infantry infantry #536878 infernal blue infernalblue #252440 ingenue ingenue #dadfb7 ingenue ingenue #8f9779 ink black inkblack #51585e ink blue inkblue #36454f intense blue intenseblue #4e5180 intense blue intenseblue #252440 international international #536878 invisible green invisiblegreen #004b49 invisible green invisiblegreen #1a2421 ionian blue ionianblue #36454f ionian blue ionianblue #202830 iris iris #91a3b0 iris iris #aa98a9 irisglow irisglow #8b8589 iris green irisgreen #355e3b iris green irisgreen #679267 iris mauve irismauve #ecd5c5 iris mauve irismauve #c7ada3 iris mauve irismauve #c2ac99 iron iron #483c32 iron iron #222222 iron blue ironblue #555555 iron brown ironbrown #483c32 iron brown ironbrown #222222 iron buff ironbuff #c19a6b iron buff ironbuff #c2b280 iron crocus ironcrocus #79443b iron grey irongrey #555555 iron minium ironminium #905d5d iron minium ironminium #674c47 iron oxide red ironoxidered #882d17 iron oxide red ironoxidered #80461b iron red ironred #882d17 iron saffron ironsaffron #79443b iron yellow ironyellow #ed872d iron yellow ironyellow #d99058 isabella isabella #c19a6b isabella isabella #826644 isabella isabella #a18f60 isabella isabella #967117 ispahan ispahan #36454f italian blue italianblue #0085a1 italian blue italianblue #007791 italian lake italianlake #e3a857 italian ochre italianochre #ae6938 italian ochre italianochre #a67b5b italian pink italianpink #fada5e italian pink italianpink #d4af37 italian pink italianpink #f8de7e italian pink italianpink #c9ae5d italian straw italianstraw #f3e5ab italian straw italianstraw #c2b280 ivory brown ivorybrown #6c541e ivory brown ivorybrown #3b3121 ivory white ivorywhite #f3e5ab ivory [yellow] ivoryyellow #f3e5ab ivy [green] ivygreen #665d1e ivy [green] ivygreen #5b5842 jacaranda brown jacarandabrown #483c32 jacinthe jacinthe #d99058 jack rabbit jackrabbit #555555 jack rose jackrose #be0032 jacqueminot jacqueminot #ab4e52 jadesheen jadesheen #679267 jadesheen jadesheen #355e3b jadesheen jadesheen #5e716a jaffa orange jaffaorange #cb6d51 jaffa orange jaffaorange #d99058 jaffi jaffi #57554c jalapa jalapa #80461b japan blue japanblue #00304e japan earth japanearth #6f4e37 japanese blue japaneseblue #5e716a japanese green japanesegreen #5e716a japanese red japanesered #882d17 japanese yellow japaneseyellow #ffb7a5 japanese yellow japaneseyellow #d9603b japan rose japanrose #d9a6a9 japan rose japanrose #d99058 japonica japonica #905d5d jasmine jasmine #fada5e jasmine jasmine #f8de7e jasper jasper #1a2421 jasper green jaspergreen #3b7861 jasper pink jasperpink #f88379 jasper red jasperred #ab4e52 java java #422518 java brown javabrown #3e322c javel green javelgreen #b9b459 jay [blue] jayblue #436b95 jean bart jeanbart #2f2140 jew's pitch jewspitch #483c32 jockey jockey #ab4e52 jonquil [yellow] jonquilyellow #fbc97f jonquil [yellow] jonquilyellow #e3a857 jonquil [yellow] jonquilyellow #fad6a5 jonquil [yellow] jonquilyellow #f8de7e jonquil [yellow] jonquilyellow #c9ae5d josephine josephine #a67b5b jouvence blue jouvenceblue #317873 jouvence blue jouvenceblue #367588 judee judee #796878 jungle green junglegreen #1c352d jungle green junglegreen #1a2421 juniper juniper #3a4b47 kabistan kabistan #3a4b47 kaffa kaffa #674c47 kaiser brown kaiserbrown #80461b kangaroo kangaroo #57554c kara kara #317873 kara dagh karadagh #222222 kasha-beige kashabeige #8a8776 kasha-beige kashabeige #848482 kashan kashan #007791 kashmir kashmir #355e3b kashmir kashmir #3b7861 kashmir kashmir #5e716a kazak kazak #79443b kentucky green kentuckygreen #665d1e kermanshah kermanshah #635147 kermes kermes #be0032 kermes berries kermesberries #be0032 kesseler yellow kesseleryellow #fada5e kesseler yellow kesseleryellow #d4af37 kesseler yellow kesseleryellow #f8de7e kesseler yellow kesseleryellow #c9ae5d kettledrum kettledrum #79443b khaki khaki #c19a6b khaki khaki #826644 khiva khiva #9e4732 kildare green kildaregreen #8a9a5b killarney [green] killarneygreen #679267 killarney [green] killarneygreen #3b7861 kinema red kinemared #bc3f4a kingfisher kingfisher #00304e king's blue kingsblue #70a3cc king's blue kingsblue #00416a king's blue kingsblue #436b95 king's blue kingsblue #436b95 king's yellow kingsyellow #fada5e king's yellow kingsyellow #d4af37 king's yellow kingsyellow #f8de7e king's yellow kingsyellow #c9ae5d kirchberger green kirchbergergreen #3eb489 kis kilim kiskilim #6f4e37 kobe kobe #882d17 kolinsky kolinsky #422518 korea korea #9e4732 korea korea #79443b kork kork #a8516e korkir korkir #a8516e kremlin kremlin #004b49 kronberg's green kronbergsgreen #4a5d23 kurdistan kurdistan #36454f kurdistan kurdistan #202428 kurdistan kurdistan #50404d kurdistan kurdistan #242124 kyoto kyoto #f88379 kyoto kyoto #ed872d kyoto kyoto #d99058 labrador labrador #00304e labrador labrador #36454f lac lake laclake #a8516e lacquer red lacquerred #9e4732 laelia pink laeliapink #c17e91 laelia pink laeliapink #af868e la france pink lafrancepink #dea5a4 lagoon lagoon #66ada4 lake lake #be0032 lake lake #bc3f4a lake blue lakeblue #317873 lama lama #483c32 lambert's blue lambertsblue #436b95 lapis lapis #317873 lariat lariat #a67b5b lariat lariat #c19a6b lark lark #c2b280 lark lark #a18f60 lark lark #967117 larkspur larkspur #367588 latericeous latericeous #80461b latericeous latericeous #6f4e37 lateritious lateritious #80461b lateritious lateritious #6f4e37 latoun latoun #c9ae5d latten latten #c9ae5d laundry blue laundryblue #00416a laundry blue laundryblue #436b95 laurel green laurelgreen #867e36 laurel oak laureloak #79443b laurel pink laurelpink #e4717a laurel pink laurelpink #ab4e52 lava lava #222222 la vallière lavallire #796878 lavender lavender #aa98a9 lawn green lawngreen #8a9a5b lead lead #5d555b lead lead #555555 lead grey leadgrey #8c8767 lead ochre leadochre #f3e5ab leadville leadville #5d555b leaf mold leafmold #422518 leaf red leafred #be0032 leather leather #ae6938 leather brown leatherbrown #6f4e37 leather lake leatherlake #be6516 leather lake leatherlake #ae6938 leather lake leatherlake #80461b leek green leekgreen #867e36 leek green leekgreen #8a9a5b leghorn leghorn #f3e5ab leghorn leghorn #c2b280 legion blue legionblue #00304e leitch's blue leitchsblue #00a1c2 leithner's blue leithnersblue #007791 lemmian earth lemmianearth #79443b lemnian ruddle lemnianruddle #79443b lemnos lemnos #79443b lemon chrome lemonchrome #fada5e lemon yellow lemonyellow #fada5e lemon yellow lemonyellow #d4af37 lemon yellow lemonyellow #f8de7e lemon yellow lemonyellow #c9ae5d lettuce green lettucegreen #8a9a5b levant red levantred #ab4e52 leyden blue leydenblue #007791 liberia liberia #3e322c liberty liberty #0067a5 liberty liberty #545aa7 liberty blue libertyblue #4e5180 liberty green libertygreen #8a9a5b lichen lichen #515744 lichen green lichengreen #b2beb5 lido lido #967117 lierre lierre #665d1e lierre lierre #5b5842 light blue 1 lightblue1 #dadfb7 light blue 2, light blue 3 lightblue2lightblue3 #c7e6d7 light blue 2, light blue 3 lightblue2lightblue3 #bcd4e6 light blue 4 lightblue4 #bcd4e6 light blue 6 lightblue6 #91a3b0 light blue,, light blue 5 lightbluelightblue5 #c7e6d7 light brunswick green lightbrunswickgreen #355e3b light chrome green lightchromegreen #355e3b light chrome yellow lightchromeyellow #d4af37 light grège lightgrge #8a8776 light gunmetal lightgunmetal #555555 light red lightred #cb6d51 light stone lightstone #c2b280 light stone lightstone #a18f60 light wedgwood [blue] lightwedgwoodblue #536878 lilac lilac #dea5a4 lilac lilac #ad8884 lilac lilac #aa98a9 lilaceous lilaceous #dea5a4 lilaceous lilaceous #ad8884 lilac gray lilacgray #c2ac99 lilac gray lilacgray #bfb8a5 lilas lilas #dea5a4 lilas lilas #ad8884 lilium lilium #86608e lilium lilium #915c83 lily green lilygreen #8a9a5b lily green lilygreen #4e5755 limawood limawood #ab4e52 limawood limawood #905d5d lime blue limeblue #436b95 lime green limegreen #b9b57d lime green limegreen #867e36 limestone limestone #5b504f limestone limestone #555555 lime [yellow] limeyellow #c9ae5d lime [yellow] limeyellow #c2b280 limoges limoges #0067a5 limoges limoges #436b95 lincoln green lincolngreen #4a5d23 lincoln red lincolnred #be0032 linden green lindengreen #b9b459 linden yellow lindenyellow #b9b459 linoleum brown linoleumbrown #826644 lint lint #8c8767 lint-white lintwhite #f3e5ab lint-white lintwhite #c2b280 lion lion #c19a6b lion lion #826644 lion tawny liontawny #c19a6b lion tawny liontawny #826644 liqueur green liqueurgreen #eae679 liqueur green liqueurgreen #b9b459 liseran purple liseranpurple #9e4f88 litho purple lithopurple #86608e litho purple lithopurple #563c5c litho purple lithopurple #796878 liver liver #674c47 liver brown liverbrown #674c47 liver maroon livermaroon #674c47 livid livid #5d555b livid livid #555555 livid brown lividbrown #905d5d livid pink lividpink #c4aead livid purple lividpurple #836479 livid violet lividviolet #ad8884 lizard bronze lizardbronze #867e36 lizard [green] lizardgreen #3b7861 loam loam #5b504f lobelia [blue] lobeliablue #604e97 lobelia violet lobeliaviolet #796878 lobster lobster #aa381e lobster lobster #9e4732 locarno green locarnogreen #3b7861 loganberry loganberry #563c5c log cabin logcabin #5b504f logwood logwood #291e29 logwood logwood #242124 logwood blue logwoodblue #51585e lo-kao lokao #93c592 lo-kao lokao #6aab8e london brown londonbrown #43302e london smoke londonsmoke #222222 long beach longbeach #c19a6b longchamps longchamps #a67b5b longchamps longchamps #958070 lotus lotus #c08081 lotus lotus #ad8884 lotus lotus #c48379 louis philippe louisphilippe #8791bf loutre loutre #6c541e loutre loutre #3b3121 louvain louvain #536878 louvain louvain #51585e love bird lovebird #7e9f2e love-in-a-mist loveinamist #66aabc lucerne blue lucerneblue #8791bf luciole luciole #81878b lucky stone luckystone #91a3b0 lumiere blue lumiereblue #66ada4 lumiere green lumieregreen #c9dc89 lupine lupine #70a3cc lupine lupine #8791bf luteous luteous #eae679 luteous luteous #b9b459 luxor luxor #545aa7 lyons blue lyonsblue #0067a5 macaroon macaroon #c19a6b madder madder #bc3f4a madder madder #ab4e52 madder madder #d9603b madder madder #cb6d51 madder blue madderblue #9690ab madder blue madderblue #554c69 madder brown madderbrown #79443b madder carmine maddercarmine #ab4e52 madder carmine maddercarmine #a8516e madder indian red madderindianred #79443b madder lake madderlake #bc3f4a madder lake madderlake #b3446c madder pink madderpink #b3446c madder red madderred #bc3f4a madder red madderred #ab4e52 madder red madderred #d9603b madder red madderred #cb6d51 madder violet madderviolet #563c5c madeline blue madelineblue #4c516d madonna madonna #436b95 madonna madonna #536878 madrid madrid #635147 madrid madrid #7e6d5a madura madura #826644 magenta magenta #78184a magenta rose magentarose #78184a magnolia magnolia #c08081 magnolia magnolia #905d5d magnolia magnolia #c48379 mahogany mahogany #79443b mahogany brown mahoganybrown #79443b mahogany red mahoganyred #79443b maiden's blush maidensblush #a87c6d maintenon maintenon #cb6d51 maise maise #e3a857 maise maise #fad6a5 maise maise #c9ae5d majolica majolica #00304e majolica blue majolicablue #00304e majolica blue majolicablue #252440 majolica blue majolicablue #4c516d majolica earth majolicaearth #882d17 malabar malabar #6f4e37 malacca malacca #c19a6b malacca malacca #c2b280 malachite green malachitegreen #679267 malaga malaga #722f37 malaga malaga #56070c malay malay #6f4e37 mallard mallard #004958 mallow pink mallowpink #d597ae mallow purple mallowpurple #a8516e mallow red mallowred #a8516e malmaison malmaison #f8de7e malmaison malmaison #c9ae5d malmaison rose malmaisonrose #ce4676 malmaison rose malmaisonrose #b3446c manchu manchu #6f4e37 mandalay mandalay #635147 mandalay mandalay #3e322c mandarin orange mandarinorange #ed872d mandarin red mandarinred #d9603b manganese brown manganesebrown #6f4e37 manganese velvet brown manganesevelvetbrown #826644 manganese velvet brown manganesevelvetbrown #4b3621 manganese violet manganeseviolet #875692 mango mango #ae6938 mango mango #a67b5b manila manila #c19a6b manon manon #958070 manzanita manzanita #79443b maple maple #c2b280 maple sugar maplesugar #826644 maracaibo maracaibo #422518 marathon marathon #ed872d marble green marblegreen #1e2321 marguerite yellow margueriteyellow #dadfb7 marie antoinette marieantoinette #ad8884 marie antoinette marieantoinette #905d5d marine [blue] marineblue #00304e marine [blue] marineblue #4e5180 marine [blue] marineblue #252440 marine corps marinecorps #4c516d marine green marinegreen #1b4d3e marine green marinegreen #3a4b47 maris maris #3a4b47 maris maris #004b49 marmora marmora #317873 marocain marocain #635147 marone marone #635147 maroon maroon #722f37 maroon maroon #56070c maroon maroon #3e1d1e marron marron #635147 marrone marrone #635147 marron glacé marronglac #6f4e37 marsala marsala #79443b mars brown marsbrown #6f4e37 marsh rose marshrose #905d5d mars orange marsorange #cb6d51 mars red marsred #9e4732 mars violet marsviolet #56070c mars yellow marsyellow #ed872d mars yellow marsyellow #d99058 martinique martinique #ae6938 martinique martinique #a67b5b martius yellow martiusyellow #eae679 marygold marygold #ed872d mascara mascara #79443b mascot mascot #36454f mascot mascot #202830 mascot mascot #252440 mascot mascot #4c516d massicot [yellow] massicotyellow #f3e5ab mast colour mastcolour #ae6938 mastic mastic #967117 matelot matelot #00416a matrix matrix #317873 mauve blush mauveblush #c2ac99 mauve blush mauveblush #ae9b82 mauve blush mauveblush #bfb8a5 mauve castor mauvecastor #5c504f mauve dust mauvedust #5c504f mauveglow mauveglow #ad8884 mauverose mauverose #722f37 mauve taupe mauvetaupe #5c504f mauvette mauvette #aa98a9 mauvewood mauvewood #79443b mauvewood mauvewood #674c47 mavis mavis #ae9b82 maya maya #ae6938 maya maya #a67b5b mayfair tan mayfairtan #a67b5b mayfair tan mayfairtan #c19a6b mayfair tan mayfairtan #826644 mayflower mayflower #ab4e52 mazarine blue mazarineblue #272458 meadowbrook meadowbrook #3a4b47 meadowbrook meadowbrook #004b49 meadowgrass meadowgrass #355e3b meadowgrass meadowgrass #3a4b47 meadow [green] meadowgreen #355e3b meadowlark meadowlark #7e6d5a meadowpink meadowpink #a8516e meadowpink meadowpink #915f6d meadowsweet meadowsweet #905d5d meadow violet meadowviolet #875692 meadow violet meadowviolet #9e4f88 mecca mecca #79443b mecca mecca #6f4e37 medal bronze medalbronze #826644 medal bronze medalbronze #967117 medici blue mediciblue #81878b mediterranian mediterranian #317873 medium chrome green mediumchromegreen #355e3b medium chrome green mediumchromegreen #1b4d3e meerschaum meerschaum #ae9b82 mehal mehal #6f4e37 melilot melilot #915c83 meline meline #c9ae5d mello-mauve mellomauve #ad8884 mellowglow mellowglow #e3a857 melon melon #f88379 mephisto mephisto #ab4e52 merida merida #a67b5b merida merida #c19a6b merida merida #826644 merle merle #004958 mermaid mermaid #8f9779 mesa mesa #6f4e37 metal metal #b9b8b5 metal brown metalbrown #79443b metal brown metalbrown #674c47 metallic green metallicgreen #665d1e metallic grey metallicgrey #8b8589 mexican mexican #ae6938 mexican mexican #996515 mexican red mexicanred #ae6938 mexican red mexicanred #a67b5b mexico mexico #79443b mexico mexico #80461b miami sand miamisand #ae9b82 miami sand miamisand #967117 michigan michigan #004b49 microcline green microclinegreen #c7e6d7 middle brunswick green middlebrunswickgreen #355e3b middle stone middlestone #a18f60 middy middy #00304e midnight midnight #50404d midnight sun midnightsun #d9603b mignon mignon #86608e mignonette [green] mignonettegreen #867e36 mignon green mignongreen #8a9a5b mikado mikado #d9603b mikado mikado #ed872d mikado brown mikadobrown #6f4e37 mikado orange mikadoorange #d99058 milano blue milanoblue #536878 milk white milkwhite #f0ead6 milwaukee brick milwaukeebrick #fad6a5 milwaukee brick milwaukeebrick #f3e5ab mimosa mimosa #f8de7e mindoro mindoro #a67b5b mineral bister mineralbister #6f4e37 mineral blue mineralblue #436b95 mineral blue mineralblue #2e8495 mineral blue mineralblue #436b95 mineral green mineralgreen #679267 mineral grey mineralgrey #b2beb5 mineral orange mineralorange #e25822 mineral pitch mineralpitch #483c32 mineral purple mineralpurple #56070c mineral red mineralred #905d5d mineral rouge mineralrouge #882d17 mineral rouge mineralrouge #80461b mineral violet mineralviolet #875692 mineral yellow mineralyellow #fada5e mineral yellow mineralyellow #d4af37 mineral yellow mineralyellow #f8de7e mineral yellow mineralyellow #c9ae5d mineral yellow mineralyellow #e3a857 ming green minggreen #007959 miniature pink miniaturepink #ecd5c5 miniature pink miniaturepink #c7ada3 minium minium #e25822 mint mint #1b4d3e mint mint #004b49 minuet minuet #8c82b6 mirabelle mirabelle #d99058 mirabelle mirabelle #e3a857 mirador mirador #422518 mirage mirage #c19a6b mist blue mistblue #93c592 mist blue mistblue #6aab8e mist blue mistblue #8da399 mist [grey] mistgrey #8f817f mistletoe mistletoe #8f9779 misty blue mistyblue #93c592 misty blue mistyblue #6aab8e misty blue mistyblue #8da399 misty morn mistymorn #977f73 misty morn mistymorn #958070 mitis green mitisgreen #3eb489 mittler's green mittlersgreen #004b49 moccasin moccasin #6f4e37 mocha mocha #3b3121 mocha bisque mochabisque #6f4e37 mode beige modebeige #967117 mohawk mohawk #79443b mohawk mohawk #6f4e37 monaco monaco #317873 monet blue monetblue #272458 monet blue monetblue #4e5180 monicon monicon #f88379 monicon monicon #cb6d51 monicon monicon #ed872d monicon monicon #d99058 monkey skin monkeyskin #a87c6d monkshood monkshood #554c69 monsignor monsignor #875692 monsignor monsignor #602f6b monsoreau monsoreau #ab4e52 monte carlo montecarlo #007a74 monte carlo montecarlo #317873 montella montella #3e322c montella montella #483c32 monterey monterey #9e4732 monticello green monticellogreen #355e3b montpellier green montpelliergreen #679267 montpellier yellow montpellieryellow #fada5e montpellier yellow montpellieryellow #d4af37 montpellier yellow montpellieryellow #f8de7e montpellier yellow montpellieryellow #c9ae5d moonbeam moonbeam #b9b8b5 moonlight moonlight #fad6a5 moonlight moonlight #bfb8a5 moonlight blue moonlightblue #536878 moonmist moonmist #bfb8a5 moorish red moorishred #ed872d moose moose #363527 mordoré mordor #79443b mordoré mordor #6f4e37 morea berries moreaberries #eaa221 morea berries moreaberries #e3a857 morello morello #242124 moresco moresco #ed872d moresco moresco #d99058 morillon morillon #8a9a5b morning blue morningblue #8da399 morning blue morningblue #b2beb5 morning dawning yellow morningdawningyellow #f88379 morning dawning yellow morningdawningyellow #e66761 morning dawning yellow morningdawningyellow #cb6d51 morning glory morningglory #aa8a9e moroccan moroccan #722f37 moroccan moroccan #9e4732 morocco morocco #3e322c morocco red moroccored #722f37 morocco red moroccored #882d17 morocco red moroccored #79443b morocco sand moroccosand #c19a6b moro red morored #79443b morro morro #43302e morro morro #3e322c mort d'ore mortdore #79443b mort d'ore mortdore #6f4e37 mosaic blue mosaicblue #436b95 mosque mosque #80461b moss [green] mossgreen #867e36 moss [green] mossgreen #8a9a5b moss grey mossgrey #8c8767 moss pink mosspink #915f6d moss rose mossrose #e4717a moss rose mossrose #c08081 mosul mosul #a67b5b mosul mosul #6f4e37 mosul mosul #826644 moth [grey] mothgrey #c2b280 motmot blue motmotblue #007791 motmot green motmotgreen #679267 motmot green motmotgreen #6aab8e mountain blue mountainblue #436b95 mountain green mountaingreen #3a4b47 mountain green mountaingreen #679267 mountain yellow mountainyellow #e3a857 mount vernon green or mt. vernon green mountvernongreenormtvernongreen #4a5d23 mouse-dun mousedun #5b504f mouse [grey] mousegrey #5b504f mousse mousse #867e36 mousse mousse #8a9a5b mésange msange #8da399 métallique mtallique #57554c muffin muffin #a67b5b muffin muffin #996515 mulberry mulberry #242124 mulberry fruit mulberryfruit #3f1728 mulberry fruit mulberryfruit #2e1d21 mulberry purple mulberrypurple #563c5c mummy mummy #483c32 mummy mummy #826644 mummy brown mummybrown #6f4e37 mummy brown mummybrown #635147 mummy brown mummybrown #7e6d5a muraille muraille #6f4e37 murillo murillo #436b95 murinus murinus #5b504f murrey murrey #242124 muscade muscade #a67b5b muscovite muscovite #4e5755 mushroom mushroom #5b504f musk musk #483c32 musketeer musketeer #00304e musketeer musketeer #252440 musketeer musketeer #4c516d muskmelon muskmelon #b4745e muskmelon muskmelon #d99058 muskrat muskrat #3e322c mustang mustang #7e6d5a mustard brown mustardbrown #6f4e37 mustard [yellow] mustardyellow #c9ae5d mutrie yellow mutrieyellow #dcd300 mutrie yellow mutrieyellow #e9e450 myosotis blue myosotisblue #91a3b0 myosotis blue myosotisblue #536878 myrtle [green] myrtlegreen #3a4b47 myrtle [green] myrtlegreen #004b49 mytho green mythogreen #8a9a5b mytho green mythogreen #8f9779 nacarat nacarat #be0032 nacarine nacarine #be0032 naiad naiad #6aab8e nankeen [yellow] nankeenyellow #f8de7e nankeen [yellow] nankeenyellow #c9ae5d nankeen [yellow] nankeenyellow #f3e5ab nankeen [yellow] nankeenyellow #c2b280 naples red naplesred #79443b naples red naplesred #882d17 naples yellow naplesyellow #f8de7e naples yellow naplesyellow #c9ae5d naples yellow naplesyellow #f3e5ab naples yellow naplesyellow #c2b280 napoleon blue napoleonblue #00416a napoli napoli #004958 narcissus narcissus #d4af37 narcissus narcissus #c9ae5d narrawood narrawood #ab4e52 narva narva #3a4b47 nasturtium [red] nasturtiumred #9e4732 nasturtium [yellow] nasturtiumyellow #ed872d nasturtium [yellow] nasturtiumyellow #d99058 nasturtium [yellow] nasturtiumyellow #eaa221 nasturtium [yellow] nasturtiumyellow #e3a857 natal brown natalbrown #635147 national [blue] nationalblue #00416a national [blue] nationalblue #436b95 national grey nationalgrey #848482 nattier nattier #8791bf natural natural #fad6a5 natural natural #bfb8a5 navaho navaho #f38400 navaho navaho #ed872d navy 1 navy1 #36454f navy 2 navy2 #291e29 navy 3 navy3 #36454f navy 3 navy3 #202830 navy blue navyblue #252440 navy blue navyblue #4c516d neapolitan blue neapolitanblue #4c516d neapolitan yellow neapolitanyellow #f8de7e neapolitan yellow neapolitanyellow #c9ae5d neapolitan yellow neapolitanyellow #f3e5ab neapolitan yellow neapolitanyellow #c2b280 nectar nectar #905d5d nectarine nectarine #f4c2c2 nectarine nectarine #d9a6a9 negro negro #483c32 negro negro #222222 neptune [green] neptunegreen #6aab8e neptune [green] neptunegreen #3b7861 neutral orange neutralorange #be6516 neutral red neutralred #722f37 neutral red neutralred #673147 neutral tint neutraltint #222222 neuvider green neuvidergreen #93c592 neuvider green neuvidergreen #6aab8e neuwied blue neuwiedblue #317873 neuwieder blue neuwiederblue #317873 neuwieder green neuwiedergreen #93c592 neuwieder green neuwiedergreen #6aab8e neva green nevagreen #7e9f2e neva green nevagreen #83d37d new blue newblue #0067a5 new blue newblue #545aa7 new bronze newbronze #6f4e37 new bronze newbronze #635147 new bronze newbronze #826644 new bronze newbronze #7e6d5a new cocoa newcocoa #635147 new hay newhay #515744 newport newport #004958 new silver newsilver #f3e5ab new silver newsilver #c2b280 new silver newsilver #bfb8a5 new silver newsilver #dadfb7 new silver newsilver #848482 niagara niagara #66aabc niagara green niagaragreen #66ada4 nicaraguawood nicaraguawood #ab4e52 nicaraguawood nicaraguawood #905d5d nice nice #536878 nightshade nightshade #2f2140 nightshade nightshade #50404d nikko nikko #436b95 nikko nikko #536878 nile blue nileblue #66ada4 nile [green] nilegreen #8a9a5b nile [green] nilegreen #8f9779 nile [green] nilegreen #93c592 nimbus nimbus #848482 nippon nippon #00304e noisette noisette #a67b5b noisette noisette #996515 nomad brown nomadbrown #422518 norfolk norfolk #3e322c normandy normandy #00304e normandy normandy #252440 normandy normandy #4c516d normandy blue normandyblue #8da399 nougat nougat #958070 nougat nougat #ae9b82 nubian nubian #222222 nude nude #c2ac99 nude nude #fad6a5 nude nude #c19a6b nude nude #ae9b82 nugget nugget #d99058 nugget nugget #be8a3d nuncio nuncio #86608e nuremberg red nurembergred #79443b nuremberg violet nurembergviolet #875692 nutmeg nutmeg #6f4e37 nutmeg nutmeg #635147 nutria nutria #57554c nymphea nymphea #86608e nymph green nymphgreen #ebe8a4 nymph green nymphgreen #c9dc89 nymph [pink] nymphpink #ea9399 nymph [pink] nymphpink #dea5a4 oad oad #536878 oak [brown] oakbrown #80461b oak [brown] oakbrown #6f4e37 oakbuff oakbuff #a67b5b oakbuff oakbuff #c19a6b oakbuff oakbuff #826644 oak [green] oakgreen #867e36 oakheart oakheart #905d5d oakheart oakheart #79443b oakleaf brown oakleafbrown #be6516 oakleaf brown oakleafbrown #ae6938 oakleaf brown oakleafbrown #80461b oakwood oakwood #6f4e37 oasis oasis #867e36 oasis oasis #8a9a5b ocean green oceangreen #93c592 ocher red ocherred #905d5d ochraceous ochraceous #e3a857 ochre ochre #e3a857 ochre de ru ochrederu #ae6938 ochre de ru ochrederu #996515 ochre red ochrered #9e4732 oil blue oilblue #30267a oil green oilgreen #679267 oil yellow oilyellow #b9b459 oil yellow oilyellow #98943e oker de luce okerdeluce #ae6938 oker de luce okerdeluce #996515 oker de luke okerdeluke #ae6938 oker de luke okerdeluke #996515 oker de rouse okerderouse #ae6938 oker de rouse okerderouse #996515 old amethyst oldamethyst #722f37 old amethyst oldamethyst #673147 old blue oldblue #91a3b0 old blue oldblue #536878 old blue oldblue #81878b old bronze oldbronze #967117 old bronze oldbronze #867e36 old burgundy oldburgundy #3e1d1e old burgundy oldburgundy #43302e old cedar oldcedar #79443b old china oldchina #536878 old china oldchina #4c516d old coral oldcoral #ab4e52 olde olde #eae679 olde olde #b9b459 old english brown oldenglishbrown #483c32 old english brown oldenglishbrown #6c541e old english brown oldenglishbrown #3b3121 old gold oldgold #867e36 old helio oldhelio #563c5c old ivory oldivory #c2b280 old ivory oldivory #a18f60 old ivory oldivory #967117 old lavender oldlavender #242124 old lilac oldlilac #796878 old lilac oldlilac #836479 old mauve oldmauve #50404d old mauve oldmauve #673147 old moss [green] oldmossgreen #867e36 old olive oldolive #6c541e old pink oldpink #a67b5b old red oldred #841b2d old red oldred #ab4e52 old rose oldrose #905d5d old roseleaf oldroseleaf #722f37 old silver oldsilver #848482 old wood oldwood #905d5d olivaceous olivaceous #665d1e olive brown olivebrown #6c541e olive drab olivedrab #5b5842 olive [green] olivegreen #665d1e olive grey olivegrey #8f9779 olive grey olivegrey #7d8984 olivesheen olivesheen #a18f60 olive terra verte oliveterraverte #867e36 olive wood olivewood #7e6d5a olive yellow oliveyellow #98943e olive yellow oliveyellow #867e36 olivine olivine #93c592 olympia olympia #007a74 olympia olympia #317873 olympian blue olympianblue #00416a olympian green olympiangreen #679267 olympic olympic #36454f olympic blue olympicblue #007791 ondine ondine #8da399 onion-peel onionpeel #905d5d onion red onionred #905d5d onion-skin pink onionskinpink #d9a6a9 onion-skin pink onionskinpink #d99058 onion-skin pink onionskinpink #a67b5b ontario violet ontarioviolet #8c92ac oold oold #eae679 oold oold #b9b459 opal opal #317873 opal blue opalblue #536878 opal grey opalgrey #8f817f opal grey opalgrey #848482 opaline green opalinegreen #8ed1b2 opal mauve opalmauve #c1b6b3 opaq opaq #679267 opera mauve operamauve #b784a7 opera pink operapink #f4c2c2 opera pink operapink #d9a6a9 opera pink operapink #ecd5c5 opera pink operapink #c7ada3 ophelia ophelia #915c83 ophelia ophelia #915f6d ophelia ophelia #836479 oporto oporto #722f37 oporto oporto #3f1728 orange aurora orangeaurora #f88379 orange aurora orangeaurora #e66761 orange aurora orangeaurora #cb6d51 orange lead orangelead #e25822 orange madder orangemadder #ed872d orange ochre orangeochre #ed872d orange-peel orangepeel #ed872d orange rufous orangerufous #ed872d orange tawny orangetawny #cb6d51 orange vermilion orangevermilion #d9603b orchadee orchadee #b784a7 orchall orchall #a8516e orchid orchid #b695c0 orchid orchid #aa98a9 orchid pink orchidpink #ea9399 orchil orchil #ab4e52 orchil orchil #a8516e orchis orchis #905d5d orient orient #dea5a4 oriental oriental #536878 oriental blue orientalblue #4c516d oriental blue orientalblue #0067a5 oriental blue orientalblue #545aa7 oriental bole orientalbole #79443b oriental fuchsia orientalfuchsia #702963 oriental green orientalgreen #44944a oriental green orientalgreen #679267 oriental pearl orientalpearl #8a8776 oriental pearl orientalpearl #848482 oriental red orientalred #bc3f4a orient [blue] orientblue #0067a5 orient blue orientblue #436b95 orient blue orientblue #536878 orient pink orientpink #d9a6a9 orient red orientred #bc3f4a orient yellow orientyellow #ed872d orient yellow orientyellow #d99058 orient yellow orientyellow #eaa221 orient yellow orientyellow #e3a857 orient yellow orientyellow #ab9144 orient yellow orientyellow #a18f60 oriole oriole #ae6938 orion orion #00304e orlean orlean #d9a6a9 ormond ormond #977f73 ormond ormond #958070 ormond ormond #8e8279 orpiment orpiment #fada5e orpiment orpiment #d4af37 orpiment orpiment #f8de7e orpiment orpiment #c9ae5d orpiment orange orpimentorange #f38400 orpiment orange orpimentorange #ed872d orpiment red orpimentred #eaa221 orpiment red orpimentred #e3a857 orpin orpin #fada5e orpin orpin #d4af37 orpin orpin #f8de7e orpin orpin #c9ae5d orseille orseille #a8516e otter [brown] otterbrown #483c32 oural green ouralgreen #93c592 oural green ouralgreen #c7e6d7 owl owl #5b504f oxblood [red] oxbloodred #79443b oxford blue oxfordblue #291e29 oxford chrome oxfordchrome #e3a857 oxford ochre oxfordochre #e3a857 oxford yellow oxfordyellow #e3a857 oxgall oxgall #d4af37 oxheart oxheart #841b2d oxide blue oxideblue #0085a1 oxide brown oxidebrown #79443b oxide purple oxidepurple #79443b oxide yellow oxideyellow #e3a857 oyster grey oystergrey #dadfb7 oyster [white] oysterwhite #dadfb7 pablo pablo #a67b5b pablo pablo #c19a6b pacific pacific #8da399 pacific pacific #66ada4 paddock paddock #004b49 pagoda [blue] pagodablue #004958 pagoda [blue] pagodablue #36454f palestine palestine #796878 palestine palestine #915f6d palm palm #8a9a5b palmetto palmetto #8f9779 palm green palmgreen #355e3b palmleaf palmleaf #867e36 paloma paloma #ae6938 paloma paloma #a67b5b pampas pampas #5b504f pan pan #3a4b47 pancy green pancygreen #355e3b pansée panse #604e97 pansy pansy #604e97 pansy-maroon pansymaroon #673147 pansy purple pansypurple #673147 pansy violet pansyviolet #5d3954 paon paon #004958 paper white paperwhite #bfb8a5 paprica paprica #e25822 papyrus papyrus #a67b5b paradise green paradisegreen #355e3b para red parared #bc3f4a para red parared #ab4e52 parchment parchment #c2b280 parchment parchment #a18f60 parchment parchment #967117 paris green parisgreen #679267 paris green parisgreen #3eb489 paris mud parismud #543d3f paris red parisred #e25822 paris yellow parisyellow #d4af37 park green parkgreen #8a9a5b parma red parmared #bc3f4a parma red parmared #ab4e52 parme parme #604e81 parrakeet parrakeet #8a9a5b parrakeet parrakeet #3eb489 parroquit green parroquitgreen #8a9a5b parrot green parrotgreen #8a9a5b partridge partridge #826644 partridge partridge #4b3621 parula blue parulablue #536878 pastel pastel #536878 pastel blue pastelblue #536878 pastel grey pastelgrey #c2b280 pastel parchment pastelparchment #d9a6a9 pastel parchment pastelparchment #c7ada3 pastel parchment pastelparchment #c2ac99 patent yellow patentyellow #fada5e patent yellow patentyellow #d4af37 patent yellow patentyellow #f8de7e patent yellow patentyellow #c9ae5d patina green patinagreen #93c592 patina green patinagreen #679267 patriarch patriarch #602f6b patricia patricia #9e4f88 paul veronese green paulveronesegreen #3eb489 pauncy green pauncygreen #355e3b pavonine pavonine #004958 pawnee pawnee #a67b5b pawnee pawnee #958070 pawnee pawnee #c19a6b pawnee pawnee #ae9b82 payne's grey paynesgrey #536878 payne's grey paynesgrey #36454f peach peach #f4c2c2 peach peach #d9a6a9 peachbeige peachbeige #d9a6a9 peach bisque peachbisque #a87c6d peach bloom peachbloom #d9a6a9 peach blossom [pink] peachblossompink #ea9399 peach blossom [pink] peachblossompink #dea5a4 peach blossom [red] peachblossomred #ea9399 peach blossom [red] peachblossomred #dea5a4 peach blow peachblow #fad6a5 peach blush peachblush #80461b peach red peachred #f88379 peachwood peachwood #ab4e52 peachwood peachwood #905d5d peacock [blue] peacockblue #004958 peacock green peacockgreen #679267 pea green peagreen #8a9a5b peanut peanut #c2b280 pearl pearl #b9b8b5 pearl blue pearlblue #b9b8b5 pearlblush pearlblush #c2ac99 pearlblush pearlblush #958070 pearl gray pearlgray #bfb8a5 pearl white pearlwhite #b9b8b5 peasant peasant #252440 peasant peasant #4c516d peasant blue peasantblue #536878 peasant blue peasantblue #00304e peasant blue peasantblue #252440 peasant blue peasantblue #4c516d pebble pebble #c2b280 pecan pecan #ae9b82 pecan brown pecanbrown #6f4e37 pekinese pekinese #ae6938 pekinese pekinese #a67b5b peking blue pekingblue #00304e pelican pelican #555555 peligot's blue peligotsblue #317873 pelt pelt #5b504f pencilwood pencilwood #79443b pencilwood pencilwood #6f4e37 penguin penguin #848482 peony peony #722f37 peony red peonyred #841b2d peony red peonyred #722f37 pepita pepita #967117 peppermint peppermint #44944a pepper red pepperred #ab4e52 peridot peridot #8a9a5b peridot peridot #8f9779 peridot peridot #4a5d23 peridot peridot #515744 perilla perilla #9065ca perilla perilla #604e97 perilla purple perillapurple #673147 perique perique #483c32 periwinkle periwinkle #8c92ac periwinkle periwinkle #4c516d permanent blue permanentblue #0067a5 permanent blue permanentblue #545aa7 permanent red permanentred #bc3f4a permanent red permanentred #ab4e52 permanent violet permanentviolet #875692 permanent yellow permanentyellow #e3a857 perma red permared #bc3f4a perma red permared #ab4e52 pernambucowood pernambucowood #ab4e52 pernambucowood pernambucowood #905d5d perruche perruche #8a9a5b persenche persenche #9690ab persian blue persianblue #91a3b0 persian blue persianblue #4c516d persian earth persianearth #882d17 persian green persiangreen #3a4b47 persian lilac persianlilac #c17e91 persian melon persianmelon #b4745e persian orange persianorange #d99058 persian pink persianpink #a8516e persian red persianred #882d17 persian rose persianrose #ce4676 persian yellow persianyellow #e25822 persian yellow persianyellow #f38400 persimmon persimmon #80461b persio persio #a8516e persis persis #a8516e peruvian brown peruvianbrown #ae6938 peruvian brown peruvianbrown #a67b5b peruvian yellow peruvianyellow #cb6d51 pervenche pervenche #4c516d petunia petunia #563c5c petunia [violet] petuniaviolet #602f6b pewke pewke #722f37 pewter pewter #555555 phantom phantom #555555 phantom red phantomred #e25822 pharaoh pharaoh #4e5180 pharaoh pharaoh #252440 pheasant pheasant #d99058 pheasant pheasant #a67b5b philamot philamot #be6516 philamot philamot #ae6938 philamot philamot #80461b philimot philimot #be6516 philimot philimot #ae6938 philimot philimot #80461b philomot philomot #be6516 philomot philomot #ae6938 philomot philomot #80461b phlox phlox #702963 phlox phlox #673147 phlox pink phloxpink #aa98a9 phlox purple phloxpurple #9e4f88 phyliamort phyliamort #be6516 phyliamort phyliamort #ae6938 phyliamort phyliamort #80461b phyllamort phyllamort #be6516 phyllamort phyllamort #ae6938 phyllamort phyllamort #80461b piccadilly piccadilly #79443b piccadilly piccadilly #674c47 piccaninny piccaninny #483c32 piccolpasso red piccolpassored #79443b pigeon pigeon #5d555b pigeon blood pigeonblood #722f37 pigeon neck pigeonneck #555555 pigeon's-breast pigeonsbreast #905d5d pigeon's throat pigeonsthroat #3b7861 pigskin pigskin #a67b5b pigskin pigskin #6f4e37 pigskin pigskin #826644 pilgrim pilgrim #555555 pilgrim brown pilgrimbrown #635147 pilgrim brown pilgrimbrown #3e322c pilot blue pilotblue #436b95 pimento pimento #be0032 pimlico pimlico #554c69 pinard yellow pinardyellow #f8de7e pinchbeck brown pinchbeckbrown #be8a3d pinchbeck brown pinchbeckbrown #996515 pinchbeck brown pinchbeckbrown #c19a6b pinchbeck brown pinchbeckbrown #ab9144 pinchbeck brown pinchbeckbrown #967117 pineapple pineapple #f8de7e pineapple pineapple #c9ae5d pinecone pinecone #635147 pinecone pinecone #7e6d5a pine frost pinefrost #8da399 pinegrove pinegrove #3a4b47 pineneedle pineneedle #1b4d3e pineneedle pineneedle #3a4b47 pine tree pinetree #004b49 pink 1 pink1 #c1b6b3 pink 2 pink2 #ead8d7 pink 3 pink3 #f9ccca pink 3 pink3 #ead8d7 pink 4 pink4 #f9ccca pink 4 pink4 #dea5a4 pink 5 pink5 #dea5a4 pink coral pinkcoral #e4717a pink coral pinkcoral #f88379 pink pearl pinkpearl #dea5a4 piping rock pipingrock #8a8776 piquant green piquantgreen #8a9a5b pirate pirate #bc3f4a pirate pirate #d9603b pistache pistache #8a9a5b pistache pistache #93c592 pistachio green pistachiogreen #8a9a5b pistachio green pistachiogreen #93c592 pitchpine pitchpine #3a4b47 piuree piuree #eaa221 piuree piuree #e3a857 piuri piuri #eaa221 piuri piuri #e3a857 pi yu piyu #3b7861 plantation plantation #79443b platina yellow platinayellow #ae6938 platinum platinum #848482 plaza grey plazagrey #bfb8a5 pleroma violet pleromaviolet #86608e plover plover #5b504f plumbaceous plumbaceous #5d555b plumbaceous plumbaceous #555555 plumbago blue plumbagoblue #aa98a9 plumbago blue plumbagoblue #8b8589 plumbago grey plumbagogrey #aa98a9 plumbago grey plumbagogrey #8b8589 plumbago slate plumbagoslate #5d555b plumbet plumbet #b4bcc0 plum [purple] plumpurple #563c5c plum purple plumpurple #2f2140 plum violet plumviolet #722f37 plum violet plumviolet #673147 plunket plunket #b4bcc0 plymouth plymouth #555555 poil d'ours poildours #555555 poilu poilu #81878b poinsettia poinsettia #be0032 poinsettia poinsettia #bc3f4a pois green poisgreen #8f9779 polar bear polarbear #fad6a5 polar bear polarbear #f0ead6 polignac polignac #ad8884 polignac polignac #a87c6d polignac polignac #977f73 polo green pologreen #4a5d23 polo green pologreen #355e3b polo tan polotan #c19a6b pomegranate pomegranate #722f37 pomegranate blossom pomegranateblossom #be0032 pomegranate blossom pomegranateblossom #e25822 pomegranate purple pomegranatepurple #ab4e52 pomegranate purple pomegranatepurple #a8516e pomegranate purple pomegranatepurple #a8516e pomegranate purple pomegranatepurple #915f6d pomona green pomonagreen #8a9a5b pompadour [green] pompadourgreen #436b95 pomp and power pompandpower #86608e pompeian blue pompeianblue #91a3b0 pompeian red pompeianred #905d5d pompeian red pompeianred #b4745e pompeian red pompeianred #a87c6d pompeian yellow pompeianyellow #e3a857 pompeii pompeii #56070c pompeii pompeii #79443b ponceau ponceau #be0032 ponceau ponceau #e25822 ponce de leon poncedeleon #ed872d pond lily pondlily #f8de7e pond lily pondlily #c9ae5d pongee pongee #c19a6b pontiff [purple] pontiffpurple #602f6b pony brown ponybrown #635147 popcorn popcorn #f8de7e popinjay green popinjaygreen #8a9a5b poplar poplar #3a4b47 poppy [red] poppyred #be0032 poppy [red] poppyred #e25822 porcelain porcelain #436b95 porcelain blue porcelainblue #536878 porcelain green porcelaingreen #317873 porraaceous porraaceous #8a9a5b porret porret #8a9a5b port port #3f1728 portable red portablered #bc3f4a portable red portablered #ab4e52 portable red portablered #aa381e portable red portablered #9e4732 portugese red or portuguese red portugeseredorportuguesered #be0032 port wine portwine #43302e post office red postofficered #aa381e post office red postofficered #9e4732 posy green posygreen #5e716a poudre poudre #91a3b0 poudre poudre #81878b poudre poudre #b4bcc0 poudre blue poudreblue #91a3b0 poudre blue poudreblue #81878b powder blue powderblue #91a3b0 powder blue powderblue #81878b powder blue powderblue #00416a powder blue powderblue #436b95 powdered gold powderedgold #a18f60 powder pink powderpink #d9a6a9 prairie prairie #c19a6b prairie brown prairiebrown #ae6938 praline praline #6f4e37 praline praline #635147 prawn [pink] prawnpink #f88379 prelate prelate #604e81 primrose green primrosegreen #ebe8a4 primrose yellow primroseyellow #f8de7e primrose yellow primroseyellow #c9ae5d primuline yellow primulineyellow #d4af37 prince grey princegrey #8b8589 princeton orange princetonorange #ed872d priscilla priscilla #b9b8b5 privet privet #515744 prout's brown proutsbrown #6f4e37 prout's brown proutsbrown #635147 prout's brown proutsbrown #826644 prout's brown proutsbrown #7e6d5a prune prune #5d3954 prunella prunella #32174d prunella prunella #2f2140 prune purple prunepurple #563c5c prussian brown prussianbrown #ae6938 prussian red prussianred #882d17 prussian red prussianred #79443b psyche psyche #93c592 pâté shell ptshell #fad6a5 pâté shell ptshell #c19a6b puce puce #722f37 pueblo pueblo #6f4e37 puke puke #722f37 pumpkin pumpkin #ed872d punjab punjab #be6516 punjab punjab #ae6938 puritan grey puritangrey #81878b puritan grey puritangrey #848482 purple aster purpleaster #86608e purple brown purplebrown #79443b purple heather purpleheather #86608e purple lake purplelake #841b2d purple lake purplelake #ab4e52 purple madder purplemadder #ab4e52 purple madder purplemadder #722f37 purple navy purplenavy #00304e purple navy purplenavy #4e5180 purple navy purplenavy #252440 purple ochre purpleochre #882d17 purple oxide purpleoxide #79443b purple rubiate purplerubiate #ab4e52 purple rubiate purplerubiate #722f37 purrea arabica purreaarabica #eaa221 purrea arabica purreaarabica #e3a857 purree purree #eaa221 purree purree #e3a857 putty putty #f3e5ab putty putty #c2b280 pygmalion pygmalion #996515 pygmalion pygmalion #c19a6b pygmalion pygmalion #826644 pyrethrum yellow pyrethrumyellow #fada5e pyrethrum yellow pyrethrumyellow #d4af37 pyrethrum yellow pyrethrumyellow #f8de7e pyrethrum yellow pyrethrumyellow #c9ae5d pyrite yellow pyriteyellow #ab9144 quail quail #5b504f quail quail #555555 quaker quaker #8b8589 quaker quaker #848482 quaker blue quakerblue #222222 quaker drab quakerdrab #848482 quaker green quakergreen #4a5d23 quaker grey quakergrey #8c8767 queen anne green queenannegreen #8f9779 queen blue queenblue #436b95 queen's blue queensblue #436b95 queen's yellow queensyellow #f8de7e quercitron quercitron #f8de7e quercitron lake quercitronlake #e3a857 quimper quimper #536878 quince yellow quinceyellow #c9ae5d rabbit rabbit #5b504f racquet racquet #635147 racquet racquet #7e6d5a raddle raddle #79443b radiance radiance #e4717a radiant yellow radiantyellow #ed872d radiant yellow radiantyellow #d99058 radiant yellow radiantyellow #eaa221 radiant yellow radiantyellow #e3a857 radio radio #00304e radio radio #536878 radio blue radioblue #36454f raffia raffia #c19a6b raffia raffia #c2b280 ragged sailor raggedsailor #4e5180 rail rail #555555 rainette green rainettegreen #8a9a5b raisin raisin #673147 raisin black raisinblack #242124 raisin purple raisinpurple #702963 rambler rose ramblerrose #e4717a rambler rose ramblerrose #a8516e rameau rameau #222222 rameses rameses #00416a ramier blue ramierblue #796878 rangoon rangoon #6f4e37 raphael raphael #436b95 raphael raphael #00304e rapids rapids #436b95 raspberry raspberry #722f37 raspberry glacé raspberryglac #ab4e52 raspberry glacé raspberryglac #905d5d raspberry glacé raspberryglac #a8516e raspberry glacé raspberryglac #915f6d raspberry red raspberryred #ab4e52 rat rat #57554c rattan rattan #c9ae5d raw italian earth rawitalianearth #ae6938 raw italian earth rawitalianearth #a67b5b raw sienna rawsienna #ae6938 raw sienna rawsienna #a67b5b raw umber rawumber #826644 raw umber rawumber #4b3621 raw umber rawumber #6f4e37 récamier rcamier #dea5a4 récamier rcamier #f88379 realgar realgar #eaa221 realgar realgar #e3a857 red banana redbanana #841b2d red banana redbanana #ab4e52 red bole redbole #79443b red chalk redchalk #79443b red cross redcross #be0032 red cross redcross #bc3f4a redding redding #79443b reddle reddle #79443b red earth redearth #79443b redfeather redfeather #bc3f4a redfeather redfeather #ab4e52 red in plates redinplates #be0032 red lead redlead #e25822 red ochre redochre #79443b red oxide redoxide #882d17 red oxide redoxide #80461b red robin redrobin #56070c redwood redwood #722f37 redwood redwood #882d17 redwood redwood #79443b redwood redwood -) redwoodredwood #ab4e52 redwood redwood -) redwoodredwood #ab4e52 redwood redwood -) redwoodredwood #905d5d reed green reedgreen #c9dc89 reed yellow reedyellow #eae679 reed yellow reedyellow #ebe8a4 regal regal #272458 regal purple regalpurple #604e97 regatta regatta #0067a5 regatta regatta #545aa7 regimental regimental #4c516d rejane green rejanegreen #679267 rembrandt rembrandt #3e322c rembrandt's madder rembrandtsmadder #cb6d51 rembrandt's madder rembrandtsmadder #9e4732 rembrandt's madder rembrandtsmadder #b4745e rembrandt's madder rembrandtsmadder #79443b renaissance renaissance #ce4676 reseda [green] resedagreen #867e36 resolute resolute #436b95 reveree reveree #ecd5c5 reveree reveree #c7ada3 rhododendron rhododendron #673147 rhodonite pink rhodonitepink #c17e91 rhone rhone #c9dc89 rhone rhone #dadfb7 rhubarb rhubarb #867e36 rifle [green] riflegreen #31362b rifle [green] riflegreen #222222 riga riga #317873 riga blue rigablue #3a4b47 riga blue rigablue #536878 rinnemann's green rinnemannsgreen #679267 ripple green ripplegreen #5e716a ripple green ripplegreen #317873 risigal risigal #eaa221 risigal risigal #e3a857 rivage green rivagegreen #8a9a5b rivage green rivagegreen #93c592 riviera riviera #0067a5 roan roan #79443b robinhood green robinhoodgreen #1b4d3e robin's egg blue robinseggblue #8da399 robin's egg blue robinseggblue #66ada4 rocou rocou #d9a6a9 rodent rodent #555555 roe roe #c19a6b roe roe #a18f60 roma blue romablue #4c516d roma blue romablue #554c69 roman earth romanearth #d99058 romanesque romanesque #5d3954 roman green romangreen #665d1e roman lake romanlake #be0032 roman lake romanlake #bc3f4a roman ochre romanochre #d99058 roman purple romanpurple #604e81 roman sepia romansepia #6f4e37 romantic green romanticgreen #867e36 roman umber romanumber #826644 roman umber romanumber #4b3621 roman violet romanviolet #5d3954 romany romany #36454f romany romany #202830 romany romany #252440 romany romany #4c516d romarin romarin #3a4b47 rosalgar rosalgar #eaa221 rosalgar rosalgar #e3a857 rosario rosario #a67b5b rose amber roseamber #ae6938 rose amber roseamber #a67b5b rose ash roseash #905d5d rose beige rosebeige #7e6d5a rose beige 2 rosebeige2 #a67b5b rosebisque rosebisque #a87c6d rosebloom rosebloom #ad8884 rosebloom rosebloom #c48379 rosebloom rosebloom #b4745e rosebloom rosebloom #a87c6d rose blush roseblush #a87c6d rose blush 2 roseblush2 #a67b5b rose breath rosebreath #f9ccca rose breath rosebreath #ead8d7 rosebud rosebud #de6fa1 rosebud rosebud #c17e91 rose caroline rosecaroline #d9a6a9 rose carthame rosecarthame #be0032 rose castor rosecastor #8f817f rose cendre rosecendre #d9a6a9 rose d'alma rosedalma #915f6d rose d'althoea rosedalthoea #ea9399 rose dawn rosedawn #d9a6a9 rose dawn rosedawn #a87c6d rose de nymphe rosedenymphe #f3e5ab rose de provence rosedeprovence #b3446c rose dorée rosedore #e4717a rose dorée rosedore #ab4e52 rosedust rosedust #905d5d rosedust rosedust #674c47 rose ebony roseebony #43302e rose france rosefrance #d9a6a9 roseglow roseglow #a87c6d rose grey rosegrey #5b504f rose hermosa rosehermosa #dea5a4 rose hortensia rosehortensia #a87c6d rose lake roselake #9e4732 roseleaf roseleaf #dea5a4 roselustre roselustre #722f37 rose madder rosemadder #b3446c rose marie rosemarie #e4717a rosemary rosemary #836479 rose morn rosemorn #d9a6a9 rose neyron roseneyron #bc3f4a rose neyron roseneyron #b3446c rose nilsson rosenilsson #e4717a rose nude rosenude #d9a6a9 rose nude rosenude #c7ada3 rose nude rosenude #c2ac99 rose oak roseoak #79443b rose of picardy roseofpicardy #ab4e52 rose of sharon roseofsharon #ab4e52 rose petal rosepetal #905d5d rose pink rosepink #9e4732 rose-purple rosepurple #b695c0 rose-purple rosepurple #b784a7 rose quartz rosequartz #aa98a9 rose soirée rosesoire #e4717a rosestone rosestone #977f73 roset roset #9e4732 rosetan rosetan #c2ac99 rosetan rosetan #958070 rose taupe rosetaupe #555555 rosetta rosetta #5c504f rosevale rosevale #ab4e52 rosevale rosevale #905d5d rosewood rosewood #79443b roslyn blue roslynblue #272458 roucou roucou #d9a6a9 rouge de fer rougedefer #79443b rouge vegetal rougevegetal #be0032 royal blue royalblue #00416a royal blue royalblue #436b95 royal blue royalblue #00416a royal pink royalpink #e4717a royal purple royalpurple #604e97 royal yellow royalyellow #fada5e royal yellow royalyellow #d4af37 royal yellow royalyellow #f8de7e royal yellow royalyellow #c9ae5d rubaiyat rubaiyat #722f37 rubber rubber #6c541e rubelite rubelite #ce4676 ruben's madder rubensmadder #9e4732 rubient rubient #722f37 rubrica rubrica #79443b ruby ruby #722f37 ruby of arsenic rubyofarsenic #eaa221 ruby of arsenic rubyofarsenic #e3a857 ruddle ruddle #79443b rufous rufous #f88379 rufous rufous #d99058 rugby tan rugbytan #80461b runnymede runnymede #3b7861 ru ochre ruochre #ae6938 ru ochre ruochre #996515 russet brown russetbrown #80461b russet brown russetbrown #6f4e37 russet green russetgreen #b9b459 russet green russetgreen #98943e russet green russetgreen #b9b57d russet green russetgreen #867e36 russet orange russetorange #d9603b russian blue russianblue #91a3b0 russian blue russianblue #81878b russian calf russiancalf #6f4e37 russian green russiangreen #679267 russian green russiangreen #355e3b russian green russiangreen #5e716a russian grey russiangrey #8a8776 russian grey russiangrey #848482 russian violet russianviolet #32174d rust rust #80461b rustic brown rusticbrown #79443b rustic drab rusticdrab #967117 rut ochre rutochre #ae6938 rut ochre rutochre #996515 sable sable #7e6d5a saddle saddle #635147 saddle saddle #7e6d5a safaran safaran #d99058 safaran safaran #e3a857 safflor safflor #be0032 safflower red safflowerred #be0032 saffor saffor #be0032 saffron yellow saffronyellow #d99058 saffron yellow saffronyellow #e3a857 safrano pink safranopink #d9a6a9 sagebrush green sagebrushgreen #4e5755 sage drab sagedrab #515744 sage [green] sagegreen #8a9a5b sage grey sagegrey #8c8767 sahara sahara #6f4e37 sailor sailor #291e29 sailor sailor #242124 sailor blue sailorblue #4e5180 sakkara sakkara #5b504f sallow sallow #b9b57d salmon [pink] salmonpink #d9a6a9 salvia salvia #be0032 salvia blue salviablue #0067a5 samara samara #317873 samovar samovar #c19a6b samurai samurai #b4745e sand sand #8c8767 sand sand #8a8776 sandalwood sandalwood #ab4e52 sandalwood sandalwood #977f73 sandalwood sandalwood #6f4e37 sandalwood sandalwood #958070 sandalwood sandalwood #635147 sandarach sandarach #e25822 sandarach sandarach #eaa221 sandarach sandarach #e3a857 sandaracha sandaracha #e25822 sandaracha sandaracha #eaa221 sandaracha sandaracha #e3a857 sand dune sanddune #967117 sander's blue sandersblue #436b95 sanderswood sanderswood #ab4e52 sandix sandix #e25822 sandrift sandrift #8e8279 sandstone sandstone #a87c6d sandstone sandstone #a67b5b sandstone sandstone #958070 sandust sandust #d9a6a9 sandy-beige sandybeige #8e8279 sandyx sandyx #e25822 sang de boeuf sangdeboeuf #79443b sanguine sanguine #bc3f4a sanguine sanguine #ab4e52 sanguineus sanguineus #841b2d sanguineus sanguineus #722f37 sanguineus sanguineus #3f1728 sanguineus sanguineus #3e1d1e sanguineus sanguineus #5d3954 sanguineus sanguineus #673147 santalwood santalwood #ab4e52 santos santos #6f4e37 santos santos #635147 saona saona #79443b sappanwood sappanwood #ab4e52 sappanwood sappanwood #905d5d sapphire [blue] sapphireblue #00304e sappho sappho #ad8884 saraband saraband #905d5d saratoga saratoga #d99058 saravan saravan #80461b saravan saravan #6f4e37 sarouk sarouk #635147 satinwood satinwood #a67b5b satsuma satsuma #cb6d51 saturnine red saturninered #e25822 saturn red saturnred #e25822 saul saul #4e5755 saunder's blue saundersblue #436b95 sauterne sauterne #c9ae5d sauterne sauterne #a67b5b saxe blue saxeblue #536878 saxon blue saxonblue #007791 saxon blue saxonblue #004958 saxon green saxongreen #317873 saxony blue saxonyblue #007791 saxony blue saxonyblue #004958 saxony blue saxonyblue #00416a saxony blue saxonyblue #436b95 saxony green saxonygreen #008856 sayal brown sayalbrown #ae6938 sayal brown sayalbrown #a67b5b sayal brown sayalbrown #996515 scabiosa scabiosa #796878 scarab scarab #3b7861 scarlet scarlet #be0032 scarlet in grain scarletingrain #be0032 scarlet lake scarletlake #bc3f4a scarlet lake scarletlake #ab4e52 scarlet madder scarletmadder #f88379 scarlet ochre scarletochre #882d17 scarlet red scarletred #be0032 scarlet vermilion scarletvermilion #e25822 scheele's green scheelesgreen #7e9f2e scheele's green scheelesgreen #44944a schoenfeld's purple schoenfeldspurple #78184a schoenfeld's purple schoenfeldspurple #a8516e schweinfurt green schweinfurtgreen #3eb489 scotch blue scotchblue #252440 scotch grey scotchgrey #8f9779 scotch grey scotchgrey #7d8984 seabird seabird #555555 sea blue seablue #004b49 seacrest seacrest #93c592 seafoam seafoam #3eb489 seafoam seafoam #6aab8e seafoam green seafoamgreen #dadfb7 seafoam yellow seafoamyellow #dadfb7 sea green seagreen #8a9a5b sea hawk seahawk #57554c seal [brown] sealbrown #483c32 seaman blue seamanblue #4c516d sea mist seamist #8b8589 sea mist seamist #848482 sea moss seamoss #867e36 sea moss seamoss #3a4b47 sea pink seapink #ea9399 sea pink seapink #dea5a4 seasan not seasand seasannotseasand #c2ac99 seasan not seasand seasannotseasand #fad6a5 seasan not seasand seasannotseasand #c19a6b seasan not seasand seasannotseasand #ae9b82 sea shell seashell #d9a6a9 sea shell seashell #d99058 sea shell seashell #a67b5b seashell pink seashellpink #f4c2c2 seashell pink seashellpink #d9a6a9 seaside seaside #967117 seaside seaside #977f73 seaside seaside #958070 seaside seaside #8e8279 seaspray seaspray #8f9779 seaspray seaspray #679267 seaspray seaspray #8da399 sea-water green seawatergreen #8a9a5b seaweed green seaweedgreen #8f9779 sedge sedge #635147 seed pearl seedpearl #f3e5ab seed pearl seedpearl #c2b280 seered green seeredgreen #8a9a5b seladon green seladongreen #8f9779 seminole seminole #6f4e37 sepia sepia #3b3121 serapi serapi #536878 serpent serpent #8da399 serpentine serpentine #6aab8e serpentine green serpentinegreen #867e36 service corps servicecorps #00543d seville seville #32174d seville orange sevilleorange #d99058 sevres [blue] sevresblue #0067a5 shadow shadow #8f817f shadow green shadowgreen #8a9a5b shagbark shagbark #826644 shagbark shagbark #7e6d5a shale green shalegreen #679267 shamrock shamrock #44944a shamrock [green] shamrockgreen #44944a shark shark #796878 shark shark #5d555b sheepskin sheepskin #c2b280 sheik sheik #ab4e52 sheik sheik #9e4732 shell grey shellgrey #bfb8a5 shirvan shirvan #3a4b47 shrimp [pink] shrimppink #f88379 shrimp [red] shrimpred #f88379 siam siam #6f4e37 siam siam #635147 siam siam #826644 siam siam #7e6d5a siberian brown siberianbrown #6c541e siberien siberien #3a4b47 sicilian umber sicilianumber #826644 sicilian umber sicilianumber #4b3621 siderin yellow siderinyellow #ed872d siderin yellow siderinyellow #d99058 siena siena #882d17 sienna brown siennabrown #6f4e37 sienna yellow siennayellow #fad6a5 sienna yellow siennayellow #c9ae5d siennese drab siennesedrab #977f73 siennese drab siennesedrab #958070 sierra sierra #882d17 signal red signalred #be0032 sil sil #e3a857 silurian gray siluriangray #dadfb7 silver fern silverfern #867e36 silver fern silverfern #8c8767 silver green silvergreen #8f9779 silverpine silverpine #5e716a silver-wing silverwing #8b8589 sinbad sinbad #36454f sinbad sinbad #202428 sinbad sinbad #50404d sinbad sinbad #242124 sirocco sirocco #8c8767 siskin green siskingreen #b9b57d sistine sistine #66aabc sistine sistine #367588 sistine sistine #91a3b0 sistine sistine #536878 skating skating #004958 ski ski #355e3b ski ski #3b7861 skimmed-milk white skimmedmilkwhite #dadfb7 skobeloff green skobeloffgreen #007a74 sky sky #70a3cc sky sky #8791bf sky blue skyblue #70a3cc sky blue skyblue #8791bf sky colour skycolour #70a3cc sky colour skycolour #8791bf sky green skygreen #c9dc89 slag slag #555555 slate slate #51585e slate-black slateblack #222222 slate blue slateblue #536878 slate-blue slateblue #536878 slate [color] slatecolor #5d555b slate-green slategreen #5e716a slate-green slategreen #4e5755 slate-grey slategrey #8a8776 slate-grey slategrey #848482 slate-olive slateolive #4e5755 slate-purple slatepurple #50404d slate-purple slatepurple #5d3954 slate-violet slateviolet #905d5d smalt smalt #00416a smalt smalt #436b95 smalt green smaltgreen #679267 smaltino smaltino #00416a smaltino smaltino #436b95 smoke blue smokeblue #51585e smoke brown smokebrown #555555 smoked pearl smokedpearl #555555 smoke grey smokegrey #dadfb7 smoke yellow smokeyellow #8c8767 smoke yellow smokeyellow #8a8776 snapdragon snapdragon #f8de7e snapdragon snapdragon #c9ae5d snowshoe snowshoe #eaa221 snowshoe snowshoe #e3a857 soapstone soapstone #635147 solferino solferino #a8516e solitaire solitaire #43302e solitaire solitaire #3e322c somalis somalis #9e4732 somalis somalis #79443b sombrero sombrero #c2b280 sonora sonora #ae6938 sonora sonora #a67b5b soot brown sootbrown #635147 soot brown sootbrown #7e6d5a sooty black sootyblack #222222 sorbier sorbier #915f6d sorghum brown sorghumbrown #977f73 sorghum brown sorghumbrown #958070 sorolla brown sorollabrown #80461b sorrel sorrel #ae6938 sorrel sorrel #a67b5b sorrento green sorrentogreen #317873 souci souci #ed872d source source #679267 source source #6aab8e source source #8da399 spalte spalte #483c32 spaltum spaltum #483c32 spanish brown spanishbrown #882d17 spanish cedar spanishcedar #905d5d spanish cedar spanishcedar #79443b spanish flesh spanishflesh #f3e5ab spanish flesh spanishflesh #c2b280 spanish green spanishgreen #679267 spanish ochre spanishochre #ed872d spanish raisin spanishraisin #43302e spanish red spanishred #be0032 spanish red spanishred #882d17 spanish red spanishred #80461b spanish wine spanishwine #722f37 spanish yellow spanishyellow #eaa221 spanish yellow spanishyellow #e3a857 spark spark #be0032 sparrow sparrow #5b504f spa-tan spatan #ae6938 spearmint spearmint #008856 sphinx sphinx #7e6d5a spice spice #ae6938 spinach green spinachgreen #8a9a5b spinach green spinachgreen #4a5d23 spinel pink spinelpink #a8516e spinel red spinelred #bc3f4a spinel red spinelred #b3446c sponge sponge #967117 spray spray #96ded1 spring beauty springbeauty #ce4676 spring beauty springbeauty #b3446c spring green springgreen #8a9a5b spring green springgreen #93c592 springtime springtime #e4717a sprite sprite #00a693 sprite sprite #66ada4 spruce spruce #3a4b47 spruce spruce #1e2321 spruce ochre spruceochre #ae6938 spruce ochre spruceochre #996515 spruce yellow spruceyellow #be8a3d spruce yellow spruceyellow #c19a6b squill blue squillblue #70a3cc squirrel squirrel #5d555b squirrel squirrel #555555 stag stag #826644 starch blue starchblue #00416a starch blue starchblue #436b95 stardew stardew #536878 starflower starflower #c17e91 starlight starlight #91a3b0 starling starling #5b504f st. benoit or saint benoit stbenoitorsaintbenoit #483c32 st. benoit or saint benoit stbenoitorsaintbenoit #222222 steel steel #555555 steel grey steelgrey #555555 steeplechase steeplechase #545aa7 stil de grain brown stildegrainbrown #be8a3d stil de grain brown stildegrainbrown #996515 stil de grain yellow stildegrainyellow #fada5e stil de grain yellow stildegrainyellow #d4af37 stil de grain yellow stildegrainyellow #f8de7e stil de grain yellow stildegrainyellow #c9ae5d stone blue stoneblue #436b95 stone grey stonegrey #57554c storm grey stormgrey #7d8984 strawberry strawberry #905d5d strawberry pink strawberrypink #e4717a strawberry pink strawberrypink #f88379 strawberry pink strawberrypink #e66761 straw [yellow] strawyellow #f3e5ab striegau earth striegauearth #79443b stroller tan strollertan #6f4e37 strontian yellow strontianyellow #e9e450 stucco stucco #977f73 stucco stucco #958070 succory blue succoryblue #dadfb7 sudan sudan #a18f60 sudan sudan #967117 sudan sudan #8c8767 sudan brown sudanbrown #80461b sudan brown sudanbrown #6f4e37 suede suede #a67b5b suede suede #6f4e37 suede suede #826644 sugar cane sugarcane #fad6a5 sugar cane sugarcane #c19a6b sulphate green sulphategreen #66ada4 sulphate green sulphategreen #317873 sulphine yellow sulphineyellow #ab9144 sulphur sulphur #eae679 sulphur [yellow] sulphuryellow #eae679 sultan sultan #ab4e52 sultana sultana #722f37 sultana sultana #673147 sumac sumac #be8a3d sumac sumac #996515 sumac sumac #c19a6b sumac sumac #826644 sumac sumac #ab9144 sumac sumac #a18f60 sumac sumac #967117 sunbeam sunbeam #c2b280 sunburn sunburn #a67b5b sunburst sunburst #ed872d sunburst sunburst #d99058 sundown sundown #c19a6b sunflower [yellow] sunfloweryellow #fada5e sunglow sunglow #e4717a sunglow sunglow #ab4e52 sungod sungod #e25822 sunkiss sunkiss #d99058 sunlight sunlight #c9ae5d sunni sunni #f8de7e sunni sunni #c9ae5d sunray sunray #e3a857 sunrise yellow sunriseyellow #d9a6a9 sunrise yellow sunriseyellow #d99058 sunset sunset #fad6a5 sunstone sunstone #ae6938 suntan suntan #a67b5b suntan suntan #c19a6b suntan suntan #826644 superior superior #004b49 surf green surfgreen #679267 surrey green surreygreen #8f9779 surrey green surreygreen #8da399 swamp swamp #3a4b47 swedish green swedishgreen #7e9f2e swedish green swedishgreen #44944a sweet briar sweetbriar #de6fa1 sweetmeat sweetmeat #c19a6b sweet pea sweetpea #c7ada3 sweet william sweetwilliam #e4717a swiss blue swissblue #536878 swiss rose swissrose #ab4e52 syrup syrup #967117 syrup syrup #6c541e taffy taffy #c19a6b talavera talavera #ae6938 tamarach tamarach #635147 tamarach tamarach #7e6d5a ta-ming taming #eaa221 ta-ming taming #e3a857 tan tan #ae6938 tanagra tanagra #79443b tanaura tanaura #c2b280 tanbark tanbark #6f4e37 tangerine tangerine #cb6d51 tangier tangier #ed872d tango pink tangopink #905d5d tansan tansan #a67b5b tansan tansan #c19a6b tapestry tapestry #00304e tapestry tapestry #252440 tapestry tapestry #4c516d tapestry tapestry #8b8589 tapestry red tapestryred #722f37 tapis vert tapisvert #8a9a5b tarragon tarragon #8a9a5b tarragon tarragon #8f9779 tarragon tarragon #679267 tarragona tarragona #882d17 tarragona tarragona #80461b tartan green tartangreen #3a4b47 taupe taupe #483c32 tawny tawny #ae6938 tawny tawny #a67b5b tawny birch tawnybirch #a87c6d tawny birch tawnybirch #a67b5b tawny birch tawnybirch #958070 tea tea #8f9779 tea tea #8da399 tea green teagreen #8f9779 teak [brown] teakbrown #6f4e37 teakwood teakwood #635147 teakwood teakwood #7e6d5a teal blue tealblue #004958 teal blue tealblue #36454f teal duck tealduck #004958 tea time teatime #967117 telegraph blue telegraphblue #796878 tennis tennis #ab9144 tennis tennis #a18f60 terra cotta terracotta #be6516 terra cotta terracotta #ae6938 terra japonica terrajaponica #6f4e37 terra lemnia terralemnia #79443b terra merita terramerita #f8de7e terra orellana terraorellana #d9a6a9 terra orellano terraorellano #d9a6a9 terrapin terrapin #6f4e37 terra pozzuoli terrapozzuoli #79443b terra rosa terrarosa #79443b terra siena terrasiena #ae6938 terra siena terrasiena #a67b5b terra sigillata terrasigillata #79443b terrasse terrasse #8a9a5b terra umber terraumber #826644 terra umber terraumber #4b3621 testaceous testaceous #d99058 testaceous testaceous #a67b5b thenard's blue thenardsblue #007791 thistle thistle #86608e thistle bloom thistlebloom #9e4f88 thistletuft thistletuft #702963 thrush thrush #826644 thrush thrush #7e6d5a thulite pink thulitepink #de6fa1 thyme thyme #3a4b47 tiber tiber #1b4d3e tiber green tibergreen #93c592 tiffin tiffin #826644 tigerlily tigerlily #d9603b tigerlily tigerlily #cb6d51 tile blue tileblue #367588 tile red tilered #cb6d51 tilleul buff tilleulbuff #ecd5c5 tilleul buff tilleulbuff #bfb8a5 tilleul [green] tilleulgreen #ebe8a4 tinsel tinsel #ab9144 tinsel tinsel #a18f60 tinsel tinsel #967117 titania titania #5d3954 titania titania #673147 titian titian #ae6938 titian gold titiangold #ae6938 titmouse blue titmouseblue #8da399 toast toast #a67b5b toasted almond toastedalmond #a67b5b toboggan toboggan #e25822 toboggan toboggan #f38400 toga toga #2f2140 tokay tokay #79443b tokyo tokyo #ffb7a5 tokyo tokyo #f88379 tokyo tokyo #ed872d toltec toltec #e3a857 tomato [red] tomatored #9e4732 tommy red tommyred #bc3f4a topaz topaz #a67b5b topaz topaz #be8a3d topaz topaz #c19a6b toquet toquet #c7ada3 toreador toreador #e25822 torino blue torinoblue #536878 tortoise tortoise #80461b tortoise shell tortoiseshell #6f4e37 totem totem #9e4732 tourmaline tourmaline #66ada4 tourmaline pink tourmalinepink #915f6d tourterelle tourterelle #967117 transparent chromium oxide transparentchromiumoxide #007959 transparent chromium oxide transparentchromiumoxide #3b7861 transparent gold ochre transparentgoldochre #ae6938 transparent gold ochre transparentgoldochre #996515 traprock traprock #555555 travertine travertine #967117 trentanel trentanel #eae679 trentanel trentanel #b9b459 trianon trianon #d9a6a9 trianon trianon #d99058 triton triton #1b4d3e triumph blue triumphblue #436b95 triumph blue triumphblue #00304e trooper trooper #00304e trooper trooper #36454f trooper trooper #202830 trotteur tan trotteurtan #6f4e37 troubador red troubadorred #bc3f4a trublu trublu #536878 tuileries tuileries #436b95 tulipwood tulipwood #6f4e37 tunis tunis #36454f tunis tunis #202830 turbith mineral turbithmineral #f8de7e turkey blue turkeyblue #4c516d turkey red turkeyred #ab4e52 turkey umber turkeyumber #826644 turkey umber turkeyumber #4b3621 turkish blue turkishblue #4c516d turkish crescent red turkishcrescentred #841b2d turkish crescent red turkishcrescentred #722f37 turkish red turkishred #ab4e52 turmeric turmeric #f8de7e turner's yellow turnersyellow #fada5e turner's yellow turnersyellow #d4af37 turner's yellow turnersyellow #f8de7e turner's yellow turnersyellow #c9ae5d turquoise [blue] turquoiseblue #66ada4 turquoise green turquoisegreen #66ada4 turtle turtle #6f4e37 turtledove turtledove #5c504f turtledove turtledove #555555 turtle green turtlegreen #8a9a5b tuscan tuscan #fad6a5 tuscan brown tuscanbrown #79443b tuscan brown tuscanbrown #6f4e37 tuscan red tuscanred #79443b tuscan tan tuscantan #a67b5b tuscany tuscany #79443b tussore tussore #f4c2c2 tussore tussore #d9a6a9 twilight [blue] twilightblue #536878 twine twine #8c8767 twinkle blue twinkleblue #66aabc tyrian blue tyrianblue #536878 tyrian blue tyrianblue #4c516d tyrian pink tyrianpink #ce4676 tyrian violet tyrianviolet #a8516e tyrol tyrol #826644 tyrolese green tyrolesegreen #679267 tyrolian tyrolian #1a2421 tyrolite green tyrolitegreen #66ada4 tzarine tzarine #1e2321 ultramarine green ultramarinegreen #1e2321 ultramarine yellow ultramarineyellow #d4af37 urania blue uraniablue #2f2140 vagabond green vagabondgreen #004b49 valencia valencia #de6fa1 vanda vanda #796878 vanda vanda #836479 vandyke brown vandykebrown #6f4e37 vandyke madder vandykemadder #a8516e vandyke red vandykered #905d5d vanilla vanilla #f3e5ab vanilla vanilla #c2b280 vanity vanity #d9a6a9 variscite green variscitegreen #6aab8e varley's grey varleysgrey #796878 vassar rose vassarrose #c08081 vassar rose vassarrose #905d5d vassar tan vassartan #80461b vassar tan vassartan #6f4e37 vatican vatican #563c5c vatican vatican #301934 veau d'or veaudor #fad6a5 veau d'or veaudor #c19a6b vegetable red vegetablered #be0032 vegetable rouge vegetablerouge #be0032 velasquez velasquez #673147 velvet brown velvetbrown #826644 velvet brown velvetbrown #4b3621 velvet green velvetgreen #4a5d23 venet venet #66ada4 venetian blue venetianblue #007791 venetian fuchsia venetianfuchsia #ce4676 venetian lake venetianlake #be0032 venetian lake venetianlake #bc3f4a venetian pink venetianpink #dea5a4 venetian red venetianred #882d17 venetian rose venetianrose #841b2d venetian rose venetianrose #ab4e52 venetian scarlet venetianscarlet #be0032 venetian yellow venetianyellow #f8de7e venetian yellow venetianyellow #c9ae5d venezia venezia #317873 venice berries veniceberries #eaa221 venice berries veniceberries #e3a857 venice [blue] veniceblue #66ada4 venice green venicegreen #66ada4 venice red venicered #79443b venus venus #ab9144 venus venus #a18f60 verbena verbena #915c83 verbena [violet] verbenaviolet #9690ab verbena [violet] verbenaviolet #aa98a9 verdant green verdantgreen #8a9a5b verdet verdet #679267 verde vessie verdevessie #867e36 verd gay verdgay #8a9a5b verdigris [green] verdigrisgreen #679267 verditer green verditergreen #679267 verdure verdure #355e3b veridine green veridinegreen #6aab8e vernonia purple vernoniapurple #915f6d verona brown veronabrown #6f4e37 verona yellow veronayellow #fada5e verona yellow veronayellow #d4af37 verona yellow veronayellow #f8de7e verona yellow veronayellow #c9ae5d veronese yellow veroneseyellow #fada5e veronese yellow veroneseyellow #d4af37 veronese yellow veroneseyellow #f8de7e veronese yellow veroneseyellow #c9ae5d veronica veronica #604e81 versailles versailles #66aabc vert russe vertrusse #679267 vert russe vertrusse #355e3b vert russe vertrusse #5e716a vervain vervain #9690ab vervain vervain #aa98a9 vestal vestal #796878 vestal vestal #836479 veteran veteran #36454f vetiver green vetivergreen #8c8767 victoria victoria #563c5c victoria blue victoriablue #0067a5 victoria green victoriagreen #6aab8e victoria green victoriagreen #8da399 victoria green victoriagreen #66ada4 victoria lake victorialake #722f37 vienna blue viennablue #007791 vienna brown viennabrown #635147 vienna brown viennabrown #7e6d5a vienna green viennagreen #3eb489 vienna lake viennalake #be0032 vienna lake viennalake #bc3f4a vienna smoke viennasmoke #555555 vineyard vineyard #722f37 vineyard vineyard #3f1728 viola viola #86608e violet-carmine violetcarmine #5d3954 violine violine #604e97 violine violine #604e81 virgin virgin #436b95 viridian viridian #007959 viridian viridian #3b7861 viridine green viridinegreen #c9dc89 viridine yellow viridineyellow #7e9f2e vitelline yellow vitellineyellow #d4af37 vitellinous vitellinous #d4af37 vitreous vitreous #c9dc89 wad wad #536878 wald wald #eae679 wald wald #b9b459 wallflower [brown] wallflowerbrown #722f37 wallflower [brown] wallflowerbrown #79443b wall green wallgreen #007a74 walnut [brown] walnutbrown #c19a6b warbler green warblergreen #867e36 warm sepia warmsepia #635147 water blue waterblue #317873 water-color watercolor #66ada4 water cress watercress #8a9a5b waterfall waterfall #317873 water green watergreen #b9b57d water green watergreen #c9dc89 water green watergreen #dadfb7 water grey watergrey #8a8776 waterloo waterloo #4c516d watermelon watermelon #e4717a watermelon watermelon #ab4e52 water sprite watersprite #93c592 watteau watteau #70a3cc wau wau #eae679 wau wau #b9b459 wax brown waxbrown #826644 wax color waxcolor #ebe8a4 wax color waxcolor #b9b57d waxen waxen #ebe8a4 waxen waxen #b9b57d wax red waxred #b4745e wax white waxwhite #ebe8a4 wax white waxwhite #b9b57d wax yellow waxyellow #c9ae5d weathered oak weatheredoak #422518 weigelia weigelia #ab4e52 weld weld #eae679 weld weld #b9b459 westminster westminster #30267a westminster westminster #9065ca west point westpoint #51585e wheat wheat #e3a857 wheat wheat #fad6a5 whippet whippet #6c541e whirlpool whirlpool #004958 white blue whiteblue #b4bcc0 white jade whitejade #ecd5c5 white jade whitejade #bfb8a5 wield wield #eae679 wield wield #b9b459 wigwam wigwam #6f4e37 wild aster wildaster #602f6b wild aster wildaster #702963 wild cherry wildcherry #722f37 wild cherry wildcherry #673147 wild dove grey wilddovegrey #5b504f wild honey wildhoney #ae6938 wild honey wildhoney #a67b5b wild iris wildiris #8b8589 wild orchid wildorchid #836479 wild pigeon wildpigeon #5b504f wild raspberry wildraspberry #722f37 wild raspberry wildraspberry #673147 wild rose wildrose #c08081 wild strawberry wildstrawberry #841b2d wild strawberry wildstrawberry #722f37 willow willow #665d1e willow green willowgreen #867e36 windflower windflower #915f6d windsor windsor #563c5c windsor blue windsorblue #4c516d windsor green windsorgreen #355e3b windsor tan windsortan #ae6938 wineberry wineberry #673147 wine dregs winedregs #722f37 wine dregs winedregs #56070c wine dregs winedregs #3e1d1e wine lees winelees #722f37 wine lees winelees #56070c wine lees winelees #3e1d1e wine yellow wineyellow #f3e5ab wine yellow wineyellow #c2b280 winter green wintergreen #679267 wintergreen wintergreen #355e3b winter leaf winterleaf #635147 wireless wireless #436b95 wistaria [blue] wistariablue #8c82b6 wistaria blue wistariablue #8791bf wistaria [violet] wistariaviolet #8c82b6 witchwood witchwood #6f4e37 withered leaf witheredleaf #be6516 withered leaf witheredleaf #ae6938 withered leaf witheredleaf #80461b withered rose witheredrose #905d5d withered rose witheredrose #79443b woad woad #536878 woald woald #eae679 woald woald #b9b459 wod wod #eae679 wod wod #b9b459 wode wode #536878 wold wold #eae679 wold wold #b9b459 woodash woodash #bfb8a5 woodbark woodbark #7e6d5a woodbine green woodbinegreen #8a9a5b woodbine green woodbinegreen #8f9779 woodbine green woodbinegreen #4a5d23 woodbine green woodbinegreen #515744 woodland brown woodlandbrown #483c32 woodland brown woodlandbrown #222222 woodland green woodlandgreen #4a5d23 woodland rose woodlandrose #a67b5b wood rose woodrose #977f73 wood rose woodrose #958070 wood violet woodviolet #602f6b wren wren #363527 wren wren #57554c wrought iron wroughtiron #555555 yacht yacht #0067a5 yale blue yaleblue #00416a yama yama #66ada4 yellow beige yellowbeige #c19a6b yellow beige yellowbeige #826644 yellow berries yellowberries #eaa221 yellow berries yellowberries #e3a857 yellow brazil wood yellowbrazilwood #c9ae5d yellow brazil wood yellowbrazilwood #c2b280 yellow carmine yellowcarmine #eaa221 yellow carmine yellowcarmine #e3a857 yellow daisy yellowdaisy #fada5e yellow daisy yellowdaisy #d4af37 yellow daisy yellowdaisy #f8de7e yellow daisy yellowdaisy #c9ae5d yellow earth yellowearth #e3a857 yellow madder yellowmadder #fada5e yellow madder yellowmadder #d4af37 yellow madder yellowmadder #f8de7e yellow madder yellowmadder #c9ae5d yellow ochre yellowochre #e3a857 yellow realgar yellowrealgar #fada5e yellow realgar yellowrealgar #d4af37 yellow realgar yellowrealgar #f8de7e yellow realgar yellowrealgar #c9ae5d yellow sienna yellowsienna #e3a857 yellow stone yellowstone #b9b57d yellowstone yellowstone #a18f60 yellow wash yellowwash #e3a857 yellow wood yellowwood #c9ae5d yellow wood yellowwood #c2b280 yew green yewgreen #4a5d23 yolk yellow yolkyellow #d4af37 yosemite yosemite #c19a6b yucatan yucatan #ae6938 yucatan yucatan #996515 yucca yucca #5e716a yu chi yuchi #1b4d3e yvette violet yvetteviolet #796878 zaffre blue zaffreblue #00416a zaffre blue zaffreblue #436b95 zanzibar zanzibar #43302e zedoary wash zedoarywash #e3a857 zenith [blue] zenithblue #8791bf zenith [blue] zenithblue #8c92ac zephyr zephyr #ead8d7 zephyr zephyr #c4aead zinc zinc #8b8589 zinc zinc #848482 zinc green zincgreen #679267 zinc orange zincorange #ed872d zinc orange zincorange #d99058 zinc yellow zincyellow #d4af37 zinnia zinnia #ab4e52 zulu zulu #43302e zuni brown zunibrown #6f4e37 =cut sub _load_color_list() { return [ ['nbs-iscc-m:abbey.207','abbey','abbey',[96,78,151],'604e97',6311575], ['nbs-iscc-m:absinthegreen.120','absinthegreen','absinthe [green] ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:absintheyellow.105','absintheyellow','absinthe yellow',[185,181,125],'b9b57d',12170621], ['nbs-iscc-m:acacia.101','acacia','acacia',[234,230,121],'eae679',15394425], ['nbs-iscc-m:acacia.102','acacia','acacia',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:academyblue.173','academyblue','academy blue',[54,117,136],'367588',3569032], ['nbs-iscc-m:acajou.43','acajou','acajou',[121,68,59],'79443b',7947323], ['nbs-iscc-m:acanthe.95','acanthe','acanthe',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:acier.109','acier','acier',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:ackermannsgreen.137','ackermannsgreen','ackermann\'s green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:aconiteviolet.223','aconiteviolet','aconite violet',[134,96,142],'86608e',8806542], ['nbs-iscc-m:acorn.80','acorn','acorn',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:adamia.224','adamia','adamia',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:adelaide.208','adelaide','adelaide',[50,23,77],'32174d',3282765], ['nbs-iscc-m:aden.144','aden','aden',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:admiral.230','admiral','admiral',[41,30,41],'291e29',2694697], ['nbs-iscc-m:admiral.235','admiral','admiral',[36,33,36],'242124',2367780], ['nbs-iscc-m:adobe.77','adobe','adobe',[130,102,68],'826644',8545860], ['nbs-iscc-m:adrianoplered.15','adrianoplered','adrianople red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:adriatic.164','adriatic','adriatic',[49,120,115],'317873',3242099], ['nbs-iscc-m:adust.54','adust','adust',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:aero.186','aero','aero',[83,104,120],'536878',5466232], ['nbs-iscc-m:afghan.62','afghan','afghan',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:afghanred.11','afghanred','afghan red',[190,0,50],'be0032',12451890], ['nbs-iscc-m:african.267','african','african',[34,34,34],'222222',2236962], ['nbs-iscc-m:africanbrown.62','africanbrown','african brown',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:afterglow.214','afterglow','afterglow',[150,144,171],'9690ab',9867435], ['nbs-iscc-m:agate.40','agate','agate',[136,45,23],'882d17',8924439], ['nbs-iscc-m:agate.55','agate','agate',[128,70,27],'80461b',8406555], ['nbs-iscc-m:agategrey.264','agategrey','agate grey',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-m:ageratumblue.227','ageratumblue','ageratum blue',[170,152,169],'aa98a9',11180201], ['nbs-iscc-m:ageratumviolet.228','ageratumviolet','ageratum violet',[121,104,120],'796878',7956600], ['nbs-iscc-m:airblue.182','airblue','air blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:airedale.77','airedale','airedale',[130,102,68],'826644',8545860], ['nbs-iscc-m:airedale.80','airedale','airedale',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:airway.181','airway','airway',[112,163,204],'70a3cc',7381964], ['nbs-iscc-m:akbar.41','akbar','akbar',[86,7,12],'56070c',5637900], ['nbs-iscc-m:akbar.43','akbar','akbar',[121,68,59],'79443b',7947323], ['nbs-iscc-m:alabaster.31','alabaster','alabaster',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-m:alabaster.93','alabaster','alabaster',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:alamo.55','alamo','alamo',[128,70,27],'80461b',8406555], ['nbs-iscc-m:alcanna.40','alcanna','alcanna',[136,45,23],'882d17',8924439], ['nbs-iscc-m:alcazar.16','alcazar','alcazar',[114,47,55],'722f37',7483191], ['nbs-iscc-m:alcazar.40','alcazar','alcazar',[136,45,23],'882d17',8924439], ['nbs-iscc-m:alderney.77','alderney','alderney',[130,102,68],'826644',8545860], ['nbs-iscc-m:alesan.45','alesan','alesan',[151,127,115],'977f73',9928563], ['nbs-iscc-m:alesan.57','alesan','alesan',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:alesan.60','alesan','alesan',[149,128,112],'958070',9797744], ['nbs-iscc-m:alexandriablue.176','alexandriablue','alexandria blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-m:alexandriablue.178','alexandriablue','alexandria blue',[0,103,165],'0067a5',26533], ['nbs-iscc-m:alfalfa.137','alfalfa','alfalfa',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:algerian.58','algerian','algerian',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:algerianred.41','algerianred','algerian red',[86,7,12],'56070c',5637900], ['nbs-iscc-m:algonquin.51','algonquin','algonquin',[190,101,22],'be6516',12477718], ['nbs-iscc-m:algonquin.54','algonquin','algonquin',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:alhambra.151','alhambra','alhambra',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:alhambra.165','alhambra','alhambra',[0,75,73],'004b49',19273], ['nbs-iscc-m:aliceblue.185','aliceblue','alice blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:alkermes.11','alkermes','alkermes',[190,0,50],'be0032',12451890], ['nbs-iscc-m:almond.57','almond','almond',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:almond.60','almond','almond',[149,128,112],'958070',9797744], ['nbs-iscc-m:almond.76','almond','almond',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:almond.79','almond','almond',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:almondblossom.4','almondblossom','almond blossom',[249,204,202],'f9ccca',16370890], ['nbs-iscc-m:almondblossom.5','almondblossom','almond blossom',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:almondblossom.7','almondblossom','almond blossom',[234,216,215],'ead8d7',15390935], ['nbs-iscc-m:almondblossom.8','almondblossom','almond blossom',[196,174,173],'c4aead',12889773], ['nbs-iscc-m:almondbrown.57','almondbrown','almond brown ',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:almondbrown.60','almondbrown','almond brown ',[149,128,112],'958070',9797744], ['nbs-iscc-m:almondbrown.76','almondbrown','almond brown ',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:almondbrown.79','almondbrown','almond brown ',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:almondgreen.150','almondgreen','almond green',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:almondpink.4','almondpink','almond [pink] ',[249,204,202],'f9ccca',16370890], ['nbs-iscc-m:almondpink.5','almondpink','almond [pink] ',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:almondpink.7','almondpink','almond [pink] ',[234,216,215],'ead8d7',15390935], ['nbs-iscc-m:almondpink.8','almondpink','almond [pink] ',[196,174,173],'c4aead',12889773], ['nbs-iscc-m:aloesgreen.149','aloesgreen','aloes [green] ',[141,163,153],'8da399',9282457], ['nbs-iscc-m:aloma.57','aloma','aloma',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:aloma.76','aloma','aloma',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:aloma.77','aloma','aloma',[130,102,68],'826644',8545860], ['nbs-iscc-m:alpine.186','alpine','alpine',[83,104,120],'536878',5466232], ['nbs-iscc-m:alpinegreen.151','alpinegreen','alpine green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:aluminum.264','aluminum','aluminum',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-m:aluminum.265','aluminum','aluminum',[132,132,130],'848482',8684674], ['nbs-iscc-m:amaranth.238','amaranth','amaranth',[112,41,99],'702963',7350627], ['nbs-iscc-m:amaranthine.259','amaranthine','amaranthine',[103,49,71],'673147',6762823], ['nbs-iscc-m:amaranthpink.248','amaranthpink','amaranth pink',[222,111,161],'de6fa1',14577569], ['nbs-iscc-m:amaranthpurple.256','amaranthpurple','amaranth purple',[120,24,74],'78184a',7870538], ['nbs-iscc-m:amarna.142','amarna','amarna',[0,84,61],'00543d',21565], ['nbs-iscc-m:amarna.146','amarna','amarna',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-m:amarylis.15','amarylis','amarylis',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:amarylis.19','amarylis','amarylis',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:amazon.145','amazon','amazon',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:amberbrown.54','amberbrown','amber brown',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:amberglow.54','amberglow','amberglow',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:amberglow.57','amberglow','amberglow',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:amberwhite.89','amberwhite','amber white',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:amberwhite.90','amberwhite','amber white',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:amberwhite.104','amberwhite','amber white',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-m:amberwhite.105','amberwhite','amber white',[185,181,125],'b9b57d',12170621], ['nbs-iscc-m:amberwhite.121','amberwhite','amber white',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:amberyellow.86','amberyellow','amber [yellow] ',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:amberyellow.87','amberyellow','amber [yellow] ',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:ambrosia.43','ambrosia','ambrosia',[121,68,59],'79443b',7947323], ['nbs-iscc-m:ambulance.47','ambulance','ambulance',[67,48,46],'43302e',4403246], ['nbs-iscc-m:amelie.62','amelie','amelie',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:americanbeauty.16','americanbeauty','american beauty',[114,47,55],'722f37',7483191], ['nbs-iscc-m:americangreen.136','americangreen','american green',[103,146,103],'679267',6787687], ['nbs-iscc-m:americangreen.137','americangreen','american green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:americangreen.150','americangreen','american green',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:amethystviolet.223','amethystviolet','amethyst [violet] ',[134,96,142],'86608e',8806542], ['nbs-iscc-m:amethystviolet.224','amethystviolet','amethyst [violet] ',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:amethystviolet.228','amethystviolet','amethyst [violet] ',[121,104,120],'796878',7956600], ['nbs-iscc-m:amparoblue.178','amparoblue','amparo blue',[0,103,165],'0067a5',26533], ['nbs-iscc-m:amparoblue.195','amparoblue','amparo blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc-m:amparopurple.223','amparopurple','amparo purple',[134,96,142],'86608e',8806542], ['nbs-iscc-m:amulet.165','amulet','amulet',[0,75,73],'004b49',19273], ['nbs-iscc-m:anamite.109','anamite','anamite',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:anatolia.41','anatolia','anatolia',[86,7,12],'56070c',5637900], ['nbs-iscc-m:anatta.29','anatta','anatta',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:andorra.44','andorra','andorra',[62,29,30],'3e1d1e',4070686], ['nbs-iscc-m:andorra.47','andorra','andorra',[67,48,46],'43302e',4403246], ['nbs-iscc-m:andorre.136','andorre','andorre',[103,146,103],'679267',6787687], ['nbs-iscc-m:andorre.150','andorre','andorre',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:andovergreen.127','andovergreen','andover green',[81,87,68],'515744',5330756], ['nbs-iscc-m:andrinopleberries.68','andrinopleberries','andrinople berries',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:andrinopleberries.71','andrinopleberries','andrinople berries',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:anemone.244','anemone','anemone',[170,138,158],'aa8a9e',11176606], ['nbs-iscc-m:angelred.43','angelred','angel red',[121,68,59],'79443b',7947323], ['nbs-iscc-m:animalrouge.11','animalrouge','animal rouge',[190,0,50],'be0032',12451890], ['nbs-iscc-m:animalrouge.12','animalrouge','animal rouge',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:annapolis.266','annapolis','annapolis',[85,85,85],'555555',5592405], ['nbs-iscc-m:annatto.29','annatto','annatto',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:annotto.29','annotto','annotto',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:antelope.94','antelope','antelope',[150,113,23],'967117',9859351], ['nbs-iscc-m:antimonyyellow.71','antimonyyellow','antimony yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:antique.94','antique','antique',[150,113,23],'967117',9859351], ['nbs-iscc-m:antique.95','antique','antique',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:antiquebrass.106','antiquebrass','antique brass',[134,126,54],'867e36',8814134], ['nbs-iscc-m:antiquebrass.109','antiquebrass','antique brass',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:antiquebronze.77','antiquebronze','antique bronze',[130,102,68],'826644',8545860], ['nbs-iscc-m:antiquebrown.58','antiquebrown','antique brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:antiquedrab.77','antiquedrab','antique drab',[130,102,68],'826644',8545860], ['nbs-iscc-m:antiquedrab.94','antiquedrab','antique drab',[150,113,23],'967117',9859351], ['nbs-iscc-m:antiquedrab.95','antiquedrab','antique drab',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:antiquefuchsia.223','antiquefuchsia','antique fuchsia',[134,96,142],'86608e',8806542], ['nbs-iscc-m:antiquefuchsia.241','antiquefuchsia','antique fuchsia',[145,92,131],'915c83',9526403], ['nbs-iscc-m:antiquegold.72','antiquegold','antique gold',[190,138,61],'be8a3d',12487229], ['nbs-iscc-m:antiquegold.74','antiquegold','antique gold',[153,101,21],'996515',10052885], ['nbs-iscc-m:antiquegreen.151','antiquegreen','antique green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:antiquered.37','antiquered','antique red',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:antiquered.38','antiquered','antique red',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:antiquered.39','antiquered','antique red',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:antiquered.43','antiquered','antique red',[121,68,59],'79443b',7947323], ['nbs-iscc-m:antiqueruby.13','antiqueruby','antique ruby',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:antwerpblue.170','antwerpblue','antwerp blue',[46,132,149],'2e8495',3048597], ['nbs-iscc-m:antwerpblue.182','antwerpblue','antwerp blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:antwerpbrown.81','antwerpbrown','antwerp brown',[72,60,50],'483c32',4734002], ['nbs-iscc-m:antwerpred.43','antwerpred','antwerp red',[121,68,59],'79443b',7947323], ['nbs-iscc-m:apache.58','apache','apache',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:aphrodite.163','aphrodite','aphrodite',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:appleblossompink.19','appleblossompink','appleblossom [pink] ',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:applefallow.13','applefallow','apple-fallow',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:applefallow.15','applefallow','apple-fallow',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:applegreen.120','applegreen','apple green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:apricot.53','apricot','apricot',[217,144,88],'d99058',14258264], ['nbs-iscc-m:apricotyellow.86','apricotyellow','apricot yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:apricotyellow.87','apricotyellow','apricot yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:aquagreen.135','aquagreen','aquagreen',[147,197,146],'93c592',9684370], ['nbs-iscc-m:aquamarine.172','aquamarine','aquamarine',[102,170,188],'66aabc',6728380], ['nbs-iscc-m:aquamarine.185','aquamarine','aquamarine',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:arabbrown.55','arabbrown','arab [brown] ',[128,70,27],'80461b',8406555], ['nbs-iscc-m:arabesque.37','arabesque','arabesque',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:arabianbrown.55','arabianbrown','arabian brown',[128,70,27],'80461b',8406555], ['nbs-iscc-m:arabianbrown.58','arabianbrown','arabian brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:arabianred.41','arabianred','arabian red',[86,7,12],'56070c',5637900], ['nbs-iscc-m:araby.39','araby','araby',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:araby.42','araby','araby',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:aragon.43','aragon','aragon',[121,68,59],'79443b',7947323], ['nbs-iscc-m:arbutus.2','arbutus','arbutus',[234,147,153],'ea9399',15373209], ['nbs-iscc-m:arbutus.3','arbutus','arbutus',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:arbutus.247','arbutus','arbutus',[230,143,172],'e68fac',15110060], ['nbs-iscc-m:arbutus.248','arbutus','arbutus',[222,111,161],'de6fa1',14577569], ['nbs-iscc-m:arcadiangreen.135','arcadiangreen','arcadian green',[147,197,146],'93c592',9684370], ['nbs-iscc-m:archel.258','archel','archel',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:archil.258','archil','archil ',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:arctic.267','arctic','arctic',[34,34,34],'222222',2236962], ['nbs-iscc-m:arcticblue.186','arcticblue','arctic blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:ardoise.186','ardoise','ardoise',[83,104,120],'536878',5466232], ['nbs-iscc-m:ardoise.228','ardoise','ardoise',[121,104,120],'796878',7956600], ['nbs-iscc-m:argali.64','argali','argali',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:argali.266','argali','argali',[85,85,85],'555555',5592405], ['nbs-iscc-m:argent.265','argent','argent',[132,132,130],'848482',8684674], ['nbs-iscc-m:argentina.59','argentina','argentina',[66,37,24],'422518',4334872], ['nbs-iscc-m:argusbrown.58','argusbrown','argus brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:argylepurple.244','argylepurple','argyle purple',[170,138,158],'aa8a9e',11176606], ['nbs-iscc-m:argylepurple.245','argylepurple','argyle purple',[131,100,121],'836479',8610937], ['nbs-iscc-m:arizona.76','arizona','arizona',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:armada.47','armada','armada',[67,48,46],'43302e',4403246], ['nbs-iscc-m:armada.62','armada','armada',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:armenianblue.176','armenianblue','armenian blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-m:armenianblue.178','armenianblue','armenian blue',[0,103,165],'0067a5',26533], ['nbs-iscc-m:armenianbole.43','armenianbole','armenian bole',[121,68,59],'79443b',7947323], ['nbs-iscc-m:armenianred.55','armenianred','armenian red',[128,70,27],'80461b',8406555], ['nbs-iscc-m:armenianstone.182','armenianstone','armenian stone',[67,107,149],'436b95',4418453], ['nbs-iscc-m:armybrown.57','armybrown','army brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:arnoblue.173','arnoblue','arno blue',[54,117,136],'367588',3569032], ['nbs-iscc-m:arnoblue.174','arnoblue','arno blue',[0,73,88],'004958',18776], ['nbs-iscc-m:arnotto.29','arnotto','arnotto',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:arona.187','arona','arona',[54,69,79],'36454f',3556687], ['nbs-iscc-m:arrowwood.94','arrowwood','arrowwood',[150,113,23],'967117',9859351], ['nbs-iscc-m:arsenate.141','arsenate','arsenate',[0,121,89],'007959',31065], ['nbs-iscc-m:artbrown.59','artbrown','art brown',[66,37,24],'422518',4334872], ['nbs-iscc-m:artemesiagreen.155','artemesiagreen','artemesia green',[125,137,132],'7d8984',8227204], ['nbs-iscc-m:artgrayartgrey.233','artgrayartgrey','art gray, art grey',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:artgrayartgrey.265','artgrayartgrey','art gray, art grey',[132,132,130],'848482',8684674], ['nbs-iscc-m:artgreen.120','artgreen','art green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:artgreen.125','artgreen','art green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:artichokegreen.122','artichokegreen','artichoke green',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:artificialvermilion.262','artificialvermilion','artificial vermilion',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:artillery.11','artillery','artillery',[190,0,50],'be0032',12451890], ['nbs-iscc-m:ascottan.61','ascottan','ascot tan',[99,81,71],'635147',6508871], ['nbs-iscc-m:ashesofrose.262','ashesofrose','ashes of rose',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:ashgrey.154','ashgrey','ash [grey] ',[178,190,181],'b2beb5',11714229], ['nbs-iscc-m:asmalte.179','asmalte','asmalte',[0,65,106],'00416a',16746], ['nbs-iscc-m:asmalte.182','asmalte','asmalte',[67,107,149],'436b95',4418453], ['nbs-iscc-m:asparagusgreen.121','asparagusgreen','asparagus green',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:aspengreen.150','aspengreen','aspen green',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:asphalt.266','asphalt','asphalt',[85,85,85],'555555',5592405], ['nbs-iscc-m:asphaltum.81','asphaltum','asphaltum',[72,60,50],'483c32',4734002], ['nbs-iscc-m:asphodelgreen.120','asphodelgreen','asphodel green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:aster.228','aster','aster',[121,104,120],'796878',7956600], ['nbs-iscc-m:asterpurple.256','asterpurple','aster purple',[120,24,74],'78184a',7870538], ['nbs-iscc-m:athenia.19','athenia','athenia',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:atlantic.187','atlantic','atlantic',[54,69,79],'36454f',3556687], ['nbs-iscc-m:atlantis.174','atlantis','atlantis',[0,73,88],'004958',18776], ['nbs-iscc-m:atlantis.187','atlantis','atlantis',[54,69,79],'36454f',3556687], ['nbs-iscc-m:atmosphere.33','atmosphere','atmosphere',[194,172,153],'c2ac99',12758169], ['nbs-iscc-m:atmosphere.79','atmosphere','atmosphere',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:atmosphere.93','atmosphere','atmosphere',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:atramentous.192','atramentous','atramentous',[81,88,94],'51585e',5331038], ['nbs-iscc-m:attarofroses.39','attarofroses','attar of roses',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:attarofroses.42','attarofroses','attar of roses',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:aubergine.230','aubergine','aubergine',[41,30,41],'291e29',2694697], ['nbs-iscc-m:aubergine.235','aubergine','aubergine',[36,33,36],'242124',2367780], ['nbs-iscc-m:auburn.58','auburn','auburn',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:aubusson.16','aubusson','aubusson',[114,47,55],'722f37',7483191], ['nbs-iscc-m:aucuba.106','aucuba','aucuba',[134,126,54],'867e36',8814134], ['nbs-iscc-m:aureolin.83','aureolin','aureolin',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:aureolin.84','aureolin','aureolin',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:auriculapurple.238','auriculapurple','auricula purple',[112,41,99],'702963',7350627], ['nbs-iscc-m:auripigmentum.83','auripigmentum','auripigmentum',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:auripigmentum.84','auripigmentum','auripigmentum',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:auripigmentum.86','auripigmentum','auripigmentum',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:auripigmentum.87','auripigmentum','auripigmentum',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:auroraorange.26','auroraorange','aurora [orange] ',[248,131,121],'f88379',16286585], ['nbs-iscc-m:auroraorange.27','auroraorange','aurora [orange] ',[230,103,97],'e66761',15099745], ['nbs-iscc-m:auroraorange.37','auroraorange','aurora [orange] ',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:aurorared.15','aurorared','aurora red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:aurorared.27','aurorared','aurora red',[230,103,97],'e66761',15099745], ['nbs-iscc-m:aurorared.37','aurorared','aurora red',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:aurorayellow.50','aurorayellow','aurora yellow',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:aurorayellow.53','aurorayellow','aurora yellow',[217,144,88],'d99058',14258264], ['nbs-iscc-m:aurorayellow.68','aurorayellow','aurora yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:aurorayellow.71','aurorayellow','aurora yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:aurore.5','aurore','aurore',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:aurum.94','aurum','aurum',[150,113,23],'967117',9859351], ['nbs-iscc-m:australianpine.137','australianpine','australian pine',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:auteuil.71','auteuil','auteuil',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:autumn.110','autumn','autumn',[91,88,66],'5b5842',5986370], ['nbs-iscc-m:autumn.111','autumn','autumn',[54,53,39],'363527',3552551], ['nbs-iscc-m:autumnblonde.45','autumnblonde','autumn blonde',[151,127,115],'977f73',9928563], ['nbs-iscc-m:autumnblonde.58','autumnblonde','autumn blonde',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:autumnblonde.60','autumnblonde','autumn blonde',[149,128,112],'958070',9797744], ['nbs-iscc-m:autumnblonde.61','autumnblonde','autumn blonde',[99,81,71],'635147',6508871], ['nbs-iscc-m:autumnbrown.81','autumnbrown','autumn brown',[72,60,50],'483c32',4734002], ['nbs-iscc-m:autumnglory.16','autumnglory','autumn glory',[114,47,55],'722f37',7483191], ['nbs-iscc-m:autumnglory.38','autumnglory','autumn glory',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:autumngreen.120','autumngreen','autumn green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:autumngreen.125','autumngreen','autumn green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:autumnleaf.51','autumnleaf','autumn leaf',[190,101,22],'be6516',12477718], ['nbs-iscc-m:autumnleaf.54','autumnleaf','autumn leaf',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:autumnleaf.55','autumnleaf','autumn leaf',[128,70,27],'80461b',8406555], ['nbs-iscc-m:autumnoak.46','autumnoak','autumn oak',[103,76,71],'674c47',6769735], ['nbs-iscc-m:avellaneous.57','avellaneous','avellaneous',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:avellaneous.74','avellaneous','avellaneous',[153,101,21],'996515',10052885], ['nbs-iscc-m:avignonberries.68','avignonberries','avignon berries',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:avignonberries.71','avignonberries','avignon berries',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:azalea.19','azalea','azalea',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:aztec.74','aztec','aztec',[153,101,21],'996515',10052885], ['nbs-iscc-m:aztec.76','aztec','aztec',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:aztec.77','aztec','aztec',[130,102,68],'826644',8545860], ['nbs-iscc-m:aztecmaroon.262','aztecmaroon','aztec maroon',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:azulin.186','azulin','azulin',[83,104,120],'536878',5466232], ['nbs-iscc-m:babyblue.185','babyblue','baby blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:babyblue.190','babyblue','baby blue',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-m:babyblue.191','babyblue','baby blue',[129,135,139],'81878b',8488843], ['nbs-iscc-m:babypink.28','babypink','baby pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-m:babypink.29','babypink','baby pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:babyrose.26','babyrose','baby rose',[248,131,121],'f88379',16286585], ['nbs-iscc-m:bacchus.258','bacchus','bacchus',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:bachelorbutton.3','bachelorbutton','bachelor button',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:bagdad.183','bagdad','bagdad',[0,48,78],'00304e',12366], ['nbs-iscc-m:bagdad.187','bagdad','bagdad',[54,69,79],'36454f',3556687], ['nbs-iscc-m:bagdad.188','bagdad','bagdad',[32,40,48],'202830',2107440], ['nbs-iscc-m:bakstgreen.146','bakstgreen','bakst green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-m:balgeyellow.83','balgeyellow','balge yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:balllake.11','balllake','ball lake',[190,0,50],'be0032',12451890], ['nbs-iscc-m:balllake.12','balllake','ball lake',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:balsam.187','balsam','balsam',[54,69,79],'36454f',3556687], ['nbs-iscc-m:balsamgreen.267','balsamgreen','balsam green',[34,34,34],'222222',2236962], ['nbs-iscc-m:baltic.151','baltic','baltic',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:baltic.165','baltic','baltic',[0,75,73],'004b49',19273], ['nbs-iscc-m:bambino.185','bambino','bambino',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:bamboo.76','bamboo','bamboo',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:bamboo.77','bamboo','bamboo',[130,102,68],'826644',8545860], ['nbs-iscc-m:banana.90','banana','banana',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:banner.204','banner','banner',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:banshee.151','banshee','banshee',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:barberry.13','barberry','barberry',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:barberry.15','barberry','barberry',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:bark.96','bark','bark',[59,49,33],'3b3121',3879201], ['nbs-iscc-m:barwood.15','barwood','barwood',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:basketball.205','basketball','basketball',[144,101,202],'9065ca',9463242], ['nbs-iscc-m:bastardsaffron.11','bastardsaffron','bastard saffron',[190,0,50],'be0032',12451890], ['nbs-iscc-m:bat.266','bat','bat',[85,85,85],'555555',5592405], ['nbs-iscc-m:bathstone.73','bathstone','bath stone',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:battleshipgrey.265','battleshipgrey','battleship grey',[132,132,130],'848482',8684674], ['nbs-iscc-m:bay.58','bay','bay',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:bayou.151','bayou','bayou',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:beach.109','beach','beach',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:beach.112','beach','beach',[138,135,118],'8a8776',9078646], ['nbs-iscc-m:beachtan.61','beachtan','beach tan ',[99,81,71],'635147',6508871], ['nbs-iscc-m:bear.266','bear','bear',[85,85,85],'555555',5592405], ['nbs-iscc-m:bearshair.266','bearshair','bear\'s hair',[85,85,85],'555555',5592405], ['nbs-iscc-m:bearskingrey.266','bearskingrey','bearskin [grey] ',[85,85,85],'555555',5592405], ['nbs-iscc-m:beaucaire.169','beaucaire','beaucaire',[0,119,145],'007791',30609], ['nbs-iscc-m:beaucaire.173','beaucaire','beaucaire',[54,117,136],'367588',3569032], ['nbs-iscc-m:beaver.64','beaver','beaver',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:beaverpelt.113','beaverpelt','beaverpelt',[87,85,76],'57554c',5723468], ['nbs-iscc-m:beech.110','beech','beech',[91,88,66],'5b5842',5986370], ['nbs-iscc-m:beech.113','beech','beech',[87,85,76],'57554c',5723468], ['nbs-iscc-m:beechnut.61','beechnut','beechnut',[99,81,71],'635147',6508871], ['nbs-iscc-m:beefsblood.43','beefsblood','beef\'s blood',[121,68,59],'79443b',7947323], ['nbs-iscc-m:beeswax.77','beeswax','beeswax',[130,102,68],'826644',8545860], ['nbs-iscc-m:beetle.127','beetle','beetle',[81,87,68],'515744',5330756], ['nbs-iscc-m:begonia.3','begonia','begonia',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:begoniarose.15','begoniarose','begonia rose',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:beige.89','beige','beige',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:beige.90','beige','beige',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:beigesoire.76','beigesoire','beige soirée',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:belladonna.224','belladonna','belladonna',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:belleek.73','belleek','belleek',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:belleek.79','belleek','belleek',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:belleek.90','belleek','belleek',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:belleek.93','belleek','belleek',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:bellemonte.15','bellemonte','bellemonte',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:bellflower.197','bellflower','bellflower',[39,36,88],'272458',2565208], ['nbs-iscc-m:berlinbrown.19','berlinbrown','berlin brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:berlinbrown.46','berlinbrown','berlin brown',[103,76,71],'674c47',6769735], ['nbs-iscc-m:berlinred.43','berlinred','berlin red',[121,68,59],'79443b',7947323], ['nbs-iscc-m:bermuda.3','bermuda','bermuda',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:beryl.172','beryl','beryl',[102,170,188],'66aabc',6728380], ['nbs-iscc-m:berylblue.172','berylblue','beryl blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-m:berylgreen.163','berylgreen','beryl green',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:biarritz.79','biarritz','biarritz',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:biarritz.94','biarritz','biarritz',[150,113,23],'967117',9859351], ['nbs-iscc-m:bigfouryellowbig4yellow.48','bigfouryellowbig4yellow','big four yellow, big 4 yellow',[243,132,0],'f38400',15959040], ['nbs-iscc-m:bigfouryellowbig4yellow.50','bigfouryellowbig4yellow','big four yellow, big 4 yellow',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:billiard.146','billiard','billiard',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-m:biscaygreen.120','biscaygreen','biscay green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:biscuit.57','biscuit','biscuit',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:biscuit.60','biscuit','biscuit',[149,128,112],'958070',9797744], ['nbs-iscc-m:biscuit.76','biscuit','biscuit',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:biscuit.79','biscuit','biscuit',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:bishop.211','bishop','bishop',[96,78,129],'604e81',6311553], ['nbs-iscc-m:bishopspurple.241','bishopspurple','bishop\'s purple',[145,92,131],'915c83',9526403], ['nbs-iscc-m:bishopsviolet.241','bishopsviolet','bishop\'s violet',[145,92,131],'915c83',9526403], ['nbs-iscc-m:biskra.81','biskra','biskra',[72,60,50],'483c32',4734002], ['nbs-iscc-m:bismarck.43','bismarck','bismarck',[121,68,59],'79443b',7947323], ['nbs-iscc-m:bismarckbrown.77','bismarckbrown','bismarck brown',[130,102,68],'826644',8545860], ['nbs-iscc-m:bison.81','bison','bison',[72,60,50],'483c32',4734002], ['nbs-iscc-m:bisque.73','bisque','bisque',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:bisque.93','bisque','bisque',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:bister.61','bister','bister',[99,81,71],'635147',6508871], ['nbs-iscc-m:bister.80','bister','bister',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:bistre.61','bistre','bistre',[99,81,71],'635147',6508871], ['nbs-iscc-m:bistre.80','bistre','bistre',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:bistregreen.88','bistregreen','bistre green',[171,145,68],'ab9144',11243844], ['nbs-iscc-m:bistregreen.91','bistregreen','bistre green',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:bittersweet.36','bittersweet','bittersweet',[170,56,30],'aa381e',11155486], ['nbs-iscc-m:bittersweet.38','bittersweet','bittersweet',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:bittersweetorange.51','bittersweetorange','bittersweet orange',[190,101,22],'be6516',12477718], ['nbs-iscc-m:bittersweetpink.26','bittersweetpink','bittersweet pink',[248,131,121],'f88379',16286585], ['nbs-iscc-m:bitumen.81','bitumen','bitumen',[72,60,50],'483c32',4734002], ['nbs-iscc-m:bladdergreen.106','bladdergreen','bladder green',[134,126,54],'867e36',8814134], ['nbs-iscc-m:blaze.15','blaze','blaze ',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:blaze.38','blaze','blaze ',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:bleudelyons.179','bleudelyons','bleu de lyons',[0,65,106],'00416a',16746], ['nbs-iscc-m:bleudelyons.182','bleudelyons','bleu de lyons',[67,107,149],'436b95',4418453], ['nbs-iscc-m:bleudorient.178','bleudorient','bleu d\'orient',[0,103,165],'0067a5',26533], ['nbs-iscc-m:bleulouise.164','bleulouise','bleu louise',[49,120,115],'317873',3242099], ['nbs-iscc-m:bleulouise.173','bleulouise','bleu louise',[54,117,136],'367588',3569032], ['nbs-iscc-m:bleupass.185','bleupass','bleu passé ',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:bleupass.186','bleupass','bleu passé ',[83,104,120],'536878',5466232], ['nbs-iscc-m:bleupass.191','bleupass','bleu passé ',[129,135,139],'81878b',8488843], ['nbs-iscc-m:blond.76','blond','blond',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:blond.91','blond','blond',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:blondine.80','blondine','blondine',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:blonket.190','blonket','blonket',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-m:bloodred.12','bloodred','blood red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:bloodred.15','bloodred','blood red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:blossom.5','blossom','blossom',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:blueashes.182','blueashes','blue ashes',[67,107,149],'436b95',4418453], ['nbs-iscc-m:blueaster.182','blueaster','blue aster',[67,107,149],'436b95',4418453], ['nbs-iscc-m:bluebell.182','bluebell','bluebell',[67,107,149],'436b95',4418453], ['nbs-iscc-m:bluebell.183','bluebell','bluebell',[0,48,78],'00304e',12366], ['nbs-iscc-m:bluebice.182','bluebice','blue bice',[67,107,149],'436b95',4418453], ['nbs-iscc-m:bluebirdbluebird.182','bluebirdbluebird','blue bird, bluebird',[67,107,149],'436b95',4418453], ['nbs-iscc-m:bluedevil.204','bluedevil','blue devil',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:bluefox.23','bluefox','blue fox',[92,80,79],'5c504f',6049871], ['nbs-iscc-m:bluegrass.165','bluegrass','blue grass',[0,75,73],'004b49',19273], ['nbs-iscc-m:bluehaze.266','bluehaze','blue haze',[85,85,85],'555555',5592405], ['nbs-iscc-m:bluejay.179','bluejay','bluejay',[0,65,106],'00416a',16746], ['nbs-iscc-m:bluejay.183','bluejay','bluejay',[0,48,78],'00304e',12366], ['nbs-iscc-m:bluejewel.169','bluejewel','blue jewel',[0,119,145],'007791',30609], ['nbs-iscc-m:bluelavender.203','bluelavender','blue lavender',[140,146,172],'8c92ac',9212588], ['nbs-iscc-m:bluelotus.181','bluelotus','blue lotus',[112,163,204],'70a3cc',7381964], ['nbs-iscc-m:blueochre.150','blueochre','blue ochre',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:blueochre.186','blueochre','blue ochre',[83,104,120],'536878',5466232], ['nbs-iscc-m:blueorchid.186','blueorchid','blue orchid',[83,104,120],'536878',5466232], ['nbs-iscc-m:bluesapphire.173','bluesapphire','blue sapphire',[54,117,136],'367588',3569032], ['nbs-iscc-m:bluespruce.145','bluespruce','blue spruce',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:bluespruce.150','bluespruce','blue spruce',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:bluet.182','bluet','bluet',[67,107,149],'436b95',4418453], ['nbs-iscc-m:blueturquoise.163','blueturquoise','blue turquoise',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:blueturquoise.172','blueturquoise','blue turquoise',[102,170,188],'66aabc',6728380], ['nbs-iscc-m:blueuntramarineash.182','blueuntramarineash','blue untramarine ash ',[67,107,149],'436b95',4418453], ['nbs-iscc-m:blueverditer.182','blueverditer','blue verditer',[67,107,149],'436b95',4418453], ['nbs-iscc-m:blunket.190','blunket','blunket',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-m:blush.29','blush','blush',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:blush.57','blush','blush',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:blushrose.19','blushrose','blush rose',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:boa.120','boa','boa',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:boa.121','boa','boa',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:boa.135','boa','boa',[147,197,146],'93c592',9684370], ['nbs-iscc-m:bobolink.80','bobolink','bobolink',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:boisderose.19','boisderose','bois de rose ',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:bokhara.259','bokhara','bokhara',[103,49,71],'673147',6762823], ['nbs-iscc-m:bole.43','bole','bole',[121,68,59],'79443b',7947323], ['nbs-iscc-m:bolearmoniack.43','bolearmoniack','bole armoniack',[121,68,59],'79443b',7947323], ['nbs-iscc-m:bolus.43','bolus','bolus',[121,68,59],'79443b',7947323], ['nbs-iscc-m:bombay.55','bombay','bombay',[128,70,27],'80461b',8406555], ['nbs-iscc-m:bombay.58','bombay','bombay',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:bonebrown.95','bonebrown','bone brown',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:bonebrown.96','bonebrown','bone brown',[59,49,33],'3b3121',3879201], ['nbs-iscc-m:bonfire.12','bonfire','bonfire',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:bonito.64','bonito','bonito',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:bonnieblue.176','bonnieblue','bonnie blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-m:boreal.43','boreal','boreal',[121,68,59],'79443b',7947323], ['nbs-iscc-m:bosphorus.151','bosphorus','bosphorus',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:botticelli.238','botticelli','botticelli',[112,41,99],'702963',7350627], ['nbs-iscc-m:bottlegreen.151','bottlegreen','bottle green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:bottlegreen.165','bottlegreen','bottle green',[0,75,73],'004b49',19273], ['nbs-iscc-m:bougainville.223','bougainville','bougainville',[134,96,142],'86608e',8806542], ['nbs-iscc-m:bougainville.241','bougainville','bougainville',[145,92,131],'915c83',9526403], ['nbs-iscc-m:boulevard.64','boulevard','boulevard',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:bouquetgreen.144','bouquetgreen','bouquet green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:bourgeon.120','bourgeon','bourgeon',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:boxgreen.120','boxgreen','box green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:bracken.95','bracken','bracken',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:bracken.96','bracken','bracken',[59,49,33],'3b3121',3879201], ['nbs-iscc-m:bramble.212','bramble','bramble',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:bran.57','bran','bran',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:bran.76','bran','bran',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:brass.87','brass','brass',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:brazenyellow.87','brazenyellow','brazen yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:brazilbrown.47','brazilbrown','brazil brown',[67,48,46],'43302e',4403246], ['nbs-iscc-m:brazilred.38','brazilred','brazil [red] ',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:brazilwood.15','brazilwood','brazilwood',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:brazilwood.19','brazilwood','brazilwood',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:bremenblue.164','bremenblue','bremen blue',[49,120,115],'317873',3242099], ['nbs-iscc-m:bremengreen.136','bremengreen','bremen green',[103,146,103],'679267',6787687], ['nbs-iscc-m:brewstergreen.125','brewstergreen','brewster green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:briar.55','briar','briar',[128,70,27],'80461b',8406555], ['nbs-iscc-m:briar.58','briar','briar',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:briarwood.62','briarwood','briarwood',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:brickdust.13','brickdust','brickdust',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:brickred.55','brickred','brick red',[128,70,27],'80461b',8406555], ['nbs-iscc-m:brickred.58','brickred','brick red',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:bridalrose.6','bridalrose','bridal rose',[192,128,129],'c08081',12615809], ['nbs-iscc-m:brigand.12','brigand','brigand',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:brigand.15','brigand','brigand',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:brigand.35','brigand','brigand',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:brigand.37','brigand','brigand',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:brimstoneyellow.101','brimstoneyellow','brimstone [yellow] ',[234,230,121],'eae679',15394425], ['nbs-iscc-m:brittany.173','brittany','brittany',[54,117,136],'367588',3569032], ['nbs-iscc-m:brittany.182','brittany','brittany',[67,107,149],'436b95',4418453], ['nbs-iscc-m:brittany.186','brittany','brittany',[83,104,120],'536878',5466232], ['nbs-iscc-m:broccolibrown.64','broccolibrown','broccoli brown',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:broncho.81','broncho','broncho',[72,60,50],'483c32',4734002], ['nbs-iscc-m:broncho.95','broncho','broncho',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:broncho.96','broncho','broncho',[59,49,33],'3b3121',3879201], ['nbs-iscc-m:bronze.77','bronze','bronze',[130,102,68],'826644',8545860], ['nbs-iscc-m:bronzebrown.64','bronzebrown','bronze brown',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:bronzeclair.79','bronzeclair','bronze clair',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:bronzegreen.127','bronzegreen','bronze green',[81,87,68],'515744',5330756], ['nbs-iscc-m:bronzelustre.110','bronzelustre','bronze lustre',[91,88,66],'5b5842',5986370], ['nbs-iscc-m:bronzenude.95','bronzenude','bronze nude',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:bronzered.15','bronzered','bronze red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:bronzesheen.110','bronzesheen','bronzesheen',[91,88,66],'5b5842',5986370], ['nbs-iscc-m:bronzeyellow.53','bronzeyellow','bronze yellow',[217,144,88],'d99058',14258264], ['nbs-iscc-m:bronzeyellow.72','bronzeyellow','bronze yellow',[190,138,61],'be8a3d',12487229], ['nbs-iscc-m:brownbay.61','brownbay','brown bay',[99,81,71],'635147',6508871], ['nbs-iscc-m:brownbread.55','brownbread','brown bread',[128,70,27],'80461b',8406555], ['nbs-iscc-m:brownbread.58','brownbread','brown bread',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:brownmadder.43','brownmadder','brown madder',[121,68,59],'79443b',7947323], ['nbs-iscc-m:brownochre.53','brownochre','brown ochre',[217,144,88],'d99058',14258264], ['nbs-iscc-m:brownpink.72','brownpink','brown pink',[190,138,61],'be8a3d',12487229], ['nbs-iscc-m:brownpink.74','brownpink','brown pink',[153,101,21],'996515',10052885], ['nbs-iscc-m:brownred.43','brownred','brown red',[121,68,59],'79443b',7947323], ['nbs-iscc-m:brownstone.61','brownstone','brown stone',[99,81,71],'635147',6508871], ['nbs-iscc-m:brownstone.61','brownstone','brownstone',[99,81,71],'635147',6508871], ['nbs-iscc-m:brownsugar.58','brownsugar','brown sugar',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:brownsugar.61','brownsugar','brown sugar',[99,81,71],'635147',6508871], ['nbs-iscc-m:brownsugar.77','brownsugar','brown sugar',[130,102,68],'826644',8545860], ['nbs-iscc-m:brownsugar.80','brownsugar','brown sugar',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:bruges.174','bruges','bruges',[0,73,88],'004958',18776], ['nbs-iscc-m:bruges.187','bruges','bruges',[54,69,79],'36454f',3556687], ['nbs-iscc-m:brushwood.61','brushwood','brushwood',[99,81,71],'635147',6508871], ['nbs-iscc-m:brusselsbrown.58','brusselsbrown','brussels brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:brusselsbrown.61','brusselsbrown','brussels brown',[99,81,71],'635147',6508871], ['nbs-iscc-m:brusselsbrown.77','brusselsbrown','brussels brown',[130,102,68],'826644',8545860], ['nbs-iscc-m:brusselsbrown.80','brusselsbrown','brussels brown',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:buccaneer.12','buccaneer','buccaneer',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:buccaneer.15','buccaneer','buccaneer',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:buccaneer.36','buccaneer','buccaneer',[170,56,30],'aa381e',11155486], ['nbs-iscc-m:buccaneer.38','buccaneer','buccaneer',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:buckskin.45','buckskin','buckskin',[151,127,115],'977f73',9928563], ['nbs-iscc-m:buckskin.60','buckskin','buckskin',[149,128,112],'958070',9797744], ['nbs-iscc-m:buckthornberries.68','buckthornberries','buckthorn berries',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:buckthornberries.71','buckthornberries','buckthorn berries',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:buckthornbrown.72','buckthornbrown','buckthorn brown',[190,138,61],'be8a3d',12487229], ['nbs-iscc-m:buckthornbrown.74','buckthornbrown','buckthorn brown',[153,101,21],'996515',10052885], ['nbs-iscc-m:buckthornbrown.76','buckthornbrown','buckthorn brown',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:buckthornbrown.77','buckthornbrown','buckthorn brown',[130,102,68],'826644',8545860], ['nbs-iscc-m:buckthornbrown.88','buckthornbrown','buckthorn brown',[171,145,68],'ab9144',11243844], ['nbs-iscc-m:buckthornbrown.91','buckthornbrown','buckthorn brown',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:buckthornbrown.94','buckthornbrown','buckthorn brown',[150,113,23],'967117',9859351], ['nbs-iscc-m:buddha.12','buddha','buddha',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:buddha.15','buddha','buddha',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:budgreen.131','budgreen','bud green',[68,148,74],'44944a',4494410], ['nbs-iscc-m:buff.71','buff','buff',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:buffalo.77','buffalo','buffalo',[130,102,68],'826644',8545860], ['nbs-iscc-m:bulgare.19','bulgare','bulgare',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:bunny.77','bunny','bunny',[130,102,68],'826644',8545860], ['nbs-iscc-m:bure.74','bure','bure',[153,101,21],'996515',10052885], ['nbs-iscc-m:bure.76','bure','bure',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:bure.77','bure','bure',[130,102,68],'826644',8545860], ['nbs-iscc-m:burel.58','burel','burel',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:burgundy.229','burgundy','burgundy',[80,64,77],'50404d',5259341], ['nbs-iscc-m:burgundy.230','burgundy','burgundy',[41,30,41],'291e29',2694697], ['nbs-iscc-m:burgundyviolet.218','burgundyviolet','burgundy violet',[135,86,146],'875692',8869522], ['nbs-iscc-m:burlwood.60','burlwood','burlwood',[149,128,112],'958070',9797744], ['nbs-iscc-m:burlwood.79','burlwood','burlwood',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:burma.54','burma','burma',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:burmesegold.37','burmesegold','burmese gold',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:burmeseruby.16','burmeseruby','burmese ruby',[114,47,55],'722f37',7483191], ['nbs-iscc-m:burnblue.184','burnblue','burn blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-m:burnblue.185','burnblue','burn blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:burnblue.202','burnblue','burn blue',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-m:burnblue.203','burnblue','burn blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-m:burnishedgold.72','burnishedgold','burnished gold',[190,138,61],'be8a3d',12487229], ['nbs-iscc-m:burnishedgold.74','burnishedgold','burnished gold',[153,101,21],'996515',10052885], ['nbs-iscc-m:burnishedgold.76','burnishedgold','burnished gold',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:burnishedgold.88','burnishedgold','burnished gold',[171,145,68],'ab9144',11243844], ['nbs-iscc-m:burnishedgold.94','burnishedgold','burnished gold',[150,113,23],'967117',9859351], ['nbs-iscc-m:burnous.73','burnous','burnous',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:burnt.91','burnt','burnt',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:burntalmond.58','burntalmond','burnt almond',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:burntcarmine.13','burntcarmine','burnt carmine',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:burntcarmine.15','burntcarmine','burnt carmine',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:burntcoral.37','burntcoral','burnt coral',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:burntcrimsonlake.13','burntcrimsonlake','burnt crimson lake',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:burntcrimsonlake.15','burntcrimsonlake','burnt crimson lake',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:burntitalianearth.38','burntitalianearth','burnt italian earth',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:burntitalianochre.38','burntitalianochre','burnt italian ochre',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:burntlake.13','burntlake','burnt lake',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:burntlake.15','burntlake','burnt lake',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:burntochre.37','burntochre','burnt ochre',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:burntorange.37','burntorange','burnt orange',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:burntromanochre.50','burntromanochre','burnt roman ochre',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:burntrose.41','burntrose','burnt rose',[86,7,12],'56070c',5637900], ['nbs-iscc-m:burntrose.43','burntrose','burnt rose',[121,68,59],'79443b',7947323], ['nbs-iscc-m:burntrusset.16','burntrusset','burnt russet',[114,47,55],'722f37',7483191], ['nbs-iscc-m:burntrusset.43','burntrusset','burnt russet',[121,68,59],'79443b',7947323], ['nbs-iscc-m:burntsienna.38','burntsienna','burnt sienna',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:burntterreverte.58','burntterreverte','burnt terre verte',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:burntumber.58','burntumber','burnt umber',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:buttercupyellow.90','buttercupyellow','buttercup [yellow] ',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:butterfly.102','butterfly','butterfly',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:butternut.95','butternut','butternut',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:butterscotch.58','butterscotch','butterscotch',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:butterscotch.77','butterscotch','butterscotch',[130,102,68],'826644',8545860], ['nbs-iscc-m:byron.81','byron','byron',[72,60,50],'483c32',4734002], ['nbs-iscc-m:byzantine.254','byzantine','byzantine',[206,70,118],'ce4676',13518454], ['nbs-iscc-m:byzantium.238','byzantium','byzantium',[112,41,99],'702963',7350627], ['nbs-iscc-m:byzantium.242','byzantium','byzantium',[93,57,84],'5d3954',6109524], ['nbs-iscc-m:cabaret.144','cabaret','cabaret',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:cabbagegreen.155','cabbagegreen','cabbage green',[125,137,132],'7d8984',8227204], ['nbs-iscc-m:cacao.77','cacao','cacao',[130,102,68],'826644',8545860], ['nbs-iscc-m:cacaobrown.55','cacaobrown','cacao brown',[128,70,27],'80461b',8406555], ['nbs-iscc-m:cacha.58','cacha','cacha',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cachou.58','cachou','cachou',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cactus.137','cactus','cactus',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:cadet.186','cadet','cadet',[83,104,120],'536878',5466232], ['nbs-iscc-m:cadetblue.182','cadetblue','cadet blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:cadetgrey.191','cadetgrey','cadet grey ',[129,135,139],'81878b',8488843], ['nbs-iscc-m:cadmiumcarmine.12','cadmiumcarmine','cadmium carmine',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:cadmiumgreen.141','cadmiumgreen','cadmium green',[0,121,89],'007959',31065], ['nbs-iscc-m:cadmiumlemon.97','cadmiumlemon','cadmium lemon',[220,211,0],'dcd300',14471936], ['nbs-iscc-m:cadmiumlemon.98','cadmiumlemon','cadmium lemon',[233,228,80],'e9e450',15328336], ['nbs-iscc-m:cadmiumorange.50','cadmiumorange','cadmium orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:cadmiumpurple.13','cadmiumpurple','cadmium purple',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:cadmiumpurple.15','cadmiumpurple','cadmium purple',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:cadmiumvermilion.12','cadmiumvermilion','cadmium vermilion',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:cadmiumvermilion.15','cadmiumvermilion','cadmium vermilion',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:cadmiumyellow.50','cadmiumyellow','cadmium yellow',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:cadmiumyellow.53','cadmiumyellow','cadmium yellow',[217,144,88],'d99058',14258264], ['nbs-iscc-m:cadmiumyellow.68','cadmiumyellow','cadmium yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:cadmiumyellow.71','cadmiumyellow','cadmium yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:caenstone.73','caenstone','caen stone',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:caeruleum.167','caeruleum','caeruleum',[0,133,161],'0085a1',34209], ['nbs-iscc-m:caeruleum.176','caeruleum','caeruleum',[0,161,194],'00a1c2',41410], ['nbs-iscc-m:cafaulait.45','cafaulait','café-au-lait',[151,127,115],'977f73',9928563], ['nbs-iscc-m:cafaulait.57','cafaulait','café-au-lait',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:cafaulait.60','cafaulait','café-au-lait',[149,128,112],'958070',9797744], ['nbs-iscc-m:cafcrme.57','cafcrme','café crème',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:cafcrme.58','cafcrme','café crème',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cafcrme.77','cafcrme','café crème',[130,102,68],'826644',8545860], ['nbs-iscc-m:cafnoir.81','cafnoir','café noir',[72,60,50],'483c32',4734002], ['nbs-iscc-m:cairo.179','cairo','cairo',[0,65,106],'00416a',16746], ['nbs-iscc-m:calabash.77','calabash','calabash',[130,102,68],'826644',8545860], ['nbs-iscc-m:calabash.94','calabash','calabash',[150,113,23],'967117',9859351], ['nbs-iscc-m:calamineblue.172','calamineblue','calamine blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-m:caldera.43','caldera','caldera',[121,68,59],'79443b',7947323], ['nbs-iscc-m:caledonianbrown.55','caledonianbrown','caledonian brown',[128,70,27],'80461b',8406555], ['nbs-iscc-m:caliaturwood.15','caliaturwood','caliaturwood',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:californiacolor.58','californiacolor','california color',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:californiagreen.91','californiagreen','california green',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:callagreen.120','callagreen','calla green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:callistegreen.117','callistegreen','calliste green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-m:callistegreen.120','callistegreen','calliste green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:cambridgeblue.163','cambridgeblue','cambridge blue',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:cambridgered.15','cambridgered','cambridge red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:cambridgered.19','cambridgered','cambridge red',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:camel.64','camel','camel',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:camellia.12','camellia','camellia ',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:camellia.15','camellia','camellia ',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:camelshairorcamelshair.80','camelshairorcamelshair','camels hair or camel\'s hair',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:cameoblue.163','cameoblue','cameo blue',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:cameobrown.19','cameobrown','cameo brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:cameobrown.42','cameobrown','cameo brown',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:cameobrown.43','cameobrown','cameo brown',[121,68,59],'79443b',7947323], ['nbs-iscc-m:cameobrown.46','cameobrown','cameo brown',[103,76,71],'674c47',6769735], ['nbs-iscc-m:cameogreen.135','cameogreen','cameo green',[147,197,146],'93c592',9684370], ['nbs-iscc-m:cameogreen.144','cameogreen','cameo green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:cameogreen.149','cameogreen','cameo green',[141,163,153],'8da399',9282457], ['nbs-iscc-m:cameopink.253','cameopink','cameo pink',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-m:cameoyellow.89','cameoyellow','cameo yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:campanula.207','campanula','campanula',[96,78,151],'604e97',6311575], ['nbs-iscc-m:campanula.211','campanula','campanula',[96,78,129],'604e81',6311553], ['nbs-iscc-m:campanulablue.199','campanulablue','campanula blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-m:campanulablue.195','campanulablue','campanula blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc-m:campanulablue.206','campanulablue','campanula blue',[126,115,184],'7e73b8',8287160], ['nbs-iscc-m:campanulapurple.245','campanulapurple','campanula purple',[131,100,121],'836479',8610937], ['nbs-iscc-m:campanulaviolet.245','campanulaviolet','campanula violet',[131,100,121],'836479',8610937], ['nbs-iscc-m:camrier.224','camrier','camérier',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:camwood.15','camwood','camwood',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:canard.165','canard','canard',[0,75,73],'004b49',19273], ['nbs-iscc-m:canard.174','canard','canard',[0,73,88],'004958',18776], ['nbs-iscc-m:canarybirdgreen.88','canarybirdgreen','canary-bird green',[171,145,68],'ab9144',11243844], ['nbs-iscc-m:canarygreen.88','canarygreen','canary green',[171,145,68],'ab9144',11243844], ['nbs-iscc-m:canaryyellow.87','canaryyellow','canary [yellow] ',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:candida.261','candida','candida',[175,134,142],'af868e',11503246], ['nbs-iscc-m:candypink.3','candypink','candy pink',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:candypink.26','candypink','candy pink',[248,131,121],'f88379',16286585], ['nbs-iscc-m:candypink.27','candypink','candy pink',[230,103,97],'e66761',15099745], ['nbs-iscc-m:canna.37','canna','canna',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:canna.38','canna','canna',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:canna.39','canna','canna',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:canna.43','canna','canna',[121,68,59],'79443b',7947323], ['nbs-iscc-m:cannon.152','cannon','cannon',[26,36,33],'1a2421',1713185], ['nbs-iscc-m:canterbury.207','canterbury','canterbury',[96,78,151],'604e97',6311575], ['nbs-iscc-m:cantonblue.183','cantonblue','canton [blue] ',[0,48,78],'00304e',12366], ['nbs-iscc-m:cantonjade.164','cantonjade','canton jade',[49,120,115],'317873',3242099], ['nbs-iscc-m:canyon.16','canyon','canyon',[114,47,55],'722f37',7483191], ['nbs-iscc-m:canyon.259','canyon','canyon',[103,49,71],'673147',6762823], ['nbs-iscc-m:cappagh.58','cappagh','cappagh',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cappahbrown.58','cappahbrown','cappah brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:capri.169','capri','capri ',[0,119,145],'007791',30609], ['nbs-iscc-m:caprice.236','caprice','caprice',[135,0,116],'870074',8847476], ['nbs-iscc-m:caprice.226','caprice','caprice',[214,202,221],'d6cadd',14076637], ['nbs-iscc-m:capucine.87','capucine','capucine ',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:capucinebuff.73','capucinebuff','capucine buff ',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:capucinelake.26','capucinelake','capucine lake ',[248,131,121],'f88379',16286585], ['nbs-iscc-m:capucinelake.37','capucinelake','capucine lake ',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:capucinelake.50','capucinelake','capucine lake ',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:capucinelake.53','capucinelake','capucine lake ',[217,144,88],'d99058',14258264], ['nbs-iscc-m:capucinemadder.53','capucinemadder','capucine madder ',[217,144,88],'d99058',14258264], ['nbs-iscc-m:capucineorange.53','capucineorange','capucine orange ',[217,144,88],'d99058',14258264], ['nbs-iscc-m:capucinered.25','capucinered','capucine red ',[255,183,165],'ffb7a5',16758693], ['nbs-iscc-m:capucinered.35','capucinered','capucine red ',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:capucineyellow.53','capucineyellow','capucine yellow ',[217,144,88],'d99058',14258264], ['nbs-iscc-m:caputmortuum.43','caputmortuum','caput mortuum',[121,68,59],'79443b',7947323], ['nbs-iscc-m:caraibe.58','caraibe','caraibe',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:caraibe.61','caraibe','caraibe',[99,81,71],'635147',6508871], ['nbs-iscc-m:caraibe.77','caraibe','caraibe',[130,102,68],'826644',8545860], ['nbs-iscc-m:caraibe.80','caraibe','caraibe',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:caramel.54','caramel','caramel',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:caramel.57','caramel','caramel',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:carbuncle.47','carbuncle','carbuncle',[67,48,46],'43302e',4403246], ['nbs-iscc-m:cardinalred.11','cardinalred','cardinal [red] ',[190,0,50],'be0032',12451890], ['nbs-iscc-m:carmine.11','carmine','carmine',[190,0,50],'be0032',12451890], ['nbs-iscc-m:carmine.12','carmine','carmine',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:carminelake.11','carminelake','carmine lake',[190,0,50],'be0032',12451890], ['nbs-iscc-m:carminelake.12','carminelake','carmine lake',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:carnation.89','carnation','carnation',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:carnation.90','carnation','carnation',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:carnationred.15','carnationred','carnation [red] ',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:carnationrose.2','carnationrose','carnation rose',[234,147,153],'ea9399',15373209], ['nbs-iscc-m:carnelian.39','carnelian','carnelian',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:carnelianred.37','carnelianred','carnelian red',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:carnivalred.12','carnivalred','carnival red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:carobbrown.58','carobbrown','carob brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:caroubier.58','caroubier','caroubier',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:carraragreen.146','carraragreen','carrara green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-m:carrotred.50','carrotred','carrot red',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:carrotred.53','carrotred','carrot red',[217,144,88],'d99058',14258264], ['nbs-iscc-m:carthamusred.11','carthamusred','carthamus red',[190,0,50],'be0032',12451890], ['nbs-iscc-m:carthamusrose.11','carthamusrose','carthamus rose',[190,0,50],'be0032',12451890], ['nbs-iscc-m:cartouche.58','cartouche','cartouche',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cartridgebuff.89','cartridgebuff','cartridge buff',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:cartridgebuff.90','cartridgebuff','cartridge buff',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:cascade.163','cascade','cascade',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:cashew.58','cashew','cashew',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cashewlake.58','cashewlake','cashew lake',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cashewnut.61','cashewnut','cashew nut',[99,81,71],'635147',6508871], ['nbs-iscc-m:cashoo.58','cashoo','cashoo',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:casinopink.255','casinopink','casino pink',[179,68,108],'b3446c',11748460], ['nbs-iscc-m:casselbrown.58','casselbrown','cassel brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:casselearth.58','casselearth','cassel earth',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:casselyellow.83','casselyellow','cassel yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:casselyellow.84','casselyellow','cassel yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:casselyellow.86','casselyellow','cassel yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:casselyellow.87','casselyellow','cassel yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:casserole.43','casserole','casserole',[121,68,59],'79443b',7947323], ['nbs-iscc-m:castaneous.61','castaneous','castaneous',[99,81,71],'635147',6508871], ['nbs-iscc-m:castellon.43','castellon','castellon',[121,68,59],'79443b',7947323], ['nbs-iscc-m:castileearth.58','castileearth','castile earth',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:castilianbrown.43','castilianbrown','castilian brown',[121,68,59],'79443b',7947323], ['nbs-iscc-m:castilianred.11','castilianred','castilian red',[190,0,50],'be0032',12451890], ['nbs-iscc-m:castor.64','castor','castor',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:castorgrey.156','castorgrey','castor grey ',[78,87,85],'4e5755',5134165], ['nbs-iscc-m:catalpa.228','catalpa','catalpa',[121,104,120],'796878',7956600], ['nbs-iscc-m:catawba.17','catawba','catawba',[63,23,40],'3f1728',4134696], ['nbs-iscc-m:catawba.21','catawba','catawba',[46,29,33],'2e1d21',3022113], ['nbs-iscc-m:cate.58','cate','cate',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:catechu.58','catechu','catechu',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cathay.54','cathay','cathay',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:cathay.74','cathay','cathay',[153,101,21],'996515',10052885], ['nbs-iscc-m:cathedral.212','cathedral','cathedral',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:cathedralblue.182','cathedralblue','cathedral blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:cathedralblue.200','cathedralblue','cathedral blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:cattail.81','cattail','cattail',[72,60,50],'483c32',4734002], ['nbs-iscc-m:cattleya.223','cattleya','cattleya',[134,96,142],'86608e',8806542], ['nbs-iscc-m:caucasia.80','caucasia','caucasia',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:cauldron.16','cauldron','cauldron',[114,47,55],'722f37',7483191], ['nbs-iscc-m:cauldron.40','cauldron','cauldron',[136,45,23],'882d17',8924439], ['nbs-iscc-m:cauldron.43','cauldron','cauldron',[121,68,59],'79443b',7947323], ['nbs-iscc-m:cavalry.71','cavalry','cavalry',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:cedar.46','cedar','cedar',[103,76,71],'674c47',6769735], ['nbs-iscc-m:cedarbark.19','cedarbark','cedarbark',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:cedarbark.43','cedarbark','cedarbark',[121,68,59],'79443b',7947323], ['nbs-iscc-m:cedargreen.125','cedargreen','cedar green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:cedarwood.43','cedarwood','cedar wood',[121,68,59],'79443b',7947323], ['nbs-iscc-m:cedre.125','cedre','cedre',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:celadongreen.122','celadongreen','celadon green',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:celandinegreen.150','celandinegreen','celandine green',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:celest.186','celest','celest',[83,104,120],'536878',5466232], ['nbs-iscc-m:celest.203','celest','celest',[140,146,172],'8c92ac',9212588], ['nbs-iscc-m:celestial.182','celestial','celestial',[67,107,149],'436b95',4418453], ['nbs-iscc-m:celestialblue.185','celestialblue','celestial blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:cellini.236','cellini','cellini',[135,0,116],'870074',8847476], ['nbs-iscc-m:cellini.254','cellini','cellini',[206,70,118],'ce4676',13518454], ['nbs-iscc-m:cement.265','cement','cement',[132,132,130],'848482',8684674], ['nbs-iscc-m:cendrillon.151','cendrillon','cendrillon',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:cendrillon.192','cendrillon','cendrillon',[81,88,94],'51585e',5331038], ['nbs-iscc-m:centennialbrown.74','centennialbrown','centennial brown',[153,101,21],'996515',10052885], ['nbs-iscc-m:centennialbrown.76','centennialbrown','centennial brown',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:centennialbrown.77','centennialbrown','centennial brown',[130,102,68],'826644',8545860], ['nbs-iscc-m:centreblue.182','centreblue','centre blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:ceramic.182','ceramic','ceramic',[67,107,149],'436b95',4418453], ['nbs-iscc-m:ceres.53','ceres','ceres',[217,144,88],'d99058',14258264], ['nbs-iscc-m:cerise.15','cerise','cerise',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:cerrogreen.120','cerrogreen','cerro green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:cerrogreen.125','cerrogreen','cerro green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:certosa.103','certosa','certosa',[152,148,62],'98943e',9999422], ['nbs-iscc-m:certosa.106','certosa','certosa',[134,126,54],'867e36',8814134], ['nbs-iscc-m:certosa.120','certosa','certosa',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:cerulean.181','cerulean','cerulean',[112,163,204],'70a3cc',7381964], ['nbs-iscc-m:cerulean.199','cerulean','cerulean',[135,145,191],'8791bf',8884671], ['nbs-iscc-m:ceruleanblue.167','ceruleanblue','cerulean blue',[0,133,161],'0085a1',34209], ['nbs-iscc-m:ceruleanblue.176','ceruleanblue','cerulean blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-m:ceylonblue.174','ceylonblue','ceylon blue',[0,73,88],'004958',18776], ['nbs-iscc-m:chaeturablack.267','chaeturablack','chaetura black',[34,34,34],'222222',2236962], ['nbs-iscc-m:chaeturadrab.266','chaeturadrab','chaetura drab',[85,85,85],'555555',5592405], ['nbs-iscc-m:chalcedonyyellow.101','chalcedonyyellow','chalcedony yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-m:chaletred.19','chaletred','chalet red',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:chamois.90','chamois','chamois',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:chamoisskin.90','chamoisskin','chamois skin',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:chamoline.72','chamoline','chamoline',[190,138,61],'be8a3d',12487229], ['nbs-iscc-m:chamoline.74','chamoline','chamoline',[153,101,21],'996515',10052885], ['nbs-iscc-m:chamoline.76','chamoline','chamoline',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:chamoline.77','chamoline','chamoline',[130,102,68],'826644',8545860], ['nbs-iscc-m:chamoline.88','chamoline','chamoline',[171,145,68],'ab9144',11243844], ['nbs-iscc-m:chamoline.91','chamoline','chamoline',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:chamoline.94','chamoline','chamoline',[150,113,23],'967117',9859351], ['nbs-iscc-m:champagne.73','champagne','champagne',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:champagne.79','champagne','champagne',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:champagne.90','champagne','champagne',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:champagne.93','champagne','champagne',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:chantilly.144','chantilly','chantilly',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:charcoalgrey.266','charcoalgrey','charcoal grey',[85,85,85],'555555',5592405], ['nbs-iscc-m:chardon.259','chardon','chardon',[103,49,71],'673147',6762823], ['nbs-iscc-m:charlesx.259','charlesx','charles x',[103,49,71],'673147',6762823], ['nbs-iscc-m:chartreuse.98','chartreuse','chartreuse',[233,228,80],'e9e450',15328336], ['nbs-iscc-m:chartreuse.99','chartreuse','chartreuse',[190,183,46],'beb72e',12498734], ['nbs-iscc-m:chartreuse.101','chartreuse','chartreuse',[234,230,121],'eae679',15394425], ['nbs-iscc-m:chartreuse.102','chartreuse','chartreuse',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:chartreusegreen.103','chartreusegreen','chartreuse green',[152,148,62],'98943e',9999422], ['nbs-iscc-m:chartreuseyellow.101','chartreuseyellow','chartreuse yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-m:chartreuseyellow.102','chartreuseyellow','chartreuse yellow',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:chasseur.138','chasseur','chasseur',[23,54,32],'173620',1521184], ['nbs-iscc-m:chatemuc.15','chatemuc','chatemuc',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:chatenaypink.28','chatenaypink','chatenay pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-m:chatenaypink.29','chatenaypink','chatenay pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:chaudron.37','chaudron','chaudron',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:chaudron.38','chaudron','chaudron',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:chaudron.39','chaudron','chaudron',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:chaudron.43','chaudron','chaudron',[121,68,59],'79443b',7947323], ['nbs-iscc-m:checkerberry.11','checkerberry','checkerberry',[190,0,50],'be0032',12451890], ['nbs-iscc-m:chemicblue.174','chemicblue','chemic blue ',[0,73,88],'004958',18776], ['nbs-iscc-m:chemicgreen.164','chemicgreen','chemic green ',[49,120,115],'317873',3242099], ['nbs-iscc-m:cherokee.37','cherokee','cherokee',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:cherry.34','cherry','cherry',[226,88,34],'e25822',14833698], ['nbs-iscc-m:cherrybloom.26','cherrybloom','cherry bloom',[248,131,121],'f88379',16286585], ['nbs-iscc-m:cherryblossom.15','cherryblossom','cherry blossom',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:cherryred.34','cherryred','cherry red',[226,88,34],'e25822',14833698], ['nbs-iscc-m:cherub.29','cherub','cherub',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:chessyliteblue.182','chessyliteblue','chessylite blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:chestnut.61','chestnut','chestnut',[99,81,71],'635147',6508871], ['nbs-iscc-m:chevreuse.19','chevreuse','chevreuse',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:chevreuse.43','chevreuse','chevreuse',[121,68,59],'79443b',7947323], ['nbs-iscc-m:chianti.13','chianti','chianti',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:chickadeegray.113','chickadeegray','chickadee gray',[87,85,76],'57554c',5723468], ['nbs-iscc-m:chicle.61','chicle','chicle',[99,81,71],'635147',6508871], ['nbs-iscc-m:chicory.203','chicory','chicory',[140,146,172],'8c92ac',9212588], ['nbs-iscc-m:chicoryblue.121','chicoryblue','chicory blue',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:chicoryblue.203','chicoryblue','chicory blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-m:chimneyred.13','chimneyred','chimney red',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:chimneyred.15','chimneyred','chimney red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:chinablue.182','chinablue','china blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:chinablue.186','chinablue','china blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:chinarose.258','chinarose','china rose',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:chinchilla.265','chinchilla','chinchilla',[132,132,130],'848482',8684674], ['nbs-iscc-m:chinchinblue.186','chinchinblue','chin-chin blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:chinesegold.54','chinesegold','chinese gold',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:chinesegreen.135','chinesegreen','chinese green',[147,197,146],'93c592',9684370], ['nbs-iscc-m:chinesegreen.144','chinesegreen','chinese green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:chinesegreen.146','chinesegreen','chinese green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-m:chinesegreen.165','chinesegreen','chinese green',[0,75,73],'004b49',19273], ['nbs-iscc-m:chineselake.11','chineselake','chinese lake',[190,0,50],'be0032',12451890], ['nbs-iscc-m:chineselake.12','chineselake','chinese lake',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:chineseorange.25','chineseorange','chinese orange',[255,183,165],'ffb7a5',16758693], ['nbs-iscc-m:chineseorange.35','chineseorange','chinese orange',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:chinesered.36','chinesered','chinese red',[170,56,30],'aa381e',11155486], ['nbs-iscc-m:chinesered.38','chinesered','chinese red',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:chinesered.40','chinesered','chinese red',[136,45,23],'882d17',8924439], ['nbs-iscc-m:chineserouge.11','chineserouge','chinese rouge',[190,0,50],'be0032',12451890], ['nbs-iscc-m:chinesevermilion.11','chinesevermilion','chinese vermilion ',[190,0,50],'be0032',12451890], ['nbs-iscc-m:chineseviolet.223','chineseviolet','chinese violet',[134,96,142],'86608e',8806542], ['nbs-iscc-m:chineseyellow.83','chineseyellow','chinese yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:chineseyellow.84','chineseyellow','chinese yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:chineseyellow.86','chineseyellow','chinese yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:chineseyellow.87','chineseyellow','chinese yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:chineseyellow.71','chineseyellow','chinese yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:ching.176','ching','ch\'ing',[0,161,194],'00a1c2',41410], ['nbs-iscc-m:chinook.38','chinook','chinook',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:chip.109','chip','chip',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:chip.112','chip','chip',[138,135,118],'8a8776',9078646], ['nbs-iscc-m:chipmunk.74','chipmunk','chipmunk',[153,101,21],'996515',10052885], ['nbs-iscc-m:chippendale.62','chippendale','chippendale',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:chiswick.183','chiswick','chiswick',[0,48,78],'00304e',12366], ['nbs-iscc-m:chocolate.62','chocolate','chocolate',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:chocolatebrown.62','chocolatebrown','chocolate brown',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:chocolatemaroon.16','chocolatemaroon','chocolate maroon',[114,47,55],'722f37',7483191], ['nbs-iscc-m:chromecitron.86','chromecitron','chrome citron',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:chromegreen.141','chromegreen','chrome green',[0,121,89],'007959',31065], ['nbs-iscc-m:chromegreen.145','chromegreen','chrome green',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:chromelemon.86','chromelemon','chrome lemon',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:chromeorange.34','chromeorange','chrome orange',[226,88,34],'e25822',14833698], ['nbs-iscc-m:chromeorange.48','chromeorange','chrome orange',[243,132,0],'f38400',15959040], ['nbs-iscc-m:chromeprimrose.98','chromeprimrose','chrome primrose',[233,228,80],'e9e450',15328336], ['nbs-iscc-m:chromeprimrose.101','chromeprimrose','chrome primrose',[234,230,121],'eae679',15394425], ['nbs-iscc-m:chromescarlet.35','chromescarlet','chrome scarlet',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:chromiumgreen.120','chromiumgreen','chromium green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:chromiumoxide.136','chromiumoxide','chromium oxide ',[103,146,103],'679267',6787687], ['nbs-iscc-m:chrysanthemum.13','chrysanthemum','chrysanthemum',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:chrysanthemum.16','chrysanthemum','chrysanthemum',[114,47,55],'722f37',7483191], ['nbs-iscc-m:chrysocollo.136','chrysocollo','chrysocollo',[103,146,103],'679267',6787687], ['nbs-iscc-m:chrysolitegreen.102','chrysolitegreen','chrysolite green',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:chrysolitegreen.105','chrysolitegreen','chrysolite green',[185,181,125],'b9b57d',12170621], ['nbs-iscc-m:chrysolitegreen.120','chrysolitegreen','chrysolite green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:chrysopraisegreen.140','chrysopraisegreen','chrysopraise [green] ',[62,180,137],'3eb489',4109449], ['nbs-iscc-m:chrysopraisegreen.144','chrysopraisegreen','chrysopraise [green] ',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:chukkerbrown.61','chukkerbrown','chukker brown',[99,81,71],'635147',6508871], ['nbs-iscc-m:chukkerbrown.80','chukkerbrown','chukker brown',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:chutney.43','chutney','chutney',[121,68,59],'79443b',7947323], ['nbs-iscc-m:cigarette.58','cigarette','cigarette',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cindergrey.233','cindergrey','cinder [grey] ',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:cineraria.254','cineraria','cineraria',[206,70,118],'ce4676',13518454], ['nbs-iscc-m:cinereous.264','cinereous','cinereous',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-m:cinnamon.57','cinnamon','cinnamon',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:cinnamon.76','cinnamon','cinnamon',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:cinnamonbrown.58','cinnamonbrown','cinnamon brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cinnamonbrown.77','cinnamonbrown','cinnamon brown',[130,102,68],'826644',8545860], ['nbs-iscc-m:cinnamonpink.42','cinnamonpink','cinnamon pink',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:circassian.58','circassian','circassian',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:citrine.106','citrine','citrine',[134,126,54],'867e36',8814134], ['nbs-iscc-m:citronelle.98','citronelle','citronelle',[233,228,80],'e9e450',15328336], ['nbs-iscc-m:citronelle.99','citronelle','citronelle',[190,183,46],'beb72e',12498734], ['nbs-iscc-m:citronelle.101','citronelle','citronelle',[234,230,121],'eae679',15394425], ['nbs-iscc-m:citronelle.102','citronelle','citronelle',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:citrongreen.102','citrongreen','citron green',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:citrongreen.105','citrongreen','citron green',[185,181,125],'b9b57d',12170621], ['nbs-iscc-m:citronyellow.86','citronyellow','citron [yellow] ',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:citrus.101','citrus','citrus',[234,230,121],'eae679',15394425], ['nbs-iscc-m:civettegreen.137','civettegreen','civette green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:clairdelune.149','clairdelune','clair de lune',[141,163,153],'8da399',9282457], ['nbs-iscc-m:claretcup.262','claretcup','claret cup',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:claretlees.259','claretlees','claret lees',[103,49,71],'673147',6762823], ['nbs-iscc-m:claretred.15','claretred','claret [red] ',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:claver.241','claver','claver',[145,92,131],'915c83',9526403], ['nbs-iscc-m:clay.74','clay','clay',[153,101,21],'996515',10052885], ['nbs-iscc-m:clay.76','clay','clay',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:clay.77','clay','clay',[130,102,68],'826644',8545860], ['nbs-iscc-m:claybank.54','claybank','clay bank',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:claydrab.77','claydrab','clay drab',[130,102,68],'826644',8545860], ['nbs-iscc-m:claydrab.94','claydrab','clay drab',[150,113,23],'967117',9859351], ['nbs-iscc-m:clematis.207','clematis','clematis',[96,78,151],'604e97',6311575], ['nbs-iscc-m:cleopatra.176','cleopatra','cleopatra',[0,161,194],'00a1c2',41410], ['nbs-iscc-m:clochette.200','clochette','clochette',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:clochette.211','clochette','clochette',[96,78,129],'604e81',6311553], ['nbs-iscc-m:cloisonn.176','cloisonn','cloisonné',[0,161,194],'00a1c2',41410], ['nbs-iscc-m:cloisonn.194','cloisonn','cloisonné',[48,38,122],'30267a',3155578], ['nbs-iscc-m:cloud.186','cloud','cloud',[83,104,120],'536878',5466232], ['nbs-iscc-m:cloudgrey.233','cloudgrey','cloud grey ',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:cloudgrey.265','cloudgrey','cloud grey ',[132,132,130],'848482',8684674], ['nbs-iscc-m:cloudyamber.90','cloudyamber','cloudy amber',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:cloudyamber.91','cloudyamber','cloudy amber',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:clove.58','clove','clove',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:clovebrown.64','clovebrown','clove brown',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:clovepink.16','clovepink','clove pink',[114,47,55],'722f37',7483191], ['nbs-iscc-m:clover.241','clover','clover',[145,92,131],'915c83',9526403], ['nbs-iscc-m:cobaltblue.169','cobaltblue','cobalt blue',[0,119,145],'007791',30609], ['nbs-iscc-m:cobaltglass.179','cobaltglass','cobalt glass',[0,65,106],'00416a',16746], ['nbs-iscc-m:cobaltglass.182','cobaltglass','cobalt glass',[67,107,149],'436b95',4418453], ['nbs-iscc-m:cobaltgreen.136','cobaltgreen','cobalt green',[103,146,103],'679267',6787687], ['nbs-iscc-m:cobaltred.254','cobaltred','cobalt red',[206,70,118],'ce4676',13518454], ['nbs-iscc-m:cobaltred.255','cobaltred','cobalt red',[179,68,108],'b3446c',11748460], ['nbs-iscc-m:cobaltultramarine.169','cobaltultramarine','cobalt ultramarine ',[0,119,145],'007791',30609], ['nbs-iscc-m:cobaltviolet.223','cobaltviolet','cobalt violet',[134,96,142],'86608e',8806542], ['nbs-iscc-m:cobaltyellow.83','cobaltyellow','cobalt yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:cobaltyellow.84','cobaltyellow','cobalt yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:cobblestone.266','cobblestone','cobblestone',[85,85,85],'555555',5592405], ['nbs-iscc-m:cobweb.79','cobweb','cobweb',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:coccineous.11','coccineous','coccineous',[190,0,50],'be0032',12451890], ['nbs-iscc-m:cocher.95','cocher','cocher',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:cochin.58','cochin','cochin',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cochineal.11','cochineal','cochineal',[190,0,50],'be0032',12451890], ['nbs-iscc-m:cockatoo.86','cockatoo','cockatoo',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:cocoa.58','cocoa','cocoa',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cocoabrown.58','cocoabrown','cocoa brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cocobala.19','cocobala','cocobala',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:cocobala.46','cocobala','cocobala',[103,76,71],'674c47',6769735], ['nbs-iscc-m:coconut.61','coconut','coconut',[99,81,71],'635147',6508871], ['nbs-iscc-m:coconutbrown.58','coconutbrown','coconut brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:codgrey.110','codgrey','cod grey',[91,88,66],'5b5842',5986370], ['nbs-iscc-m:codgrey.113','codgrey','cod grey',[87,85,76],'57554c',5723468], ['nbs-iscc-m:coeruleum.167','coeruleum','coeruleum',[0,133,161],'0085a1',34209], ['nbs-iscc-m:coeruleum.176','coeruleum','coeruleum',[0,161,194],'00a1c2',41410], ['nbs-iscc-m:coffee.58','coffee','coffee',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cognac.58','cognac','cognac',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:colcothar.43','colcothar','colcothar',[121,68,59],'79443b',7947323], ['nbs-iscc-m:colewortgreen.155','colewortgreen','colewort green',[125,137,132],'7d8984',8227204], ['nbs-iscc-m:colibri.164','colibri','colibri',[49,120,115],'317873',3242099], ['nbs-iscc-m:collie.80','collie','collie',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:colognebrown.58','colognebrown','cologne brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cologneearth.58','cologneearth','cologne earth',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cologneyellow.84','cologneyellow','cologne yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:colonial.179','colonial','colonial',[0,65,106],'00416a',16746], ['nbs-iscc-m:colonial.183','colonial','colonial',[0,48,78],'00304e',12366], ['nbs-iscc-m:colonial.197','colonial','colonial',[39,36,88],'272458',2565208], ['nbs-iscc-m:colonial.200','colonial','colonial',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:colonialbuff.86','colonialbuff','colonial buff',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:colonialbuff.89','colonialbuff','colonial buff',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:colonialyellow.87','colonialyellow','colonial yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:columbia.178','columbia','columbia',[0,103,165],'0067a5',26533], ['nbs-iscc-m:columbiablue.185','columbiablue','columbia blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:columbianred.43','columbianred','columbian red',[121,68,59],'79443b',7947323], ['nbs-iscc-m:columbineblue.200','columbineblue','columbine blue ',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:columbineblue.211','columbineblue','columbine blue ',[96,78,129],'604e81',6311553], ['nbs-iscc-m:columbinered.259','columbinered','columbine red ',[103,49,71],'673147',6762823], ['nbs-iscc-m:comet.183','comet','comet',[0,48,78],'00304e',12366], ['nbs-iscc-m:commelinablue.182','commelinablue','commelina blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:commodore.194','commodore','commodore',[48,38,122],'30267a',3155578], ['nbs-iscc-m:como.173','como','como',[54,117,136],'367588',3569032], ['nbs-iscc-m:conchshell.26','conchshell','conch shell',[248,131,121],'f88379',16286585], ['nbs-iscc-m:concord.212','concord','concord',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:condor.77','condor','condor',[130,102,68],'826644',8545860], ['nbs-iscc-m:confetti.3','confetti','confetti',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:confetti.15','confetti','confetti',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:congobrown.81','congobrown','congo [brown] ',[72,60,50],'483c32',4734002], ['nbs-iscc-m:congopink.39','congopink','congo pink',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:continentalblue.229','continentalblue','continental blue',[80,64,77],'50404d',5259341], ['nbs-iscc-m:continentalblue.235','continentalblue','continental blue',[36,33,36],'242124',2367780], ['nbs-iscc-m:cookie.58','cookie','cookie',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:coolie.200','coolie','coolie',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:coolie.201','coolie','coolie',[37,36,64],'252440',2434112], ['nbs-iscc-m:copenhagenblue.186','copenhagenblue','copenhagen [blue] ',[83,104,120],'536878',5466232], ['nbs-iscc-m:copenhagenblue.204','copenhagenblue','copenhagen [blue] ',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:copper.39','copper','copper',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:copperblue.182','copperblue','copper blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:copperbrown.55','copperbrown','copper brown',[128,70,27],'80461b',8406555], ['nbs-iscc-m:coppergreen.136','coppergreen','copper green',[103,146,103],'679267',6787687], ['nbs-iscc-m:copperleaf.43','copperleaf','copperleaf',[121,68,59],'79443b',7947323], ['nbs-iscc-m:copperlustre.55','copperlustre','copper lustre',[128,70,27],'80461b',8406555], ['nbs-iscc-m:copperred.39','copperred','copper red',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:copperrose.15','copperrose','copper rose',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:copperyellow.87','copperyellow','copper yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:copra.23','copra','copra',[92,80,79],'5c504f',6049871], ['nbs-iscc-m:coptic.43','coptic','coptic',[121,68,59],'79443b',7947323], ['nbs-iscc-m:coquelicot.11','coquelicot','coquelicot',[190,0,50],'be0032',12451890], ['nbs-iscc-m:coquelicot.34','coquelicot','coquelicot',[226,88,34],'e25822',14833698], ['nbs-iscc-m:coquette.26','coquette','coquette',[248,131,121],'f88379',16286585], ['nbs-iscc-m:coquette.29','coquette','coquette',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:coralbell.15','coralbell','coralbell',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:coralbell.37','coralbell','coralbell',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:coralblush.26','coralblush','coral blush',[248,131,121],'f88379',16286585], ['nbs-iscc-m:coralblush.27','coralblush','coral blush',[230,103,97],'e66761',15099745], ['nbs-iscc-m:coralblush.37','coralblush','coral blush',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:coralpink.29','coralpink','coral pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:coralred.3','coralred','coral [red] ',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:coralsands.29','coralsands','coral sands',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:coralsands.32','coralsands','coral sands',[199,173,163],'c7ada3',13086115], ['nbs-iscc-m:corcir.258','corcir','corcir',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:cordova.43','cordova','cordova',[121,68,59],'79443b',7947323], ['nbs-iscc-m:cordovan.81','cordovan','cordovan',[72,60,50],'483c32',4734002], ['nbs-iscc-m:cordovan.267','cordovan','cordovan',[34,34,34],'222222',2236962], ['nbs-iscc-m:corial.29','corial','corial',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:corial.42','corial','corial',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:corinth.262','corinth','corinth',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:corinthianpink.5','corinthianpink','corinthian pink',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:corinthianpink.18','corinthianpink','corinthian pink',[173,136,132],'ad8884',11372676], ['nbs-iscc-m:corinthianpurple.259','corinthianpurple','corinthian purple',[103,49,71],'673147',6762823], ['nbs-iscc-m:corinthianpurple.262','corinthianpurple','corinthian purple',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:corinthianred.19','corinthianred','corinthian red',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:cork.57','cork','cork',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:cork.258','cork','cork',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:corker.258','corker','corker',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:corkur.258','corkur','corkur',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:corn.87','corn','corn',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:cornelianred.39','cornelianred','cornelian red',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:cornflowerblue.200','cornflowerblue','cornflower [blue] ',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:cornhusk.73','cornhusk','cornhusk',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:cornhusk.76','cornhusk','cornhusk',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:cornsilk.86','cornsilk','cornsilk',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:coromandel.43','coromandel','coromandel',[121,68,59],'79443b',7947323], ['nbs-iscc-m:coronation.242','coronation','coronation',[93,57,84],'5d3954',6109524], ['nbs-iscc-m:coronation.259','coronation','coronation',[103,49,71],'673147',6762823], ['nbs-iscc-m:corsagegreen.144','corsagegreen','corsage green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:corsagegreen.163','corsagegreen','corsage green',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:corsair.183','corsair','corsair',[0,48,78],'00304e',12366], ['nbs-iscc-m:corsicanblue.200','corsicanblue','corsican blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:corsicanblue.201','corsicanblue','corsican blue',[37,36,64],'252440',2434112], ['nbs-iscc-m:corsicanblue.212','corsicanblue','corsican blue',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:corydalisgreen.122','corydalisgreen','corydalis green',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:cosmos.251','cosmos','cosmos',[193,126,145],'c17e91',12680849], ['nbs-iscc-m:cossack.150','cossack','cossack',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:cossackgreen.137','cossackgreen','cossack green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:cossegreen.120','cossegreen','cosse green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:cotch.58','cotch','cotch',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cotingapurple.219','cotingapurple','cotinga purple',[96,47,107],'602f6b',6303595], ['nbs-iscc-m:cotingapurple.224','cotingapurple','cotinga purple',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:cotingapurple.238','cotingapurple','cotinga purple',[112,41,99],'702963',7350627], ['nbs-iscc-m:cotingapurple.242','cotingapurple','cotinga purple',[93,57,84],'5d3954',6109524], ['nbs-iscc-m:cotrine.72','cotrine','cotrine',[190,138,61],'be8a3d',12487229], ['nbs-iscc-m:cotrine.76','cotrine','cotrine',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:courgegreen.103','courgegreen','courge green',[152,148,62],'98943e',9999422], ['nbs-iscc-m:courgegreen.106','courgegreen','courge green',[134,126,54],'867e36',8814134], ['nbs-iscc-m:courgegreen.120','courgegreen','courge green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:cowboy.58','cowboy','cowboy',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cowboy.61','cowboy','cowboy',[99,81,71],'635147',6508871], ['nbs-iscc-m:cowboy.77','cowboy','cowboy',[130,102,68],'826644',8545860], ['nbs-iscc-m:cowboy.80','cowboy','cowboy',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:cowslip.50','cowslip','cowslip',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:cowslip.53','cowslip','cowslip',[217,144,88],'d99058',14258264], ['nbs-iscc-m:crabapple.37','crabapple','crabapple',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:cracker.76','cracker','cracker',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:crag.113','crag','crag',[87,85,76],'57554c',5723468], ['nbs-iscc-m:crane.233','crane','crane',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:crash.90','crash','crash',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:crash.91','crash','crash',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:crash.94','crash','crash',[150,113,23],'967117',9859351], ['nbs-iscc-m:crash.109','crash','crash',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:crawshayred.38','crawshayred','crawshay red',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:crawshayred.55','crawshayred','crawshay red',[128,70,27],'80461b',8406555], ['nbs-iscc-m:crayonblue.186','crayonblue','crayon blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:cream.89','cream','cream',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:creambeige.42','creambeige','cream beige',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:creambeige.57','creambeige','cream beige',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:creambeige.60','creambeige','cream beige',[149,128,112],'958070',9797744], ['nbs-iscc-m:creambuff.89','creambuff','cream buff',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:creambuff.90','creambuff','cream buff',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:creole.54','creole','creole',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:creole.57','creole','creole',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:cressgreen.120','cressgreen','cress green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:cresson.120','cresson','cresson',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:crevette.26','crevette','crevette',[248,131,121],'f88379',16286585], ['nbs-iscc-m:crimsonlake.15','crimsonlake','crimson lake',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:crimsonmadder.11','crimsonmadder','crimson madder',[190,0,50],'be0032',12451890], ['nbs-iscc-m:crimsonmaple.41','crimsonmaple','crimson maple',[86,7,12],'56070c',5637900], ['nbs-iscc-m:croceus.53','croceus','croceus',[217,144,88],'d99058',14258264], ['nbs-iscc-m:croceus.71','croceus','croceus',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:crocreal.53','crocreal','crocreal',[217,144,88],'d99058',14258264], ['nbs-iscc-m:crocreal.71','crocreal','crocreal',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:crocus.53','crocus','crocus',[217,144,88],'d99058',14258264], ['nbs-iscc-m:crocus.71','crocus','crocus',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:crocus.244','crocus','crocus',[170,138,158],'aa8a9e',11176606], ['nbs-iscc-m:crocus.245','crocus','crocus',[131,100,121],'836479',8610937], ['nbs-iscc-m:crocusmartis.43','crocusmartis','crocus martis',[121,68,59],'79443b',7947323], ['nbs-iscc-m:crostil.258','crostil','crostil',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:crotal.258','crotal','crotal',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:crottle.258','crottle','crottle',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:crowshayred.38','crowshayred','crowshay red',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:crowshayred.55','crowshayred','crowshay red',[128,70,27],'80461b',8406555], ['nbs-iscc-m:cruiser.266','cruiser','cruiser',[85,85,85],'555555',5592405], ['nbs-iscc-m:crushedberry.19','crushedberry','crushed berry',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:crushedstrawberry.3','crushedstrawberry','crushed strawberry',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:crushedviolets.228','crushedviolets','crushed violets',[121,104,120],'796878',7956600], ['nbs-iscc-m:crystalgrey.233','crystalgrey','crystal grey',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:crystalpalaceblue.183','crystalpalaceblue','crystal palace blue',[0,48,78],'00304e',12366], ['nbs-iscc-m:crystalpalacegreen.113','crystalpalacegreen','crystal palace green',[87,85,76],'57554c',5723468], ['nbs-iscc-m:crystalsofvenus.136','crystalsofvenus','crystals of venus',[103,146,103],'679267',6787687], ['nbs-iscc-m:cub.113','cub','cub',[87,85,76],'57554c',5723468], ['nbs-iscc-m:cuba.16','cuba','cuba',[114,47,55],'722f37',7483191], ['nbs-iscc-m:cuba.43','cuba','cuba',[121,68,59],'79443b',7947323], ['nbs-iscc-m:cubansand.79','cubansand','cuban sand',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:cudbear.258','cudbear','cudbear',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:cuir.76','cuir','cuir',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:cuissedenymphe.89','cuissedenymphe','cuisse de nymphe',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:cullenearth.58','cullenearth','cullen earth',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cupidpink.29','cupidpink','cupid pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:cupreous.86','cupreous','cupreous',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:curcuma.86','curcuma','curcuma',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:currantred.12','currantred','currant [red] ',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:cutch.58','cutch','cutch',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:cuyahogared.16','cuyahogared','cuyahoga red',[114,47,55],'722f37',7483191], ['nbs-iscc-m:cyanblue.164','cyanblue','cyan blue',[49,120,115],'317873',3242099], ['nbs-iscc-m:cyanblue.173','cyanblue','cyan blue',[54,117,136],'367588',3569032], ['nbs-iscc-m:cyanineblue.176','cyanineblue','cyanine blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-m:cyanineblue.200','cyanineblue','cyanine blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:cyanineblue.201','cyanineblue','cyanine blue',[37,36,64],'252440',2434112], ['nbs-iscc-m:cyclamen.243','cyclamen','cyclamen',[52,23,49],'341731',3413809], ['nbs-iscc-m:cygnet.259','cygnet','cygnet',[103,49,71],'673147',6762823], ['nbs-iscc-m:cypressgreen.125','cypressgreen','cypress [green] ',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:cypressgreen.131','cypressgreen','cypress green',[68,148,74],'44944a',4494410], ['nbs-iscc-m:cyprusearth.77','cyprusearth','cyprus earth',[130,102,68],'826644',8545860], ['nbs-iscc-m:cyprusearth.78','cyprusearth','cyprus earth',[75,54,33],'4b3621',4929057], ['nbs-iscc-m:cyprusumber.77','cyprusumber','cyprus umber',[130,102,68],'826644',8545860], ['nbs-iscc-m:cyprusumber.78','cyprusumber','cyprus umber',[75,54,33],'4b3621',4929057], ['nbs-iscc-m:daffodileyellow.71','daffodileyellow','daffodile [yellow] ',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:daffodilyellow.50','daffodilyellow','daffodil yellow',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:daffodilyellow.53','daffodilyellow','daffodil yellow',[217,144,88],'d99058',14258264], ['nbs-iscc-m:daffodilyellow.68','daffodilyellow','daffodil yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:daffodilyellow.71','daffodilyellow','daffodil yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:dagestan.183','dagestan','dagestan',[0,48,78],'00304e',12366], ['nbs-iscc-m:dahlia.223','dahlia','dahlia',[134,96,142],'86608e',8806542], ['nbs-iscc-m:dahliacarmine.259','dahliacarmine','dahlia carmine',[103,49,71],'673147',6762823], ['nbs-iscc-m:dahliamauve.241','dahliamauve','dahlia mauve',[145,92,131],'915c83',9526403], ['nbs-iscc-m:dahliapurple.259','dahliapurple','dahlia purple',[103,49,71],'673147',6762823], ['nbs-iscc-m:dahliapurple.260','dahliapurple','dahlia purple',[56,21,44],'38152c',3675436], ['nbs-iscc-m:damascen.211','damascen','damascen',[96,78,129],'604e81',6311553], ['nbs-iscc-m:damascen.212','damascen','damascen',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:damask.19','damask','damask',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:damonico.26','damonico','damonico',[248,131,121],'f88379',16286585], ['nbs-iscc-m:damonico.37','damonico','damonico',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:damonico.50','damonico','damonico',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:damonico.53','damonico','damonico',[217,144,88],'d99058',14258264], ['nbs-iscc-m:damson.211','damson','damson',[96,78,129],'604e81',6311553], ['nbs-iscc-m:damson.212','damson','damson',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:dana.50','dana','danaë',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:dana.53','dana','danaë',[217,144,88],'d99058',14258264], ['nbs-iscc-m:dana.186','dana','danaë',[83,104,120],'536878',5466232], ['nbs-iscc-m:dandelion.83','dandelion','dandelion',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:dante.229','dante','dante',[80,64,77],'50404d',5259341], ['nbs-iscc-m:dante.242','dante','dante',[93,57,84],'5d3954',6109524], ['nbs-iscc-m:dante.259','dante','dante',[103,49,71],'673147',6762823], ['nbs-iscc-m:danubegreen.137','danubegreen','danube green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:danubegreen.151','danubegreen','danube green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:daphne.182','daphne','daphne',[67,107,149],'436b95',4418453], ['nbs-iscc-m:daphnepink.262','daphnepink','daphne pink',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:daphnered.258','daphnered','daphne red',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:daphnered.262','daphnered','daphne red',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:darkbeaver.58','darkbeaver','dark beaver',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:darkbeaver.61','darkbeaver','dark beaver',[99,81,71],'635147',6508871], ['nbs-iscc-m:darkcardinal.16','darkcardinal','dark cardinal',[114,47,55],'722f37',7483191], ['nbs-iscc-m:darkgobelinblue.173','darkgobelinblue','dark gobelin blue ',[54,117,136],'367588',3569032], ['nbs-iscc-m:darkgobelinblue.186','darkgobelinblue','dark gobelin blue ',[83,104,120],'536878',5466232], ['nbs-iscc-m:darkwedgwoodblue.200','darkwedgwoodblue','dark wedgwood [blue] ',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:darkwedgwoodblue.204','darkwedgwoodblue','dark wedgwood [blue] ',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:date.81','date','date',[72,60,50],'483c32',4734002], ['nbs-iscc-m:datura.223','datura','datura',[134,96,142],'86608e',8806542], ['nbs-iscc-m:dauphine.18','dauphine','dauphine',[173,136,132],'ad8884',11372676], ['nbs-iscc-m:davysgrey.266','davysgrey','davy\'s grey',[85,85,85],'555555',5592405], ['nbs-iscc-m:dawn.5','dawn','dawn',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:dawngrey.265','dawngrey','dawn grey ',[132,132,130],'848482',8684674], ['nbs-iscc-m:daybreak.210','daybreak','daybreak',[140,130,182],'8c82b6',9208502], ['nbs-iscc-m:daybreak.222','daybreak','daybreak',[182,149,192],'b695c0',11965888], ['nbs-iscc-m:daytona.63','daytona','daytona',[142,130,121],'8e8279',9339513], ['nbs-iscc-m:dbutantepink.5','dbutantepink','débutante pink ',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:deadcarnations.258','deadcarnations','dead carnations',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:deadleaf.51','deadleaf','dead leaf',[190,101,22],'be6516',12477718], ['nbs-iscc-m:deadleaf.54','deadleaf','dead leaf',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:deadleaf.55','deadleaf','dead leaf',[128,70,27],'80461b',8406555], ['nbs-iscc-m:deauvillesand.45','deauvillesand','deauville sand',[151,127,115],'977f73',9928563], ['nbs-iscc-m:deauvillesand.60','deauvillesand','deauville sand',[149,128,112],'958070',9797744], ['nbs-iscc-m:deepbrunswickgreen.146','deepbrunswickgreen','deep brunswick green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-m:deepchromegreen.137','deepchromegreen','deep chrome green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:deepchromeyellow.71','deepchromeyellow','deep chrome yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:deepstone.88','deepstone','deep stone',[171,145,68],'ab9144',11243844], ['nbs-iscc-m:deepstone.91','deepstone','deep stone',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:deepstone.94','deepstone','deep stone',[150,113,23],'967117',9859351], ['nbs-iscc-m:deer.80','deer','deer',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:delftblue.204','delftblue','delft blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:dellarobbia.196','dellarobbia','della robbia',[84,90,167],'545aa7',5528231], ['nbs-iscc-m:delmonte.228','delmonte','del monte',[121,104,120],'796878',7956600], ['nbs-iscc-m:delphinium.177','delphinium','delphinium',[73,151,208],'4997d0',4822992], ['nbs-iscc-m:delphinium.178','delphinium','delphinium',[0,103,165],'0067a5',26533], ['nbs-iscc-m:delphinium.181','delphinium','delphinium',[112,163,204],'70a3cc',7381964], ['nbs-iscc-m:demedici.259','demedici','de\'medici ',[103,49,71],'673147',6762823], ['nbs-iscc-m:denmark.186','denmark','denmark',[83,104,120],'536878',5466232], ['nbs-iscc-m:denver.265','denver','denver',[132,132,130],'848482',8684674], ['nbs-iscc-m:derbyblue.212','derbyblue','derby blue',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:desert.76','desert','desert',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:devilsred.12','devilsred','devil\'s red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:devilsred.15','devilsred','devil\'s red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:devonbrown.19','devonbrown','devon [brown] ',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:deweyred.12','deweyred','dewey red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:deweyred.15','deweyred','dewey red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:dewkiss.150','dewkiss','dewkiss',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:diadem.227','diadem','diadem',[170,152,169],'aa98a9',11180201], ['nbs-iscc-m:diana.181','diana','diana',[112,163,204],'70a3cc',7381964], ['nbs-iscc-m:dianthus.15','dianthus','dianthus',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:dianthus.19','dianthus','dianthus',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:diavolo.19','diavolo','diavolo',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:digitalis.228','digitalis','digitalis',[121,104,120],'796878',7956600], ['nbs-iscc-m:dipalito.71','dipalito','di palito',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:directoireblue.176','directoireblue','directoire blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-m:directoireblue.178','directoireblue','directoire blue',[0,103,165],'0067a5',26533], ['nbs-iscc-m:distilledgreen.136','distilledgreen','distilled green',[103,146,103],'679267',6787687], ['nbs-iscc-m:divablue.178','divablue','diva blue',[0,103,165],'0067a5',26533], ['nbs-iscc-m:divablue.182','divablue','diva blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:doe.57','doe','doe',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:doe.60','doe','doe',[149,128,112],'958070',9797744], ['nbs-iscc-m:doe.76','doe','doe',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:doe.79','doe','doe',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:doeskinbrown.42','doeskinbrown','doe-skin brown',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:doge.15','doge','doge',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:dogwood.57','dogwood','dogwood',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:dogwood.58','dogwood','dogwood',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:dogwood.77','dogwood','dogwood',[130,102,68],'826644',8545860], ['nbs-iscc-m:dollypink.15','dollypink','dolly pink',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:domingo.43','domingo','domingo',[121,68,59],'79443b',7947323], ['nbs-iscc-m:domingobrown.59','domingobrown','domingo brown',[66,37,24],'422518',4334872], ['nbs-iscc-m:dorado.76','dorado','dorado',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:doubloon.53','doubloon','doubloon',[217,144,88],'d99058',14258264], ['nbs-iscc-m:dove.266','dove','dove',[85,85,85],'555555',5592405], ['nbs-iscc-m:dove.259','dove','dove',[103,49,71],'673147',6762823], ['nbs-iscc-m:dovegrey.233','dovegrey','dove grey',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:dovergrey.266','dovergrey','dover grey',[85,85,85],'555555',5592405], ['nbs-iscc-m:dozer.183','dozer','dozer',[0,48,78],'00304e',12366], ['nbs-iscc-m:drab.94','drab','drab',[150,113,23],'967117',9859351], ['nbs-iscc-m:drabolive.110','drabolive','drabolive ',[91,88,66],'5b5842',5986370], ['nbs-iscc-m:dragonfly.174','dragonfly','dragonfly',[0,73,88],'004958',18776], ['nbs-iscc-m:dragonsblood.19','dragonsblood','dragon\'s blood',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:dragonsblood.39','dragonsblood','dragon\'s blood',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:dragonsblood.42','dragonsblood','dragon\'s blood',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:drake.174','drake','drake',[0,73,88],'004958',18776], ['nbs-iscc-m:drakesneckgreen.174','drakesneckgreen','drake\'s-neck green',[0,73,88],'004958',18776], ['nbs-iscc-m:dregsofwine.16','dregsofwine','dregs of wine',[114,47,55],'722f37',7483191], ['nbs-iscc-m:dregsofwine.41','dregsofwine','dregs of wine',[86,7,12],'56070c',5637900], ['nbs-iscc-m:dregsofwine.44','dregsofwine','dregs of wine',[62,29,30],'3e1d1e',4070686], ['nbs-iscc-m:dresdenblue.182','dresdenblue','dresden blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:dresdenbrown.77','dresdenbrown','dresden brown',[130,102,68],'826644',8545860], ['nbs-iscc-m:dresdenbrown.94','dresdenbrown','dresden brown',[150,113,23],'967117',9859351], ['nbs-iscc-m:dresdenbrown.95','dresdenbrown','dresden brown',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:dryad.150','dryad','dryad',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:dryrose.19','dryrose','dry rose',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:dryrose.43','dryrose','dry rose',[121,68,59],'79443b',7947323], ['nbs-iscc-m:dubarry.26','dubarry','du barry',[248,131,121],'f88379',16286585], ['nbs-iscc-m:duckblue.169','duckblue','duck blue',[0,119,145],'007791',30609], ['nbs-iscc-m:duckgreen.165','duckgreen','duck green',[0,75,73],'004b49',19273], ['nbs-iscc-m:duckling.174','duckling','duckling',[0,73,88],'004958',18776], ['nbs-iscc-m:duckling.187','duckling','duckling',[54,69,79],'36454f',3556687], ['nbs-iscc-m:duckwing.204','duckwing','duck-wing',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:dugueslin.183','dugueslin','du gueslin',[0,48,78],'00304e',12366], ['nbs-iscc-m:dugueslin.201','dugueslin','du gueslin',[37,36,64],'252440',2434112], ['nbs-iscc-m:dugueslin.204','dugueslin','du gueslin',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:dumontsblue.179','dumontsblue','dumont\'s blue',[0,65,106],'00416a',16746], ['nbs-iscc-m:dumontsblue.182','dumontsblue','dumont\'s blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:dune.109','dune','dune',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:durango.58','durango','durango',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:dusk.234','dusk','dusk',[93,85,91],'5d555b',6116699], ['nbs-iscc-m:dust.94','dust','dust',[150,113,23],'967117',9859351], ['nbs-iscc-m:dustygreen.109','dustygreen','dusty green',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:dutchazure.179','dutchazure','dutch azure',[0,65,106],'00416a',16746], ['nbs-iscc-m:dutchazure.182','dutchazure','dutch azure',[67,107,149],'436b95',4418453], ['nbs-iscc-m:dutchblue.186','dutchblue','dutch blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:dutchorange.68','dutchorange','dutch orange',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:dutchorange.71','dutchorange','dutch orange',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:dutchpink.83','dutchpink','dutch pink',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:dutchpink.84','dutchpink','dutch pink',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:dutchpink.86','dutchpink','dutch pink',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:dutchpink.87','dutchpink','dutch pink',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:dutchscarlet.11','dutchscarlet','dutch scarlet',[190,0,50],'be0032',12451890], ['nbs-iscc-m:dutchvermilion.34','dutchvermilion','dutch vermilion',[226,88,34],'e25822',14833698], ['nbs-iscc-m:dutchwareblue.204','dutchwareblue','dutch ware blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:dyersbroom.101','dyersbroom','dyer\'s broom',[234,230,121],'eae679',15394425], ['nbs-iscc-m:dyersbroom.102','dyersbroom','dyer\'s broom',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:dyersgreenwood.101','dyersgreenwood','dyer\'s greenwood',[234,230,121],'eae679',15394425], ['nbs-iscc-m:dyersgreenwood.102','dyersgreenwood','dyer\'s greenwood',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:dyerssaffron.11','dyerssaffron','dyer\'s saffron',[190,0,50],'be0032',12451890], ['nbs-iscc-m:eagle.64','eagle','eagle',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:eaudejavelgreen.102','eaudejavelgreen','eau-de-javel green',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:eaudenile.120','eaudenile','eau-de-nile',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:eaudenile.121','eaudenile','eau-de-nile',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:eaudenile.135','eaudenile','eau-de-nile',[147,197,146],'93c592',9684370], ['nbs-iscc-m:eburnean.89','eburnean','eburnean',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:ecclesiastic.236','ecclesiastic','ecclesiastic',[135,0,116],'870074',8847476], ['nbs-iscc-m:ecclesiastic.237','ecclesiastic','ecclesiastic',[158,79,136],'9e4f88',10375048], ['nbs-iscc-m:ecru.89','ecru','ecru',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:ecru.90','ecru','ecru',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:edengreen.131','edengreen','eden green',[68,148,74],'44944a',4494410], ['nbs-iscc-m:edengreen.136','edengreen','eden green',[103,146,103],'679267',6787687], ['nbs-iscc-m:eggplant.230','eggplant','eggplant',[41,30,41],'291e29',2694697], ['nbs-iscc-m:eggplant.235','eggplant','eggplant',[36,33,36],'242124',2367780], ['nbs-iscc-m:eggshellblue.149','eggshellblue','eggshell blue',[141,163,153],'8da399',9282457], ['nbs-iscc-m:eggshellblue.163','eggshellblue','eggshell blue',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:eggshellgreen.149','eggshellgreen','eggshell green',[141,163,153],'8da399',9282457], ['nbs-iscc-m:eggshellgreen.163','eggshellgreen','eggshell green',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:eglantine.254','eglantine','eglantine',[206,70,118],'ce4676',13518454], ['nbs-iscc-m:egypt.178','egypt','egypt',[0,103,165],'0067a5',26533], ['nbs-iscc-m:egyptian.19','egyptian','egyptian',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:egyptianblue.176','egyptianblue','egyptian blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-m:egyptianblue.178','egyptianblue','egyptian blue',[0,103,165],'0067a5',26533], ['nbs-iscc-m:egyptianbrown.81','egyptianbrown','egyptian brown',[72,60,50],'483c32',4734002], ['nbs-iscc-m:egyptiangreen.145','egyptiangreen','egyptian green',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:egyptianred.16','egyptianred','egyptian red',[114,47,55],'722f37',7483191], ['nbs-iscc-m:egyptianred.40','egyptianred','egyptian red',[136,45,23],'882d17',8924439], ['nbs-iscc-m:eifel.19','eifel','eifel',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:eifel.43','eifel','eifel',[121,68,59],'79443b',7947323], ['nbs-iscc-m:elderberry.212','elderberry','elderberry',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:eldorado.54','eldorado','eldorado',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:electricblue.186','electricblue','electric [blue] ',[83,104,120],'536878',5466232], ['nbs-iscc-m:electricgreen.186','electricgreen','electric green',[83,104,120],'536878',5466232], ['nbs-iscc-m:elephantgreen.138','elephantgreen','elephant green',[23,54,32],'173620',1521184], ['nbs-iscc-m:elephantskin.64','elephantskin','elephant skin',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:elf.144','elf','elf',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:elf.149','elf','elf',[141,163,153],'8da399',9282457], ['nbs-iscc-m:elfingreen.144','elfingreen','elfin green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:elk.81','elk','elk',[72,60,50],'483c32',4734002], ['nbs-iscc-m:elmgreen.125','elmgreen','elm green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:elmwood.79','elmwood','elmwood',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:elmwood.94','elmwood','elmwood',[150,113,23],'967117',9859351], ['nbs-iscc-m:email.164','email','email',[49,120,115],'317873',3242099], ['nbs-iscc-m:email.173','email','email',[54,117,136],'367588',3569032], ['nbs-iscc-m:ember.15','ember','ember',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:emberglow.15','emberglow','emberglow',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:emberglow.27','emberglow','emberglow',[230,103,97],'e66761',15099745], ['nbs-iscc-m:emberglow.37','emberglow','emberglow',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:emeraldgreen.136','emeraldgreen','emerald green',[103,146,103],'679267',6787687], ['nbs-iscc-m:emeraldgreen.140','emeraldgreen','emerald green',[62,180,137],'3eb489',4109449], ['nbs-iscc-m:emeraude.136','emeraude','emeraude',[103,146,103],'679267',6787687], ['nbs-iscc-m:emeraude.141','emeraude','emeraude',[0,121,89],'007959',31065], ['nbs-iscc-m:emeraude.145','emeraude','emeraude',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:eminence.224','eminence','eminence',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:emperorgreen.140','emperorgreen','emperor green',[62,180,137],'3eb489',4109449], ['nbs-iscc-m:empire.141','empire','empire',[0,121,89],'007959',31065], ['nbs-iscc-m:empireblue.182','empireblue','empire blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:empiregreen.137','empiregreen','empire green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:empiregreen.151','empiregreen','empire green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:empireyellow.83','empireyellow','empire yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:empireyellow.86','empireyellow','empire yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:enamelblue.179','enamelblue','enamel blue',[0,65,106],'00416a',16746], ['nbs-iscc-m:enamelblue.182','enamelblue','enamel blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:endive.98','endive','endive',[233,228,80],'e9e450',15328336], ['nbs-iscc-m:endive.101','endive','endive',[234,230,121],'eae679',15394425], ['nbs-iscc-m:endiveblue.185','endiveblue','endive blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:endiveblue.227','endiveblue','endive blue',[170,152,169],'aa98a9',11180201], ['nbs-iscc-m:englishblue.182','englishblue','english blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:englishgreen.117','englishgreen','english green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-m:englishgreen.131','englishgreen','english green',[68,148,74],'44944a',4494410], ['nbs-iscc-m:englishgreen.146','englishgreen','english green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-m:englishgrey.113','englishgrey','english grey ',[87,85,76],'57554c',5723468], ['nbs-iscc-m:englishinde.229','englishinde','english inde',[80,64,77],'50404d',5259341], ['nbs-iscc-m:englishivy.137','englishivy','english ivy',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:englishoak.58','englishoak','english oak',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:englishochre.71','englishochre','english ochre',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:englishpink.83','englishpink','english pink',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:englishpink.84','englishpink','english pink',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:englishpink.86','englishpink','english pink',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:englishpink.87','englishpink','english pink',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:englishred.12','englishred','english red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:englishred.15','englishred','english red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:englishred.35','englishred','english red',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:englishred.37','englishred','english red',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:englishred.38','englishred','english red',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:englishred.55','englishred','english red',[128,70,27],'80461b',8406555], ['nbs-iscc-m:englishred.43','englishred','english red',[121,68,59],'79443b',7947323], ['nbs-iscc-m:englishvermilion.12','englishvermilion','english vermilion',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:englishviolet.224','englishviolet','english violet',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:ensign.183','ensign','ensign',[0,48,78],'00304e',12366], ['nbs-iscc-m:epinauche.151','epinauche','epinauche',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:epsom.120','epsom','epsom',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:erin.145','erin','erin',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:erlaugreen.136','erlaugreen','erlau green',[103,146,103],'679267',6787687], ['nbs-iscc-m:escadre.186','escadre','escadre',[83,104,120],'536878',5466232], ['nbs-iscc-m:eschel.179','eschel','eschel',[0,65,106],'00416a',16746], ['nbs-iscc-m:eschel.182','eschel','eschel',[67,107,149],'436b95',4418453], ['nbs-iscc-m:eskimo.43','eskimo','eskimo',[121,68,59],'79443b',7947323], ['nbs-iscc-m:estheticgrey.155','estheticgrey','esthetic grey',[125,137,132],'7d8984',8227204], ['nbs-iscc-m:etainblue.148','etainblue','etain blue',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-m:etainblue.184','etainblue','etain blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-m:etainblue.148','etainblue','etain blue',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-m:etainblue.162','etainblue','etain blue',[150,222,209],'96ded1',9887441], ['nbs-iscc-m:etainblue.171','etainblue','etain blue',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-m:etainblue.184','etainblue','etain blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-m:etang.149','etang','etang',[141,163,153],'8da399',9282457], ['nbs-iscc-m:etang.154','etang','etang',[178,190,181],'b2beb5',11714229], ['nbs-iscc-m:ether.172','ether','ether',[102,170,188],'66aabc',6728380], ['nbs-iscc-m:etherealblue.181','etherealblue','ethereal blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-m:etherealblue.199','etherealblue','ethereal blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-m:etonblue.163','etonblue','eton blue',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:etruscan.43','etruscan','etruscan',[121,68,59],'79443b',7947323], ['nbs-iscc-m:etruscan.58','etruscan','etruscan',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:etruscanred.39','etruscanred','etruscan red',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:eucalyptusgreen.90','eucalyptusgreen','eucalyptus [green] ',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:eucalyptusgreen.122','eucalyptusgreen','eucalyptus [green] ',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:eugeniared.15','eugeniared','eugenia red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:eugenie.228','eugenie','eugenie',[121,104,120],'796878',7956600], ['nbs-iscc-m:eupatoriumpurple.241','eupatoriumpurple','eupatorium purple',[145,92,131],'915c83',9526403], ['nbs-iscc-m:eurekared.16','eurekared','eureka red',[114,47,55],'722f37',7483191], ['nbs-iscc-m:evegreen.98','evegreen','eve green',[233,228,80],'e9e450',15328336], ['nbs-iscc-m:evegreen.130','evegreen','eve green',[131,211,125],'83d37d',8639357], ['nbs-iscc-m:evegreen.131','evegreen','eve green',[68,148,74],'44944a',4494410], ['nbs-iscc-m:evenglow.22','evenglow','evenglow',[143,129,127],'8f817f',9404799], ['nbs-iscc-m:eventide.214','eventide','eventide',[150,144,171],'9690ab',9867435], ['nbs-iscc-m:everglade.267','everglade','everglade',[34,34,34],'222222',2236962], ['nbs-iscc-m:evergreen.137','evergreen','evergreen',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:evque.224','evque','evêque',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:fadedrose.19','fadedrose','faded rose',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:faience.169','faience','faience',[0,119,145],'007791',30609], ['nbs-iscc-m:faience.173','faience','faience',[54,117,136],'367588',3569032], ['nbs-iscc-m:fairway.152','fairway','fairway',[26,36,33],'1a2421',1713185], ['nbs-iscc-m:fairygreen.136','fairygreen','fairy green ',[103,146,103],'679267',6787687], ['nbs-iscc-m:fakir.73','fakir','fakir',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:falcon.62','falcon','falcon',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:fallow.76','fallow','fallow',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:fandango.254','fandango','fandango',[206,70,118],'ce4676',13518454], ['nbs-iscc-m:faon.45','faon','faon',[151,127,115],'977f73',9928563], ['nbs-iscc-m:faon.58','faon','faon',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:faon.60','faon','faon',[149,128,112],'958070',9797744], ['nbs-iscc-m:faon.61','faon','faon',[99,81,71],'635147',6508871], ['nbs-iscc-m:fashiongray.266','fashiongray','fashion gray',[85,85,85],'555555',5592405], ['nbs-iscc-m:fawnbrown.45','fawnbrown','fawn [brown] ',[151,127,115],'977f73',9928563], ['nbs-iscc-m:fawnbrown.58','fawnbrown','fawn [brown] ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:fawnbrown.60','fawnbrown','fawn [brown] ',[149,128,112],'958070',9797744], ['nbs-iscc-m:fawnbrown.61','fawnbrown','fawn [brown] ',[99,81,71],'635147',6508871], ['nbs-iscc-m:feldspar.144','feldspar','feldspar',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:fern.120','fern','fern',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:fernambucowood.15','fernambucowood','fernambucowood',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:fernambucowood.19','fernambucowood','fernambucowood',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:ferngreen.120','ferngreen','fern green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:ferngreen.122','ferngreen','fern green',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:ferruginous.38','ferruginous','ferruginous',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:ferruginous.55','ferruginous','ferruginous',[128,70,27],'80461b',8406555], ['nbs-iscc-m:feuille.58','feuille','feuille',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:feuillemorte.51','feuillemorte','feuille morte',[190,101,22],'be6516',12477718], ['nbs-iscc-m:feuillemorte.54','feuillemorte','feuille morte',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:feuillemorte.55','feuillemorte','feuille morte',[128,70,27],'80461b',8406555], ['nbs-iscc-m:feulamort.51','feulamort','feulamort',[190,101,22],'be6516',12477718], ['nbs-iscc-m:feulamort.54','feulamort','feulamort',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:feulamort.55','feulamort','feulamort',[128,70,27],'80461b',8406555], ['nbs-iscc-m:fez.11','fez','fez',[190,0,50],'be0032',12451890], ['nbs-iscc-m:fieldsorangevermilion.35','fieldsorangevermilion','field\'s orange vermilion',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:fieryred.34','fieryred','fiery red',[226,88,34],'e25822',14833698], ['nbs-iscc-m:fiesta.3','fiesta','fiesta',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:fieulamort.51','fieulamort','fieulamort',[190,101,22],'be6516',12477718], ['nbs-iscc-m:fieulamort.54','fieulamort','fieulamort',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:fieulamort.55','fieulamort','fieulamort',[128,70,27],'80461b',8406555], ['nbs-iscc-m:filbertbrown.57','filbertbrown','filbert [brown] ',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:filbertbrown.74','filbertbrown','filbert [brown] ',[153,101,21],'996515',10052885], ['nbs-iscc-m:filemot.51','filemot','filemot',[190,101,22],'be6516',12477718], ['nbs-iscc-m:filemot.54','filemot','filemot',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:filemot.55','filemot','filemot',[128,70,27],'80461b',8406555], ['nbs-iscc-m:fillemot.51','fillemot','fillemot',[190,101,22],'be6516',12477718], ['nbs-iscc-m:fillemot.54','fillemot','fillemot',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:fillemot.55','fillemot','fillemot',[128,70,27],'80461b',8406555], ['nbs-iscc-m:firecracker.34','firecracker','firecracker',[226,88,34],'e25822',14833698], ['nbs-iscc-m:firefly.12','firefly','firefly',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:firefly.15','firefly','firefly',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:firered.34','firered','fire red',[226,88,34],'e25822',14833698], ['nbs-iscc-m:firescarlet.11','firescarlet','fire scarlet',[190,0,50],'be0032',12451890], ['nbs-iscc-m:fireweed.219','fireweed','fireweed',[96,47,107],'602f6b',6303595], ['nbs-iscc-m:firgreen.137','firgreen','fir [green] ',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:firgreen.138','firgreen','fir [green] ',[23,54,32],'173620',1521184], ['nbs-iscc-m:firgreen.151','firgreen','fir [green] ',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:firmament.186','firmament','firmament',[83,104,120],'536878',5466232], ['nbs-iscc-m:firmamentblue.172','firmamentblue','firmament blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-m:fishgrey.110','fishgrey','fish grey ',[91,88,66],'5b5842',5986370], ['nbs-iscc-m:fishgrey.113','fishgrey','fish grey ',[87,85,76],'57554c',5723468], ['nbs-iscc-m:flag.212','flag','flag',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:flameblue.200','flameblue','flame blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:flameblue.204','flameblue','flame blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:flameorange.34','flameorange','flame orange',[226,88,34],'e25822',14833698], ['nbs-iscc-m:flamescarlet.34','flamescarlet','flame [scarlet] ',[226,88,34],'e25822',14833698], ['nbs-iscc-m:flamingmaple.11','flamingmaple','flaming maple',[190,0,50],'be0032',12451890], ['nbs-iscc-m:flamingmaple.12','flamingmaple','flaming maple',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:flamingmaple.13','flamingmaple','flaming maple',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:flamingmaple.15','flamingmaple','flaming maple',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:flamingo.37','flamingo','flamingo',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:flammeous.35','flammeous','flammeous',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:flash.12','flash','flash',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:flash.15','flash','flash',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:flash.36','flash','flash',[170,56,30],'aa381e',11155486], ['nbs-iscc-m:flash.38','flash','flash',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:flax.90','flax','flax',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:flaxen.90','flaxen','flaxen',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:flaxflowerblossom.186','flaxflowerblossom','flaxflower blossom',[83,104,120],'536878',5466232], ['nbs-iscc-m:flaxflowerblue.182','flaxflowerblue','flaxflower blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:flaxflowerblue.199','flaxflowerblue','flaxflower blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-m:flea.16','flea','flea',[114,47,55],'722f37',7483191], ['nbs-iscc-m:flemishblue.187','flemishblue','flemish blue',[54,69,79],'36454f',3556687], ['nbs-iscc-m:flesh.73','flesh','flesh',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:flesh.93','flesh','flesh',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:fleshblond.29','fleshblond','flesh blond',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:fleshblond.32','fleshblond','flesh blond',[199,173,163],'c7ada3',13086115], ['nbs-iscc-m:fleshblond.33','fleshblond','flesh blond',[194,172,153],'c2ac99',12758169], ['nbs-iscc-m:fleshochre.38','fleshochre','flesh ochre',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:fleurdelys.223','fleurdelys','fleur-de-lys',[134,96,142],'86608e',8806542], ['nbs-iscc-m:flint.267','flint','flint',[34,34,34],'222222',2236962], ['nbs-iscc-m:flintgrey.265','flintgrey','flint grey',[132,132,130],'848482',8684674], ['nbs-iscc-m:flirt.15','flirt','flirt',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:florencebrown.19','florencebrown','florence brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:florenceearth.43','florenceearth','florence earth',[121,68,59],'79443b',7947323], ['nbs-iscc-m:florentine.34','florentine','florentine',[226,88,34],'e25822',14833698], ['nbs-iscc-m:florentinelake.11','florentinelake','florentine lake',[190,0,50],'be0032',12451890], ['nbs-iscc-m:florentinelake.12','florentinelake','florentine lake',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:floridagold.68','floridagold','florida gold',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:floridagold.71','floridagold','florida gold',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:flossflowerblue.227','flossflowerblue','floss flower blue',[170,152,169],'aa98a9',11180201], ['nbs-iscc-m:flowerdelucegreen.137','flowerdelucegreen','flower de luce green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:fluoritegreen.136','fluoritegreen','fluorite green',[103,146,103],'679267',6787687], ['nbs-iscc-m:fluoriteviolet.224','fluoriteviolet','fluorite violet',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:fluoriteviolet.225','fluoriteviolet','fluorite violet',[48,25,52],'301934',3152180], ['nbs-iscc-m:fog.264','fog','fog',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-m:foliagebrown.51','foliagebrown','foliage brown',[190,101,22],'be6516',12477718], ['nbs-iscc-m:foliagebrown.54','foliagebrown','foliage brown',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:foliagebrown.55','foliagebrown','foliage brown',[128,70,27],'80461b',8406555], ['nbs-iscc-m:foliagegreen.120','foliagegreen','foliage green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:folimort.51','folimort','folimort',[190,101,22],'be6516',12477718], ['nbs-iscc-m:folimort.54','folimort','folimort',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:folimort.55','folimort','folimort',[128,70,27],'80461b',8406555], ['nbs-iscc-m:folkstone.79','folkstone','folkstone',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:folly.11','folly','folly',[190,0,50],'be0032',12451890], ['nbs-iscc-m:folly.12','folly','folly',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:fontainebleau.19','fontainebleau','fontainebleau',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:forest.151','forest','forest',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:forestgreen.125','forestgreen','forest green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:forestofdeanred.38','forestofdeanred','forest of dean red',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:forestofdeanred.55','forestofdeanred','forest of dean red',[128,70,27],'80461b',8406555], ['nbs-iscc-m:forgetmenotblue.185','forgetmenotblue','forget-me-not [blue] ',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:forgetmenotblue.186','forgetmenotblue','forget-me-not [blue] ',[83,104,120],'536878',5466232], ['nbs-iscc-m:formosa.53','formosa','formosa',[217,144,88],'d99058',14258264], ['nbs-iscc-m:formosa.57','formosa','formosa',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:forsythia.71','forsythia','forsythia',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:fox.77','fox','fox',[130,102,68],'826644',8545860], ['nbs-iscc-m:fox.94','fox','fox',[150,113,23],'967117',9859351], ['nbs-iscc-m:fox.95','fox','fox',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:foxglove.207','foxglove','foxglove',[96,78,151],'604e97',6311575], ['nbs-iscc-m:foxglove.211','foxglove','foxglove',[96,78,129],'604e81',6311553], ['nbs-iscc-m:foxtrot.163','foxtrot','fox trot',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:fragonard.15','fragonard','fragonard',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:france.183','france','france',[0,48,78],'00304e',12366], ['nbs-iscc-m:francerose.3','francerose','france rose',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:francerose.24','francerose','france rose',[40,32,34],'282022',2629666], ['nbs-iscc-m:freedom.183','freedom','freedom',[0,48,78],'00304e',12366], ['nbs-iscc-m:freestone.73','freestone','freestone',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:frenchbeige.57','frenchbeige','french beige',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:frenchberries.68','frenchberries','french berries',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:frenchberries.71','frenchberries','french berries',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:frenchblue.178','frenchblue','french blue',[0,103,165],'0067a5',26533], ['nbs-iscc-m:frenchblue.196','frenchblue','french blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-m:frenchgreen.136','frenchgreen','french green',[103,146,103],'679267',6787687], ['nbs-iscc-m:frenchgreen.145','frenchgreen','french green',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:frenchgrey.154','frenchgrey','french grey',[178,190,181],'b2beb5',11714229], ['nbs-iscc-m:frenchgrey.264','frenchgrey','french grey',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-m:frenchlilac.223','frenchlilac','french lilac',[134,96,142],'86608e',8806542], ['nbs-iscc-m:frenchlilac.228','frenchlilac','french lilac',[121,104,120],'796878',7956600], ['nbs-iscc-m:frenchmaroon.19','frenchmaroon','french maroon',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:frenchnude.45','frenchnude','french nude',[151,127,115],'977f73',9928563], ['nbs-iscc-m:frenchnude.57','frenchnude','french nude',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:frenchnude.60','frenchnude','french nude',[149,128,112],'958070',9797744], ['nbs-iscc-m:frenchochre.71','frenchochre','french ochre',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:frenchpink.73','frenchpink','french pink',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:frenchpink.87','frenchpink','french pink',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:frenchpurple.258','frenchpurple','french purple',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:frenchscarlet.11','frenchscarlet','french scarlet',[190,0,50],'be0032',12451890], ['nbs-iscc-m:frenchultramarine.178','frenchultramarine','french ultramarine',[0,103,165],'0067a5',26533], ['nbs-iscc-m:frenchultramarine.196','frenchultramarine','french ultramarine',[84,90,167],'545aa7',5528231], ['nbs-iscc-m:frenchvermilion.34','frenchvermilion','french vermilion',[226,88,34],'e25822',14833698], ['nbs-iscc-m:frenchveronesegreen.141','frenchveronesegreen','[french] veronese green ',[0,121,89],'007959',31065], ['nbs-iscc-m:frenchveronesegreen.145','frenchveronesegreen','[french] veronese green ',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:frenchwhite.232','frenchwhite','french white',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-m:frenchwhite.252','frenchwhite','french white',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-m:frenchyellow.54','frenchyellow','french yellow',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:frenchyellow.74','frenchyellow','french yellow',[153,101,21],'996515',10052885], ['nbs-iscc-m:frenchyellow.57','frenchyellow','french yellow',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:friar.61','friar','friar',[99,81,71],'635147',6508871], ['nbs-iscc-m:friar.62','friar','friar',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:frostgrey.265','frostgrey','frost grey',[132,132,130],'848482',8684674], ['nbs-iscc-m:frostygreen.151','frostygreen','frosty green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:fuchsia.236','fuchsia','fuchsia',[135,0,116],'870074',8847476], ['nbs-iscc-m:fudge.58','fudge','fudge',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:fujiyama.43','fujiyama','fujiyama',[121,68,59],'79443b',7947323], ['nbs-iscc-m:fuscous.64','fuscous','fuscous',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:fustet.83','fustet','fustet',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:fustet.84','fustet','fustet',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:fustic.87','fustic','fustic',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:fustic.90','fustic','fustic',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:gagegreen.122','gagegreen','gage green',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:gaiety.3','gaiety','gaiety',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:galleon.62','galleon','galleon',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:gallstone.84','gallstone','gallstone',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:gambia.58','gambia','gambia',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:gamboge.84','gamboge','gamboge',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:gardeniagreen.151','gardeniagreen','gardenia green ',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:gargoyle.266','gargoyle','gargoyle',[85,85,85],'555555',5592405], ['nbs-iscc-m:garlandgreen.125','garlandgreen','garland green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:garlandgreen.137','garlandgreen','garland green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:garnet.16','garnet','garnet',[114,47,55],'722f37',7483191], ['nbs-iscc-m:garnetbrown.16','garnetbrown','garnet brown',[114,47,55],'722f37',7483191], ['nbs-iscc-m:garnetbrown.43','garnetbrown','garnet brown',[121,68,59],'79443b',7947323], ['nbs-iscc-m:garnetred.13','garnetred','garnet red',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:garnetred.16','garnetred','garnet red',[114,47,55],'722f37',7483191], ['nbs-iscc-m:garterblue.204','garterblue','garter blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:gaude.101','gaude','gaude',[234,230,121],'eae679',15394425], ['nbs-iscc-m:gaude.102','gaude','gaude',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:gaudelake.86','gaudelake','gaude lake',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:gaudygreen.120','gaudygreen','gaudy green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:gaudygreen.125','gaudygreen','gaudy green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:gaygreen.120','gaygreen','gay green ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:gazellebrown.61','gazellebrown','gazelle [brown] ',[99,81,71],'635147',6508871], ['nbs-iscc-m:gazellebrown.80','gazellebrown','gazelle [brown] ',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:geisha.241','geisha','geisha',[145,92,131],'915c83',9526403], ['nbs-iscc-m:geisha.258','geisha','geisha',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:geisha.262','geisha','geisha',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:gendarmeblue.164','gendarmeblue','gendarme [blue] ',[49,120,115],'317873',3242099], ['nbs-iscc-m:gendarmeblue.173','gendarmeblue','gendarme [blue] ',[54,117,136],'367588',3569032], ['nbs-iscc-m:generall.83','generall','generall',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:generall.84','generall','generall',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:generall.86','generall','generall',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:generall.87','generall','generall',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:genestrole.101','genestrole','genestrole',[234,230,121],'eae679',15394425], ['nbs-iscc-m:genestrole.102','genestrole','genestrole',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:genet.101','genet','genet',[234,230,121],'eae679',15394425], ['nbs-iscc-m:genet.102','genet','genet',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:genevablue.204','genevablue','geneva blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:genista.53','genista','genista',[217,144,88],'d99058',14258264], ['nbs-iscc-m:genoablue.186','genoablue','genoa blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:gentian.182','gentian','gentian',[67,107,149],'436b95',4418453], ['nbs-iscc-m:gentian.199','gentian','gentian',[135,145,191],'8791bf',8884671], ['nbs-iscc-m:gentianblue.200','gentianblue','gentian blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:genuineultramarineblue.176','genuineultramarineblue','genuine ultramarine [blue] ',[0,161,194],'00a1c2',41410], ['nbs-iscc-m:genuineultramarineblue.178','genuineultramarineblue','genuine ultramarine [blue] ',[0,103,165],'0067a5',26533], ['nbs-iscc-m:geranium.12','geranium','geranium',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:geraniumlake.11','geraniumlake','geranium lake',[190,0,50],'be0032',12451890], ['nbs-iscc-m:geraniumpetal.11','geraniumpetal','geranium petal',[190,0,50],'be0032',12451890], ['nbs-iscc-m:geraniumpink.3','geraniumpink','geranium pink',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:ghent.183','ghent','ghent',[0,48,78],'00304e',12366], ['nbs-iscc-m:giallolini.86','giallolini','giallolini',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:giallolini.87','giallolini','giallolini',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:giallolini.89','giallolini','giallolini',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:giallolini.90','giallolini','giallolini',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:giallolino.86','giallolino','giallolino',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:giallolino.87','giallolino','giallolino',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:giallolino.89','giallolino','giallolino',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:giallolino.90','giallolino','giallolino',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:gigas.223','gigas','gigas',[134,96,142],'86608e',8806542], ['nbs-iscc-m:gild.68','gild','gild',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:gild.71','gild','gild',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:gilded.68','gilded','gilded',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:gilded.71','gilded','gilded',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:gilt.68','gilt','gilt',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:gilt.71','gilt','gilt',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:gingeline.55','gingeline','gingeline',[128,70,27],'80461b',8406555], ['nbs-iscc-m:gingeoline.55','gingeoline','gingeoline',[128,70,27],'80461b',8406555], ['nbs-iscc-m:ginger.55','ginger','ginger',[128,70,27],'80461b',8406555], ['nbs-iscc-m:gingerline.55','gingerline','gingerline',[128,70,27],'80461b',8406555], ['nbs-iscc-m:gingerspice.43','gingerspice','gingerspice',[121,68,59],'79443b',7947323], ['nbs-iscc-m:gingioline.55','gingioline','gingioline',[128,70,27],'80461b',8406555], ['nbs-iscc-m:giraffe.54','giraffe','giraffe',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:giraffe.57','giraffe','giraffe',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:glacier.187','glacier','glacier',[54,69,79],'36454f',3556687], ['nbs-iscc-m:glacierblue.186','glacierblue','glacier blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:gladiolus.12','gladiolus','gladiolus',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:glaeul.18','glaeul','glaïeul',[173,136,132],'ad8884',11372676], ['nbs-iscc-m:glaeul.30','glaeul','glaïeul',[196,131,121],'c48379',12878713], ['nbs-iscc-m:glassgreen.119','glassgreen','glass green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-m:glassgrey.190','glassgrey','glass grey',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-m:glaucous.121','glaucous','glaucous',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:glaucousblue.186','glaucousblue','glaucous-blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:glaucousgreen.148','glaucousgreen','glaucous-green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-m:glaucousgrey.190','glaucousgrey','glaucous-grey',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-m:glaucousgrey.264','glaucousgrey','glaucous-grey',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-m:glintogold.87','glintogold','glint o\'gold',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:gloaming.18','gloaming','gloaming',[173,136,132],'ad8884',11372676], ['nbs-iscc-m:glory.197','glory','glory',[39,36,88],'272458',2565208], ['nbs-iscc-m:glory.208','glory','glory',[50,23,77],'32174d',3282765], ['nbs-iscc-m:gloxinia.219','gloxinia','gloxinia',[96,47,107],'602f6b',6303595], ['nbs-iscc-m:gmelinsblue.178','gmelinsblue','gmelin\'s blue',[0,103,165],'0067a5',26533], ['nbs-iscc-m:gmelinsblue.196','gmelinsblue','gmelin\'s blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-m:gnaphaliumgreen.149','gnaphaliumgreen','gnaphalium green',[141,163,153],'8da399',9282457], ['nbs-iscc-m:goat.64','goat','goat',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:gobelinblue.186','gobelinblue','gobelin blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:gobelinblue.173','gobelinblue','gobelin blue',[54,117,136],'367588',3569032], ['nbs-iscc-m:gobelinblue.186','gobelinblue','gobelin blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:gobelingreen.145','gobelingreen','gobelin green',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:gobelinscarlet.11','gobelinscarlet','gobelin scarlet',[190,0,50],'be0032',12451890], ['nbs-iscc-m:gold.94','gold','gold',[150,113,23],'967117',9859351], ['nbs-iscc-m:goldbronze.61','goldbronze','gold bronze',[99,81,71],'635147',6508871], ['nbs-iscc-m:goldbronze.80','goldbronze','gold bronze',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:goldbrown.55','goldbrown','gold brown',[128,70,27],'80461b',8406555], ['nbs-iscc-m:goldearth.71','goldearth','gold earth',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:golden.76','golden','golden',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:golden.91','golden','golden',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:golden.94','golden','golden',[150,113,23],'967117',9859351], ['nbs-iscc-m:goldenbrown.55','goldenbrown','golden brown',[128,70,27],'80461b',8406555], ['nbs-iscc-m:goldenchestnut.58','goldenchestnut','golden chestnut',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:goldencoral.26','goldencoral','golden coral',[248,131,121],'f88379',16286585], ['nbs-iscc-m:goldencorn.71','goldencorn','golden corn',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:goldenfeather.83','goldenfeather','golden feather',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:goldenfeather.84','goldenfeather','golden feather',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:goldenfeather.86','goldenfeather','golden feather',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:goldenfeather.87','goldenfeather','golden feather',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:goldenglow.71','goldenglow','golden glow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:goldenglow.84','goldenglow','golden glow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:goldengreen.90','goldengreen','golden green',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:goldengreen.91','goldengreen','golden green',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:goldenochre.53','goldenochre','golden ochre',[217,144,88],'d99058',14258264], ['nbs-iscc-m:goldenpoppy.34','goldenpoppy','golden poppy',[226,88,34],'e25822',14833698], ['nbs-iscc-m:goldenrod.84','goldenrod','golden rod',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:goldenwheat.71','goldenwheat','golden wheat',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:goldenyellow.68','goldenyellow','golden yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:goldenyellow.71','goldenyellow','golden yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:goldenyellow.72','goldenyellow','golden yellow',[190,138,61],'be8a3d',12487229], ['nbs-iscc-m:goldenyellow.74','goldenyellow','golden yellow',[153,101,21],'996515',10052885], ['nbs-iscc-m:goldleaf.53','goldleaf','gold leaf',[217,144,88],'d99058',14258264], ['nbs-iscc-m:goldleaf.72','goldleaf','gold leaf',[190,138,61],'be8a3d',12487229], ['nbs-iscc-m:goldochre.53','goldochre','gold ochre',[217,144,88],'d99058',14258264], ['nbs-iscc-m:goldyellow.68','goldyellow','gold yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:goldyellow.71','goldyellow','gold yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:golfgreen.137','golfgreen','golf green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:golfred.12','golfred','golf [red] ',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:golfred.15','golfred','golf [red] ',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:gooseberry.259','gooseberry','gooseberry',[103,49,71],'673147',6762823], ['nbs-iscc-m:gooseberrygreen.136','gooseberrygreen','gooseberry green',[103,146,103],'679267',6787687], ['nbs-iscc-m:goosegrey.81','goosegrey','goose grey',[72,60,50],'483c32',4734002], ['nbs-iscc-m:gorevan.58','gorevan','gorevan',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:goura.229','goura','goura',[80,64,77],'50404d',5259341], ['nbs-iscc-m:goya.12','goya','goya',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:grain.73','grain','grain',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:grain.76','grain','grain',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:grain.79','grain','grain',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:grain.11','grain','grain',[190,0,50],'be0032',12451890], ['nbs-iscc-m:grainingrain.11','grainingrain','grain in grain',[190,0,50],'be0032',12451890], ['nbs-iscc-m:granada.47','granada','granada',[67,48,46],'43302e',4403246], ['nbs-iscc-m:granada.62','granada','granada',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:granat.11','granat','granat',[190,0,50],'be0032',12451890], ['nbs-iscc-m:granat.34','granat','granat',[226,88,34],'e25822',14833698], ['nbs-iscc-m:granatflower.11','granatflower','granatflower',[190,0,50],'be0032',12451890], ['nbs-iscc-m:granatflower.34','granatflower','granatflower',[226,88,34],'e25822',14833698], ['nbs-iscc-m:granite.233','granite','granite',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:graniteblue.264','graniteblue','granite blue',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-m:grape.212','grape','grape',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:grapeblue.212','grapeblue','grape blue',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:grapefruit.102','grapefruit','grapefruit',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:grapegreen.106','grapegreen','grape green',[134,126,54],'867e36',8814134], ['nbs-iscc-m:grapejuice.219','grapejuice','grapejuice',[96,47,107],'602f6b',6303595], ['nbs-iscc-m:grapenuts.58','grapenuts','grapenuts',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:graphite.229','graphite','graphite',[80,64,77],'50404d',5259341], ['nbs-iscc-m:graphite.267','graphite','graphite',[34,34,34],'222222',2236962], ['nbs-iscc-m:grassgreen.120','grassgreen','grass green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:grasshopper.120','grasshopper','grasshopper',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:gravel.79','gravel','gravel',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:grayn.11','grayn','grayn',[190,0,50],'be0032',12451890], ['nbs-iscc-m:grebe.234','grebe','grebe',[93,85,91],'5d555b',6116699], ['nbs-iscc-m:grebe.266','grebe','grebe',[85,85,85],'555555',5592405], ['nbs-iscc-m:grecianrose.18','grecianrose','grecian rose',[173,136,132],'ad8884',11372676], ['nbs-iscc-m:grecianrose.30','grecianrose','grecian rose',[196,131,121],'c48379',12878713], ['nbs-iscc-m:greenash.135','greenash','green ash',[147,197,146],'93c592',9684370], ['nbs-iscc-m:greenfinch.106','greenfinch','green finch',[134,126,54],'867e36',8814134], ['nbs-iscc-m:greenslate.150','greenslate','green slate',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:greenslate.156','greenslate','green slate',[78,87,85],'4e5755',5134165], ['nbs-iscc-m:greenstone.122','greenstone','green stone',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:grenadinered.37','grenadinered','grenadine red ',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:grenat.16','grenat','grenat',[114,47,55],'722f37',7483191], ['nbs-iscc-m:gretnagreen.136','gretnagreen','gretna green',[103,146,103],'679267',6787687], ['nbs-iscc-m:gretnagreen.145','gretnagreen','gretna green',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:grey31.64','grey31','grey 31 ',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:greydawn.233','greydawn','grey dawn',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:greydawn.265','greydawn','grey dawn',[132,132,130],'848482',8684674], ['nbs-iscc-m:greydrab.109','greydrab','grey drab',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:greyn.11','greyn','greyn',[190,0,50],'be0032',12451890], ['nbs-iscc-m:greystone.112','greystone','grey stone',[138,135,118],'8a8776',9078646], ['nbs-iscc-m:greyultramarineash.154','greyultramarineash','grey ultramarine ash',[178,190,181],'b2beb5',11714229], ['nbs-iscc-m:gridelin.258','gridelin','gridelin',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:griffin.266','griffin','griffin',[85,85,85],'555555',5592405], ['nbs-iscc-m:grisdelin.258','grisdelin','gris-de-lin',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:grottoblue.169','grottoblue','grotto [blue] ',[0,119,145],'007791',30609], ['nbs-iscc-m:grouse.61','grouse','grouse',[99,81,71],'635147',6508871], ['nbs-iscc-m:grouse.80','grouse','grouse',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:guignetsgreen.165','guignetsgreen','guignet\'s green',[0,75,73],'004b49',19273], ['nbs-iscc-m:guimetsblue.178','guimetsblue','guimet\'s blue',[0,103,165],'0067a5',26533], ['nbs-iscc-m:guimetsblue.196','guimetsblue','guimet\'s blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-m:guineagreen.160','guineagreen','guinea green',[0,122,116],'007a74',31348], ['nbs-iscc-m:guineahen.266','guineahen','guinea hen',[85,85,85],'555555',5592405], ['nbs-iscc-m:gull.265','gull','gull',[132,132,130],'848482',8684674], ['nbs-iscc-m:gullgrey.233','gullgrey','gull grey',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:gunmetal.266','gunmetal','gunmetal',[85,85,85],'555555',5592405], ['nbs-iscc-m:gypsy.55','gypsy','gypsy',[128,70,27],'80461b',8406555], ['nbs-iscc-m:gypsyred.15','gypsyred','gypsy red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:haematitered.16','haematitered','haematite red',[114,47,55],'722f37',7483191], ['nbs-iscc-m:haematitered.19','haematitered','haematite red',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:haematitered.20','haematitered','haematite red',[84,61,63],'543d3f',5520703], ['nbs-iscc-m:hairbrown.64','hairbrown','hair brown',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:hairbrown.266','hairbrown','hair brown',[85,85,85],'555555',5592405], ['nbs-iscc-m:hamadan.94','hamadan','hamadan',[150,113,23],'967117',9859351], ['nbs-iscc-m:hamburglake.11','hamburglake','hamburg lake',[190,0,50],'be0032',12451890], ['nbs-iscc-m:hamburglake.12','hamburglake','hamburg lake',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:hampsteadbrown.46','hampsteadbrown','hampstead brown',[103,76,71],'674c47',6769735], ['nbs-iscc-m:hankow.183','hankow','hankow',[0,48,78],'00304e',12366], ['nbs-iscc-m:hankow.201','hankow','hankow',[37,36,64],'252440',2434112], ['nbs-iscc-m:hankow.204','hankow','hankow',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:harborblue.192','harborblue','harbor blue',[81,88,94],'51585e',5331038], ['nbs-iscc-m:harlemblue.170','harlemblue','harlem blue',[46,132,149],'2e8495',3048597], ['nbs-iscc-m:harlemblue.182','harlemblue','harlem blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:harlequin.131','harlequin','harlequin',[68,148,74],'44944a',4494410], ['nbs-iscc-m:harrisonred.11','harrisonred','harrison red',[190,0,50],'be0032',12451890], ['nbs-iscc-m:harvardcrimson.15','harvardcrimson','harvard crimson',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:harvest.54','harvest','harvest',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:harvest.57','harvest','harvest',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:hathigray.155','hathigray','hathi gray',[125,137,132],'7d8984',8227204], ['nbs-iscc-m:hathor.176','hathor','hathor',[0,161,194],'00a1c2',41410], ['nbs-iscc-m:hathor.178','hathor','hathor',[0,103,165],'0067a5',26533], ['nbs-iscc-m:havanarose.19','havanarose','havana rose',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:hay.105','hay','hay',[185,181,125],'b9b57d',12170621], ['nbs-iscc-m:hazel.57','hazel','hazel',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:hazel.74','hazel','hazel',[153,101,21],'996515',10052885], ['nbs-iscc-m:hazelnut.57','hazelnut','hazelnut',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:hazelnut.74','hazelnut','hazelnut',[153,101,21],'996515',10052885], ['nbs-iscc-m:hazyblue.135','hazyblue','hazy blue',[147,197,146],'93c592',9684370], ['nbs-iscc-m:hazyblue.144','hazyblue','hazy blue',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:hazyblue.149','hazyblue','hazy blue',[141,163,153],'8da399',9282457], ['nbs-iscc-m:heather.262','heather','heather',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:hebe.15','hebe','hebe',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:heliotrope.242','heliotrope','heliotrope',[93,57,84],'5d3954',6109524], ['nbs-iscc-m:heliotropegrey.227','heliotropegrey','heliotrope grey ',[170,152,169],'aa98a9',11180201], ['nbs-iscc-m:heliotropegrey.228','heliotropegrey','heliotrope grey ',[121,104,120],'796878',7956600], ['nbs-iscc-m:heliotropegrey.233','heliotropegrey','heliotrope grey ',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:helleboregreen.125','helleboregreen','hellebore green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:helleboregreen.120','helleboregreen','hellebore green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:helleboregreen.122','helleboregreen','hellebore green',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:helleboregreen.125','helleboregreen','hellebore green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:helleboregreen.127','helleboregreen','hellebore green',[81,87,68],'515744',5330756], ['nbs-iscc-m:helleborered.258','helleborered','hellebore red',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:helvetiablue.179','helvetiablue','helvetia blue',[0,65,106],'00416a',16746], ['nbs-iscc-m:hemlock.152','hemlock','hemlock',[26,36,33],'1a2421',1713185], ['nbs-iscc-m:hemp.109','hemp','hemp',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:henna.40','henna','henna',[136,45,23],'882d17',8924439], ['nbs-iscc-m:hepatica.223','hepatica','hepatica',[134,96,142],'86608e',8806542], ['nbs-iscc-m:hermosapink.2','hermosapink','hermosa pink',[234,147,153],'ea9399',15373209], ['nbs-iscc-m:hermosapink.5','hermosapink','hermosa pink',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:heron.186','heron','heron',[83,104,120],'536878',5466232], ['nbs-iscc-m:hiberniangreen.137','hiberniangreen','hibernian green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:highlandgreen.157','highlandgreen','highland green',[30,35,33],'1e2321',1975073], ['nbs-iscc-m:hindu.62','hindu','hindu',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:hispano.55','hispano','hispano',[128,70,27],'80461b',8406555], ['nbs-iscc-m:hockey.11','hockey','hockey',[190,0,50],'be0032',12451890], ['nbs-iscc-m:hollandblue.183','hollandblue','holland blue',[0,48,78],'00304e',12366], ['nbs-iscc-m:hollyberry.12','hollyberry','holly berry',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:hollyberry.15','hollyberry','holly berry',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:hollygreen.125','hollygreen','holly green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:hollygreen.132','hollygreen','holly green',[0,98,45],'00622d',25133], ['nbs-iscc-m:hollygreen.137','hollygreen','holly green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:hollyhock.256','hollyhock','hollyhock',[120,24,74],'78184a',7870538], ['nbs-iscc-m:hollywood.13','hollywood','hollywood',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:hollywood.15','hollywood','hollywood',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:homageblue.201','homageblue','homage blue',[37,36,64],'252440',2434112], ['nbs-iscc-m:honeybeige.76','honeybeige','honey beige',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:honeybird.168','honeybird','honey bird',[35,158,186],'239eba',2334394], ['nbs-iscc-m:honeydew.26','honeydew','honeydew',[248,131,121],'f88379',16286585], ['nbs-iscc-m:honeydew.53','honeydew','honeydew',[217,144,88],'d99058',14258264], ['nbs-iscc-m:honeysuckle.76','honeysuckle','honeysuckle',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:honeysweet.87','honeysweet','honeysweet',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:honeysweet.90','honeysweet','honeysweet',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:honeyyellow.91','honeyyellow','honey [yellow] ',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:hopi.57','hopi','hopi',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:horacevernetsblue.194','horacevernetsblue','horace vernet\'s blue',[48,38,122],'30267a',3155578], ['nbs-iscc-m:horizonblue.153','horizonblue','horizon [blue] ',[223,237,232],'dfede8',14675432], ['nbs-iscc-m:horsechestnut.62','horsechestnut','horsechestnut',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:hortenseviolet.223','hortenseviolet','hortense violet',[134,96,142],'86608e',8806542], ['nbs-iscc-m:hortensia.224','hortensia','hortensia',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:hortensia.225','hortensia','hortensia',[48,25,52],'301934',3152180], ['nbs-iscc-m:hortensia.229','hortensia','hortensia',[80,64,77],'50404d',5259341], ['nbs-iscc-m:hortensia.230','hortensia','hortensia',[41,30,41],'291e29',2694697], ['nbs-iscc-m:huckleberry.212','huckleberry','huckleberry',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:hudsonseal.266','hudsonseal','hudson seal',[85,85,85],'555555',5592405], ['nbs-iscc-m:hudsonseal.267','hudsonseal','hudson seal',[34,34,34],'222222',2236962], ['nbs-iscc-m:hummingbird.164','hummingbird','hummingbird',[49,120,115],'317873',3242099], ['nbs-iscc-m:hungarianblue.182','hungarianblue','hungarian blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:hungariangreen.136','hungariangreen','hungarian green',[103,146,103],'679267',6787687], ['nbs-iscc-m:huntergreen.138','huntergreen','hunter [green] ',[23,54,32],'173620',1521184], ['nbs-iscc-m:huntersgreen.138','huntersgreen','hunter\'s green',[23,54,32],'173620',1521184], ['nbs-iscc-m:huron.164','huron','huron',[49,120,115],'317873',3242099], ['nbs-iscc-m:hussar.186','hussar','hussar',[83,104,120],'536878',5466232], ['nbs-iscc-m:hyacinth.210','hyacinth','hyacinth',[140,130,182],'8c82b6',9208502], ['nbs-iscc-m:hyacinth.223','hyacinth','hyacinth',[134,96,142],'86608e',8806542], ['nbs-iscc-m:hyacinthblue.197','hyacinthblue','hyacinth blue',[39,36,88],'272458',2565208], ['nbs-iscc-m:hyacinthred.39','hyacinthred','hyacinth red',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:hyacinthviolet.219','hyacinthviolet','hyacinth violet',[96,47,107],'602f6b',6303595], ['nbs-iscc-m:hydrangeablue.186','hydrangeablue','hydrangea blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:hydrangeablue.203','hydrangeablue','hydrangea blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-m:hydrangeapink.5','hydrangeapink','hydrangea pink',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:hydrangeared.19','hydrangeared','hydrangea red',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:hydro.186','hydro','hydro',[83,104,120],'536878',5466232], ['nbs-iscc-m:hypermicred.11','hypermicred','hypermic red',[190,0,50],'be0032',12451890], ['nbs-iscc-m:hyssopviolet.228','hyssopviolet','hyssop violet',[121,104,120],'796878',7956600], ['nbs-iscc-m:ibispink.26','ibispink','ibis pink',[248,131,121],'f88379',16286585], ['nbs-iscc-m:ibispink.29','ibispink','ibis pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:ibisred.47','ibisred','ibis red',[67,48,46],'43302e',4403246], ['nbs-iscc-m:iceberg.186','iceberg','iceberg',[83,104,120],'536878',5466232], ['nbs-iscc-m:immenssee.150','immenssee','immenssee',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:imperial.219','imperial','imperial',[96,47,107],'602f6b',6303595], ['nbs-iscc-m:imperial.224','imperial','imperial',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:imperial.238','imperial','imperial',[112,41,99],'702963',7350627], ['nbs-iscc-m:imperial.242','imperial','imperial',[93,57,84],'5d3954',6109524], ['nbs-iscc-m:imperialblue.179','imperialblue','imperial blue',[0,65,106],'00416a',16746], ['nbs-iscc-m:imperialgreen.136','imperialgreen','imperial green',[103,146,103],'679267',6787687], ['nbs-iscc-m:imperialgreen.140','imperialgreen','imperial green',[62,180,137],'3eb489',4109449], ['nbs-iscc-m:imperialjade.137','imperialjade','imperial jade',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:imperialpurple.215','imperialpurple','imperial purple',[85,76,105],'554c69',5590121], ['nbs-iscc-m:imperialstone.94','imperialstone','imperial stone ',[150,113,23],'967117',9859351], ['nbs-iscc-m:imperialyellow.71','imperialyellow','imperial yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:incagold.71','incagold','inca gold',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:indebaudias.229','indebaudias','indebaudias',[80,64,77],'50404d',5259341], ['nbs-iscc-m:indeblue.229','indeblue','inde blue',[80,64,77],'50404d',5259341], ['nbs-iscc-m:independence.212','independence','independence',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:indiaink.266','indiaink','india ink',[85,85,85],'555555',5592405], ['nbs-iscc-m:indian.54','indian','indian',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:indiana.254','indiana','indiana',[206,70,118],'ce4676',13518454], ['nbs-iscc-m:indianblue.229','indianblue','indian blue',[80,64,77],'50404d',5259341], ['nbs-iscc-m:indianbrown.81','indianbrown','indian brown',[72,60,50],'483c32',4734002], ['nbs-iscc-m:indianbrown.95','indianbrown','indian brown',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:indianbrown.96','indianbrown','indian brown',[59,49,33],'3b3121',3879201], ['nbs-iscc-m:indianbuff.76','indianbuff','indian buff',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:indianlake.258','indianlake','indian lake',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:indianorange.34','indianorange','indian orange',[226,88,34],'e25822',14833698], ['nbs-iscc-m:indianpink.42','indianpink','indian pink',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:indianpurple.259','indianpurple','indian purple',[103,49,71],'673147',6762823], ['nbs-iscc-m:indianred.43','indianred','indian red',[121,68,59],'79443b',7947323], ['nbs-iscc-m:indianred.40','indianred','indian red',[136,45,23],'882d17',8924439], ['nbs-iscc-m:indiansaffron.86','indiansaffron','indian saffron',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:indiantan.74','indiantan','indian tan',[153,101,21],'996515',10052885], ['nbs-iscc-m:indiantan.76','indiantan','indian tan',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:indiantan.77','indiantan','indian tan',[130,102,68],'826644',8545860], ['nbs-iscc-m:indianturquoise.164','indianturquoise','indian turquoise',[49,120,115],'317873',3242099], ['nbs-iscc-m:indianyellow.68','indianyellow','indian yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:indianyellow.71','indianyellow','indian yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:indiared.41','indiared','india red',[86,7,12],'56070c',5637900], ['nbs-iscc-m:indiaspice.57','indiaspice','india spice ',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:indiatan.58','indiatan','india tan',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:indico.229','indico','indico',[80,64,77],'50404d',5259341], ['nbs-iscc-m:indicocarmine.169','indicocarmine','indico carmine',[0,119,145],'007791',30609], ['nbs-iscc-m:indigo.229','indigo','indigo',[80,64,77],'50404d',5259341], ['nbs-iscc-m:indigocarmine.169','indigocarmine','indigo carmine',[0,119,145],'007791',30609], ['nbs-iscc-m:indigoextract.169','indigoextract','indigo extract',[0,119,145],'007791',30609], ['nbs-iscc-m:indo.186','indo','indo',[83,104,120],'536878',5466232], ['nbs-iscc-m:infanta.182','infanta','infanta',[67,107,149],'436b95',4418453], ['nbs-iscc-m:infantry.186','infantry','infantry ',[83,104,120],'536878',5466232], ['nbs-iscc-m:infernalblue.201','infernalblue','infernal blue',[37,36,64],'252440',2434112], ['nbs-iscc-m:ingenue.121','ingenue','ingenue',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:ingenue.122','ingenue','ingenue',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:inkblack.192','inkblack','ink black',[81,88,94],'51585e',5331038], ['nbs-iscc-m:inkblue.187','inkblue','ink blue',[54,69,79],'36454f',3556687], ['nbs-iscc-m:intenseblue.200','intenseblue','intense blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:intenseblue.201','intenseblue','intense blue',[37,36,64],'252440',2434112], ['nbs-iscc-m:international.186','international','international',[83,104,120],'536878',5466232], ['nbs-iscc-m:invisiblegreen.165','invisiblegreen','invisible green',[0,75,73],'004b49',19273], ['nbs-iscc-m:invisiblegreen.152','invisiblegreen','invisible green',[26,36,33],'1a2421',1713185], ['nbs-iscc-m:ionianblue.187','ionianblue','ionian blue',[54,69,79],'36454f',3556687], ['nbs-iscc-m:ionianblue.188','ionianblue','ionian blue',[32,40,48],'202830',2107440], ['nbs-iscc-m:iris.185','iris','iris',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:iris.227','iris','iris',[170,152,169],'aa98a9',11180201], ['nbs-iscc-m:irisglow.233','irisglow','irisglow',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:irisgreen.137','irisgreen','iris green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:irisgreen.136','irisgreen','iris green',[103,146,103],'679267',6787687], ['nbs-iscc-m:irismauve.31','irismauve','iris mauve',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-m:irismauve.32','irismauve','iris mauve',[199,173,163],'c7ada3',13086115], ['nbs-iscc-m:irismauve.33','irismauve','iris mauve',[194,172,153],'c2ac99',12758169], ['nbs-iscc-m:iron.81','iron','iron',[72,60,50],'483c32',4734002], ['nbs-iscc-m:iron.267','iron','iron',[34,34,34],'222222',2236962], ['nbs-iscc-m:ironblue.266','ironblue','iron blue',[85,85,85],'555555',5592405], ['nbs-iscc-m:ironbrown.81','ironbrown','iron brown',[72,60,50],'483c32',4734002], ['nbs-iscc-m:ironbrown.267','ironbrown','iron brown',[34,34,34],'222222',2236962], ['nbs-iscc-m:ironbuff.76','ironbuff','iron buff',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:ironbuff.90','ironbuff','iron buff',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:ironcrocus.43','ironcrocus','iron crocus',[121,68,59],'79443b',7947323], ['nbs-iscc-m:irongrey.266','irongrey','iron grey ',[85,85,85],'555555',5592405], ['nbs-iscc-m:ironminium.19','ironminium','iron minium',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:ironminium.46','ironminium','iron minium',[103,76,71],'674c47',6769735], ['nbs-iscc-m:ironoxidered.40','ironoxidered','iron oxide red',[136,45,23],'882d17',8924439], ['nbs-iscc-m:ironoxidered.55','ironoxidered','iron oxide red',[128,70,27],'80461b',8406555], ['nbs-iscc-m:ironred.40','ironred','iron red',[136,45,23],'882d17',8924439], ['nbs-iscc-m:ironsaffron.43','ironsaffron','iron saffron',[121,68,59],'79443b',7947323], ['nbs-iscc-m:ironyellow.50','ironyellow','iron yellow',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:ironyellow.53','ironyellow','iron yellow',[217,144,88],'d99058',14258264], ['nbs-iscc-m:isabella.76','isabella','isabella',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:isabella.77','isabella','isabella',[130,102,68],'826644',8545860], ['nbs-iscc-m:isabella.91','isabella','isabella',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:isabella.94','isabella','isabella',[150,113,23],'967117',9859351], ['nbs-iscc-m:ispahan.187','ispahan','ispahan',[54,69,79],'36454f',3556687], ['nbs-iscc-m:italianblue.167','italianblue','italian blue',[0,133,161],'0085a1',34209], ['nbs-iscc-m:italianblue.169','italianblue','italian blue',[0,119,145],'007791',30609], ['nbs-iscc-m:italianlake.71','italianlake','italian lake',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:italianochre.54','italianochre','italian ochre',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:italianochre.57','italianochre','italian ochre',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:italianpink.83','italianpink','italian pink',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:italianpink.84','italianpink','italian pink',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:italianpink.86','italianpink','italian pink',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:italianpink.87','italianpink','italian pink',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:italianstraw.89','italianstraw','italian straw',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:italianstraw.90','italianstraw','italian straw',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:ivorybrown.95','ivorybrown','ivory brown',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:ivorybrown.96','ivorybrown','ivory brown',[59,49,33],'3b3121',3879201], ['nbs-iscc-m:ivorywhite.89','ivorywhite','ivory white',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:ivoryyellow.89','ivoryyellow','ivory [yellow] ',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:ivygreen.107','ivygreen','ivy [green] ',[102,93,30],'665d1e',6708510], ['nbs-iscc-m:ivygreen.110','ivygreen','ivy [green] ',[91,88,66],'5b5842',5986370], ['nbs-iscc-m:jacarandabrown.81','jacarandabrown','jacaranda brown',[72,60,50],'483c32',4734002], ['nbs-iscc-m:jacinthe.53','jacinthe','jacinthe',[217,144,88],'d99058',14258264], ['nbs-iscc-m:jackrabbit.266','jackrabbit','jack rabbit',[85,85,85],'555555',5592405], ['nbs-iscc-m:jackrose.11','jackrose','jack rose',[190,0,50],'be0032',12451890], ['nbs-iscc-m:jacqueminot.15','jacqueminot','jacqueminot',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:jadesheen.136','jadesheen','jadesheen',[103,146,103],'679267',6787687], ['nbs-iscc-m:jadesheen.137','jadesheen','jadesheen',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:jadesheen.150','jadesheen','jadesheen',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:jaffaorange.37','jaffaorange','jaffa orange',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:jaffaorange.53','jaffaorange','jaffa orange',[217,144,88],'d99058',14258264], ['nbs-iscc-m:jaffi.113','jaffi','jaffi',[87,85,76],'57554c',5723468], ['nbs-iscc-m:jalapa.55','jalapa','jalapa',[128,70,27],'80461b',8406555], ['nbs-iscc-m:japanblue.183','japanblue','japan blue',[0,48,78],'00304e',12366], ['nbs-iscc-m:japanearth.58','japanearth','japan earth',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:japaneseblue.150','japaneseblue','japanese blue',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:japanesegreen.150','japanesegreen','japanese green',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:japanesered.40','japanesered','japanese red',[136,45,23],'882d17',8924439], ['nbs-iscc-m:japaneseyellow.25','japaneseyellow','japanese yellow',[255,183,165],'ffb7a5',16758693], ['nbs-iscc-m:japaneseyellow.35','japaneseyellow','japanese yellow',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:japanrose.29','japanrose','japan rose',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:japanrose.53','japanrose','japan rose',[217,144,88],'d99058',14258264], ['nbs-iscc-m:japonica.19','japonica','japonica',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:jasmine.83','jasmine','jasmine',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:jasmine.86','jasmine','jasmine',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:jasper.152','jasper','jasper',[26,36,33],'1a2421',1713185], ['nbs-iscc-m:jaspergreen.145','jaspergreen','jasper green',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:jasperpink.26','jasperpink','jasper pink',[248,131,121],'f88379',16286585], ['nbs-iscc-m:jasperred.15','jasperred','jasper red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:java.59','java','java',[66,37,24],'422518',4334872], ['nbs-iscc-m:javabrown.62','javabrown','java brown',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:javelgreen.102','javelgreen','javel green',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:jayblue.182','jayblue','jay [blue] ',[67,107,149],'436b95',4418453], ['nbs-iscc-m:jeanbart.212','jeanbart','jean bart',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:jewspitch.81','jewspitch','jew\'s pitch ',[72,60,50],'483c32',4734002], ['nbs-iscc-m:jockey.15','jockey','jockey',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:jonquilyellow.70','jonquilyellow','jonquil [yellow] ',[251,201,127],'fbc97f',16501119], ['nbs-iscc-m:jonquilyellow.71','jonquilyellow','jonquil [yellow] ',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:jonquilyellow.73','jonquilyellow','jonquil [yellow] ',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:jonquilyellow.86','jonquilyellow','jonquil [yellow] ',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:jonquilyellow.87','jonquilyellow','jonquil [yellow] ',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:josephine.57','josephine','josephine',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:jouvenceblue.164','jouvenceblue','jouvence blue',[49,120,115],'317873',3242099], ['nbs-iscc-m:jouvenceblue.173','jouvenceblue','jouvence blue',[54,117,136],'367588',3569032], ['nbs-iscc-m:judee.228','judee','judee',[121,104,120],'796878',7956600], ['nbs-iscc-m:junglegreen.147','junglegreen','jungle green',[28,53,45],'1c352d',1848621], ['nbs-iscc-m:junglegreen.152','junglegreen','jungle green',[26,36,33],'1a2421',1713185], ['nbs-iscc-m:juniper.151','juniper','juniper',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:kabistan.151','kabistan','kabistan',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:kaffa.46','kaffa','kaffa',[103,76,71],'674c47',6769735], ['nbs-iscc-m:kaiserbrown.55','kaiserbrown','kaiser brown',[128,70,27],'80461b',8406555], ['nbs-iscc-m:kangaroo.113','kangaroo','kangaroo',[87,85,76],'57554c',5723468], ['nbs-iscc-m:kara.164','kara','kara',[49,120,115],'317873',3242099], ['nbs-iscc-m:karadagh.267','karadagh','kara dagh',[34,34,34],'222222',2236962], ['nbs-iscc-m:kashabeige.112','kashabeige','kasha-beige',[138,135,118],'8a8776',9078646], ['nbs-iscc-m:kashabeige.265','kashabeige','kasha-beige',[132,132,130],'848482',8684674], ['nbs-iscc-m:kashan.169','kashan','kashan',[0,119,145],'007791',30609], ['nbs-iscc-m:kashmir.137','kashmir','kashmir',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:kashmir.145','kashmir','kashmir',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:kashmir.150','kashmir','kashmir',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:kazak.43','kazak','kazak',[121,68,59],'79443b',7947323], ['nbs-iscc-m:kentuckygreen.107','kentuckygreen','kentucky green',[102,93,30],'665d1e',6708510], ['nbs-iscc-m:kermanshah.61','kermanshah','kermanshah',[99,81,71],'635147',6508871], ['nbs-iscc-m:kermes.11','kermes','kermes',[190,0,50],'be0032',12451890], ['nbs-iscc-m:kermesberries.11','kermesberries','kermes berries',[190,0,50],'be0032',12451890], ['nbs-iscc-m:kesseleryellow.83','kesseleryellow','kesseler yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:kesseleryellow.84','kesseleryellow','kesseler yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:kesseleryellow.86','kesseleryellow','kesseler yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:kesseleryellow.87','kesseleryellow','kesseler yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:kettledrum.43','kettledrum','kettledrum',[121,68,59],'79443b',7947323], ['nbs-iscc-m:khaki.76','khaki','khaki',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:khaki.77','khaki','khaki',[130,102,68],'826644',8545860], ['nbs-iscc-m:khiva.38','khiva','khiva',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:kildaregreen.120','kildaregreen','kildare green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:killarneygreen.136','killarneygreen','killarney [green] ',[103,146,103],'679267',6787687], ['nbs-iscc-m:killarneygreen.145','killarneygreen','killarney [green] ',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:kinemared.12','kinemared','kinema red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:kingfisher.183','kingfisher','kingfisher ',[0,48,78],'00304e',12366], ['nbs-iscc-m:kingsblue.181','kingsblue','king\'s blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-m:kingsblue.179','kingsblue','king\'s blue',[0,65,106],'00416a',16746], ['nbs-iscc-m:kingsblue.182','kingsblue','king\'s blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:kingsblue.182','kingsblue','king\'s blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:kingsyellow.83','kingsyellow','king\'s yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:kingsyellow.84','kingsyellow','king\'s yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:kingsyellow.86','kingsyellow','king\'s yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:kingsyellow.97','kingsyellow','king\'s yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:kirchbergergreen.140','kirchbergergreen','kirchberger green',[62,180,137],'3eb489',4109449], ['nbs-iscc-m:kiskilim.58','kiskilim','kis kilim',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:kobe.40','kobe','kobe',[136,45,23],'882d17',8924439], ['nbs-iscc-m:kolinsky.59','kolinsky','kolinsky',[66,37,24],'422518',4334872], ['nbs-iscc-m:korea.38','korea','korea',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:korea.43','korea','korea',[121,68,59],'79443b',7947323], ['nbs-iscc-m:kork.258','kork','kork',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:korkir.258','korkir','korkir',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:kremlin.165','kremlin','kremlin',[0,75,73],'004b49',19273], ['nbs-iscc-m:kronbergsgreen.125','kronbergsgreen','kronberg\'s green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:kurdistan.187','kurdistan','kurdistan',[54,69,79],'36454f',3556687], ['nbs-iscc-m:kurdistan.193','kurdistan','kurdistan',[32,36,40],'202428',2106408], ['nbs-iscc-m:kurdistan.229','kurdistan','kurdistan',[80,64,77],'50404d',5259341], ['nbs-iscc-m:kurdistan.235','kurdistan','kurdistan',[36,33,36],'242124',2367780], ['nbs-iscc-m:kyoto.26','kyoto','kyoto',[248,131,121],'f88379',16286585], ['nbs-iscc-m:kyoto.50','kyoto','kyoto',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:kyoto.53','kyoto','kyoto',[217,144,88],'d99058',14258264], ['nbs-iscc-m:labrador.183','labrador','labrador',[0,48,78],'00304e',12366], ['nbs-iscc-m:labrador.187','labrador','labrador',[54,69,79],'36454f',3556687], ['nbs-iscc-m:laclake.258','laclake','lac lake',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:lacquerred.38','lacquerred','lacquer red',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:laeliapink.251','laeliapink','laelia pink',[193,126,145],'c17e91',12680849], ['nbs-iscc-m:laeliapink.261','laeliapink','laelia pink',[175,134,142],'af868e',11503246], ['nbs-iscc-m:lafrancepink.5','lafrancepink','la france pink',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:lagoon.163','lagoon','lagoon',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:lake.11','lake','lake',[190,0,50],'be0032',12451890], ['nbs-iscc-m:lake.12','lake','lake',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:lakeblue.164','lakeblue','lake blue',[49,120,115],'317873',3242099], ['nbs-iscc-m:lama.81','lama','lama',[72,60,50],'483c32',4734002], ['nbs-iscc-m:lambertsblue.182','lambertsblue','lambert\'s blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:lapis.164','lapis','lapis',[49,120,115],'317873',3242099], ['nbs-iscc-m:lariat.57','lariat','lariat',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:lariat.76','lariat','lariat',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:lark.90','lark','lark',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:lark.91','lark','lark',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:lark.94','lark','lark',[150,113,23],'967117',9859351], ['nbs-iscc-m:larkspur.173','larkspur','larkspur',[54,117,136],'367588',3569032], ['nbs-iscc-m:latericeous.55','latericeous','latericeous',[128,70,27],'80461b',8406555], ['nbs-iscc-m:latericeous.58','latericeous','latericeous',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:lateritious.55','lateritious','lateritious',[128,70,27],'80461b',8406555], ['nbs-iscc-m:lateritious.58','lateritious','lateritious',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:latoun.87','latoun','latoun',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:latten.87','latten','latten',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:laundryblue.179','laundryblue','laundry blue',[0,65,106],'00416a',16746], ['nbs-iscc-m:laundryblue.182','laundryblue','laundry blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:laurelgreen.106','laurelgreen','laurel green',[134,126,54],'867e36',8814134], ['nbs-iscc-m:laureloak.43','laureloak','laurel oak',[121,68,59],'79443b',7947323], ['nbs-iscc-m:laurelpink.3','laurelpink','laurel pink',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:laurelpink.15','laurelpink','laurel pink',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:lava.267','lava','lava',[34,34,34],'222222',2236962], ['nbs-iscc-m:lavallire.228','lavallire','la vallière ',[121,104,120],'796878',7956600], ['nbs-iscc-m:lavender.227','lavender','lavender',[170,152,169],'aa98a9',11180201], ['nbs-iscc-m:lawngreen.120','lawngreen','lawn green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:lead.234','lead','lead',[93,85,91],'5d555b',6116699], ['nbs-iscc-m:lead.266','lead','lead',[85,85,85],'555555',5592405], ['nbs-iscc-m:leadgrey.109','leadgrey','lead grey ',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:leadochre.89','leadochre','lead ochre ',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:leadville.234','leadville','leadville',[93,85,91],'5d555b',6116699], ['nbs-iscc-m:leafmold.59','leafmold','leaf mold',[66,37,24],'422518',4334872], ['nbs-iscc-m:leafred.11','leafred','leaf red',[190,0,50],'be0032',12451890], ['nbs-iscc-m:leather.54','leather','leather',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:leatherbrown.58','leatherbrown','leather brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:leatherlake.51','leatherlake','leather lake',[190,101,22],'be6516',12477718], ['nbs-iscc-m:leatherlake.54','leatherlake','leather lake',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:leatherlake.55','leatherlake','leather lake',[128,70,27],'80461b',8406555], ['nbs-iscc-m:leekgreen.106','leekgreen','leek green',[134,126,54],'867e36',8814134], ['nbs-iscc-m:leekgreen.120','leekgreen','leek green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:leghorn.89','leghorn','leghorn',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:leghorn.90','leghorn','leghorn',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:legionblue.183','legionblue','legion blue',[0,48,78],'00304e',12366], ['nbs-iscc-m:leitchsblue.176','leitchsblue','leitch\'s blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-m:leithnersblue.169','leithnersblue','leithner\'s blue',[0,119,145],'007791',30609], ['nbs-iscc-m:lemmianearth.43','lemmianearth','lemmian earth',[121,68,59],'79443b',7947323], ['nbs-iscc-m:lemnianruddle.43','lemnianruddle','lemnian ruddle',[121,68,59],'79443b',7947323], ['nbs-iscc-m:lemnos.43','lemnos','lemnos',[121,68,59],'79443b',7947323], ['nbs-iscc-m:lemonchrome.83','lemonchrome','lemon chrome',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:lemonyellow.83','lemonyellow','lemon yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:lemonyellow.84','lemonyellow','lemon yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:lemonyellow.86','lemonyellow','lemon yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:lemonyellow.87','lemonyellow','lemon yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:lettucegreen.120','lettucegreen','lettuce green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:levantred.15','levantred','levant red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:leydenblue.169','leydenblue','leyden blue',[0,119,145],'007791',30609], ['nbs-iscc-m:liberia.62','liberia','liberia',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:liberty.178','liberty','liberty',[0,103,165],'0067a5',26533], ['nbs-iscc-m:liberty.196','liberty','liberty',[84,90,167],'545aa7',5528231], ['nbs-iscc-m:libertyblue.200','libertyblue','liberty blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:libertygreen.120','libertygreen','liberty green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:lichen.127','lichen','lichen',[81,87,68],'515744',5330756], ['nbs-iscc-m:lichengreen.154','lichengreen','lichen green',[178,190,181],'b2beb5',11714229], ['nbs-iscc-m:lido.94','lido','lido',[150,113,23],'967117',9859351], ['nbs-iscc-m:lierre.107','lierre','lierre',[102,93,30],'665d1e',6708510], ['nbs-iscc-m:lierre.110','lierre','lierre',[91,88,66],'5b5842',5986370], ['nbs-iscc-m:lightblue1.121','lightblue1','light blue 1',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:lightblue2lightblue3.148','lightblue2lightblue3','light blue 2, light blue 3',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-m:lightblue2lightblue3.184','lightblue2lightblue3','light blue 2, light blue 3',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-m:lightblue4.184','lightblue4','light blue 4',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-m:lightblue6.185','lightblue6','light blue 6',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:lightbluelightblue5.148','lightbluelightblue5','light blue,, light blue 5',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-m:lightbrunswickgreen.137','lightbrunswickgreen','light brunswick green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:lightchromegreen.137','lightchromegreen','light chrome green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:lightchromeyellow.84','lightchromeyellow','light chrome yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:lightgrge.112','lightgrge','light grège',[138,135,118],'8a8776',9078646], ['nbs-iscc-m:lightgunmetal.266','lightgunmetal','light gunmetal',[85,85,85],'555555',5592405], ['nbs-iscc-m:lightred.37','lightred','light red',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:lightstone.90','lightstone','light stone',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:lightstone.91','lightstone','light stone',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:lightwedgwoodblue.186','lightwedgwoodblue','light wedgwood [blue] ',[83,104,120],'536878',5466232], ['nbs-iscc-m:lilac.5','lilac','lilac',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:lilac.18','lilac','lilac',[173,136,132],'ad8884',11372676], ['nbs-iscc-m:lilac.227','lilac','lilac',[170,152,169],'aa98a9',11180201], ['nbs-iscc-m:lilaceous.5','lilaceous','lilaceous',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:lilaceous.18','lilaceous','lilaceous',[173,136,132],'ad8884',11372676], ['nbs-iscc-m:lilacgray.33','lilacgray','lilac gray',[194,172,153],'c2ac99',12758169], ['nbs-iscc-m:lilacgray.93','lilacgray','lilac gray',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:lilas.5','lilas','lilas',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:lilas.18','lilas','lilas',[173,136,132],'ad8884',11372676], ['nbs-iscc-m:lilium.223','lilium','lilium',[134,96,142],'86608e',8806542], ['nbs-iscc-m:lilium.241','lilium','lilium',[145,92,131],'915c83',9526403], ['nbs-iscc-m:lilygreen.120','lilygreen','lily green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:lilygreen.156','lilygreen','lily green',[78,87,85],'4e5755',5134165], ['nbs-iscc-m:limawood.15','limawood','limawood',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:limawood.19','limawood','limawood',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:limeblue.182','limeblue','lime blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:limegreen.105','limegreen','lime green',[185,181,125],'b9b57d',12170621], ['nbs-iscc-m:limegreen.106','limegreen','lime green',[134,126,54],'867e36',8814134], ['nbs-iscc-m:limestone.64','limestone','limestone',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:limestone.266','limestone','limestone',[85,85,85],'555555',5592405], ['nbs-iscc-m:limeyellow.87','limeyellow','lime [yellow] ',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:limeyellow.90','limeyellow','lime [yellow] ',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:limoges.178','limoges','limoges',[0,103,165],'0067a5',26533], ['nbs-iscc-m:limoges.182','limoges','limoges',[67,107,149],'436b95',4418453], ['nbs-iscc-m:lincolngreen.125','lincolngreen','lincoln green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:lincolnred.11','lincolnred','lincoln red',[190,0,50],'be0032',12451890], ['nbs-iscc-m:lindengreen.102','lindengreen','linden green',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:lindenyellow.102','lindenyellow','linden yellow',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:linoleumbrown.77','linoleumbrown','linoleum brown',[130,102,68],'826644',8545860], ['nbs-iscc-m:lint.109','lint','lint',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:lintwhite.89','lintwhite','lint-white',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:lintwhite.90','lintwhite','lint-white',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:lion.76','lion','lion',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:lion.77','lion','lion',[130,102,68],'826644',8545860], ['nbs-iscc-m:liontawny.76','liontawny','lion tawny',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:liontawny.77','liontawny','lion tawny',[130,102,68],'826644',8545860], ['nbs-iscc-m:liqueurgreen.101','liqueurgreen','liqueur green',[234,230,121],'eae679',15394425], ['nbs-iscc-m:liqueurgreen.102','liqueurgreen','liqueur green',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:liseranpurple.237','liseranpurple','liseran purple',[158,79,136],'9e4f88',10375048], ['nbs-iscc-m:lithopurple.223','lithopurple','litho purple',[134,96,142],'86608e',8806542], ['nbs-iscc-m:lithopurple.224','lithopurple','litho purple',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:lithopurple.228','lithopurple','litho purple',[121,104,120],'796878',7956600], ['nbs-iscc-m:liver.46','liver','liver',[103,76,71],'674c47',6769735], ['nbs-iscc-m:liverbrown.46','liverbrown','liver brown',[103,76,71],'674c47',6769735], ['nbs-iscc-m:livermaroon.46','livermaroon','liver maroon',[103,76,71],'674c47',6769735], ['nbs-iscc-m:livid.234','livid','livid',[93,85,91],'5d555b',6116699], ['nbs-iscc-m:livid.266','livid','livid',[85,85,85],'555555',5592405], ['nbs-iscc-m:lividbrown.19','lividbrown','livid brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:lividpink.8','lividpink','livid pink',[196,174,173],'c4aead',12889773], ['nbs-iscc-m:lividpurple.245','lividpurple','livid purple',[131,100,121],'836479',8610937], ['nbs-iscc-m:lividviolet.18','lividviolet','livid violet',[173,136,132],'ad8884',11372676], ['nbs-iscc-m:lizardbronze.106','lizardbronze','lizard bronze',[134,126,54],'867e36',8814134], ['nbs-iscc-m:lizardgreen.145','lizardgreen','lizard [green] ',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:loam.64','loam','loam',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:lobeliablue.207','lobeliablue','lobelia [blue] ',[96,78,151],'604e97',6311575], ['nbs-iscc-m:lobeliaviolet.228','lobeliaviolet','lobelia violet',[121,104,120],'796878',7956600], ['nbs-iscc-m:lobster.36','lobster','lobster',[170,56,30],'aa381e',11155486], ['nbs-iscc-m:lobster.38','lobster','lobster',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:locarnogreen.145','locarnogreen','locarno green',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:loganberry.224','loganberry','loganberry',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:logcabin.64','logcabin','log cabin',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:logwood.230','logwood','logwood',[41,30,41],'291e29',2694697], ['nbs-iscc-m:logwood.235','logwood','logwood',[36,33,36],'242124',2367780], ['nbs-iscc-m:logwoodblue.192','logwoodblue','logwood blue',[81,88,94],'51585e',5331038], ['nbs-iscc-m:lokao.135','lokao','lo-kao',[147,197,146],'93c592',9684370], ['nbs-iscc-m:lokao.144','lokao','lo-kao',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:londonbrown.47','londonbrown','london brown',[67,48,46],'43302e',4403246], ['nbs-iscc-m:londonsmoke.267','londonsmoke','london smoke',[34,34,34],'222222',2236962], ['nbs-iscc-m:longbeach.76','longbeach','long beach ',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:longchamps.57','longchamps','longchamps',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:longchamps.60','longchamps','longchamps',[149,128,112],'958070',9797744], ['nbs-iscc-m:lotus.6','lotus','lotus',[192,128,129],'c08081',12615809], ['nbs-iscc-m:lotus.18','lotus','lotus',[173,136,132],'ad8884',11372676], ['nbs-iscc-m:lotus.30','lotus','lotus',[196,131,121],'c48379',12878713], ['nbs-iscc-m:louisphilippe.199','louisphilippe','louis philippe',[135,145,191],'8791bf',8884671], ['nbs-iscc-m:loutre.95','loutre','loutre',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:loutre.96','loutre','loutre',[59,49,33],'3b3121',3879201], ['nbs-iscc-m:louvain.186','louvain','louvain',[83,104,120],'536878',5466232], ['nbs-iscc-m:louvain.192','louvain','louvain',[81,88,94],'51585e',5331038], ['nbs-iscc-m:lovebird.117','lovebird','love bird',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-m:loveinamist.172','loveinamist','love-in-a-mist',[102,170,188],'66aabc',6728380], ['nbs-iscc-m:lucerneblue.199','lucerneblue','lucerne blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-m:luciole.191','luciole','luciole',[129,135,139],'81878b',8488843], ['nbs-iscc-m:luckystone.185','luckystone','lucky stone',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:lumiereblue.163','lumiereblue','lumiere blue',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:lumieregreen.119','lumieregreen','lumiere green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-m:lupine.181','lupine','lupine',[112,163,204],'70a3cc',7381964], ['nbs-iscc-m:lupine.199','lupine','lupine',[135,145,191],'8791bf',8884671], ['nbs-iscc-m:luteous.101','luteous','luteous',[234,230,121],'eae679',15394425], ['nbs-iscc-m:luteous.102','luteous','luteous',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:luxor.196','luxor','luxor',[84,90,167],'545aa7',5528231], ['nbs-iscc-m:lyonsblue.178','lyonsblue','lyons blue',[0,103,165],'0067a5',26533], ['nbs-iscc-m:macaroon.76','macaroon','macaroon',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:madder.12','madder','madder',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:madder.15','madder','madder',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:madder.35','madder','madder',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:madder.37','madder','madder',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:madderblue.214','madderblue','madder blue',[150,144,171],'9690ab',9867435], ['nbs-iscc-m:madderblue.215','madderblue','madder blue',[85,76,105],'554c69',5590121], ['nbs-iscc-m:madderbrown.43','madderbrown','madder brown',[121,68,59],'79443b',7947323], ['nbs-iscc-m:maddercarmine.15','maddercarmine','madder carmine',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:maddercarmine.258','maddercarmine','madder carmine',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:madderindianred.43','madderindianred','madder indian red',[121,68,59],'79443b',7947323], ['nbs-iscc-m:madderlake.12','madderlake','madder lake',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:madderlake.255','madderlake','madder lake',[179,68,108],'b3446c',11748460], ['nbs-iscc-m:madderpink.255','madderpink','madder pink',[179,68,108],'b3446c',11748460], ['nbs-iscc-m:madderred.12','madderred','madder red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:madderred.15','madderred','madder red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:madderred.35','madderred','madder red',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:madderred.37','madderred','madder red',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:madderviolet.224','madderviolet','madder violet',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:madelineblue.204','madelineblue','madeline blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:madonna.182','madonna','madonna',[67,107,149],'436b95',4418453], ['nbs-iscc-m:madonna.186','madonna','madonna',[83,104,120],'536878',5466232], ['nbs-iscc-m:madrid.61','madrid','madrid ',[99,81,71],'635147',6508871], ['nbs-iscc-m:madrid.80','madrid','madrid ',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:madura.77','madura','madura',[130,102,68],'826644',8545860], ['nbs-iscc-m:magenta.256','magenta','magenta',[120,24,74],'78184a',7870538], ['nbs-iscc-m:magentarose.256','magentarose','magenta rose',[120,24,74],'78184a',7870538], ['nbs-iscc-m:magnolia.6','magnolia','magnolia',[192,128,129],'c08081',12615809], ['nbs-iscc-m:magnolia.19','magnolia','magnolia',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:magnolia.30','magnolia','magnolia',[196,131,121],'c48379',12878713], ['nbs-iscc-m:mahogany.43','mahogany','mahogany',[121,68,59],'79443b',7947323], ['nbs-iscc-m:mahoganybrown.43','mahoganybrown','mahogany brown',[121,68,59],'79443b',7947323], ['nbs-iscc-m:mahoganyred.43','mahoganyred','mahogany red',[121,68,59],'79443b',7947323], ['nbs-iscc-m:maidensblush.42','maidensblush','maiden\'s blush ',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:maintenon.37','maintenon','maintenon',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:maise.71','maise','maise',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:maise.73','maise','maise',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:maise.87','maise','maise',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:majolica.183','majolica','majolica',[0,48,78],'00304e',12366], ['nbs-iscc-m:majolicablue.183','majolicablue','majolica blue',[0,48,78],'00304e',12366], ['nbs-iscc-m:majolicablue.201','majolicablue','majolica blue',[37,36,64],'252440',2434112], ['nbs-iscc-m:majolicablue.204','majolicablue','majolica blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:majolicaearth.40','majolicaearth','majolica earth',[136,45,23],'882d17',8924439], ['nbs-iscc-m:malabar.58','malabar','malabar',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:malacca.76','malacca','malacca',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:malacca.90','malacca','malacca',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:malachitegreen.136','malachitegreen','malachite green',[103,146,103],'679267',6787687], ['nbs-iscc-m:malaga.16','malaga','malaga',[114,47,55],'722f37',7483191], ['nbs-iscc-m:malaga.41','malaga','malaga',[86,7,12],'56070c',5637900], ['nbs-iscc-m:malay.58','malay','malay',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:mallard.174','mallard','mallard',[0,73,88],'004958',18776], ['nbs-iscc-m:mallowpink.250','mallowpink','mallow pink',[213,151,174],'d597ae',13997998], ['nbs-iscc-m:mallowpurple.258','mallowpurple','mallow purple',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:mallowred.258','mallowred','mallow red',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:malmaison.86','malmaison','malmaison',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:malmaison.87','malmaison','malmaison',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:malmaisonrose.254','malmaisonrose','malmaison rose',[206,70,118],'ce4676',13518454], ['nbs-iscc-m:malmaisonrose.255','malmaisonrose','malmaison rose',[179,68,108],'b3446c',11748460], ['nbs-iscc-m:manchu.58','manchu','manchu',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:mandalay.61','mandalay','mandalay',[99,81,71],'635147',6508871], ['nbs-iscc-m:mandalay.62','mandalay','mandalay',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:mandarinorange.50','mandarinorange','mandarin orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:mandarinred.35','mandarinred','mandarin red',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:manganesebrown.58','manganesebrown','manganese brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:manganesevelvetbrown.77','manganesevelvetbrown','manganese velvet brown',[130,102,68],'826644',8545860], ['nbs-iscc-m:manganesevelvetbrown.78','manganesevelvetbrown','manganese velvet brown',[75,54,33],'4b3621',4929057], ['nbs-iscc-m:manganeseviolet.218','manganeseviolet','manganese violet',[135,86,146],'875692',8869522], ['nbs-iscc-m:mango.54','mango','mango',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:mango.57','mango','mango',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:manila.76','manila','manila ',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:manon.60','manon','manon',[149,128,112],'958070',9797744], ['nbs-iscc-m:manzanita.43','manzanita','manzanita ',[121,68,59],'79443b',7947323], ['nbs-iscc-m:maple.90','maple','maple',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:maplesugar.77','maplesugar','maple sugar',[130,102,68],'826644',8545860], ['nbs-iscc-m:maracaibo.59','maracaibo','maracaibo',[66,37,24],'422518',4334872], ['nbs-iscc-m:marathon.50','marathon','marathon',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:marblegreen.157','marblegreen','marble green ',[30,35,33],'1e2321',1975073], ['nbs-iscc-m:margueriteyellow.121','margueriteyellow','marguerite yellow',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:marieantoinette.18','marieantoinette','marie antoinette',[173,136,132],'ad8884',11372676], ['nbs-iscc-m:marieantoinette.19','marieantoinette','marie antoinette',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:marineblue.183','marineblue','marine [blue] ',[0,48,78],'00304e',12366], ['nbs-iscc-m:marineblue.200','marineblue','marine [blue] ',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:marineblue.201','marineblue','marine [blue] ',[37,36,64],'252440',2434112], ['nbs-iscc-m:marinecorps.204','marinecorps','marine corps',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:marinegreen.146','marinegreen','marine green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-m:marinegreen.151','marinegreen','marine green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:maris.151','maris','maris',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:maris.165','maris','maris',[0,75,73],'004b49',19273], ['nbs-iscc-m:marmora.164','marmora','marmora',[49,120,115],'317873',3242099], ['nbs-iscc-m:marocain.61','marocain','marocain',[99,81,71],'635147',6508871], ['nbs-iscc-m:marone.61','marone','marone',[99,81,71],'635147',6508871], ['nbs-iscc-m:maroon.16','maroon','maroon',[114,47,55],'722f37',7483191], ['nbs-iscc-m:maroon.41','maroon','maroon',[86,7,12],'56070c',5637900], ['nbs-iscc-m:maroon.44','maroon','maroon',[62,29,30],'3e1d1e',4070686], ['nbs-iscc-m:marron.61','marron','marron',[99,81,71],'635147',6508871], ['nbs-iscc-m:marrone.61','marrone','marrone ',[99,81,71],'635147',6508871], ['nbs-iscc-m:marronglac.58','marronglac','marron glacé',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:marsala.43','marsala','marsala',[121,68,59],'79443b',7947323], ['nbs-iscc-m:marsbrown.58','marsbrown','mars brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:marshrose.19','marshrose','marsh rose',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:marsorange.37','marsorange','mars orange',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:marsred.38','marsred','mars red',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:marsviolet.41','marsviolet','mars violet',[86,7,12],'56070c',5637900], ['nbs-iscc-m:marsyellow.50','marsyellow','mars yellow',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:marsyellow.53','marsyellow','mars yellow',[217,144,88],'d99058',14258264], ['nbs-iscc-m:martinique.54','martinique','martinique',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:martinique.57','martinique','martinique',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:martiusyellow.101','martiusyellow','martius yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-m:marygold.50','marygold','marygold',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:mascara.43','mascara','mascara',[121,68,59],'79443b',7947323], ['nbs-iscc-m:mascot.187','mascot','mascot',[54,69,79],'36454f',3556687], ['nbs-iscc-m:mascot.188','mascot','mascot',[32,40,48],'202830',2107440], ['nbs-iscc-m:mascot.201','mascot','mascot',[37,36,64],'252440',2434112], ['nbs-iscc-m:mascot.204','mascot','mascot',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:massicotyellow.89','massicotyellow','massicot [yellow] ',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:mastcolour.54','mastcolour','mast colour',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:mastic.94','mastic','mastic',[150,113,23],'967117',9859351], ['nbs-iscc-m:matelot.179','matelot','matelot',[0,65,106],'00416a',16746], ['nbs-iscc-m:matrix.164','matrix','matrix',[49,120,115],'317873',3242099], ['nbs-iscc-m:mauveblush.33','mauveblush','mauve blush ',[194,172,153],'c2ac99',12758169], ['nbs-iscc-m:mauveblush.79','mauveblush','mauve blush ',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:mauveblush.93','mauveblush','mauve blush ',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:mauvecastor.23','mauvecastor','mauve castor',[92,80,79],'5c504f',6049871], ['nbs-iscc-m:mauvedust.23','mauvedust','mauve dust',[92,80,79],'5c504f',6049871], ['nbs-iscc-m:mauveglow.18','mauveglow','mauveglow',[173,136,132],'ad8884',11372676], ['nbs-iscc-m:mauverose.16','mauverose','mauverose',[114,47,55],'722f37',7483191], ['nbs-iscc-m:mauvetaupe.23','mauvetaupe','mauve taupe',[92,80,79],'5c504f',6049871], ['nbs-iscc-m:mauvette.227','mauvette','mauvette',[170,152,169],'aa98a9',11180201], ['nbs-iscc-m:mauvewood.43','mauvewood','mauvewood',[121,68,59],'79443b',7947323], ['nbs-iscc-m:mauvewood.46','mauvewood','mauvewood',[103,76,71],'674c47',6769735], ['nbs-iscc-m:mavis.79','mavis','mavis',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:maya.54','maya','maya',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:maya.57','maya','maya',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:mayfairtan.57','mayfairtan','mayfair tan',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:mayfairtan.76','mayfairtan','mayfair tan',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:mayfairtan.77','mayfairtan','mayfair tan',[130,102,68],'826644',8545860], ['nbs-iscc-m:mayflower.15','mayflower','mayflower',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:mazarineblue.197','mazarineblue','mazarine blue',[39,36,88],'272458',2565208], ['nbs-iscc-m:meadowbrook.151','meadowbrook','meadowbrook',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:meadowbrook.165','meadowbrook','meadowbrook',[0,75,73],'004b49',19273], ['nbs-iscc-m:meadowgrass.137','meadowgrass','meadowgrass',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:meadowgrass.151','meadowgrass','meadowgrass',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:meadowgreen.137','meadowgreen','meadow [green] ',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:meadowlark.80','meadowlark','meadowlark',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:meadowpink.258','meadowpink','meadowpink',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:meadowpink.262','meadowpink','meadowpink',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:meadowsweet.19','meadowsweet','meadowsweet',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:meadowviolet.218','meadowviolet','meadow violet',[135,86,146],'875692',8869522], ['nbs-iscc-m:meadowviolet.237','meadowviolet','meadow violet',[158,79,136],'9e4f88',10375048], ['nbs-iscc-m:mecca.43','mecca','mecca',[121,68,59],'79443b',7947323], ['nbs-iscc-m:mecca.58','mecca','mecca',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:medalbronze.77','medalbronze','medal bronze',[130,102,68],'826644',8545860], ['nbs-iscc-m:medalbronze.94','medalbronze','medal bronze',[150,113,23],'967117',9859351], ['nbs-iscc-m:mediciblue.191','mediciblue','medici blue',[129,135,139],'81878b',8488843], ['nbs-iscc-m:mediterranian.164','mediterranian','mediterranian',[49,120,115],'317873',3242099], ['nbs-iscc-m:mediumchromegreen.137','mediumchromegreen','medium chrome green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:mediumchromegreen.146','mediumchromegreen','medium chrome green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-m:meerschaum.79','meerschaum','meerschaum',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:mehal.58','mehal','mehal',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:melilot.241','melilot','melilot',[145,92,131],'915c83',9526403], ['nbs-iscc-m:meline.87','meline','meline',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:mellomauve.18','mellomauve','mello-mauve',[173,136,132],'ad8884',11372676], ['nbs-iscc-m:mellowglow.71','mellowglow','mellowglow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:melon.26','melon','melon',[248,131,121],'f88379',16286585], ['nbs-iscc-m:mephisto.15','mephisto','mephisto ',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:merida.57','merida','merida ',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:merida.76','merida','merida ',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:merida.77','merida','merida ',[130,102,68],'826644',8545860], ['nbs-iscc-m:merle.174','merle','merle ',[0,73,88],'004958',18776], ['nbs-iscc-m:mermaid.122','mermaid','mermaid ',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:mesa.58','mesa','mesa ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:metal.264','metal','metal ',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-m:metalbrown.43','metalbrown','metal brown ',[121,68,59],'79443b',7947323], ['nbs-iscc-m:metalbrown.46','metalbrown','metal brown ',[103,76,71],'674c47',6769735], ['nbs-iscc-m:metallicgreen.107','metallicgreen','metallic green ',[102,93,30],'665d1e',6708510], ['nbs-iscc-m:metallicgrey.233','metallicgrey','metallic grey ',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:mexican.54','mexican','mexican ',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:mexican.74','mexican','mexican ',[153,101,21],'996515',10052885], ['nbs-iscc-m:mexicanred.54','mexicanred','mexican red ',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:mexicanred.57','mexicanred','mexican red ',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:mexico.43','mexico','mexico ',[121,68,59],'79443b',7947323], ['nbs-iscc-m:mexico.55','mexico','mexico ',[128,70,27],'80461b',8406555], ['nbs-iscc-m:miamisand.79','miamisand','miami sand ',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:miamisand.94','miamisand','miami sand ',[150,113,23],'967117',9859351], ['nbs-iscc-m:michigan.165','michigan','michigan ',[0,75,73],'004b49',19273], ['nbs-iscc-m:microclinegreen.148','microclinegreen','microcline green ',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-m:middlebrunswickgreen.137','middlebrunswickgreen','middle brunswick green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:middlestone.91','middlestone','middle stone ',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:middy.183','middy','middy ',[0,48,78],'00304e',12366], ['nbs-iscc-m:midnight.229','midnight','midnight ',[80,64,77],'50404d',5259341], ['nbs-iscc-m:midnightsun.35','midnightsun','midnight sun ',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:mignon.223','mignon','mignon ',[134,96,142],'86608e',8806542], ['nbs-iscc-m:mignonettegreen.106','mignonettegreen','mignonette [green] ',[134,126,54],'867e36',8814134], ['nbs-iscc-m:mignongreen.120','mignongreen','mignon green ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:mikado.35','mikado','mikado ',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:mikado.50','mikado','mikado ',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:mikadobrown.58','mikadobrown','mikado brown ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:mikadoorange.53','mikadoorange','mikado orange ',[217,144,88],'d99058',14258264], ['nbs-iscc-m:milanoblue.186','milanoblue','milano blue ',[83,104,120],'536878',5466232], ['nbs-iscc-m:milkwhite.92','milkwhite','milk white ',[240,234,214],'f0ead6',15788758], ['nbs-iscc-m:milwaukeebrick.73','milwaukeebrick','milwaukee brick ',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:milwaukeebrick.89','milwaukeebrick','milwaukee brick ',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:mimosa.86','mimosa','mimosa ',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:mindoro.57','mindoro','mindoro ',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:mineralbister.58','mineralbister','mineral bister ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:mineralblue.182','mineralblue','mineral blue ',[67,107,149],'436b95',4418453], ['nbs-iscc-m:mineralblue.170','mineralblue','mineral blue ',[46,132,149],'2e8495',3048597], ['nbs-iscc-m:mineralblue.182','mineralblue','mineral blue ',[67,107,149],'436b95',4418453], ['nbs-iscc-m:mineralgreen.136','mineralgreen','mineral green ',[103,146,103],'679267',6787687], ['nbs-iscc-m:mineralgrey.154','mineralgrey','mineral grey ',[178,190,181],'b2beb5',11714229], ['nbs-iscc-m:mineralorange.34','mineralorange','mineral orange ',[226,88,34],'e25822',14833698], ['nbs-iscc-m:mineralpitch.81','mineralpitch','mineral pitch ',[72,60,50],'483c32',4734002], ['nbs-iscc-m:mineralpurple.41','mineralpurple','mineral purple ',[86,7,12],'56070c',5637900], ['nbs-iscc-m:mineralred.19','mineralred','mineral red ',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:mineralrouge.40','mineralrouge','mineral rouge ',[136,45,23],'882d17',8924439], ['nbs-iscc-m:mineralrouge.55','mineralrouge','mineral rouge ',[128,70,27],'80461b',8406555], ['nbs-iscc-m:mineralviolet.218','mineralviolet','mineral violet ',[135,86,146],'875692',8869522], ['nbs-iscc-m:mineralyellow.83','mineralyellow','mineral yellow ',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:mineralyellow.84','mineralyellow','mineral yellow ',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:mineralyellow.86','mineralyellow','mineral yellow ',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:mineralyellow.87','mineralyellow','mineral yellow ',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:mineralyellow.71','mineralyellow','mineral yellow ',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:minggreen.141','minggreen','ming green ',[0,121,89],'007959',31065], ['nbs-iscc-m:miniaturepink.31','miniaturepink','miniature pink ',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-m:miniaturepink.32','miniaturepink','miniature pink ',[199,173,163],'c7ada3',13086115], ['nbs-iscc-m:minium.34','minium','minium ',[226,88,34],'e25822',14833698], ['nbs-iscc-m:mint.146','mint','mint ',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-m:mint.165','mint','mint ',[0,75,73],'004b49',19273], ['nbs-iscc-m:minuet.210','minuet','minuet ',[140,130,182],'8c82b6',9208502], ['nbs-iscc-m:mirabelle.53','mirabelle','mirabelle ',[217,144,88],'d99058',14258264], ['nbs-iscc-m:mirabelle.71','mirabelle','mirabelle ',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:mirador.59','mirador','mirador ',[66,37,24],'422518',4334872], ['nbs-iscc-m:mirage.76','mirage','mirage ',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:mistblue.135','mistblue','mist blue ',[147,197,146],'93c592',9684370], ['nbs-iscc-m:mistblue.144','mistblue','mist blue ',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:mistblue.149','mistblue','mist blue ',[141,163,153],'8da399',9282457], ['nbs-iscc-m:mistgrey.22','mistgrey','mist [grey] ',[143,129,127],'8f817f',9404799], ['nbs-iscc-m:mistletoe.122','mistletoe','mistletoe ',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:mistyblue.135','mistyblue','misty blue ',[147,197,146],'93c592',9684370], ['nbs-iscc-m:mistyblue.144','mistyblue','misty blue ',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:mistyblue.149','mistyblue','misty blue ',[141,163,153],'8da399',9282457], ['nbs-iscc-m:mistymorn.45','mistymorn','misty morn ',[151,127,115],'977f73',9928563], ['nbs-iscc-m:mistymorn.60','mistymorn','misty morn ',[149,128,112],'958070',9797744], ['nbs-iscc-m:mitisgreen.140','mitisgreen','mitis green ',[62,180,137],'3eb489',4109449], ['nbs-iscc-m:mittlersgreen.165','mittlersgreen','mittler\'s green ',[0,75,73],'004b49',19273], ['nbs-iscc-m:moccasin.58','moccasin','moccasin ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:mocha.96','mocha','mocha ',[59,49,33],'3b3121',3879201], ['nbs-iscc-m:mochabisque.58','mochabisque','mocha bisque ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:modebeige.94','modebeige','mode beige ',[150,113,23],'967117',9859351], ['nbs-iscc-m:mohawk.43','mohawk','mohawk ',[121,68,59],'79443b',7947323], ['nbs-iscc-m:mohawk.58','mohawk','mohawk ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:monaco.164','monaco','monaco ',[49,120,115],'317873',3242099], ['nbs-iscc-m:monetblue.197','monetblue','monet blue ',[39,36,88],'272458',2565208], ['nbs-iscc-m:monetblue.200','monetblue','monet blue ',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:monicon.26','monicon','monicon ',[248,131,121],'f88379',16286585], ['nbs-iscc-m:monicon.37','monicon','monicon ',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:monicon.50','monicon','monicon ',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:monicon.53','monicon','monicon ',[217,144,88],'d99058',14258264], ['nbs-iscc-m:monkeyskin.42','monkeyskin','monkey skin ',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:monkshood.215','monkshood','monkshood ',[85,76,105],'554c69',5590121], ['nbs-iscc-m:monsignor.218','monsignor','monsignor ',[135,86,146],'875692',8869522], ['nbs-iscc-m:monsignor.219','monsignor','monsignor ',[96,47,107],'602f6b',6303595], ['nbs-iscc-m:monsoreau.15','monsoreau','monsoreau ',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:montecarlo.160','montecarlo','monte carlo ',[0,122,116],'007a74',31348], ['nbs-iscc-m:montecarlo.164','montecarlo','monte carlo ',[49,120,115],'317873',3242099], ['nbs-iscc-m:montella.62','montella','montella ',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:montella.81','montella','montella ',[72,60,50],'483c32',4734002], ['nbs-iscc-m:monterey.38','monterey','monterey ',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:monticellogreen.137','monticellogreen','monticello green ',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:montpelliergreen.136','montpelliergreen','montpellier green ',[103,146,103],'679267',6787687], ['nbs-iscc-m:montpellieryellow.83','montpellieryellow','montpellier yellow ',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:montpellieryellow.84','montpellieryellow','montpellier yellow ',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:montpellieryellow.86','montpellieryellow','montpellier yellow ',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:montpellieryellow.87','montpellieryellow','montpellier yellow ',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:moonbeam.264','moonbeam','moonbeam ',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-m:moonlight.73','moonlight','moonlight ',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:moonlight.93','moonlight','moonlight ',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:moonlightblue.186','moonlightblue','moonlight blue ',[83,104,120],'536878',5466232], ['nbs-iscc-m:moonmist.93','moonmist','moonmist ',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:moorishred.50','moorishred','moorish red ',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:moose.111','moose','moose ',[54,53,39],'363527',3552551], ['nbs-iscc-m:mordor.43','mordor','mordoré ',[121,68,59],'79443b',7947323], ['nbs-iscc-m:mordor.58','mordor','mordoré ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:moreaberries.68','moreaberries','morea berries ',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:moreaberries.71','moreaberries','morea berries ',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:morello.235','morello','morello ',[36,33,36],'242124',2367780], ['nbs-iscc-m:moresco.50','moresco','moresco ',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:moresco.53','moresco','moresco ',[217,144,88],'d99058',14258264], ['nbs-iscc-m:morillon.120','morillon','morillon ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:morningblue.149','morningblue','morning blue ',[141,163,153],'8da399',9282457], ['nbs-iscc-m:morningblue.154','morningblue','morning blue ',[178,190,181],'b2beb5',11714229], ['nbs-iscc-m:morningdawningyellow.26','morningdawningyellow','morning dawning yellow ',[248,131,121],'f88379',16286585], ['nbs-iscc-m:morningdawningyellow.27','morningdawningyellow','morning dawning yellow ',[230,103,97],'e66761',15099745], ['nbs-iscc-m:morningdawningyellow.37','morningdawningyellow','morning dawning yellow ',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:morningglory.244','morningglory','morning glory ',[170,138,158],'aa8a9e',11176606], ['nbs-iscc-m:moroccan.16','moroccan','moroccan ',[114,47,55],'722f37',7483191], ['nbs-iscc-m:moroccan.38','moroccan','moroccan ',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:morocco.62','morocco','morocco ',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:moroccored.16','moroccored','morocco red ',[114,47,55],'722f37',7483191], ['nbs-iscc-m:moroccored.40','moroccored','morocco red ',[136,45,23],'882d17',8924439], ['nbs-iscc-m:moroccored.43','moroccored','morocco red ',[121,68,59],'79443b',7947323], ['nbs-iscc-m:moroccosand.76','moroccosand','morocco sand ',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:morored.43','morored','moro red ',[121,68,59],'79443b',7947323], ['nbs-iscc-m:morro.47','morro','morro ',[67,48,46],'43302e',4403246], ['nbs-iscc-m:morro.62','morro','morro ',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:mortdore.43','mortdore','mort d\'ore ',[121,68,59],'79443b',7947323], ['nbs-iscc-m:mortdore.58','mortdore','mort d\'ore ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:mosaicblue.182','mosaicblue','mosaic blue ',[67,107,149],'436b95',4418453], ['nbs-iscc-m:mosque.55','mosque','mosque ',[128,70,27],'80461b',8406555], ['nbs-iscc-m:mossgreen.106','mossgreen','moss [green] ',[134,126,54],'867e36',8814134], ['nbs-iscc-m:mossgreen.120','mossgreen','moss [green] ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:mossgrey.109','mossgrey','moss grey ',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:mosspink.262','mosspink','moss pink ',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:mossrose.3','mossrose','moss rose ',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:mossrose.6','mossrose','moss rose ',[192,128,129],'c08081',12615809], ['nbs-iscc-m:mosul.57','mosul','mosul ',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:mosul.58','mosul','mosul ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:mosul.77','mosul','mosul ',[130,102,68],'826644',8545860], ['nbs-iscc-m:mothgrey.90','mothgrey','moth [grey] ',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:motmotblue.169','motmotblue','motmot blue ',[0,119,145],'007791',30609], ['nbs-iscc-m:motmotgreen.136','motmotgreen','motmot green ',[103,146,103],'679267',6787687], ['nbs-iscc-m:motmotgreen.144','motmotgreen','motmot green ',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:mountainblue.182','mountainblue','mountain blue ',[67,107,149],'436b95',4418453], ['nbs-iscc-m:mountaingreen.151','mountaingreen','mountain green ',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:mountaingreen.136','mountaingreen','mountain green ',[103,146,103],'679267',6787687], ['nbs-iscc-m:mountainyellow.71','mountainyellow','mountain yellow ',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:mountvernongreenormtvernongreen.125','mountvernongreenormtvernongreen','mount vernon green or mt. vernon green ',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:mousedun.64','mousedun','mouse-dun ',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:mousegrey.64','mousegrey','mouse [grey] ',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:mousse.106','mousse','mousse ',[134,126,54],'867e36',8814134], ['nbs-iscc-m:mousse.120','mousse','mousse ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:msange.149','msange','mésange ',[141,163,153],'8da399',9282457], ['nbs-iscc-m:mtallique.113','mtallique','métallique ',[87,85,76],'57554c',5723468], ['nbs-iscc-m:muffin.57','muffin','muffin ',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:muffin.74','muffin','muffin ',[153,101,21],'996515',10052885], ['nbs-iscc-m:mulberry.235','mulberry','mulberry ',[36,33,36],'242124',2367780], ['nbs-iscc-m:mulberryfruit.17','mulberryfruit','mulberry fruit ',[63,23,40],'3f1728',4134696], ['nbs-iscc-m:mulberryfruit.21','mulberryfruit','mulberry fruit ',[46,29,33],'2e1d21',3022113], ['nbs-iscc-m:mulberrypurple.224','mulberrypurple','mulberry purple ',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:mummy.81','mummy','mummy ',[72,60,50],'483c32',4734002], ['nbs-iscc-m:mummy.77','mummy','mummy ',[130,102,68],'826644',8545860], ['nbs-iscc-m:mummybrown.58','mummybrown','mummy brown ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:mummybrown.61','mummybrown','mummy brown ',[99,81,71],'635147',6508871], ['nbs-iscc-m:mummybrown.80','mummybrown','mummy brown ',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:muraille.58','muraille','muraille ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:murillo.182','murillo','murillo ',[67,107,149],'436b95',4418453], ['nbs-iscc-m:murinus.64','murinus','murinus ',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:murrey.235','murrey','murrey ',[36,33,36],'242124',2367780], ['nbs-iscc-m:muscade.57','muscade','muscade ',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:muscovite.156','muscovite','muscovite ',[78,87,85],'4e5755',5134165], ['nbs-iscc-m:mushroom.64','mushroom','mushroom ',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:musk.81','musk','musk ',[72,60,50],'483c32',4734002], ['nbs-iscc-m:musketeer.183','musketeer','musketeer ',[0,48,78],'00304e',12366], ['nbs-iscc-m:musketeer.201','musketeer','musketeer ',[37,36,64],'252440',2434112], ['nbs-iscc-m:musketeer.204','musketeer','musketeer ',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:muskmelon.39','muskmelon','muskmelon ',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:muskmelon.53','muskmelon','muskmelon ',[217,144,88],'d99058',14258264], ['nbs-iscc-m:muskrat.62','muskrat','muskrat ',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:mustang.80','mustang','mustang ',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:mustardbrown.58','mustardbrown','mustard brown ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:mustardyellow.87','mustardyellow','mustard [yellow] ',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:mutrieyellow.97','mutrieyellow','mutrie yellow ',[220,211,0],'dcd300',14471936], ['nbs-iscc-m:mutrieyellow.98','mutrieyellow','mutrie yellow ',[233,228,80],'e9e450',15328336], ['nbs-iscc-m:myosotisblue.185','myosotisblue','myosotis blue ',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:myosotisblue.186','myosotisblue','myosotis blue ',[83,104,120],'536878',5466232], ['nbs-iscc-m:myrtlegreen.151','myrtlegreen','myrtle [green] ',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:myrtlegreen.165','myrtlegreen','myrtle [green] ',[0,75,73],'004b49',19273], ['nbs-iscc-m:mythogreen.120','mythogreen','mytho green ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:mythogreen.122','mythogreen','mytho green ',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:nacarat.11','nacarat','nacarat ',[190,0,50],'be0032',12451890], ['nbs-iscc-m:nacarine.11','nacarine','nacarine ',[190,0,50],'be0032',12451890], ['nbs-iscc-m:naiad.144','naiad','naiad ',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:nankeenyellow.86','nankeenyellow','nankeen [yellow] ',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:nankeenyellow.87','nankeenyellow','nankeen [yellow] ',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:nankeenyellow.89','nankeenyellow','nankeen [yellow] ',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:nankeenyellow.90','nankeenyellow','nankeen [yellow] ',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:naplesred.43','naplesred','naples red ',[121,68,59],'79443b',7947323], ['nbs-iscc-m:naplesred.40','naplesred','naples red ',[136,45,23],'882d17',8924439], ['nbs-iscc-m:naplesyellow.86','naplesyellow','naples yellow ',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:naplesyellow.87','naplesyellow','naples yellow ',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:naplesyellow.89','naplesyellow','naples yellow ',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:naplesyellow.90','naplesyellow','naples yellow ',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:napoleonblue.179','napoleonblue','napoleon blue ',[0,65,106],'00416a',16746], ['nbs-iscc-m:napoli.174','napoli','napoli ',[0,73,88],'004958',18776], ['nbs-iscc-m:narcissus.84','narcissus','narcissus ',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:narcissus.87','narcissus','narcissus ',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:narrawood.15','narrawood','narrawood ',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:narva.151','narva','narva ',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:nasturtiumred.38','nasturtiumred','nasturtium [red] ',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:nasturtiumyellow.50','nasturtiumyellow','nasturtium [yellow] ',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:nasturtiumyellow.53','nasturtiumyellow','nasturtium [yellow] ',[217,144,88],'d99058',14258264], ['nbs-iscc-m:nasturtiumyellow.68','nasturtiumyellow','nasturtium [yellow] ',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:nasturtiumyellow.71','nasturtiumyellow','nasturtium [yellow] ',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:natalbrown.61','natalbrown','natal brown',[99,81,71],'635147',6508871], ['nbs-iscc-m:nationalblue.179','nationalblue','national [blue] ',[0,65,106],'00416a',16746], ['nbs-iscc-m:nationalblue.182','nationalblue','national [blue] ',[67,107,149],'436b95',4418453], ['nbs-iscc-m:nationalgrey.265','nationalgrey','national grey ',[132,132,130],'848482',8684674], ['nbs-iscc-m:nattier.199','nattier','nattier',[135,145,191],'8791bf',8884671], ['nbs-iscc-m:natural.73','natural','natural',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:natural.93','natural','natural',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:navaho.48','navaho','navaho',[243,132,0],'f38400',15959040], ['nbs-iscc-m:navaho.50','navaho','navaho',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:navy1.187','navy1','navy 1 ',[54,69,79],'36454f',3556687], ['nbs-iscc-m:navy2.230','navy2','navy 2 ',[41,30,41],'291e29',2694697], ['nbs-iscc-m:navy3.187','navy3','navy 3 ',[54,69,79],'36454f',3556687], ['nbs-iscc-m:navy3.188','navy3','navy 3 ',[32,40,48],'202830',2107440], ['nbs-iscc-m:navyblue.201','navyblue','navy blue',[37,36,64],'252440',2434112], ['nbs-iscc-m:navyblue.204','navyblue','navy blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:neapolitanblue.204','neapolitanblue','neapolitan blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:neapolitanyellow.86','neapolitanyellow','neapolitan yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:neapolitanyellow.87','neapolitanyellow','neapolitan yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:neapolitanyellow.89','neapolitanyellow','neapolitan yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:neapolitanyellow.90','neapolitanyellow','neapolitan yellow',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:nectar.19','nectar','nectar',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:nectarine.28','nectarine','nectarine',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-m:nectarine.29','nectarine','nectarine',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:negro.81','negro','negro',[72,60,50],'483c32',4734002], ['nbs-iscc-m:negro.267','negro','negro',[34,34,34],'222222',2236962], ['nbs-iscc-m:neptunegreen.144','neptunegreen','neptune [green] ',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:neptunegreen.145','neptunegreen','neptune [green] ',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:neutralorange.51','neutralorange','neutral orange',[190,101,22],'be6516',12477718], ['nbs-iscc-m:neutralred.16','neutralred','neutral red',[114,47,55],'722f37',7483191], ['nbs-iscc-m:neutralred.259','neutralred','neutral red',[103,49,71],'673147',6762823], ['nbs-iscc-m:neutraltint.267','neutraltint','neutral tint',[34,34,34],'222222',2236962], ['nbs-iscc-m:neuvidergreen.135','neuvidergreen','neuvider green',[147,197,146],'93c592',9684370], ['nbs-iscc-m:neuvidergreen.144','neuvidergreen','neuvider green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:neuwiedblue.164','neuwiedblue','neuwied blue',[49,120,115],'317873',3242099], ['nbs-iscc-m:neuwiederblue.164','neuwiederblue','neuwieder blue',[49,120,115],'317873',3242099], ['nbs-iscc-m:neuwiedergreen.135','neuwiedergreen','neuwieder green',[147,197,146],'93c592',9684370], ['nbs-iscc-m:neuwiedergreen.144','neuwiedergreen','neuwieder green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:nevagreen.117','nevagreen','neva green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-m:nevagreen.130','nevagreen','neva green',[131,211,125],'83d37d',8639357], ['nbs-iscc-m:newblue.178','newblue','new blue',[0,103,165],'0067a5',26533], ['nbs-iscc-m:newblue.196','newblue','new blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-m:newbronze.58','newbronze','new bronze',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:newbronze.61','newbronze','new bronze',[99,81,71],'635147',6508871], ['nbs-iscc-m:newbronze.77','newbronze','new bronze',[130,102,68],'826644',8545860], ['nbs-iscc-m:newbronze.80','newbronze','new bronze',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:newcocoa.61','newcocoa','new cocoa',[99,81,71],'635147',6508871], ['nbs-iscc-m:newhay.127','newhay','new hay',[81,87,68],'515744',5330756], ['nbs-iscc-m:newport.174','newport','newport',[0,73,88],'004958',18776], ['nbs-iscc-m:newsilver.89','newsilver','new silver',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:newsilver.90','newsilver','new silver',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:newsilver.93','newsilver','new silver',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:newsilver.121','newsilver','new silver',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:newsilver.265','newsilver','new silver',[132,132,130],'848482',8684674], ['nbs-iscc-m:niagara.172','niagara','niagara',[102,170,188],'66aabc',6728380], ['nbs-iscc-m:niagaragreen.163','niagaragreen','niagara green',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:nicaraguawood.15','nicaraguawood','nicaraguawood ',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:nicaraguawood.19','nicaraguawood','nicaraguawood ',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:nice.186','nice','nice',[83,104,120],'536878',5466232], ['nbs-iscc-m:nightshade.212','nightshade','nightshade',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:nightshade.229','nightshade','nightshade',[80,64,77],'50404d',5259341], ['nbs-iscc-m:nikko.182','nikko','nikko',[67,107,149],'436b95',4418453], ['nbs-iscc-m:nikko.186','nikko','nikko',[83,104,120],'536878',5466232], ['nbs-iscc-m:nileblue.163','nileblue','nile blue',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:nilegreen.120','nilegreen','nile [green] ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:nilegreen.122','nilegreen','nile [green] ',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:nilegreen.135','nilegreen','nile [green] ',[147,197,146],'93c592',9684370], ['nbs-iscc-m:nimbus.265','nimbus','nimbus',[132,132,130],'848482',8684674], ['nbs-iscc-m:nippon.183','nippon','nippon',[0,48,78],'00304e',12366], ['nbs-iscc-m:noisette.57','noisette','noisette',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:noisette.74','noisette','noisette',[153,101,21],'996515',10052885], ['nbs-iscc-m:nomadbrown.59','nomadbrown','nomad brown',[66,37,24],'422518',4334872], ['nbs-iscc-m:norfolk.62','norfolk','norfolk',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:normandy.183','normandy','normandy',[0,48,78],'00304e',12366], ['nbs-iscc-m:normandy.201','normandy','normandy',[37,36,64],'252440',2434112], ['nbs-iscc-m:normandy.204','normandy','normandy',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:normandyblue.149','normandyblue','normandy blue',[141,163,153],'8da399',9282457], ['nbs-iscc-m:nougat.60','nougat','nougat',[149,128,112],'958070',9797744], ['nbs-iscc-m:nougat.79','nougat','nougat',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:nubian.267','nubian','nubian',[34,34,34],'222222',2236962], ['nbs-iscc-m:nude.33','nude','nude',[194,172,153],'c2ac99',12758169], ['nbs-iscc-m:nude.73','nude','nude',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:nude.76','nude','nude',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:nude.79','nude','nude',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:nugget.53','nugget','nugget',[217,144,88],'d99058',14258264], ['nbs-iscc-m:nugget.72','nugget','nugget',[190,138,61],'be8a3d',12487229], ['nbs-iscc-m:nuncio.223','nuncio','nuncio',[134,96,142],'86608e',8806542], ['nbs-iscc-m:nurembergred.43','nurembergred','nuremberg red ',[121,68,59],'79443b',7947323], ['nbs-iscc-m:nurembergviolet.218','nurembergviolet','nuremberg violet',[135,86,146],'875692',8869522], ['nbs-iscc-m:nutmeg.58','nutmeg','nutmeg',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:nutmeg.61','nutmeg','nutmeg',[99,81,71],'635147',6508871], ['nbs-iscc-m:nutria.113','nutria','nutria',[87,85,76],'57554c',5723468], ['nbs-iscc-m:nymphea.223','nymphea','nymphea',[134,96,142],'86608e',8806542], ['nbs-iscc-m:nymphgreen.104','nymphgreen','nymph green',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-m:nymphgreen.119','nymphgreen','nymph green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-m:nymphpink.2','nymphpink','nymph [pink] ',[234,147,153],'ea9399',15373209], ['nbs-iscc-m:nymphpink.5','nymphpink','nymph [pink] ',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:oad.186','oad','oad ',[83,104,120],'536878',5466232], ['nbs-iscc-m:oakbrown.55','oakbrown','oak [brown] ',[128,70,27],'80461b',8406555], ['nbs-iscc-m:oakbrown.58','oakbrown','oak [brown] ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:oakbuff.57','oakbuff','oakbuff',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:oakbuff.76','oakbuff','oakbuff',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:oakbuff.77','oakbuff','oakbuff',[130,102,68],'826644',8545860], ['nbs-iscc-m:oakgreen.106','oakgreen','oak [green] ',[134,126,54],'867e36',8814134], ['nbs-iscc-m:oakheart.19','oakheart','oakheart',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:oakheart.43','oakheart','oakheart',[121,68,59],'79443b',7947323], ['nbs-iscc-m:oakleafbrown.51','oakleafbrown','oakleaf brown',[190,101,22],'be6516',12477718], ['nbs-iscc-m:oakleafbrown.54','oakleafbrown','oakleaf brown',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:oakleafbrown.55','oakleafbrown','oakleaf brown',[128,70,27],'80461b',8406555], ['nbs-iscc-m:oakwood.58','oakwood','oakwood',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:oasis.106','oasis','oasis',[134,126,54],'867e36',8814134], ['nbs-iscc-m:oasis.120','oasis','oasis',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:oceangreen.135','oceangreen','ocean green',[147,197,146],'93c592',9684370], ['nbs-iscc-m:ocherred.19','ocherred','ocher red',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:ochraceous.71','ochraceous','ochraceous',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:ochre.71','ochre','ochre',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:ochrederu.54','ochrederu','ochre de ru',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:ochrederu.74','ochrederu','ochre de ru',[153,101,21],'996515',10052885], ['nbs-iscc-m:ochrered.38','ochrered','ochre red',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:oilblue.194','oilblue','oil blue',[48,38,122],'30267a',3155578], ['nbs-iscc-m:oilgreen.136','oilgreen','oil green',[103,146,103],'679267',6787687], ['nbs-iscc-m:oilyellow.102','oilyellow','oil yellow',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:oilyellow.103','oilyellow','oil yellow',[152,148,62],'98943e',9999422], ['nbs-iscc-m:okerdeluce.54','okerdeluce','oker de luce',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:okerdeluce.74','okerdeluce','oker de luce',[153,101,21],'996515',10052885], ['nbs-iscc-m:okerdeluke.54','okerdeluke','oker de luke',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:okerdeluke.74','okerdeluke','oker de luke',[153,101,21],'996515',10052885], ['nbs-iscc-m:okerderouse.54','okerderouse','oker de rouse',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:okerderouse.74','okerderouse','oker de rouse',[153,101,21],'996515',10052885], ['nbs-iscc-m:oldamethyst.16','oldamethyst','old amethyst',[114,47,55],'722f37',7483191], ['nbs-iscc-m:oldamethyst.259','oldamethyst','old amethyst',[103,49,71],'673147',6762823], ['nbs-iscc-m:oldblue.185','oldblue','old blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:oldblue.186','oldblue','old blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:oldblue.191','oldblue','old blue',[129,135,139],'81878b',8488843], ['nbs-iscc-m:oldbronze.94','oldbronze','old bronze',[150,113,23],'967117',9859351], ['nbs-iscc-m:oldbronze.106','oldbronze','old bronze',[134,126,54],'867e36',8814134], ['nbs-iscc-m:oldburgundy.44','oldburgundy','old burgundy',[62,29,30],'3e1d1e',4070686], ['nbs-iscc-m:oldburgundy.47','oldburgundy','old burgundy',[67,48,46],'43302e',4403246], ['nbs-iscc-m:oldcedar.43','oldcedar','old cedar',[121,68,59],'79443b',7947323], ['nbs-iscc-m:oldchina.186','oldchina','old china',[83,104,120],'536878',5466232], ['nbs-iscc-m:oldchina.204','oldchina','old china',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:oldcoral.15','oldcoral','old coral',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:olde.101','olde','olde',[234,230,121],'eae679',15394425], ['nbs-iscc-m:olde.102','olde','olde',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:oldenglishbrown.81','oldenglishbrown','old english brown',[72,60,50],'483c32',4734002], ['nbs-iscc-m:oldenglishbrown.95','oldenglishbrown','old english brown',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:oldenglishbrown.96','oldenglishbrown','old english brown',[59,49,33],'3b3121',3879201], ['nbs-iscc-m:oldgold.106','oldgold','old gold',[134,126,54],'867e36',8814134], ['nbs-iscc-m:oldhelio.224','oldhelio','old helio',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:oldivory.90','oldivory','old ivory',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:oldivory.91','oldivory','old ivory',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:oldivory.94','oldivory','old ivory',[150,113,23],'967117',9859351], ['nbs-iscc-m:oldlavender.235','oldlavender','old lavender',[36,33,36],'242124',2367780], ['nbs-iscc-m:oldlilac.228','oldlilac','old lilac',[121,104,120],'796878',7956600], ['nbs-iscc-m:oldlilac.245','oldlilac','old lilac',[131,100,121],'836479',8610937], ['nbs-iscc-m:oldmauve.229','oldmauve','old mauve',[80,64,77],'50404d',5259341], ['nbs-iscc-m:oldmauve.259','oldmauve','old mauve',[103,49,71],'673147',6762823], ['nbs-iscc-m:oldmossgreen.106','oldmossgreen','old moss [green] ',[134,126,54],'867e36',8814134], ['nbs-iscc-m:oldolive.95','oldolive','old olive ',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:oldpink.57','oldpink','old pink',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:oldred.13','oldred','old red',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:oldred.15','oldred','old red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:oldrose.19','oldrose','old rose',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:oldroseleaf.16','oldroseleaf','old roseleaf',[114,47,55],'722f37',7483191], ['nbs-iscc-m:oldsilver.265','oldsilver','old silver',[132,132,130],'848482',8684674], ['nbs-iscc-m:oldwood.19','oldwood','old wood',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:olivaceous.107','olivaceous','olivaceous',[102,93,30],'665d1e',6708510], ['nbs-iscc-m:olivebrown.95','olivebrown','olive brown',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:olivedrab.110','olivedrab','olive drab',[91,88,66],'5b5842',5986370], ['nbs-iscc-m:olivegreen.107','olivegreen','olive [green] ',[102,93,30],'665d1e',6708510], ['nbs-iscc-m:olivegrey.122','olivegrey','olive grey ',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:olivegrey.155','olivegrey','olive grey ',[125,137,132],'7d8984',8227204], ['nbs-iscc-m:olivesheen.91','olivesheen','olivesheen',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:oliveterraverte.106','oliveterraverte','olive terra verte',[134,126,54],'867e36',8814134], ['nbs-iscc-m:olivewood.80','olivewood','olive wood',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:oliveyellow.103','oliveyellow','olive yellow',[152,148,62],'98943e',9999422], ['nbs-iscc-m:oliveyellow.106','oliveyellow','olive yellow',[134,126,54],'867e36',8814134], ['nbs-iscc-m:olivine.135','olivine','olivine',[147,197,146],'93c592',9684370], ['nbs-iscc-m:olympia.160','olympia','olympia',[0,122,116],'007a74',31348], ['nbs-iscc-m:olympia.164','olympia','olympia',[49,120,115],'317873',3242099], ['nbs-iscc-m:olympianblue.179','olympianblue','olympian blue ',[0,65,106],'00416a',16746], ['nbs-iscc-m:olympiangreen.136','olympiangreen','olympian green',[103,146,103],'679267',6787687], ['nbs-iscc-m:olympic.187','olympic','olympic',[54,69,79],'36454f',3556687], ['nbs-iscc-m:olympicblue.169','olympicblue','olympic blue',[0,119,145],'007791',30609], ['nbs-iscc-m:ondine.149','ondine','ondine',[141,163,153],'8da399',9282457], ['nbs-iscc-m:onionpeel.19','onionpeel','onion-peel ',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:onionred.19','onionred','onion red',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:onionskinpink.29','onionskinpink','onion-skin pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:onionskinpink.53','onionskinpink','onion-skin pink',[217,144,88],'d99058',14258264], ['nbs-iscc-m:onionskinpink.57','onionskinpink','onion-skin pink',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:ontarioviolet.203','ontarioviolet','ontario violet',[140,146,172],'8c92ac',9212588], ['nbs-iscc-m:oold.101','oold','oold',[234,230,121],'eae679',15394425], ['nbs-iscc-m:oold.102','oold','oold',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:opal.164','opal','opal',[49,120,115],'317873',3242099], ['nbs-iscc-m:opalblue.186','opalblue','opal blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:opalgrey.22','opalgrey','opal grey ',[143,129,127],'8f817f',9404799], ['nbs-iscc-m:opalgrey.265','opalgrey','opal grey ',[132,132,130],'848482',8684674], ['nbs-iscc-m:opalinegreen.143','opalinegreen','opaline green',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-m:opalmauve.10','opalmauve','opal mauve',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-m:opaq.136','opaq','opaq',[103,146,103],'679267',6787687], ['nbs-iscc-m:operamauve.240','operamauve','opera mauve',[183,132,167],'b784a7',12027047], ['nbs-iscc-m:operapink.28','operapink','opera pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-m:operapink.29','operapink','opera pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:operapink.31','operapink','opera pink',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-m:operapink.32','operapink','opera pink',[199,173,163],'c7ada3',13086115], ['nbs-iscc-m:ophelia.241','ophelia','ophelia',[145,92,131],'915c83',9526403], ['nbs-iscc-m:ophelia.262','ophelia','ophelia',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:ophelia.245','ophelia','ophelia',[131,100,121],'836479',8610937], ['nbs-iscc-m:oporto.16','oporto','oporto',[114,47,55],'722f37',7483191], ['nbs-iscc-m:oporto.17','oporto','oporto',[63,23,40],'3f1728',4134696], ['nbs-iscc-m:orangeaurora.26','orangeaurora','orange aurora',[248,131,121],'f88379',16286585], ['nbs-iscc-m:orangeaurora.27','orangeaurora','orange aurora',[230,103,97],'e66761',15099745], ['nbs-iscc-m:orangeaurora.37','orangeaurora','orange aurora',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:orangelead.34','orangelead','orange lead',[226,88,34],'e25822',14833698], ['nbs-iscc-m:orangemadder.50','orangemadder','orange madder',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:orangeochre.50','orangeochre','orange ochre',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:orangepeel.50','orangepeel','orange-peel',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:orangerufous.50','orangerufous','orange rufous',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:orangetawny.37','orangetawny','orange tawny',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:orangevermilion.35','orangevermilion','orange vermilion',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:orchadee.240','orchadee','orchadee',[183,132,167],'b784a7',12027047], ['nbs-iscc-m:orchall.258','orchall','orchall',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:orchid.222','orchid','orchid',[182,149,192],'b695c0',11965888], ['nbs-iscc-m:orchid.227','orchid','orchid',[170,152,169],'aa98a9',11180201], ['nbs-iscc-m:orchidpink.2','orchidpink','orchid pink',[234,147,153],'ea9399',15373209], ['nbs-iscc-m:orchil.15','orchil','orchil ',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:orchil.258','orchil','orchil ',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:orchis.19','orchis','orchis',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:orient.5','orient','orient',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:oriental.186','oriental','oriental',[83,104,120],'536878',5466232], ['nbs-iscc-m:orientalblue.204','orientalblue','oriental blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:orientalblue.178','orientalblue','oriental blue',[0,103,165],'0067a5',26533], ['nbs-iscc-m:orientalblue.196','orientalblue','oriental blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-m:orientalbole.43','orientalbole','oriental bole ',[121,68,59],'79443b',7947323], ['nbs-iscc-m:orientalfuchsia.238','orientalfuchsia','oriental fuchsia',[112,41,99],'702963',7350627], ['nbs-iscc-m:orientalgreen.131','orientalgreen','oriental green',[68,148,74],'44944a',4494410], ['nbs-iscc-m:orientalgreen.136','orientalgreen','oriental green',[103,146,103],'679267',6787687], ['nbs-iscc-m:orientalpearl.112','orientalpearl','oriental pearl',[138,135,118],'8a8776',9078646], ['nbs-iscc-m:orientalpearl.265','orientalpearl','oriental pearl',[132,132,130],'848482',8684674], ['nbs-iscc-m:orientalred.12','orientalred','oriental red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:orientblue.178','orientblue','orient [blue] ',[0,103,165],'0067a5',26533], ['nbs-iscc-m:orientblue.182','orientblue','orient blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:orientblue.186','orientblue','orient blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:orientpink.29','orientpink','orient pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:orientred.12','orientred','orient red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:orientyellow.50','orientyellow','orient yellow',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:orientyellow.53','orientyellow','orient yellow',[217,144,88],'d99058',14258264], ['nbs-iscc-m:orientyellow.68','orientyellow','orient yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:orientyellow.71','orientyellow','orient yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:orientyellow.88','orientyellow','orient yellow',[171,145,68],'ab9144',11243844], ['nbs-iscc-m:orientyellow.91','orientyellow','orient yellow',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:oriole.54','oriole','oriole',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:orion.183','orion','orion',[0,48,78],'00304e',12366], ['nbs-iscc-m:orlean.29','orlean','orlean',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:ormond.45','ormond','ormond',[151,127,115],'977f73',9928563], ['nbs-iscc-m:ormond.60','ormond','ormond',[149,128,112],'958070',9797744], ['nbs-iscc-m:ormond.63','ormond','ormond',[142,130,121],'8e8279',9339513], ['nbs-iscc-m:orpiment.83','orpiment','orpiment',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:orpiment.84','orpiment','orpiment',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:orpiment.86','orpiment','orpiment',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:orpiment.87','orpiment','orpiment',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:orpimentorange.48','orpimentorange','orpiment orange',[243,132,0],'f38400',15959040], ['nbs-iscc-m:orpimentorange.50','orpimentorange','orpiment orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:orpimentred.68','orpimentred','orpiment red',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:orpimentred.71','orpimentred','orpiment red',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:orpin.83','orpin','orpin',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:orpin.84','orpin','orpin',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:orpin.86','orpin','orpin',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:orpin.87','orpin','orpin',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:orseille.258','orseille','orseille',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:otterbrown.81','otterbrown','otter [brown] ',[72,60,50],'483c32',4734002], ['nbs-iscc-m:ouralgreen.135','ouralgreen','oural green',[147,197,146],'93c592',9684370], ['nbs-iscc-m:ouralgreen.148','ouralgreen','oural green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-m:owl.64','owl','owl',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:oxbloodred.43','oxbloodred','oxblood [red] ',[121,68,59],'79443b',7947323], ['nbs-iscc-m:oxfordblue.230','oxfordblue','oxford blue',[41,30,41],'291e29',2694697], ['nbs-iscc-m:oxfordchrome.71','oxfordchrome','oxford chrome',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:oxfordochre.71','oxfordochre','oxford ochre',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:oxfordyellow.71','oxfordyellow','oxford yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:oxgall.84','oxgall','oxgall',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:oxheart.13','oxheart','oxheart',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:oxideblue.167','oxideblue','oxide blue',[0,133,161],'0085a1',34209], ['nbs-iscc-m:oxidebrown.43','oxidebrown','oxide brown',[121,68,59],'79443b',7947323], ['nbs-iscc-m:oxidepurple.43','oxidepurple','oxide purple',[121,68,59],'79443b',7947323], ['nbs-iscc-m:oxideyellow.71','oxideyellow','oxide yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:oystergrey.121','oystergrey','oyster grey ',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:oysterwhite.121','oysterwhite','oyster [white] ',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:pablo.57','pablo','pablo',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:pablo.76','pablo','pablo',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:pacific.149','pacific','pacific',[141,163,153],'8da399',9282457], ['nbs-iscc-m:pacific.163','pacific','pacific',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:paddock.165','paddock','paddock',[0,75,73],'004b49',19273], ['nbs-iscc-m:pagodablue.174','pagodablue','pagoda [blue] ',[0,73,88],'004958',18776], ['nbs-iscc-m:pagodablue.187','pagodablue','pagoda [blue] ',[54,69,79],'36454f',3556687], ['nbs-iscc-m:palestine.228','palestine','palestine',[121,104,120],'796878',7956600], ['nbs-iscc-m:palestine.262','palestine','palestine',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:palm.120','palm','palm',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:palmetto.122','palmetto','palmetto',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:palmgreen.137','palmgreen','palm green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:palmleaf.106','palmleaf','palmleaf',[134,126,54],'867e36',8814134], ['nbs-iscc-m:paloma.54','paloma','paloma',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:paloma.57','paloma','paloma',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:pampas.64','pampas','pampas',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:pan.151','pan','pan',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:pancygreen.137','pancygreen','pancy green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:panse.207','panse','pansée',[96,78,151],'604e97',6311575], ['nbs-iscc-m:pansy.207','pansy','pansy',[96,78,151],'604e97',6311575], ['nbs-iscc-m:pansymaroon.259','pansymaroon','pansy-maroon',[103,49,71],'673147',6762823], ['nbs-iscc-m:pansypurple.259','pansypurple','pansy purple',[103,49,71],'673147',6762823], ['nbs-iscc-m:pansyviolet.242','pansyviolet','pansy violet',[93,57,84],'5d3954',6109524], ['nbs-iscc-m:paon.174','paon','paon',[0,73,88],'004958',18776], ['nbs-iscc-m:paperwhite.93','paperwhite','paper white',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:paprica.34','paprica','paprica',[226,88,34],'e25822',14833698], ['nbs-iscc-m:papyrus.57','papyrus','papyrus',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:paradisegreen.137','paradisegreen','paradise green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:parared.12','parared','para red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:parared.15','parared','para red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:parchment.90','parchment','parchment',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:parchment.91','parchment','parchment',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:parchment.94','parchment','parchment',[150,113,23],'967117',9859351], ['nbs-iscc-m:parisgreen.136','parisgreen','paris green ',[103,146,103],'679267',6787687], ['nbs-iscc-m:parisgreen.140','parisgreen','paris green ',[62,180,137],'3eb489',4109449], ['nbs-iscc-m:parismud.20','parismud','paris mud',[84,61,63],'543d3f',5520703], ['nbs-iscc-m:parisred.34','parisred','paris red',[226,88,34],'e25822',14833698], ['nbs-iscc-m:parisyellow.84','parisyellow','paris yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:parkgreen.120','parkgreen','park green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:parmared.12','parmared','parma red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:parmared.15','parmared','parma red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:parme.211','parme','parme',[96,78,129],'604e81',6311553], ['nbs-iscc-m:parrakeet.120','parrakeet','parrakeet',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:parrakeet.140','parrakeet','parrakeet',[62,180,137],'3eb489',4109449], ['nbs-iscc-m:parroquitgreen.120','parroquitgreen','parroquit green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:parrotgreen.120','parrotgreen','parrot green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:partridge.77','partridge','partridge',[130,102,68],'826644',8545860], ['nbs-iscc-m:partridge.78','partridge','partridge',[75,54,33],'4b3621',4929057], ['nbs-iscc-m:parulablue.186','parulablue','parula blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:pastel.186','pastel','pastel',[83,104,120],'536878',5466232], ['nbs-iscc-m:pastelblue.186','pastelblue','pastel blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:pastelgrey.90','pastelgrey','pastel grey ',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:pastelparchment.29','pastelparchment','pastel parchment',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:pastelparchment.32','pastelparchment','pastel parchment',[199,173,163],'c7ada3',13086115], ['nbs-iscc-m:pastelparchment.33','pastelparchment','pastel parchment',[194,172,153],'c2ac99',12758169], ['nbs-iscc-m:patentyellow.83','patentyellow','patent yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:patentyellow.84','patentyellow','patent yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:patentyellow.86','patentyellow','patent yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:patentyellow.87','patentyellow','patent yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:patinagreen.135','patinagreen','patina green',[147,197,146],'93c592',9684370], ['nbs-iscc-m:patinagreen.136','patinagreen','patina green',[103,146,103],'679267',6787687], ['nbs-iscc-m:patriarch.219','patriarch','patriarch',[96,47,107],'602f6b',6303595], ['nbs-iscc-m:patricia.237','patricia','patricia',[158,79,136],'9e4f88',10375048], ['nbs-iscc-m:paulveronesegreen.140','paulveronesegreen','paul veronese green ',[62,180,137],'3eb489',4109449], ['nbs-iscc-m:pauncygreen.137','pauncygreen','pauncy green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:pavonine.174','pavonine','pavonine',[0,73,88],'004958',18776], ['nbs-iscc-m:pawnee.57','pawnee','pawnee',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:pawnee.60','pawnee','pawnee',[149,128,112],'958070',9797744], ['nbs-iscc-m:pawnee.76','pawnee','pawnee',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:pawnee.79','pawnee','pawnee',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:paynesgrey.186','paynesgrey','payne\'s grey ',[83,104,120],'536878',5466232], ['nbs-iscc-m:paynesgrey.187','paynesgrey','payne\'s grey ',[54,69,79],'36454f',3556687], ['nbs-iscc-m:peach.28','peach','peach',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-m:peach.29','peach','peach',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:peachbeige.29','peachbeige','peachbeige',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:peachbisque.42','peachbisque','peach bisque',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:peachbloom.29','peachbloom','peach bloom',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:peachblossompink.2','peachblossompink','peach blossom [pink] ',[234,147,153],'ea9399',15373209], ['nbs-iscc-m:peachblossompink.5','peachblossompink','peach blossom [pink] ',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:peachblossomred.2','peachblossomred','peach blossom [red] ',[234,147,153],'ea9399',15373209], ['nbs-iscc-m:peachblossomred.5','peachblossomred','peach blossom [red] ',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:peachblow.73','peachblow','peach blow',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:peachblush.55','peachblush','peach blush',[128,70,27],'80461b',8406555], ['nbs-iscc-m:peachred.26','peachred','peach red',[248,131,121],'f88379',16286585], ['nbs-iscc-m:peachwood.15','peachwood','peachwood',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:peachwood.19','peachwood','peachwood',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:peacockblue.174','peacockblue','peacock [blue] ',[0,73,88],'004958',18776], ['nbs-iscc-m:peacockgreen.136','peacockgreen','peacock green',[103,146,103],'679267',6787687], ['nbs-iscc-m:peagreen.120','peagreen','pea green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:peanut.90','peanut','peanut',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:pearl.264','pearl','pearl',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-m:pearlblue.264','pearlblue','pearl blue',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-m:pearlblush.33','pearlblush','pearlblush',[194,172,153],'c2ac99',12758169], ['nbs-iscc-m:pearlblush.60','pearlblush','pearlblush',[149,128,112],'958070',9797744], ['nbs-iscc-m:pearlgray.93','pearlgray','pearl gray',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:pearlwhite.264','pearlwhite','pearl white',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-m:peasant.201','peasant','peasant',[37,36,64],'252440',2434112], ['nbs-iscc-m:peasant.204','peasant','peasant',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:peasantblue.186','peasantblue','peasant blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:peasantblue.183','peasantblue','peasant blue',[0,48,78],'00304e',12366], ['nbs-iscc-m:peasantblue.201','peasantblue','peasant blue',[37,36,64],'252440',2434112], ['nbs-iscc-m:peasantblue.204','peasantblue','peasant blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:pebble.90','pebble','pebble',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:pecan.79','pecan','pecan',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:pecanbrown.58','pecanbrown','pecan brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:pekinese.54','pekinese','pekinese',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:pekinese.57','pekinese','pekinese',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:pekingblue.183','pekingblue','peking blue',[0,48,78],'00304e',12366], ['nbs-iscc-m:pelican.266','pelican','pelican',[85,85,85],'555555',5592405], ['nbs-iscc-m:peligotsblue.164','peligotsblue','peligot\'s blue',[49,120,115],'317873',3242099], ['nbs-iscc-m:pelt.64','pelt','pelt',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:pencilwood.43','pencilwood','pencilwood',[121,68,59],'79443b',7947323], ['nbs-iscc-m:pencilwood.58','pencilwood','pencilwood',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:penguin.265','penguin','penguin',[132,132,130],'848482',8684674], ['nbs-iscc-m:peony.16','peony','peony',[114,47,55],'722f37',7483191], ['nbs-iscc-m:peonyred.13','peonyred','peony red',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:peonyred.16','peonyred','peony red',[114,47,55],'722f37',7483191], ['nbs-iscc-m:pepita.94','pepita','pepita',[150,113,23],'967117',9859351], ['nbs-iscc-m:peppermint.131','peppermint','peppermint',[68,148,74],'44944a',4494410], ['nbs-iscc-m:pepperred.15','pepperred','pepper red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:peridot.120','peridot','peridot',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:peridot.122','peridot','peridot',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:peridot.125','peridot','peridot',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:peridot.127','peridot','peridot',[81,87,68],'515744',5330756], ['nbs-iscc-m:perilla.205','perilla','perilla',[144,101,202],'9065ca',9463242], ['nbs-iscc-m:perilla.207','perilla','perilla',[96,78,151],'604e97',6311575], ['nbs-iscc-m:perillapurple.259','perillapurple','perilla purple',[103,49,71],'673147',6762823], ['nbs-iscc-m:perique.81','perique','perique',[72,60,50],'483c32',4734002], ['nbs-iscc-m:periwinkle.203','periwinkle','periwinkle',[140,146,172],'8c92ac',9212588], ['nbs-iscc-m:periwinkle.204','periwinkle','periwinkle',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:permanentblue.178','permanentblue','permanent blue',[0,103,165],'0067a5',26533], ['nbs-iscc-m:permanentblue.196','permanentblue','permanent blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-m:permanentred.12','permanentred','permanent red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:permanentred.15','permanentred','permanent red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:permanentviolet.218','permanentviolet','permanent violet',[135,86,146],'875692',8869522], ['nbs-iscc-m:permanentyellow.71','permanentyellow','permanent yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:permared.12','permared','perma red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:permared.15','permared','perma red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:pernambucowood.15','pernambucowood','pernambucowood',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:pernambucowood.19','pernambucowood','pernambucowood',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:perruche.120','perruche','perruche',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:persenche.214','persenche','persenche',[150,144,171],'9690ab',9867435], ['nbs-iscc-m:persianblue.185','persianblue','persian blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:persianblue.204','persianblue','persian blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:persianearth.40','persianearth','persian earth',[136,45,23],'882d17',8924439], ['nbs-iscc-m:persiangreen.151','persiangreen','persian green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:persianlilac.251','persianlilac','persian lilac',[193,126,145],'c17e91',12680849], ['nbs-iscc-m:persianmelon.39','persianmelon','persian melon',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:persianorange.53','persianorange','persian orange',[217,144,88],'d99058',14258264], ['nbs-iscc-m:persianpink.258','persianpink','persian pink',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:persianred.40','persianred','persian red',[136,45,23],'882d17',8924439], ['nbs-iscc-m:persianrose.254','persianrose','persian rose',[206,70,118],'ce4676',13518454], ['nbs-iscc-m:persianyellow.34','persianyellow','persian yellow',[226,88,34],'e25822',14833698], ['nbs-iscc-m:persianyellow.48','persianyellow','persian yellow',[243,132,0],'f38400',15959040], ['nbs-iscc-m:persimmon.55','persimmon','persimmon',[128,70,27],'80461b',8406555], ['nbs-iscc-m:persio.258','persio','persio',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:persis.258','persis','persis',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:peruvianbrown.54','peruvianbrown','peruvian brown',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:peruvianbrown.57','peruvianbrown','peruvian brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:peruvianyellow.37','peruvianyellow','peruvian yellow',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:pervenche.204','pervenche','pervenche',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:petunia.224','petunia','petunia',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:petuniaviolet.219','petuniaviolet','petunia [violet] ',[96,47,107],'602f6b',6303595], ['nbs-iscc-m:pewke.16','pewke','pewke',[114,47,55],'722f37',7483191], ['nbs-iscc-m:pewter.266','pewter','pewter',[85,85,85],'555555',5592405], ['nbs-iscc-m:phantom.266','phantom','phantom',[85,85,85],'555555',5592405], ['nbs-iscc-m:phantomred.34','phantomred','phantom red',[226,88,34],'e25822',14833698], ['nbs-iscc-m:pharaoh.200','pharaoh','pharaoh',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:pharaoh.201','pharaoh','pharaoh',[37,36,64],'252440',2434112], ['nbs-iscc-m:pheasant.53','pheasant','pheasant',[217,144,88],'d99058',14258264], ['nbs-iscc-m:pheasant.57','pheasant','pheasant',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:philamot.51','philamot','philamot',[190,101,22],'be6516',12477718], ['nbs-iscc-m:philamot.54','philamot','philamot',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:philamot.55','philamot','philamot',[128,70,27],'80461b',8406555], ['nbs-iscc-m:philimot.51','philimot','philimot',[190,101,22],'be6516',12477718], ['nbs-iscc-m:philimot.54','philimot','philimot',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:philimot.55','philimot','philimot',[128,70,27],'80461b',8406555], ['nbs-iscc-m:philomot.51','philomot','philomot',[190,101,22],'be6516',12477718], ['nbs-iscc-m:philomot.54','philomot','philomot',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:philomot.55','philomot','philomot',[128,70,27],'80461b',8406555], ['nbs-iscc-m:phlox.238','phlox','phlox',[112,41,99],'702963',7350627], ['nbs-iscc-m:phlox.259','phlox','phlox',[103,49,71],'673147',6762823], ['nbs-iscc-m:phloxpink.227','phloxpink','phlox pink',[170,152,169],'aa98a9',11180201], ['nbs-iscc-m:phloxpurple.237','phloxpurple','phlox purple',[158,79,136],'9e4f88',10375048], ['nbs-iscc-m:phyliamort.51','phyliamort','phyliamort ',[190,101,22],'be6516',12477718], ['nbs-iscc-m:phyliamort.54','phyliamort','phyliamort ',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:phyliamort.55','phyliamort','phyliamort ',[128,70,27],'80461b',8406555], ['nbs-iscc-m:phyllamort.51','phyllamort','phyllamort',[190,101,22],'be6516',12477718], ['nbs-iscc-m:phyllamort.54','phyllamort','phyllamort',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:phyllamort.55','phyllamort','phyllamort',[128,70,27],'80461b',8406555], ['nbs-iscc-m:piccadilly.43','piccadilly','piccadilly',[121,68,59],'79443b',7947323], ['nbs-iscc-m:piccadilly.46','piccadilly','piccadilly',[103,76,71],'674c47',6769735], ['nbs-iscc-m:piccaninny.81','piccaninny','piccaninny',[72,60,50],'483c32',4734002], ['nbs-iscc-m:piccolpassored.43','piccolpassored','piccolpasso red',[121,68,59],'79443b',7947323], ['nbs-iscc-m:pigeon.234','pigeon','pigeon',[93,85,91],'5d555b',6116699], ['nbs-iscc-m:pigeonblood.16','pigeonblood','pigeon blood',[114,47,55],'722f37',7483191], ['nbs-iscc-m:pigeonneck.266','pigeonneck','pigeon neck',[85,85,85],'555555',5592405], ['nbs-iscc-m:pigeonsbreast.19','pigeonsbreast','pigeon\'s-breast',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:pigeonsthroat.145','pigeonsthroat','pigeon\'s throat',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:pigskin.57','pigskin','pigskin',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:pigskin.58','pigskin','pigskin',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:pigskin.77','pigskin','pigskin',[130,102,68],'826644',8545860], ['nbs-iscc-m:pilgrim.266','pilgrim','pilgrim',[85,85,85],'555555',5592405], ['nbs-iscc-m:pilgrimbrown.61','pilgrimbrown','pilgrim brown',[99,81,71],'635147',6508871], ['nbs-iscc-m:pilgrimbrown.62','pilgrimbrown','pilgrim brown',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:pilotblue.182','pilotblue','pilot blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:pimento.11','pimento','pimento',[190,0,50],'be0032',12451890], ['nbs-iscc-m:pimlico.215','pimlico','pimlico',[85,76,105],'554c69',5590121], ['nbs-iscc-m:pinardyellow.86','pinardyellow','pinard yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:pinchbeckbrown.72','pinchbeckbrown','pinchbeck brown',[190,138,61],'be8a3d',12487229], ['nbs-iscc-m:pinchbeckbrown.74','pinchbeckbrown','pinchbeck brown',[153,101,21],'996515',10052885], ['nbs-iscc-m:pinchbeckbrown.76','pinchbeckbrown','pinchbeck brown',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:pinchbeckbrown.88','pinchbeckbrown','pinchbeck brown',[171,145,68],'ab9144',11243844], ['nbs-iscc-m:pinchbeckbrown.94','pinchbeckbrown','pinchbeck brown',[150,113,23],'967117',9859351], ['nbs-iscc-m:pineapple.86','pineapple','pineapple',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:pineapple.87','pineapple','pineapple',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:pinecone.61','pinecone','pinecone',[99,81,71],'635147',6508871], ['nbs-iscc-m:pinecone.80','pinecone','pinecone',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:pinefrost.149','pinefrost','pine frost',[141,163,153],'8da399',9282457], ['nbs-iscc-m:pinegrove.151','pinegrove','pinegrove',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:pineneedle.146','pineneedle','pineneedle',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-m:pineneedle.151','pineneedle','pineneedle',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:pinetree.165','pinetree','pine tree',[0,75,73],'004b49',19273], ['nbs-iscc-m:pink1.10','pink1','pink 1 ',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-m:pink2.7','pink2','pink 2 ',[234,216,215],'ead8d7',15390935], ['nbs-iscc-m:pink3.4','pink3','pink 3 ',[249,204,202],'f9ccca',16370890], ['nbs-iscc-m:pink3.7','pink3','pink 3 ',[234,216,215],'ead8d7',15390935], ['nbs-iscc-m:pink4.4','pink4','pink 4 ',[249,204,202],'f9ccca',16370890], ['nbs-iscc-m:pink4.5','pink4','pink 4 ',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:pink5.5','pink5','pink 5 ',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:pinkcoral.3','pinkcoral','pink coral',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:pinkcoral.26','pinkcoral','pink coral',[248,131,121],'f88379',16286585], ['nbs-iscc-m:pinkpearl.5','pinkpearl','pink pearl',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:pipingrock.112','pipingrock','piping rock',[138,135,118],'8a8776',9078646], ['nbs-iscc-m:piquantgreen.120','piquantgreen','piquant green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:pirate.12','pirate','pirate',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:pirate.35','pirate','pirate',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:pistache.120','pistache','pistache',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:pistache.135','pistache','pistache',[147,197,146],'93c592',9684370], ['nbs-iscc-m:pistachiogreen.120','pistachiogreen','pistachio green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:pistachiogreen.135','pistachiogreen','pistachio green',[147,197,146],'93c592',9684370], ['nbs-iscc-m:pitchpine.151','pitchpine','pitchpine',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:piuree.68','piuree','piuree',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:piuree.71','piuree','piuree',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:piuri.68','piuri','piuri',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:piuri.71','piuri','piuri',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:piyu.145','piyu','pi yu',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:plantation.43','plantation','plantation',[121,68,59],'79443b',7947323], ['nbs-iscc-m:platinayellow.54','platinayellow','platina yellow',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:platinum.265','platinum','platinum',[132,132,130],'848482',8684674], ['nbs-iscc-m:plazagrey.93','plazagrey','plaza grey',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:pleromaviolet.223','pleromaviolet','pleroma violet',[134,96,142],'86608e',8806542], ['nbs-iscc-m:plover.64','plover','plover',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:plumbaceous.234','plumbaceous','plumbaceous',[93,85,91],'5d555b',6116699], ['nbs-iscc-m:plumbaceous.266','plumbaceous','plumbaceous',[85,85,85],'555555',5592405], ['nbs-iscc-m:plumbagoblue.227','plumbagoblue','plumbago blue',[170,152,169],'aa98a9',11180201], ['nbs-iscc-m:plumbagoblue.233','plumbagoblue','plumbago blue',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:plumbagogrey.227','plumbagogrey','plumbago grey ',[170,152,169],'aa98a9',11180201], ['nbs-iscc-m:plumbagogrey.233','plumbagogrey','plumbago grey ',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:plumbagoslate.234','plumbagoslate','plumbago slate',[93,85,91],'5d555b',6116699], ['nbs-iscc-m:plumbet.190','plumbet','plumbet',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-m:plumpurple.224','plumpurple','plum [purple] ',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:plumpurple.212','plumpurple','plum purple',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:plumviolet.16','plumviolet','plum violet',[114,47,55],'722f37',7483191], ['nbs-iscc-m:plumviolet.259','plumviolet','plum violet',[103,49,71],'673147',6762823], ['nbs-iscc-m:plunket.190','plunket','plunket',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-m:plymouth.266','plymouth','plymouth',[85,85,85],'555555',5592405], ['nbs-iscc-m:poildours.266','poildours','poil d\'ours',[85,85,85],'555555',5592405], ['nbs-iscc-m:poilu.191','poilu','poilu',[129,135,139],'81878b',8488843], ['nbs-iscc-m:poinsettia.11','poinsettia','poinsettia',[190,0,50],'be0032',12451890], ['nbs-iscc-m:poinsettia.12','poinsettia','poinsettia',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:poisgreen.122','poisgreen','pois green',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:polarbear.73','polarbear','polar bear',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:polarbear.92','polarbear','polar bear',[240,234,214],'f0ead6',15788758], ['nbs-iscc-m:polignac.18','polignac','polignac',[173,136,132],'ad8884',11372676], ['nbs-iscc-m:polignac.42','polignac','polignac',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:polignac.45','polignac','polignac',[151,127,115],'977f73',9928563], ['nbs-iscc-m:pologreen.125','pologreen','polo green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:pologreen.137','pologreen','polo green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:polotan.76','polotan','polo tan',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:pomegranate.16','pomegranate','pomegranate',[114,47,55],'722f37',7483191], ['nbs-iscc-m:pomegranateblossom.11','pomegranateblossom','pomegranate blossom',[190,0,50],'be0032',12451890], ['nbs-iscc-m:pomegranateblossom.34','pomegranateblossom','pomegranate blossom',[226,88,34],'e25822',14833698], ['nbs-iscc-m:pomegranatepurple.15','pomegranatepurple','pomegranate purple',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:pomegranatepurple.258','pomegranatepurple','pomegranate purple',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:pomegranatepurple.258','pomegranatepurple','pomegranate purple',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:pomegranatepurple.262','pomegranatepurple','pomegranate purple',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:pomonagreen.120','pomonagreen','pomona green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:pompadourgreen.182','pompadourgreen','pompadour [green] ',[67,107,149],'436b95',4418453], ['nbs-iscc-m:pompandpower.223','pompandpower','pomp and power',[134,96,142],'86608e',8806542], ['nbs-iscc-m:pompeianblue.185','pompeianblue','pompeian blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:pompeianred.19','pompeianred','pompeian red',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:pompeianred.39','pompeianred','pompeian red',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:pompeianred.42','pompeianred','pompeian red',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:pompeianyellow.71','pompeianyellow','pompeian yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:pompeii.41','pompeii','pompeii',[86,7,12],'56070c',5637900], ['nbs-iscc-m:pompeii.43','pompeii','pompeii',[121,68,59],'79443b',7947323], ['nbs-iscc-m:ponceau.11','ponceau','ponceau',[190,0,50],'be0032',12451890], ['nbs-iscc-m:ponceau.34','ponceau','ponceau',[226,88,34],'e25822',14833698], ['nbs-iscc-m:poncedeleon.50','poncedeleon','ponce de leon',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:pondlily.86','pondlily','pond lily',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:pondlily.87','pondlily','pond lily',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:pongee.76','pongee','pongee',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:pontiffpurple.219','pontiffpurple','pontiff [purple] ',[96,47,107],'602f6b',6303595], ['nbs-iscc-m:ponybrown.61','ponybrown','pony brown',[99,81,71],'635147',6508871], ['nbs-iscc-m:popcorn.86','popcorn','popcorn',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:popinjaygreen.120','popinjaygreen','popinjay green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:poplar.151','poplar','poplar',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:poppyred.11','poppyred','poppy [red] ',[190,0,50],'be0032',12451890], ['nbs-iscc-m:poppyred.34','poppyred','poppy [red] ',[226,88,34],'e25822',14833698], ['nbs-iscc-m:porcelain.182','porcelain','porcelain',[67,107,149],'436b95',4418453], ['nbs-iscc-m:porcelainblue.186','porcelainblue','porcelain blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:porcelaingreen.164','porcelaingreen','porcelain green',[49,120,115],'317873',3242099], ['nbs-iscc-m:porraaceous.120','porraaceous','porraaceous',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:porret.120','porret','porret',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:port.17','port','port',[63,23,40],'3f1728',4134696], ['nbs-iscc-m:portablered.12','portablered','portable red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:portablered.15','portablered','portable red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:portablered.36','portablered','portable red',[170,56,30],'aa381e',11155486], ['nbs-iscc-m:portablered.38','portablered','portable red',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:portugeseredorportuguesered.11','portugeseredorportuguesered','portugese red or portuguese red',[190,0,50],'be0032',12451890], ['nbs-iscc-m:portwine.47','portwine','port wine',[67,48,46],'43302e',4403246], ['nbs-iscc-m:postofficered.36','postofficered','post office red',[170,56,30],'aa381e',11155486], ['nbs-iscc-m:postofficered.38','postofficered','post office red',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:posygreen.150','posygreen','posy green',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:poudre.185','poudre','poudre',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:poudre.191','poudre','poudre',[129,135,139],'81878b',8488843], ['nbs-iscc-m:poudre.190','poudre','poudre',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-m:poudreblue.185','poudreblue','poudre blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:poudreblue.191','poudreblue','poudre blue',[129,135,139],'81878b',8488843], ['nbs-iscc-m:powderblue.185','powderblue','powder blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:powderblue.191','powderblue','powder blue',[129,135,139],'81878b',8488843], ['nbs-iscc-m:powderblue.179','powderblue','powder blue',[0,65,106],'00416a',16746], ['nbs-iscc-m:powderblue.182','powderblue','powder blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:powderedgold.91','powderedgold','powdered gold',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:powderpink.29','powderpink','powder pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:prairie.76','prairie','prairie',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:prairiebrown.54','prairiebrown','prairie brown',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:praline.58','praline','praline',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:praline.61','praline','praline',[99,81,71],'635147',6508871], ['nbs-iscc-m:prawnpink.26','prawnpink','prawn [pink] ',[248,131,121],'f88379',16286585], ['nbs-iscc-m:prelate.211','prelate','prelate',[96,78,129],'604e81',6311553], ['nbs-iscc-m:primrosegreen.104','primrosegreen','primrose green',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-m:primroseyellow.86','primroseyellow','primrose yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:primroseyellow.87','primroseyellow','primrose yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:primulineyellow.84','primulineyellow','primuline yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:princegrey.233','princegrey','prince grey ',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:princetonorange.50','princetonorange','princeton orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:priscilla.264','priscilla','priscilla',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-m:privet.127','privet','privet',[81,87,68],'515744',5330756], ['nbs-iscc-m:proutsbrown.58','proutsbrown','prout\'s brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:proutsbrown.61','proutsbrown','prout\'s brown',[99,81,71],'635147',6508871], ['nbs-iscc-m:proutsbrown.77','proutsbrown','prout\'s brown',[130,102,68],'826644',8545860], ['nbs-iscc-m:proutsbrown.80','proutsbrown','prout\'s brown',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:prune.242','prune','prune',[93,57,84],'5d3954',6109524], ['nbs-iscc-m:prunella.208','prunella','prunella',[50,23,77],'32174d',3282765], ['nbs-iscc-m:prunella.212','prunella','prunella',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:prunepurple.224','prunepurple','prune purple',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:prussianbrown.54','prussianbrown','prussian brown',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:prussianred.40','prussianred','prussian red',[136,45,23],'882d17',8924439], ['nbs-iscc-m:prussianred.43','prussianred','prussian red',[121,68,59],'79443b',7947323], ['nbs-iscc-m:psyche.135','psyche','psyche',[147,197,146],'93c592',9684370], ['nbs-iscc-m:ptshell.73','ptshell','pâté shell',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:ptshell.76','ptshell','pâté shell',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:puce.16','puce','puce',[114,47,55],'722f37',7483191], ['nbs-iscc-m:pueblo.58','pueblo','pueblo',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:puke.16','puke','puke',[114,47,55],'722f37',7483191], ['nbs-iscc-m:pumpkin.50','pumpkin','pumpkin',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:punjab.51','punjab','punjab',[190,101,22],'be6516',12477718], ['nbs-iscc-m:punjab.54','punjab','punjab',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:puritangrey.191','puritangrey','puritan grey ',[129,135,139],'81878b',8488843], ['nbs-iscc-m:puritangrey.265','puritangrey','puritan grey ',[132,132,130],'848482',8684674], ['nbs-iscc-m:purpleaster.223','purpleaster','purple aster',[134,96,142],'86608e',8806542], ['nbs-iscc-m:purplebrown.43','purplebrown','purple brown',[121,68,59],'79443b',7947323], ['nbs-iscc-m:purpleheather.223','purpleheather','purple heather',[134,96,142],'86608e',8806542], ['nbs-iscc-m:purplelake.13','purplelake','purple lake',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:purplelake.15','purplelake','purple lake',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:purplemadder.15','purplemadder','purple madder',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:purplemadder.16','purplemadder','purple madder',[114,47,55],'722f37',7483191], ['nbs-iscc-m:purplenavy.183','purplenavy','purple navy',[0,48,78],'00304e',12366], ['nbs-iscc-m:purplenavy.200','purplenavy','purple navy',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:purplenavy.201','purplenavy','purple navy',[37,36,64],'252440',2434112], ['nbs-iscc-m:purpleochre.40','purpleochre','purple ochre',[136,45,23],'882d17',8924439], ['nbs-iscc-m:purpleoxide.43','purpleoxide','purple oxide',[121,68,59],'79443b',7947323], ['nbs-iscc-m:purplerubiate.15','purplerubiate','purple rubiate',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:purplerubiate.16','purplerubiate','purple rubiate',[114,47,55],'722f37',7483191], ['nbs-iscc-m:purreaarabica.68','purreaarabica','purrea arabica',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:purreaarabica.71','purreaarabica','purrea arabica',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:purree.68','purree','purree',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:purree.71','purree','purree',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:putty.89','putty','putty',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:putty.90','putty','putty',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:pygmalion.74','pygmalion','pygmalion',[153,101,21],'996515',10052885], ['nbs-iscc-m:pygmalion.76','pygmalion','pygmalion',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:pygmalion.77','pygmalion','pygmalion',[130,102,68],'826644',8545860], ['nbs-iscc-m:pyrethrumyellow.83','pyrethrumyellow','pyrethrum yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:pyrethrumyellow.84','pyrethrumyellow','pyrethrum yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:pyrethrumyellow.86','pyrethrumyellow','pyrethrum yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:pyrethrumyellow.87','pyrethrumyellow','pyrethrum yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:pyriteyellow.88','pyriteyellow','pyrite yellow',[171,145,68],'ab9144',11243844], ['nbs-iscc-m:quail.64','quail','quail',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:quail.266','quail','quail',[85,85,85],'555555',5592405], ['nbs-iscc-m:quaker.233','quaker','quaker',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:quaker.265','quaker','quaker',[132,132,130],'848482',8684674], ['nbs-iscc-m:quakerblue.267','quakerblue','quaker blue',[34,34,34],'222222',2236962], ['nbs-iscc-m:quakerdrab.265','quakerdrab','quaker drab',[132,132,130],'848482',8684674], ['nbs-iscc-m:quakergreen.125','quakergreen','quaker green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:quakergrey.109','quakergrey','quaker grey ',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:queenannegreen.122','queenannegreen','queen anne green',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:queenblue.182','queenblue','queen blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:queensblue.182','queensblue','queen\'s blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:queensyellow.86','queensyellow','queen\'s yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:quercitron.86','quercitron','quercitron',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:quercitronlake.71','quercitronlake','quercitron lake',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:quimper.186','quimper','quimper',[83,104,120],'536878',5466232], ['nbs-iscc-m:quinceyellow.87','quinceyellow','quince yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:rabbit.64','rabbit','rabbit',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:racquet.61','racquet','racquet',[99,81,71],'635147',6508871], ['nbs-iscc-m:racquet.80','racquet','racquet',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:raddle.43','raddle','raddle',[121,68,59],'79443b',7947323], ['nbs-iscc-m:radiance.3','radiance','radiance',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:radiantyellow.50','radiantyellow','radiant yellow',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:radiantyellow.53','radiantyellow','radiant yellow',[217,144,88],'d99058',14258264], ['nbs-iscc-m:radiantyellow.68','radiantyellow','radiant yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:radiantyellow.71','radiantyellow','radiant yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:radio.183','radio','radio',[0,48,78],'00304e',12366], ['nbs-iscc-m:radio.186','radio','radio',[83,104,120],'536878',5466232], ['nbs-iscc-m:radioblue.187','radioblue','radio blue',[54,69,79],'36454f',3556687], ['nbs-iscc-m:raffia.76','raffia','raffia',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:raffia.90','raffia','raffia',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:raggedsailor.200','raggedsailor','ragged sailor',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:rail.266','rail','rail',[85,85,85],'555555',5592405], ['nbs-iscc-m:rainettegreen.120','rainettegreen','rainette green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:raisin.259','raisin','raisin',[103,49,71],'673147',6762823], ['nbs-iscc-m:raisinblack.235','raisinblack','raisin black',[36,33,36],'242124',2367780], ['nbs-iscc-m:raisinpurple.238','raisinpurple','raisin purple',[112,41,99],'702963',7350627], ['nbs-iscc-m:ramblerrose.3','ramblerrose','rambler rose',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:ramblerrose.258','ramblerrose','rambler rose',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:rameau.267','rameau','rameau',[34,34,34],'222222',2236962], ['nbs-iscc-m:rameses.179','rameses','rameses',[0,65,106],'00416a',16746], ['nbs-iscc-m:ramierblue.228','ramierblue','ramier blue',[121,104,120],'796878',7956600], ['nbs-iscc-m:rangoon.58','rangoon','rangoon',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:raphael.182','raphael','raphael',[67,107,149],'436b95',4418453], ['nbs-iscc-m:raphael.183','raphael','raphael',[0,48,78],'00304e',12366], ['nbs-iscc-m:rapids.182','rapids','rapids',[67,107,149],'436b95',4418453], ['nbs-iscc-m:raspberry.16','raspberry','raspberry',[114,47,55],'722f37',7483191], ['nbs-iscc-m:raspberryglac.15','raspberryglac','raspberry glacé',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:raspberryglac.19','raspberryglac','raspberry glacé',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:raspberryglac.258','raspberryglac','raspberry glacé',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:raspberryglac.262','raspberryglac','raspberry glacé',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:raspberryred.15','raspberryred','raspberry red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:rat.113','rat','rat',[87,85,76],'57554c',5723468], ['nbs-iscc-m:rattan.87','rattan','rattan',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:rawitalianearth.54','rawitalianearth','raw italian earth',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:rawitalianearth.57','rawitalianearth','raw italian earth',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:rawsienna.54','rawsienna','raw sienna',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:rawsienna.57','rawsienna','raw sienna',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:rawumber.77','rawumber','raw umber',[130,102,68],'826644',8545860], ['nbs-iscc-m:rawumber.78','rawumber','raw umber',[75,54,33],'4b3621',4929057], ['nbs-iscc-m:rawumber.58','rawumber','raw umber',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:rcamier.5','rcamier','récamier',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:rcamier.26','rcamier','récamier',[248,131,121],'f88379',16286585], ['nbs-iscc-m:realgar.68','realgar','realgar',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:realgar.71','realgar','realgar',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:redbanana.13','redbanana','red banana',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:redbanana.15','redbanana','red banana',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:redbole.43','redbole','red bole',[121,68,59],'79443b',7947323], ['nbs-iscc-m:redchalk.43','redchalk','red chalk',[121,68,59],'79443b',7947323], ['nbs-iscc-m:redcross.11','redcross','red cross',[190,0,50],'be0032',12451890], ['nbs-iscc-m:redcross.12','redcross','red cross',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:redding.43','redding','redding',[121,68,59],'79443b',7947323], ['nbs-iscc-m:reddle.43','reddle','reddle',[121,68,59],'79443b',7947323], ['nbs-iscc-m:redearth.43','redearth','red earth',[121,68,59],'79443b',7947323], ['nbs-iscc-m:redfeather.12','redfeather','redfeather',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:redfeather.15','redfeather','redfeather',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:redinplates.11','redinplates','red in plates',[190,0,50],'be0032',12451890], ['nbs-iscc-m:redlead.34','redlead','red lead',[226,88,34],'e25822',14833698], ['nbs-iscc-m:redochre.43','redochre','red ochre',[121,68,59],'79443b',7947323], ['nbs-iscc-m:redoxide.40','redoxide','red oxide',[136,45,23],'882d17',8924439], ['nbs-iscc-m:redoxide.55','redoxide','red oxide',[128,70,27],'80461b',8406555], ['nbs-iscc-m:redrobin.41','redrobin','red robin',[86,7,12],'56070c',5637900], ['nbs-iscc-m:redwood.16','redwood','redwood',[114,47,55],'722f37',7483191], ['nbs-iscc-m:redwood.40','redwood','redwood',[136,45,23],'882d17',8924439], ['nbs-iscc-m:redwood.43','redwood','redwood',[121,68,59],'79443b',7947323], ['nbs-iscc-m:redwoodredwood.15','redwoodredwood','redwood redwood -)',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:redwoodredwood.15','redwoodredwood','redwood redwood -)',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:redwoodredwood.19','redwoodredwood','redwood redwood -)',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:reedgreen.119','reedgreen','reed green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-m:reedyellow.101','reedyellow','reed yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-m:reedyellow.104','reedyellow','reed yellow',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-m:regal.197','regal','regal',[39,36,88],'272458',2565208], ['nbs-iscc-m:regalpurple.207','regalpurple','regal purple',[96,78,151],'604e97',6311575], ['nbs-iscc-m:regatta.178','regatta','regatta',[0,103,165],'0067a5',26533], ['nbs-iscc-m:regatta.196','regatta','regatta',[84,90,167],'545aa7',5528231], ['nbs-iscc-m:regimental.204','regimental','regimental',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:rejanegreen.136','rejanegreen','rejane green',[103,146,103],'679267',6787687], ['nbs-iscc-m:rembrandt.62','rembrandt','rembrandt',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:rembrandtsmadder.37','rembrandtsmadder','rembrandt\'s madder',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:rembrandtsmadder.38','rembrandtsmadder','rembrandt\'s madder',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:rembrandtsmadder.39','rembrandtsmadder','rembrandt\'s madder',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:rembrandtsmadder.43','rembrandtsmadder','rembrandt\'s madder',[121,68,59],'79443b',7947323], ['nbs-iscc-m:renaissance.254','renaissance','renaissance',[206,70,118],'ce4676',13518454], ['nbs-iscc-m:resedagreen.106','resedagreen','reseda [green] ',[134,126,54],'867e36',8814134], ['nbs-iscc-m:resolute.182','resolute','resolute',[67,107,149],'436b95',4418453], ['nbs-iscc-m:reveree.31','reveree','reveree',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-m:reveree.32','reveree','reveree',[199,173,163],'c7ada3',13086115], ['nbs-iscc-m:rhododendron.259','rhododendron','rhododendron',[103,49,71],'673147',6762823], ['nbs-iscc-m:rhodonitepink.251','rhodonitepink','rhodonite pink',[193,126,145],'c17e91',12680849], ['nbs-iscc-m:rhone.19','rhone','rhone',[201,220,137],'c9dc89',13229193], ['nbs-iscc-m:rhone.121','rhone','rhone',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:rhubarb.106','rhubarb','rhubarb',[134,126,54],'867e36',8814134], ['nbs-iscc-m:riflegreen.128','riflegreen','rifle [green] ',[49,54,43],'31362b',3225131], ['nbs-iscc-m:riflegreen.267','riflegreen','rifle [green] ',[34,34,34],'222222',2236962], ['nbs-iscc-m:riga.164','riga','riga',[49,120,115],'317873',3242099], ['nbs-iscc-m:rigablue.151','rigablue','riga blue',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:rigablue.186','rigablue','riga blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:rinnemannsgreen.136','rinnemannsgreen','rinnemann\'s green',[103,146,103],'679267',6787687], ['nbs-iscc-m:ripplegreen.150','ripplegreen','ripple green',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:ripplegreen.164','ripplegreen','ripple green',[49,120,115],'317873',3242099], ['nbs-iscc-m:risigal.68','risigal','risigal',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:risigal.71','risigal','risigal',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:rivagegreen.120','rivagegreen','rivage green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:rivagegreen.135','rivagegreen','rivage green',[147,197,146],'93c592',9684370], ['nbs-iscc-m:riviera.178','riviera','riviera',[0,103,165],'0067a5',26533], ['nbs-iscc-m:roan.43','roan','roan',[121,68,59],'79443b',7947323], ['nbs-iscc-m:robinhoodgreen.146','robinhoodgreen','robinhood green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-m:robinseggblue.149','robinseggblue','robin\'s egg blue',[141,163,153],'8da399',9282457], ['nbs-iscc-m:robinseggblue.163','robinseggblue','robin\'s egg blue',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:rocou.29','rocou','rocou',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:rodent.266','rodent','rodent',[85,85,85],'555555',5592405], ['nbs-iscc-m:roe.76','roe','roe',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:roe.91','roe','roe',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:romablue.204','romablue','roma blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:romablue.215','romablue','roma blue',[85,76,105],'554c69',5590121], ['nbs-iscc-m:romanearth.53','romanearth','roman earth',[217,144,88],'d99058',14258264], ['nbs-iscc-m:romanesque.242','romanesque','romanesque',[93,57,84],'5d3954',6109524], ['nbs-iscc-m:romangreen.107','romangreen','roman green',[102,93,30],'665d1e',6708510], ['nbs-iscc-m:romanlake.11','romanlake','roman lake',[190,0,50],'be0032',12451890], ['nbs-iscc-m:romanlake.12','romanlake','roman lake',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:romanochre.53','romanochre','roman ochre',[217,144,88],'d99058',14258264], ['nbs-iscc-m:romanpurple.211','romanpurple','roman purple',[96,78,129],'604e81',6311553], ['nbs-iscc-m:romansepia.58','romansepia','roman sepia',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:romanticgreen.106','romanticgreen','romantic green',[134,126,54],'867e36',8814134], ['nbs-iscc-m:romanumber.77','romanumber','roman umber',[130,102,68],'826644',8545860], ['nbs-iscc-m:romanumber.78','romanumber','roman umber',[75,54,33],'4b3621',4929057], ['nbs-iscc-m:romanviolet.242','romanviolet','roman violet',[93,57,84],'5d3954',6109524], ['nbs-iscc-m:romany.187','romany','romany',[54,69,79],'36454f',3556687], ['nbs-iscc-m:romany.188','romany','romany',[32,40,48],'202830',2107440], ['nbs-iscc-m:romany.201','romany','romany',[37,36,64],'252440',2434112], ['nbs-iscc-m:romany.204','romany','romany',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:romarin.151','romarin','romarin',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:rosalgar.68','rosalgar','rosalgar',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:rosalgar.71','rosalgar','rosalgar',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:rosario.57','rosario','rosario',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:roseamber.54','roseamber','rose amber',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:roseamber.57','roseamber','rose amber',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:roseash.19','roseash','rose ash',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:rosebeige.80','rosebeige','rose beige',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:rosebeige2.57','rosebeige2','rose beige 2 ',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:rosebisque.42','rosebisque','rosebisque',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:rosebloom.18','rosebloom','rosebloom',[173,136,132],'ad8884',11372676], ['nbs-iscc-m:rosebloom.30','rosebloom','rosebloom',[196,131,121],'c48379',12878713], ['nbs-iscc-m:rosebloom.39','rosebloom','rosebloom',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:rosebloom.42','rosebloom','rosebloom',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:roseblush.42','roseblush','rose blush',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:roseblush2.57','roseblush2','rose blush 2 ',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:rosebreath.4','rosebreath','rose breath',[249,204,202],'f9ccca',16370890], ['nbs-iscc-m:rosebreath.7','rosebreath','rose breath',[234,216,215],'ead8d7',15390935], ['nbs-iscc-m:rosebud.248','rosebud','rosebud',[222,111,161],'de6fa1',14577569], ['nbs-iscc-m:rosebud.251','rosebud','rosebud',[193,126,145],'c17e91',12680849], ['nbs-iscc-m:rosecaroline.29','rosecaroline','rose caroline',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:rosecarthame.11','rosecarthame','rose carthame',[190,0,50],'be0032',12451890], ['nbs-iscc-m:rosecastor.22','rosecastor','rose castor',[143,129,127],'8f817f',9404799], ['nbs-iscc-m:rosecendre.29','rosecendre','rose cendre',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:rosedalma.262','rosedalma','rose d\'alma',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:rosedalthoea.2','rosedalthoea','rose d\'althoea',[234,147,153],'ea9399',15373209], ['nbs-iscc-m:rosedawn.29','rosedawn','rose dawn',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:rosedawn.42','rosedawn','rose dawn',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:rosedenymphe.89','rosedenymphe','rose de nymphe',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:rosedeprovence.255','rosedeprovence','rose de provence',[179,68,108],'b3446c',11748460], ['nbs-iscc-m:rosedore.3','rosedore','rose dorée',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:rosedore.15','rosedore','rose dorée',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:rosedust.19','rosedust','rosedust',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:rosedust.46','rosedust','rosedust',[103,76,71],'674c47',6769735], ['nbs-iscc-m:roseebony.47','roseebony','rose ebony ',[67,48,46],'43302e',4403246], ['nbs-iscc-m:rosefrance.29','rosefrance','rose france',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:roseglow.42','roseglow','roseglow',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:rosegrey.64','rosegrey','rose grey ',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:rosehermosa.5','rosehermosa','rose hermosa',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:rosehortensia.42','rosehortensia','rose hortensia',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:roselake.38','roselake','rose lake',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:roseleaf.5','roseleaf','roseleaf',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:roselustre.16','roselustre','roselustre',[114,47,55],'722f37',7483191], ['nbs-iscc-m:rosemadder.255','rosemadder','rose madder',[179,68,108],'b3446c',11748460], ['nbs-iscc-m:rosemarie.3','rosemarie','rose marie',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:rosemary.245','rosemary','rosemary',[131,100,121],'836479',8610937], ['nbs-iscc-m:rosemorn.29','rosemorn','rose morn',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:roseneyron.12','roseneyron','rose neyron',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:roseneyron.255','roseneyron','rose neyron',[179,68,108],'b3446c',11748460], ['nbs-iscc-m:rosenilsson.3','rosenilsson','rose nilsson',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:rosenude.29','rosenude','rose nude',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:rosenude.32','rosenude','rose nude',[199,173,163],'c7ada3',13086115], ['nbs-iscc-m:rosenude.33','rosenude','rose nude',[194,172,153],'c2ac99',12758169], ['nbs-iscc-m:roseoak.43','roseoak','rose oak',[121,68,59],'79443b',7947323], ['nbs-iscc-m:roseofpicardy.15','roseofpicardy','rose of picardy',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:roseofsharon.15','roseofsharon','rose of sharon',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:rosepetal.19','rosepetal','rose petal',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:rosepink.38','rosepink','rose pink',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:rosepurple.222','rosepurple','rose-purple ',[182,149,192],'b695c0',11965888], ['nbs-iscc-m:rosepurple.240','rosepurple','rose-purple ',[183,132,167],'b784a7',12027047], ['nbs-iscc-m:rosequartz.227','rosequartz','rose quartz',[170,152,169],'aa98a9',11180201], ['nbs-iscc-m:rosesoire.3','rosesoire','rose soirée',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:rosestone.45','rosestone','rosestone',[151,127,115],'977f73',9928563], ['nbs-iscc-m:roset.38','roset','roset',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:rosetan.33','rosetan','rosetan',[194,172,153],'c2ac99',12758169], ['nbs-iscc-m:rosetan.60','rosetan','rosetan',[149,128,112],'958070',9797744], ['nbs-iscc-m:rosetaupe.266','rosetaupe','rose taupe',[85,85,85],'555555',5592405], ['nbs-iscc-m:rosetta.23','rosetta','rosetta',[92,80,79],'5c504f',6049871], ['nbs-iscc-m:rosevale.15','rosevale','rosevale',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:rosevale.19','rosevale','rosevale',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:rosewood.43','rosewood','rosewood',[121,68,59],'79443b',7947323], ['nbs-iscc-m:roslynblue.197','roslynblue','roslyn blue',[39,36,88],'272458',2565208], ['nbs-iscc-m:roucou.29','roucou','roucou',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:rougedefer.43','rougedefer','rouge de fer',[121,68,59],'79443b',7947323], ['nbs-iscc-m:rougevegetal.11','rougevegetal','rouge vegetal',[190,0,50],'be0032',12451890], ['nbs-iscc-m:royalblue.179','royalblue','royal blue',[0,65,106],'00416a',16746], ['nbs-iscc-m:royalblue.182','royalblue','royal blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:royalblue.179','royalblue','royal blue',[0,65,106],'00416a',16746], ['nbs-iscc-m:royalpink.3','royalpink','royal pink',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:royalpurple.207','royalpurple','royal purple',[96,78,151],'604e97',6311575], ['nbs-iscc-m:royalyellow.83','royalyellow','royal yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:royalyellow.84','royalyellow','royal yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:royalyellow.86','royalyellow','royal yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:royalyellow.87','royalyellow','royal yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:rubaiyat.16','rubaiyat','rubaiyat',[114,47,55],'722f37',7483191], ['nbs-iscc-m:rubber.95','rubber','rubber',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:rubelite.254','rubelite','rubelite',[206,70,118],'ce4676',13518454], ['nbs-iscc-m:rubensmadder.38','rubensmadder','ruben\'s madder',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:rubient.16','rubient','rubient',[114,47,55],'722f37',7483191], ['nbs-iscc-m:rubrica.43','rubrica','rubrica',[121,68,59],'79443b',7947323], ['nbs-iscc-m:ruby.16','ruby','ruby',[114,47,55],'722f37',7483191], ['nbs-iscc-m:rubyofarsenic.68','rubyofarsenic','ruby of arsenic',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:rubyofarsenic.71','rubyofarsenic','ruby of arsenic',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:ruddle.43','ruddle','ruddle',[121,68,59],'79443b',7947323], ['nbs-iscc-m:rufous.26','rufous','rufous',[248,131,121],'f88379',16286585], ['nbs-iscc-m:rufous.53','rufous','rufous',[217,144,88],'d99058',14258264], ['nbs-iscc-m:rugbytan.55','rugbytan','rugby tan',[128,70,27],'80461b',8406555], ['nbs-iscc-m:runnymede.145','runnymede','runnymede',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:ruochre.54','ruochre','ru ochre',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:ruochre.74','ruochre','ru ochre',[153,101,21],'996515',10052885], ['nbs-iscc-m:russetbrown.55','russetbrown','russet brown',[128,70,27],'80461b',8406555], ['nbs-iscc-m:russetbrown.58','russetbrown','russet brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:russetgreen.102','russetgreen','russet green',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:russetgreen.103','russetgreen','russet green',[152,148,62],'98943e',9999422], ['nbs-iscc-m:russetgreen.105','russetgreen','russet green',[185,181,125],'b9b57d',12170621], ['nbs-iscc-m:russetgreen.106','russetgreen','russet green',[134,126,54],'867e36',8814134], ['nbs-iscc-m:russetorange.35','russetorange','russet orange',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:russianblue.185','russianblue','russian blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:russianblue.191','russianblue','russian blue',[129,135,139],'81878b',8488843], ['nbs-iscc-m:russiancalf.58','russiancalf','russian calf',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:russiangreen.136','russiangreen','russian green',[103,146,103],'679267',6787687], ['nbs-iscc-m:russiangreen.137','russiangreen','russian green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:russiangreen.150','russiangreen','russian green',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:russiangrey.112','russiangrey','russian grey ',[138,135,118],'8a8776',9078646], ['nbs-iscc-m:russiangrey.265','russiangrey','russian grey ',[132,132,130],'848482',8684674], ['nbs-iscc-m:russianviolet.208','russianviolet','russian violet',[50,23,77],'32174d',3282765], ['nbs-iscc-m:rust.55','rust','rust',[128,70,27],'80461b',8406555], ['nbs-iscc-m:rusticbrown.43','rusticbrown','rustic brown',[121,68,59],'79443b',7947323], ['nbs-iscc-m:rusticdrab.94','rusticdrab','rustic drab',[150,113,23],'967117',9859351], ['nbs-iscc-m:rutochre.54','rutochre','rut ochre',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:rutochre.74','rutochre','rut ochre',[153,101,21],'996515',10052885], ['nbs-iscc-m:sable.80','sable','sable',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:saddle.61','saddle','saddle',[99,81,71],'635147',6508871], ['nbs-iscc-m:saddle.80','saddle','saddle',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:safaran.53','safaran','safaran',[217,144,88],'d99058',14258264], ['nbs-iscc-m:safaran.71','safaran','safaran',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:safflor.11','safflor','safflor',[190,0,50],'be0032',12451890], ['nbs-iscc-m:safflowerred.11','safflowerred','safflower red',[190,0,50],'be0032',12451890], ['nbs-iscc-m:saffor.11','saffor','saffor',[190,0,50],'be0032',12451890], ['nbs-iscc-m:saffronyellow.53','saffronyellow','saffron yellow',[217,144,88],'d99058',14258264], ['nbs-iscc-m:saffronyellow.71','saffronyellow','saffron yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:safranopink.29','safranopink','safrano pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:sagebrushgreen.156','sagebrushgreen','sagebrush green',[78,87,85],'4e5755',5134165], ['nbs-iscc-m:sagedrab.127','sagedrab','sage drab',[81,87,68],'515744',5330756], ['nbs-iscc-m:sagegreen.120','sagegreen','sage [green] ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:sagegrey.109','sagegrey','sage grey ',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:sahara.58','sahara','sahara',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:sailor.230','sailor','sailor',[41,30,41],'291e29',2694697], ['nbs-iscc-m:sailor.235','sailor','sailor',[36,33,36],'242124',2367780], ['nbs-iscc-m:sailorblue.200','sailorblue','sailor blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-m:sakkara.64','sakkara','sakkara',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:sallow.105','sallow','sallow',[185,181,125],'b9b57d',12170621], ['nbs-iscc-m:salmonpink.29','salmonpink','salmon [pink] ',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:salvia.11','salvia','salvia',[190,0,50],'be0032',12451890], ['nbs-iscc-m:salviablue.178','salviablue','salvia blue',[0,103,165],'0067a5',26533], ['nbs-iscc-m:samara.164','samara','samara',[49,120,115],'317873',3242099], ['nbs-iscc-m:samovar.76','samovar','samovar',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:samurai.39','samurai','samurai',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:sand.109','sand','sand',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:sand.112','sand','sand',[138,135,118],'8a8776',9078646], ['nbs-iscc-m:sandalwood.15','sandalwood','sandalwood',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:sandalwood.45','sandalwood','sandalwood',[151,127,115],'977f73',9928563], ['nbs-iscc-m:sandalwood.58','sandalwood','sandalwood',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:sandalwood.60','sandalwood','sandalwood',[149,128,112],'958070',9797744], ['nbs-iscc-m:sandalwood.61','sandalwood','sandalwood',[99,81,71],'635147',6508871], ['nbs-iscc-m:sandarach.34','sandarach','sandarach',[226,88,34],'e25822',14833698], ['nbs-iscc-m:sandarach.68','sandarach','sandarach',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:sandarach.71','sandarach','sandarach',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:sandaracha.34','sandaracha','sandaracha',[226,88,34],'e25822',14833698], ['nbs-iscc-m:sandaracha.68','sandaracha','sandaracha',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:sandaracha.71','sandaracha','sandaracha',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:sanddune.94','sanddune','sand dune',[150,113,23],'967117',9859351], ['nbs-iscc-m:sandersblue.182','sandersblue','sander\'s blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:sanderswood.15','sanderswood','sanderswood',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:sandix.34','sandix','sandix',[226,88,34],'e25822',14833698], ['nbs-iscc-m:sandrift.63','sandrift','sandrift',[142,130,121],'8e8279',9339513], ['nbs-iscc-m:sandstone.42','sandstone','sandstone',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:sandstone.57','sandstone','sandstone',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:sandstone.60','sandstone','sandstone',[149,128,112],'958070',9797744], ['nbs-iscc-m:sandust.29','sandust','sandust',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:sandybeige.63','sandybeige','sandy-beige',[142,130,121],'8e8279',9339513], ['nbs-iscc-m:sandyx.34','sandyx','sandyx',[226,88,34],'e25822',14833698], ['nbs-iscc-m:sangdeboeuf.43','sangdeboeuf','sang de boeuf',[121,68,59],'79443b',7947323], ['nbs-iscc-m:sanguine.12','sanguine','sanguine',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:sanguine.15','sanguine','sanguine',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:sanguineus.13','sanguineus','sanguineus',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:sanguineus.16','sanguineus','sanguineus',[114,47,55],'722f37',7483191], ['nbs-iscc-m:sanguineus.17','sanguineus','sanguineus',[63,23,40],'3f1728',4134696], ['nbs-iscc-m:sanguineus.44','sanguineus','sanguineus',[62,29,30],'3e1d1e',4070686], ['nbs-iscc-m:sanguineus.242','sanguineus','sanguineus',[93,57,84],'5d3954',6109524], ['nbs-iscc-m:sanguineus.259','sanguineus','sanguineus',[103,49,71],'673147',6762823], ['nbs-iscc-m:santalwood.15','santalwood','santalwood',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:santos.58','santos','santos',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:santos.61','santos','santos',[99,81,71],'635147',6508871], ['nbs-iscc-m:saona.43','saona','saona',[121,68,59],'79443b',7947323], ['nbs-iscc-m:sappanwood.15','sappanwood','sappanwood',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:sappanwood.19','sappanwood','sappanwood',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:sapphireblue.183','sapphireblue','sapphire [blue] ',[0,48,78],'00304e',12366], ['nbs-iscc-m:sappho.18','sappho','sappho',[173,136,132],'ad8884',11372676], ['nbs-iscc-m:saraband.19','saraband','saraband',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:saratoga.53','saratoga','saratoga',[217,144,88],'d99058',14258264], ['nbs-iscc-m:saravan.55','saravan','saravan',[128,70,27],'80461b',8406555], ['nbs-iscc-m:saravan.58','saravan','saravan',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:sarouk.61','sarouk','sarouk',[99,81,71],'635147',6508871], ['nbs-iscc-m:satinwood.57','satinwood','satinwood',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:satsuma.37','satsuma','satsuma',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:saturninered.34','saturninered','saturnine red',[226,88,34],'e25822',14833698], ['nbs-iscc-m:saturnred.34','saturnred','saturn red',[226,88,34],'e25822',14833698], ['nbs-iscc-m:saul.156','saul','saul',[78,87,85],'4e5755',5134165], ['nbs-iscc-m:saundersblue.182','saundersblue','saunder\'s blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:sauterne.87','sauterne','sauterne',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:sauterne.57','sauterne','sauterne',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:saxeblue.186','saxeblue','saxe blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:saxonblue.169','saxonblue','saxon blue',[0,119,145],'007791',30609], ['nbs-iscc-m:saxonblue.174','saxonblue','saxon blue',[0,73,88],'004958',18776], ['nbs-iscc-m:saxongreen.164','saxongreen','saxon green',[49,120,115],'317873',3242099], ['nbs-iscc-m:saxonyblue.169','saxonyblue','saxony blue',[0,119,145],'007791',30609], ['nbs-iscc-m:saxonyblue.174','saxonyblue','saxony blue',[0,73,88],'004958',18776], ['nbs-iscc-m:saxonyblue.179','saxonyblue','saxony blue',[0,65,106],'00416a',16746], ['nbs-iscc-m:saxonyblue.182','saxonyblue','saxony blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:saxonygreen.139','saxonygreen','saxony green',[0,136,86],'008856',34902], ['nbs-iscc-m:sayalbrown.54','sayalbrown','sayal brown',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:sayalbrown.57','sayalbrown','sayal brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:sayalbrown.74','sayalbrown','sayal brown',[153,101,21],'996515',10052885], ['nbs-iscc-m:scabiosa.228','scabiosa','scabiosa ',[121,104,120],'796878',7956600], ['nbs-iscc-m:scarab.145','scarab','scarab',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:scarlet.11','scarlet','scarlet',[190,0,50],'be0032',12451890], ['nbs-iscc-m:scarletingrain.11','scarletingrain','scarlet in grain',[190,0,50],'be0032',12451890], ['nbs-iscc-m:scarletlake.12','scarletlake','scarlet lake',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:scarletlake.15','scarletlake','scarlet lake',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:scarletmadder.26','scarletmadder','scarlet madder',[248,131,121],'f88379',16286585], ['nbs-iscc-m:scarletochre.40','scarletochre','scarlet ochre',[136,45,23],'882d17',8924439], ['nbs-iscc-m:scarletred.11','scarletred','scarlet red',[190,0,50],'be0032',12451890], ['nbs-iscc-m:scarletvermilion.34','scarletvermilion','scarlet vermilion',[226,88,34],'e25822',14833698], ['nbs-iscc-m:scheelesgreen.117','scheelesgreen','scheele\'s green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-m:scheelesgreen.131','scheelesgreen','scheele\'s green',[68,148,74],'44944a',4494410], ['nbs-iscc-m:schoenfeldspurple.256','schoenfeldspurple','schoenfeld\'s purple',[120,24,74],'78184a',7870538], ['nbs-iscc-m:schoenfeldspurple.258','schoenfeldspurple','schoenfeld\'s purple',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:schweinfurtgreen.140','schweinfurtgreen','schweinfurt green',[62,180,137],'3eb489',4109449], ['nbs-iscc-m:scotchblue.201','scotchblue','scotch blue',[37,36,64],'252440',2434112], ['nbs-iscc-m:scotchgrey.122','scotchgrey','scotch grey ',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:scotchgrey.155','scotchgrey','scotch grey ',[125,137,132],'7d8984',8227204], ['nbs-iscc-m:seabird.266','seabird','seabird',[85,85,85],'555555',5592405], ['nbs-iscc-m:seablue.165','seablue','sea blue',[0,75,73],'004b49',19273], ['nbs-iscc-m:seacrest.135','seacrest','seacrest',[147,197,146],'93c592',9684370], ['nbs-iscc-m:seafoam.140','seafoam','seafoam',[62,180,137],'3eb489',4109449], ['nbs-iscc-m:seafoam.144','seafoam','seafoam',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:seafoamgreen.121','seafoamgreen','seafoam green',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:seafoamyellow.121','seafoamyellow','seafoam yellow',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:seagreen.120','seagreen','sea green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:seahawk.113','seahawk','sea hawk',[87,85,76],'57554c',5723468], ['nbs-iscc-m:sealbrown.81','sealbrown','seal [brown] ',[72,60,50],'483c32',4734002], ['nbs-iscc-m:seamanblue.204','seamanblue','seaman blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:seamist.233','seamist','sea mist',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:seamist.265','seamist','sea mist',[132,132,130],'848482',8684674], ['nbs-iscc-m:seamoss.106','seamoss','sea moss ',[134,126,54],'867e36',8814134], ['nbs-iscc-m:seamoss.151','seamoss','sea moss ',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:seapink.2','seapink','sea pink',[234,147,153],'ea9399',15373209], ['nbs-iscc-m:seapink.5','seapink','sea pink',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:seasannotseasand.33','seasannotseasand','seasan not seasand',[194,172,153],'c2ac99',12758169], ['nbs-iscc-m:seasannotseasand.73','seasannotseasand','seasan not seasand',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:seasannotseasand.76','seasannotseasand','seasan not seasand',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:seasannotseasand.79','seasannotseasand','seasan not seasand',[174,155,130],'ae9b82',11443074], ['nbs-iscc-m:seashell.29','seashell','sea shell',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:seashell.53','seashell','sea shell',[217,144,88],'d99058',14258264], ['nbs-iscc-m:seashell.57','seashell','sea shell',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:seashellpink.28','seashellpink','seashell pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-m:seashellpink.29','seashellpink','seashell pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:seaside.94','seaside','seaside',[150,113,23],'967117',9859351], ['nbs-iscc-m:seaside.45','seaside','seaside',[151,127,115],'977f73',9928563], ['nbs-iscc-m:seaside.60','seaside','seaside',[149,128,112],'958070',9797744], ['nbs-iscc-m:seaside.63','seaside','seaside',[142,130,121],'8e8279',9339513], ['nbs-iscc-m:seaspray.122','seaspray','seaspray',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:seaspray.136','seaspray','seaspray',[103,146,103],'679267',6787687], ['nbs-iscc-m:seaspray.149','seaspray','seaspray',[141,163,153],'8da399',9282457], ['nbs-iscc-m:seawatergreen.120','seawatergreen','sea-water green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:seaweedgreen.122','seaweedgreen','seaweed green',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:sedge.61','sedge','sedge',[99,81,71],'635147',6508871], ['nbs-iscc-m:seedpearl.89','seedpearl','seed pearl',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:seedpearl.90','seedpearl','seed pearl',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:seeredgreen.120','seeredgreen','seered green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:seladongreen.122','seladongreen','seladon green',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:seminole.58','seminole','seminole',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:sepia.96','sepia','sepia',[59,49,33],'3b3121',3879201], ['nbs-iscc-m:serapi.186','serapi','serapi',[83,104,120],'536878',5466232], ['nbs-iscc-m:serpent.149','serpent','serpent',[141,163,153],'8da399',9282457], ['nbs-iscc-m:serpentine.144','serpentine','serpentine',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:serpentinegreen.106','serpentinegreen','serpentine green',[134,126,54],'867e36',8814134], ['nbs-iscc-m:servicecorps.142','servicecorps','service corps',[0,84,61],'00543d',21565], ['nbs-iscc-m:seville.208','seville','seville',[50,23,77],'32174d',3282765], ['nbs-iscc-m:sevilleorange.53','sevilleorange','seville orange',[217,144,88],'d99058',14258264], ['nbs-iscc-m:sevresblue.178','sevresblue','sevres [blue] ',[0,103,165],'0067a5',26533], ['nbs-iscc-m:shadow.22','shadow','shadow',[143,129,127],'8f817f',9404799], ['nbs-iscc-m:shadowgreen.120','shadowgreen','shadow green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:shagbark.77','shagbark','shagbark',[130,102,68],'826644',8545860], ['nbs-iscc-m:shagbark.80','shagbark','shagbark',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:shalegreen.136','shalegreen','shale green',[103,146,103],'679267',6787687], ['nbs-iscc-m:shamrock.131','shamrock','shamrock',[68,148,74],'44944a',4494410], ['nbs-iscc-m:shamrockgreen.131','shamrockgreen','shamrock [green] ',[68,148,74],'44944a',4494410], ['nbs-iscc-m:shark.228','shark','shark',[121,104,120],'796878',7956600], ['nbs-iscc-m:shark.234','shark','shark',[93,85,91],'5d555b',6116699], ['nbs-iscc-m:sheepskin.90','sheepskin','sheepskin',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:sheik.15','sheik','sheik',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:sheik.38','sheik','sheik',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:shellgrey.93','shellgrey','shell grey ',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:shirvan.151','shirvan','shirvan',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:shrimppink.26','shrimppink','shrimp [pink] ',[248,131,121],'f88379',16286585], ['nbs-iscc-m:shrimpred.26','shrimpred','shrimp [red] ',[248,131,121],'f88379',16286585], ['nbs-iscc-m:siam.58','siam','siam',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:siam.61','siam','siam',[99,81,71],'635147',6508871], ['nbs-iscc-m:siam.77','siam','siam',[130,102,68],'826644',8545860], ['nbs-iscc-m:siam.80','siam','siam',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:siberianbrown.95','siberianbrown','siberian brown',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:siberien.151','siberien','siberien',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:sicilianumber.77','sicilianumber','sicilian umber',[130,102,68],'826644',8545860], ['nbs-iscc-m:sicilianumber.78','sicilianumber','sicilian umber',[75,54,33],'4b3621',4929057], ['nbs-iscc-m:siderinyellow.50','siderinyellow','siderin yellow',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:siderinyellow.53','siderinyellow','siderin yellow',[217,144,88],'d99058',14258264], ['nbs-iscc-m:siena.40','siena','siena',[136,45,23],'882d17',8924439], ['nbs-iscc-m:siennabrown.58','siennabrown','sienna brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:siennayellow.73','siennayellow','sienna yellow',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:siennayellow.87','siennayellow','sienna yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:siennesedrab.45','siennesedrab','siennese drab',[151,127,115],'977f73',9928563], ['nbs-iscc-m:siennesedrab.60','siennesedrab','siennese drab',[149,128,112],'958070',9797744], ['nbs-iscc-m:sierra.40','sierra','sierra',[136,45,23],'882d17',8924439], ['nbs-iscc-m:signalred.11','signalred','signal red',[190,0,50],'be0032',12451890], ['nbs-iscc-m:sil.71','sil','sil',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:siluriangray.121','siluriangray','silurian gray',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:silverfern.106','silverfern','silver fern',[134,126,54],'867e36',8814134], ['nbs-iscc-m:silverfern.109','silverfern','silver fern',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:silvergreen.122','silvergreen','silver green',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:silverpine.150','silverpine','silverpine',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:silverwing.233','silverwing','silver-wing',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:sinbad.187','sinbad','sinbad',[54,69,79],'36454f',3556687], ['nbs-iscc-m:sinbad.193','sinbad','sinbad',[32,36,40],'202428',2106408], ['nbs-iscc-m:sinbad.229','sinbad','sinbad',[80,64,77],'50404d',5259341], ['nbs-iscc-m:sinbad.235','sinbad','sinbad',[36,33,36],'242124',2367780], ['nbs-iscc-m:sirocco.109','sirocco','sirocco',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:siskingreen.105','siskingreen','siskin green',[185,181,125],'b9b57d',12170621], ['nbs-iscc-m:sistine.172','sistine','sistine',[102,170,188],'66aabc',6728380], ['nbs-iscc-m:sistine.173','sistine','sistine',[54,117,136],'367588',3569032], ['nbs-iscc-m:sistine.185','sistine','sistine',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:sistine.186','sistine','sistine',[83,104,120],'536878',5466232], ['nbs-iscc-m:skating.174','skating','skating',[0,73,88],'004958',18776], ['nbs-iscc-m:ski.137','ski','ski',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:ski.145','ski','ski',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:skimmedmilkwhite.121','skimmedmilkwhite','skimmed-milk white',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:skobeloffgreen.160','skobeloffgreen','skobeloff green',[0,122,116],'007a74',31348], ['nbs-iscc-m:sky.181','sky','sky',[112,163,204],'70a3cc',7381964], ['nbs-iscc-m:sky.199','sky','sky',[135,145,191],'8791bf',8884671], ['nbs-iscc-m:skyblue.181','skyblue','sky blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-m:skyblue.199','skyblue','sky blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-m:skycolour.181','skycolour','sky colour',[112,163,204],'70a3cc',7381964], ['nbs-iscc-m:skycolour.199','skycolour','sky colour',[135,145,191],'8791bf',8884671], ['nbs-iscc-m:skygreen.119','skygreen','sky green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-m:slag.266','slag','slag',[85,85,85],'555555',5592405], ['nbs-iscc-m:slate.192','slate','slate',[81,88,94],'51585e',5331038], ['nbs-iscc-m:slateblack.267','slateblack','slate-black',[34,34,34],'222222',2236962], ['nbs-iscc-m:slateblue.186','slateblue','slate blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:slateblue.186','slateblue','slate-blue ',[83,104,120],'536878',5466232], ['nbs-iscc-m:slatecolor.234','slatecolor','slate [color] ',[93,85,91],'5d555b',6116699], ['nbs-iscc-m:slategreen.150','slategreen','slate-green',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:slategreen.156','slategreen','slate-green',[78,87,85],'4e5755',5134165], ['nbs-iscc-m:slategrey.112','slategrey','slate-grey ',[138,135,118],'8a8776',9078646], ['nbs-iscc-m:slategrey.265','slategrey','slate-grey ',[132,132,130],'848482',8684674], ['nbs-iscc-m:slateolive.156','slateolive','slate-olive',[78,87,85],'4e5755',5134165], ['nbs-iscc-m:slatepurple.229','slatepurple','slate-purple',[80,64,77],'50404d',5259341], ['nbs-iscc-m:slatepurple.242','slatepurple','slate-purple',[93,57,84],'5d3954',6109524], ['nbs-iscc-m:slateviolet.19','slateviolet','slate-violet',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:smalt.179','smalt','smalt',[0,65,106],'00416a',16746], ['nbs-iscc-m:smalt.182','smalt','smalt',[67,107,149],'436b95',4418453], ['nbs-iscc-m:smaltgreen.136','smaltgreen','smalt green',[103,146,103],'679267',6787687], ['nbs-iscc-m:smaltino.179','smaltino','smaltino',[0,65,106],'00416a',16746], ['nbs-iscc-m:smaltino.182','smaltino','smaltino',[67,107,149],'436b95',4418453], ['nbs-iscc-m:smokeblue.192','smokeblue','smoke blue',[81,88,94],'51585e',5331038], ['nbs-iscc-m:smokebrown.266','smokebrown','smoke brown',[85,85,85],'555555',5592405], ['nbs-iscc-m:smokedpearl.266','smokedpearl','smoked pearl',[85,85,85],'555555',5592405], ['nbs-iscc-m:smokegrey.121','smokegrey','smoke grey ',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:smokeyellow.109','smokeyellow','smoke yellow',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:smokeyellow.112','smokeyellow','smoke yellow',[138,135,118],'8a8776',9078646], ['nbs-iscc-m:snapdragon.86','snapdragon','snapdragon',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:snapdragon.87','snapdragon','snapdragon',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:snowshoe.68','snowshoe','snowshoe',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:snowshoe.71','snowshoe','snowshoe',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:soapstone.61','soapstone','soapstone',[99,81,71],'635147',6508871], ['nbs-iscc-m:solferino.258','solferino','solferino',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:solitaire.47','solitaire','solitaire',[67,48,46],'43302e',4403246], ['nbs-iscc-m:solitaire.62','solitaire','solitaire',[62,50,44],'3e322c',4076076], ['nbs-iscc-m:somalis.38','somalis','somalis',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:somalis.43','somalis','somalis',[121,68,59],'79443b',7947323], ['nbs-iscc-m:sombrero.90','sombrero','sombrero',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:sonora.54','sonora','sonora',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:sonora.57','sonora','sonora',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:sootbrown.61','sootbrown','soot brown',[99,81,71],'635147',6508871], ['nbs-iscc-m:sootbrown.80','sootbrown','soot brown',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:sootyblack.267','sootyblack','sooty black',[34,34,34],'222222',2236962], ['nbs-iscc-m:sorbier.262','sorbier','sorbier',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:sorghumbrown.45','sorghumbrown','sorghum brown',[151,127,115],'977f73',9928563], ['nbs-iscc-m:sorghumbrown.60','sorghumbrown','sorghum brown',[149,128,112],'958070',9797744], ['nbs-iscc-m:sorollabrown.55','sorollabrown','sorolla brown',[128,70,27],'80461b',8406555], ['nbs-iscc-m:sorrel.54','sorrel','sorrel',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:sorrel.57','sorrel','sorrel',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:sorrentogreen.164','sorrentogreen','sorrento green',[49,120,115],'317873',3242099], ['nbs-iscc-m:souci.50','souci','souci',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:source.136','source','source',[103,146,103],'679267',6787687], ['nbs-iscc-m:source.144','source','source',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:source.149','source','source',[141,163,153],'8da399',9282457], ['nbs-iscc-m:spalte.81','spalte','spalte',[72,60,50],'483c32',4734002], ['nbs-iscc-m:spaltum.81','spaltum','spaltum',[72,60,50],'483c32',4734002], ['nbs-iscc-m:spanishbrown.40','spanishbrown','spanish brown',[136,45,23],'882d17',8924439], ['nbs-iscc-m:spanishcedar.19','spanishcedar','spanish cedar',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:spanishcedar.43','spanishcedar','spanish cedar',[121,68,59],'79443b',7947323], ['nbs-iscc-m:spanishflesh.89','spanishflesh','spanish flesh',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:spanishflesh.90','spanishflesh','spanish flesh',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:spanishgreen.136','spanishgreen','spanish green',[103,146,103],'679267',6787687], ['nbs-iscc-m:spanishochre.50','spanishochre','spanish ochre',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:spanishraisin.47','spanishraisin','spanish raisin',[67,48,46],'43302e',4403246], ['nbs-iscc-m:spanishred.11','spanishred','spanish red',[190,0,50],'be0032',12451890], ['nbs-iscc-m:spanishred.40','spanishred','spanish red',[136,45,23],'882d17',8924439], ['nbs-iscc-m:spanishred.55','spanishred','spanish red',[128,70,27],'80461b',8406555], ['nbs-iscc-m:spanishwine.16','spanishwine','spanish wine',[114,47,55],'722f37',7483191], ['nbs-iscc-m:spanishyellow.68','spanishyellow','spanish yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:spanishyellow.71','spanishyellow','spanish yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:spark.11','spark','spark',[190,0,50],'be0032',12451890], ['nbs-iscc-m:sparrow.64','sparrow','sparrow',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:spatan.54','spatan','spa-tan',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:spearmint.139','spearmint','spearmint',[0,136,86],'008856',34902], ['nbs-iscc-m:sphinx.80','sphinx','sphinx',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:spice.54','spice','spice',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:spinachgreen.120','spinachgreen','spinach green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:spinachgreen.125','spinachgreen','spinach green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:spinelpink.258','spinelpink','spinel pink',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:spinelred.12','spinelred','spinel red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:spinelred.255','spinelred','spinel red',[179,68,108],'b3446c',11748460], ['nbs-iscc-m:sponge.94','sponge','sponge',[150,113,23],'967117',9859351], ['nbs-iscc-m:spray.162','spray','spray',[150,222,209],'96ded1',9887441], ['nbs-iscc-m:springbeauty.254','springbeauty','spring beauty',[206,70,118],'ce4676',13518454], ['nbs-iscc-m:springbeauty.255','springbeauty','spring beauty',[179,68,108],'b3446c',11748460], ['nbs-iscc-m:springgreen.120','springgreen','spring green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:springgreen.135','springgreen','spring green',[147,197,146],'93c592',9684370], ['nbs-iscc-m:springtime.3','springtime','springtime',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:sprite.159','sprite','sprite',[0,166,147],'00a693',42643], ['nbs-iscc-m:sprite.163','sprite','sprite',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:spruce.151','spruce','spruce',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:spruce.157','spruce','spruce',[30,35,33],'1e2321',1975073], ['nbs-iscc-m:spruceochre.54','spruceochre','spruce ochre',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:spruceochre.74','spruceochre','spruce ochre',[153,101,21],'996515',10052885], ['nbs-iscc-m:spruceyellow.72','spruceyellow','spruce yellow',[190,138,61],'be8a3d',12487229], ['nbs-iscc-m:spruceyellow.76','spruceyellow','spruce yellow',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:squillblue.181','squillblue','squill blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-m:squirrel.234','squirrel','squirrel',[93,85,91],'5d555b',6116699], ['nbs-iscc-m:squirrel.266','squirrel','squirrel',[85,85,85],'555555',5592405], ['nbs-iscc-m:stag.77','stag','stag',[130,102,68],'826644',8545860], ['nbs-iscc-m:starchblue.179','starchblue','starch blue',[0,65,106],'00416a',16746], ['nbs-iscc-m:starchblue.182','starchblue','starch blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:stardew.186','stardew','stardew',[83,104,120],'536878',5466232], ['nbs-iscc-m:starflower.251','starflower','starflower',[193,126,145],'c17e91',12680849], ['nbs-iscc-m:starlight.185','starlight','starlight',[145,163,176],'91a3b0',9544624], ['nbs-iscc-m:starling.64','starling','starling',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:stbenoitorsaintbenoit.81','stbenoitorsaintbenoit','st. benoit or saint benoit',[72,60,50],'483c32',4734002], ['nbs-iscc-m:stbenoitorsaintbenoit.267','stbenoitorsaintbenoit','st. benoit or saint benoit',[34,34,34],'222222',2236962], ['nbs-iscc-m:steel.266','steel','steel',[85,85,85],'555555',5592405], ['nbs-iscc-m:steelgrey.266','steelgrey','steel grey ',[85,85,85],'555555',5592405], ['nbs-iscc-m:steeplechase.196','steeplechase','steeplechase',[84,90,167],'545aa7',5528231], ['nbs-iscc-m:stildegrainbrown.72','stildegrainbrown','stil de grain brown',[190,138,61],'be8a3d',12487229], ['nbs-iscc-m:stildegrainbrown.74','stildegrainbrown','stil de grain brown',[153,101,21],'996515',10052885], ['nbs-iscc-m:stildegrainyellow.83','stildegrainyellow','stil de grain yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:stildegrainyellow.84','stildegrainyellow','stil de grain yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:stildegrainyellow.86','stildegrainyellow','stil de grain yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:stildegrainyellow.87','stildegrainyellow','stil de grain yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:stoneblue.182','stoneblue','stone blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:stonegrey.113','stonegrey','stone grey ',[87,85,76],'57554c',5723468], ['nbs-iscc-m:stormgrey.155','stormgrey','storm grey ',[125,137,132],'7d8984',8227204], ['nbs-iscc-m:strawberry.19','strawberry','strawberry',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:strawberrypink.3','strawberrypink','strawberry pink',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:strawberrypink.26','strawberrypink','strawberry pink',[248,131,121],'f88379',16286585], ['nbs-iscc-m:strawberrypink.27','strawberrypink','strawberry pink',[230,103,97],'e66761',15099745], ['nbs-iscc-m:strawyellow.89','strawyellow','straw [yellow] ',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:striegauearth.43','striegauearth','striegau earth',[121,68,59],'79443b',7947323], ['nbs-iscc-m:strollertan.58','strollertan','stroller tan',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:strontianyellow.98','strontianyellow','strontian yellow ',[233,228,80],'e9e450',15328336], ['nbs-iscc-m:stucco.45','stucco','stucco',[151,127,115],'977f73',9928563], ['nbs-iscc-m:stucco.60','stucco','stucco',[149,128,112],'958070',9797744], ['nbs-iscc-m:succoryblue.121','succoryblue','succory blue',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:sudan.91','sudan','sudan',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:sudan.94','sudan','sudan',[150,113,23],'967117',9859351], ['nbs-iscc-m:sudan.109','sudan','sudan',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:sudanbrown.55','sudanbrown','sudan brown',[128,70,27],'80461b',8406555], ['nbs-iscc-m:sudanbrown.58','sudanbrown','sudan brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:suede.57','suede','suede',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:suede.58','suede','suede',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:suede.77','suede','suede',[130,102,68],'826644',8545860], ['nbs-iscc-m:sugarcane.73','sugarcane','sugar cane',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:sugarcane.76','sugarcane','sugar cane',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:sulphategreen.163','sulphategreen','sulphate green',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:sulphategreen.164','sulphategreen','sulphate green',[49,120,115],'317873',3242099], ['nbs-iscc-m:sulphineyellow.88','sulphineyellow','sulphine yellow',[171,145,68],'ab9144',11243844], ['nbs-iscc-m:sulphur.101','sulphur','sulphur',[234,230,121],'eae679',15394425], ['nbs-iscc-m:sulphuryellow.101','sulphuryellow','sulphur [yellow] ',[234,230,121],'eae679',15394425], ['nbs-iscc-m:sultan.15','sultan','sultan',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:sultana.16','sultana','sultana',[114,47,55],'722f37',7483191], ['nbs-iscc-m:sultana.259','sultana','sultana',[103,49,71],'673147',6762823], ['nbs-iscc-m:sumac.72','sumac','sumac',[190,138,61],'be8a3d',12487229], ['nbs-iscc-m:sumac.74','sumac','sumac',[153,101,21],'996515',10052885], ['nbs-iscc-m:sumac.76','sumac','sumac',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:sumac.77','sumac','sumac',[130,102,68],'826644',8545860], ['nbs-iscc-m:sumac.88','sumac','sumac',[171,145,68],'ab9144',11243844], ['nbs-iscc-m:sumac.91','sumac','sumac',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:sumac.94','sumac','sumac',[150,113,23],'967117',9859351], ['nbs-iscc-m:sunbeam.90','sunbeam','sunbeam',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:sunburn.57','sunburn','sunburn',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:sunburst.50','sunburst','sunburst',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:sunburst.53','sunburst','sunburst',[217,144,88],'d99058',14258264], ['nbs-iscc-m:sundown.76','sundown','sundown',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:sunfloweryellow.83','sunfloweryellow','sunflower [yellow] ',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:sunglow.3','sunglow','sunglow',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:sunglow.15','sunglow','sunglow',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:sungod.34','sungod','sungod',[226,88,34],'e25822',14833698], ['nbs-iscc-m:sunkiss.53','sunkiss','sunkiss ',[217,144,88],'d99058',14258264], ['nbs-iscc-m:sunlight.87','sunlight','sunlight',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:sunni.86','sunni','sunni',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:sunni.87','sunni','sunni',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:sunray.71','sunray','sunray',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:sunriseyellow.29','sunriseyellow','sunrise yellow',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:sunriseyellow.53','sunriseyellow','sunrise yellow',[217,144,88],'d99058',14258264], ['nbs-iscc-m:sunset.73','sunset','sunset',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:sunstone.54','sunstone','sunstone',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:suntan.57','suntan','suntan',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:suntan.76','suntan','suntan',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:suntan.77','suntan','suntan',[130,102,68],'826644',8545860], ['nbs-iscc-m:superior.165','superior','superior',[0,75,73],'004b49',19273], ['nbs-iscc-m:surfgreen.136','surfgreen','surf green',[103,146,103],'679267',6787687], ['nbs-iscc-m:surreygreen.122','surreygreen','surrey green',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:surreygreen.149','surreygreen','surrey green',[141,163,153],'8da399',9282457], ['nbs-iscc-m:swamp.151','swamp','swamp',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:swedishgreen.117','swedishgreen','swedish green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-m:swedishgreen.131','swedishgreen','swedish green',[68,148,74],'44944a',4494410], ['nbs-iscc-m:sweetbriar.248','sweetbriar','sweet briar',[222,111,161],'de6fa1',14577569], ['nbs-iscc-m:sweetmeat.76','sweetmeat','sweetmeat',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:sweetpea.32','sweetpea','sweet pea',[199,173,163],'c7ada3',13086115], ['nbs-iscc-m:sweetwilliam.3','sweetwilliam','sweet william',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:swissblue.186','swissblue','swiss blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:swissrose.15','swissrose','swiss rose',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:syrup.94','syrup','syrup',[150,113,23],'967117',9859351], ['nbs-iscc-m:syrup.95','syrup','syrup',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:taffy.76','taffy','taffy',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:talavera.54','talavera','talavera',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:tamarach.61','tamarach','tamarach',[99,81,71],'635147',6508871], ['nbs-iscc-m:tamarach.80','tamarach','tamarach',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:taming.68','taming','ta-ming',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:taming.71','taming','ta-ming',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:tan.54','tan','tan',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:tanagra.43','tanagra','tanagra',[121,68,59],'79443b',7947323], ['nbs-iscc-m:tanaura.90','tanaura','tanaura ',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:tanbark.58','tanbark','tanbark',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:tangerine.37','tangerine','tangerine',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:tangier.50','tangier','tangier',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:tangopink.19','tangopink','tango pink',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:tansan.57','tansan','tansan',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:tansan.76','tansan','tansan',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:tapestry.183','tapestry','tapestry',[0,48,78],'00304e',12366], ['nbs-iscc-m:tapestry.201','tapestry','tapestry',[37,36,64],'252440',2434112], ['nbs-iscc-m:tapestry.204','tapestry','tapestry',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:tapestry.233','tapestry','tapestry',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:tapestryred.16','tapestryred','tapestry red',[114,47,55],'722f37',7483191], ['nbs-iscc-m:tapisvert.120','tapisvert','tapis vert',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:tarragon.120','tarragon','tarragon',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:tarragon.122','tarragon','tarragon',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:tarragon.136','tarragon','tarragon',[103,146,103],'679267',6787687], ['nbs-iscc-m:tarragona.40','tarragona','tarragona',[136,45,23],'882d17',8924439], ['nbs-iscc-m:tarragona.55','tarragona','tarragona',[128,70,27],'80461b',8406555], ['nbs-iscc-m:tartangreen.151','tartangreen','tartan green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:taupe.81','taupe','taupe',[72,60,50],'483c32',4734002], ['nbs-iscc-m:tawny.54','tawny','tawny',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:tawny.57','tawny','tawny',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:tawnybirch.42','tawnybirch','tawny birch',[168,124,109],'a87c6d',11041901], ['nbs-iscc-m:tawnybirch.57','tawnybirch','tawny birch',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:tawnybirch.60','tawnybirch','tawny birch',[149,128,112],'958070',9797744], ['nbs-iscc-m:tea.122','tea','tea',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:tea.149','tea','tea',[141,163,153],'8da399',9282457], ['nbs-iscc-m:teagreen.122','teagreen','tea green',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:teakbrown.58','teakbrown','teak [brown] ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:teakwood.61','teakwood','teakwood',[99,81,71],'635147',6508871], ['nbs-iscc-m:teakwood.80','teakwood','teakwood',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:tealblue.174','tealblue','teal blue',[0,73,88],'004958',18776], ['nbs-iscc-m:tealblue.187','tealblue','teal blue',[54,69,79],'36454f',3556687], ['nbs-iscc-m:tealduck.174','tealduck','teal duck ',[0,73,88],'004958',18776], ['nbs-iscc-m:teatime.94','teatime','tea time',[150,113,23],'967117',9859351], ['nbs-iscc-m:telegraphblue.228','telegraphblue','telegraph blue',[121,104,120],'796878',7956600], ['nbs-iscc-m:tennis.88','tennis','tennis',[171,145,68],'ab9144',11243844], ['nbs-iscc-m:tennis.91','tennis','tennis',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:terracotta.51','terracotta','terra cotta',[190,101,22],'be6516',12477718], ['nbs-iscc-m:terracotta.54','terracotta','terra cotta',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:terrajaponica.58','terrajaponica','terra japonica',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:terralemnia.43','terralemnia','terra lemnia',[121,68,59],'79443b',7947323], ['nbs-iscc-m:terramerita.86','terramerita','terra merita',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:terraorellana.29','terraorellana','terra orellana',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:terraorellano.29','terraorellano','terra orellano ',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:terrapin.58','terrapin','terrapin',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:terrapozzuoli.43','terrapozzuoli','terra pozzuoli',[121,68,59],'79443b',7947323], ['nbs-iscc-m:terrarosa.43','terrarosa','terra rosa',[121,68,59],'79443b',7947323], ['nbs-iscc-m:terrasiena.54','terrasiena','terra siena ',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:terrasiena.57','terrasiena','terra siena ',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:terrasigillata.43','terrasigillata','terra sigillata',[121,68,59],'79443b',7947323], ['nbs-iscc-m:terrasse.120','terrasse','terrasse',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:terraumber.77','terraumber','terra umber',[130,102,68],'826644',8545860], ['nbs-iscc-m:terraumber.78','terraumber','terra umber',[75,54,33],'4b3621',4929057], ['nbs-iscc-m:testaceous.53','testaceous','testaceous',[217,144,88],'d99058',14258264], ['nbs-iscc-m:testaceous.57','testaceous','testaceous',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:thenardsblue.169','thenardsblue','thenard\'s blue',[0,119,145],'007791',30609], ['nbs-iscc-m:thistle.223','thistle','thistle',[134,96,142],'86608e',8806542], ['nbs-iscc-m:thistlebloom.237','thistlebloom','thistle bloom',[158,79,136],'9e4f88',10375048], ['nbs-iscc-m:thistletuft.238','thistletuft','thistletuft',[112,41,99],'702963',7350627], ['nbs-iscc-m:thrush.77','thrush','thrush',[130,102,68],'826644',8545860], ['nbs-iscc-m:thrush.80','thrush','thrush',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:thulitepink.248','thulitepink','thulite pink',[222,111,161],'de6fa1',14577569], ['nbs-iscc-m:thyme.151','thyme','thyme',[58,75,71],'3a4b47',3820359], ['nbs-iscc-m:tiber.146','tiber','tiber',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-m:tibergreen.135','tibergreen','tiber green',[147,197,146],'93c592',9684370], ['nbs-iscc-m:tiffin.77','tiffin','tiffin',[130,102,68],'826644',8545860], ['nbs-iscc-m:tigerlily.35','tigerlily','tigerlily',[217,96,59],'d9603b',14245947], ['nbs-iscc-m:tigerlily.37','tigerlily','tigerlily',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:tileblue.173','tileblue','tile blue',[54,117,136],'367588',3569032], ['nbs-iscc-m:tilered.37','tilered','tile red',[203,109,81],'cb6d51',13331793], ['nbs-iscc-m:tilleulbuff.31','tilleulbuff','tilleul buff',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-m:tilleulbuff.93','tilleulbuff','tilleul buff',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:tilleulgreen.104','tilleulgreen','tilleul [green] ',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-m:tinsel.88','tinsel','tinsel',[171,145,68],'ab9144',11243844], ['nbs-iscc-m:tinsel.91','tinsel','tinsel',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:tinsel.94','tinsel','tinsel',[150,113,23],'967117',9859351], ['nbs-iscc-m:titania.242','titania','titania',[93,57,84],'5d3954',6109524], ['nbs-iscc-m:titania.259','titania','titania',[103,49,71],'673147',6762823], ['nbs-iscc-m:titian.54','titian','titian',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:titiangold.54','titiangold','titian gold',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:titmouseblue.149','titmouseblue','titmouse blue ',[141,163,153],'8da399',9282457], ['nbs-iscc-m:toast.57','toast','toast',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:toastedalmond.57','toastedalmond','toasted almond',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:toboggan.34','toboggan','toboggan',[226,88,34],'e25822',14833698], ['nbs-iscc-m:toboggan.48','toboggan','toboggan',[243,132,0],'f38400',15959040], ['nbs-iscc-m:toga.212','toga','toga',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:tokay.43','tokay','tokay',[121,68,59],'79443b',7947323], ['nbs-iscc-m:tokyo.25','tokyo','tokyo',[255,183,165],'ffb7a5',16758693], ['nbs-iscc-m:tokyo.26','tokyo','tokyo',[248,131,121],'f88379',16286585], ['nbs-iscc-m:tokyo.50','tokyo','tokyo',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:toltec.71','toltec','toltec',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:tomatored.38','tomatored','tomato [red] ',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:tommyred.12','tommyred','tommy red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:topaz.57','topaz','topaz',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:topaz.72','topaz','topaz',[190,138,61],'be8a3d',12487229], ['nbs-iscc-m:topaz.76','topaz','topaz',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:toquet.32','toquet','toquet',[199,173,163],'c7ada3',13086115], ['nbs-iscc-m:toreador.34','toreador','toreador',[226,88,34],'e25822',14833698], ['nbs-iscc-m:torinoblue.186','torinoblue','torino blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:tortoise.55','tortoise','tortoise',[128,70,27],'80461b',8406555], ['nbs-iscc-m:tortoiseshell.58','tortoiseshell','tortoise shell',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:totem.38','totem','totem',[158,71,50],'9e4732',10372914], ['nbs-iscc-m:tourmaline.163','tourmaline','tourmaline',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:tourmalinepink.262','tourmalinepink','tourmaline pink',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:tourterelle.94','tourterelle','tourterelle',[150,113,23],'967117',9859351], ['nbs-iscc-m:transparentchromiumoxide.141','transparentchromiumoxide','transparent chromium oxide',[0,121,89],'007959',31065], ['nbs-iscc-m:transparentchromiumoxide.145','transparentchromiumoxide','transparent chromium oxide',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:transparentgoldochre.54','transparentgoldochre','transparent gold ochre',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:transparentgoldochre.74','transparentgoldochre','transparent gold ochre',[153,101,21],'996515',10052885], ['nbs-iscc-m:traprock.266','traprock','traprock',[85,85,85],'555555',5592405], ['nbs-iscc-m:travertine.94','travertine','travertine ',[150,113,23],'967117',9859351], ['nbs-iscc-m:trentanel.101','trentanel','trentanel',[234,230,121],'eae679',15394425], ['nbs-iscc-m:trentanel.102','trentanel','trentanel',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:trianon.29','trianon','trianon',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:trianon.53','trianon','trianon',[217,144,88],'d99058',14258264], ['nbs-iscc-m:triton.146','triton','triton',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-m:triumphblue.182','triumphblue','triumph blue',[67,107,149],'436b95',4418453], ['nbs-iscc-m:triumphblue.183','triumphblue','triumph blue',[0,48,78],'00304e',12366], ['nbs-iscc-m:trooper.183','trooper','trooper',[0,48,78],'00304e',12366], ['nbs-iscc-m:trooper.187','trooper','trooper',[54,69,79],'36454f',3556687], ['nbs-iscc-m:trooper.188','trooper','trooper',[32,40,48],'202830',2107440], ['nbs-iscc-m:trotteurtan.58','trotteurtan','trotteur tan',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:troubadorred.12','troubadorred','troubador red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:trublu.186','trublu','trublu',[83,104,120],'536878',5466232], ['nbs-iscc-m:tuileries.182','tuileries','tuileries',[67,107,149],'436b95',4418453], ['nbs-iscc-m:tulipwood.58','tulipwood','tulipwood',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:tunis.187','tunis','tunis',[54,69,79],'36454f',3556687], ['nbs-iscc-m:tunis.188','tunis','tunis',[32,40,48],'202830',2107440], ['nbs-iscc-m:turbithmineral.86','turbithmineral','turbith mineral',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:turkeyblue.204','turkeyblue','turkey blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:turkeyred.15','turkeyred','turkey red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:turkeyumber.77','turkeyumber','turkey umber',[130,102,68],'826644',8545860], ['nbs-iscc-m:turkeyumber.78','turkeyumber','turkey umber',[75,54,33],'4b3621',4929057], ['nbs-iscc-m:turkishblue.204','turkishblue','turkish blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:turkishcrescentred.13','turkishcrescentred','turkish crescent red ',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:turkishcrescentred.16','turkishcrescentred','turkish crescent red ',[114,47,55],'722f37',7483191], ['nbs-iscc-m:turkishred.15','turkishred','turkish red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:turmeric.86','turmeric','turmeric',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:turnersyellow.83','turnersyellow','turner\'s yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:turnersyellow.84','turnersyellow','turner\'s yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:turnersyellow.86','turnersyellow','turner\'s yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:turnersyellow.87','turnersyellow','turner\'s yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:turquoiseblue.163','turquoiseblue','turquoise [blue] ',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:turquoisegreen.163','turquoisegreen','turquoise green',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:turtle.58','turtle','turtle',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:turtledove.23','turtledove','turtledove',[92,80,79],'5c504f',6049871], ['nbs-iscc-m:turtledove.266','turtledove','turtledove',[85,85,85],'555555',5592405], ['nbs-iscc-m:turtlegreen.120','turtlegreen','turtle green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:tuscan.73','tuscan','tuscan',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:tuscanbrown.43','tuscanbrown','tuscan brown',[121,68,59],'79443b',7947323], ['nbs-iscc-m:tuscanbrown.58','tuscanbrown','tuscan brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:tuscanred.43','tuscanred','tuscan red',[121,68,59],'79443b',7947323], ['nbs-iscc-m:tuscantan.57','tuscantan','tuscan tan',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:tuscany.43','tuscany','tuscany',[121,68,59],'79443b',7947323], ['nbs-iscc-m:tussore.28','tussore','tussore',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-m:tussore.29','tussore','tussore',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:twilightblue.186','twilightblue','twilight [blue] ',[83,104,120],'536878',5466232], ['nbs-iscc-m:twine.109','twine','twine',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:twinkleblue.172','twinkleblue','twinkle blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-m:tyrianblue.186','tyrianblue','tyrian blue',[83,104,120],'536878',5466232], ['nbs-iscc-m:tyrianblue.204','tyrianblue','tyrian blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:tyrianpink.254','tyrianpink','tyrian pink',[206,70,118],'ce4676',13518454], ['nbs-iscc-m:tyrianviolet.258','tyrianviolet','tyrian violet',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:tyrol.77','tyrol','tyrol',[130,102,68],'826644',8545860], ['nbs-iscc-m:tyrolesegreen.136','tyrolesegreen','tyrolese green',[103,146,103],'679267',6787687], ['nbs-iscc-m:tyrolian.152','tyrolian','tyrolian',[26,36,33],'1a2421',1713185], ['nbs-iscc-m:tyrolitegreen.163','tyrolitegreen','tyrolite green',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:tzarine.157','tzarine','tzarine',[30,35,33],'1e2321',1975073], ['nbs-iscc-m:ultramarinegreen.157','ultramarinegreen','ultramarine green',[30,35,33],'1e2321',1975073], ['nbs-iscc-m:ultramarineyellow.84','ultramarineyellow','ultramarine yellow ',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:uraniablue.212','uraniablue','urania blue',[47,33,64],'2f2140',3088704], ['nbs-iscc-m:vagabondgreen.165','vagabondgreen','vagabond green',[0,75,73],'004b49',19273], ['nbs-iscc-m:valencia.248','valencia','valencia',[222,111,161],'de6fa1',14577569], ['nbs-iscc-m:vanda.228','vanda','vanda',[121,104,120],'796878',7956600], ['nbs-iscc-m:vanda.245','vanda','vanda',[131,100,121],'836479',8610937], ['nbs-iscc-m:vandykebrown.58','vandykebrown','vandyke brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:vandykemadder.258','vandykemadder','vandyke madder',[168,81,110],'a8516e',11030894], ['nbs-iscc-m:vandykered.19','vandykered','vandyke red',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:vanilla.89','vanilla','vanilla',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:vanilla.90','vanilla','vanilla',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:vanity.29','vanity','vanity',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-m:variscitegreen.144','variscitegreen','variscite green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:varleysgrey.228','varleysgrey','varley\'s grey ',[121,104,120],'796878',7956600], ['nbs-iscc-m:vassarrose.6','vassarrose','vassar rose',[192,128,129],'c08081',12615809], ['nbs-iscc-m:vassarrose.19','vassarrose','vassar rose',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:vassartan.55','vassartan','vassar tan',[128,70,27],'80461b',8406555], ['nbs-iscc-m:vassartan.58','vassartan','vassar tan',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:vatican.224','vatican','vatican',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:vatican.225','vatican','vatican',[48,25,52],'301934',3152180], ['nbs-iscc-m:veaudor.73','veaudor','veau d\'or',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:veaudor.76','veaudor','veau d\'or',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:vegetablered.11','vegetablered','vegetable red',[190,0,50],'be0032',12451890], ['nbs-iscc-m:vegetablerouge.11','vegetablerouge','vegetable rouge',[190,0,50],'be0032',12451890], ['nbs-iscc-m:velasquez.259','velasquez','velasquez ',[103,49,71],'673147',6762823], ['nbs-iscc-m:velvetbrown.77','velvetbrown','velvet brown',[130,102,68],'826644',8545860], ['nbs-iscc-m:velvetbrown.78','velvetbrown','velvet brown',[75,54,33],'4b3621',4929057], ['nbs-iscc-m:velvetgreen.125','velvetgreen','velvet green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:venet.163','venet','venet',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:venetianblue.169','venetianblue','venetian blue',[0,119,145],'007791',30609], ['nbs-iscc-m:venetianfuchsia.254','venetianfuchsia','venetian fuchsia',[206,70,118],'ce4676',13518454], ['nbs-iscc-m:venetianlake.11','venetianlake','venetian lake',[190,0,50],'be0032',12451890], ['nbs-iscc-m:venetianlake.12','venetianlake','venetian lake',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:venetianpink.5','venetianpink','venetian pink',[222,165,164],'dea5a4',14591396], ['nbs-iscc-m:venetianred.40','venetianred','venetian red',[136,45,23],'882d17',8924439], ['nbs-iscc-m:venetianrose.13','venetianrose','venetian rose',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:venetianrose.15','venetianrose','venetian rose',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:venetianscarlet.11','venetianscarlet','venetian scarlet',[190,0,50],'be0032',12451890], ['nbs-iscc-m:venetianyellow.86','venetianyellow','venetian yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:venetianyellow.87','venetianyellow','venetian yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:venezia.164','venezia','venezia',[49,120,115],'317873',3242099], ['nbs-iscc-m:veniceberries.68','veniceberries','venice berries',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:veniceberries.71','veniceberries','venice berries',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:veniceblue.163','veniceblue','venice [blue] ',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:venicegreen.163','venicegreen','venice green',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:venicered.43','venicered','venice red',[121,68,59],'79443b',7947323], ['nbs-iscc-m:venus.88','venus','venus',[171,145,68],'ab9144',11243844], ['nbs-iscc-m:venus.91','venus','venus',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:verbena.241','verbena','verbena',[145,92,131],'915c83',9526403], ['nbs-iscc-m:verbenaviolet.214','verbenaviolet','verbena [violet] ',[150,144,171],'9690ab',9867435], ['nbs-iscc-m:verbenaviolet.227','verbenaviolet','verbena [violet] ',[170,152,169],'aa98a9',11180201], ['nbs-iscc-m:verdantgreen.120','verdantgreen','verdant green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:verdet.136','verdet','verdet',[103,146,103],'679267',6787687], ['nbs-iscc-m:verdevessie.106','verdevessie','verde vessie',[134,126,54],'867e36',8814134], ['nbs-iscc-m:verdgay.120','verdgay','verd gay',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:verdigrisgreen.136','verdigrisgreen','verdigris [green] ',[103,146,103],'679267',6787687], ['nbs-iscc-m:verditergreen.136','verditergreen','verditer green',[103,146,103],'679267',6787687], ['nbs-iscc-m:verdure.137','verdure','verdure',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:veridinegreen.144','veridinegreen','veridine green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:vernoniapurple.262','vernoniapurple','vernonia purple',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:veronabrown.58','veronabrown','verona brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:veronayellow.83','veronayellow','verona yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:veronayellow.84','veronayellow','verona yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:veronayellow.86','veronayellow','verona yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:veronayellow.87','veronayellow','verona yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:veroneseyellow.83','veroneseyellow','veronese yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:veroneseyellow.84','veroneseyellow','veronese yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:veroneseyellow.86','veroneseyellow','veronese yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:veroneseyellow.87','veroneseyellow','veronese yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:veronica.211','veronica','veronica',[96,78,129],'604e81',6311553], ['nbs-iscc-m:versailles.172','versailles','versailles',[102,170,188],'66aabc',6728380], ['nbs-iscc-m:vertrusse.136','vertrusse','vert russe',[103,146,103],'679267',6787687], ['nbs-iscc-m:vertrusse.137','vertrusse','vert russe',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:vertrusse.150','vertrusse','vert russe',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:vervain.214','vervain','vervain',[150,144,171],'9690ab',9867435], ['nbs-iscc-m:vervain.227','vervain','vervain',[170,152,169],'aa98a9',11180201], ['nbs-iscc-m:vestal.228','vestal','vestal',[121,104,120],'796878',7956600], ['nbs-iscc-m:vestal.245','vestal','vestal',[131,100,121],'836479',8610937], ['nbs-iscc-m:veteran.187','veteran','veteran',[54,69,79],'36454f',3556687], ['nbs-iscc-m:vetivergreen.109','vetivergreen','vetiver green',[140,135,103],'8c8767',9209703], ['nbs-iscc-m:victoria.224','victoria','victoria',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:victoriablue.178','victoriablue','victoria blue',[0,103,165],'0067a5',26533], ['nbs-iscc-m:victoriagreen.144','victoriagreen','victoria green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-m:victoriagreen.149','victoriagreen','victoria green',[141,163,153],'8da399',9282457], ['nbs-iscc-m:victoriagreen.163','victoriagreen','victoria green',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:victorialake.16','victorialake','victoria lake',[114,47,55],'722f37',7483191], ['nbs-iscc-m:viennablue.169','viennablue','vienna blue',[0,119,145],'007791',30609], ['nbs-iscc-m:viennabrown.61','viennabrown','vienna brown',[99,81,71],'635147',6508871], ['nbs-iscc-m:viennabrown.80','viennabrown','vienna brown',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:viennagreen.140','viennagreen','vienna green',[62,180,137],'3eb489',4109449], ['nbs-iscc-m:viennalake.11','viennalake','vienna lake',[190,0,50],'be0032',12451890], ['nbs-iscc-m:viennalake.12','viennalake','vienna lake',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-m:viennasmoke.266','viennasmoke','vienna smoke',[85,85,85],'555555',5592405], ['nbs-iscc-m:vineyard.16','vineyard','vineyard',[114,47,55],'722f37',7483191], ['nbs-iscc-m:vineyard.17','vineyard','vineyard',[63,23,40],'3f1728',4134696], ['nbs-iscc-m:viola.223','viola','viola',[134,96,142],'86608e',8806542], ['nbs-iscc-m:violetcarmine.242','violetcarmine','violet-carmine',[93,57,84],'5d3954',6109524], ['nbs-iscc-m:violine.207','violine','violine',[96,78,151],'604e97',6311575], ['nbs-iscc-m:violine.211','violine','violine',[96,78,129],'604e81',6311553], ['nbs-iscc-m:virgin.182','virgin','virgin',[67,107,149],'436b95',4418453], ['nbs-iscc-m:viridian.141','viridian','viridian',[0,121,89],'007959',31065], ['nbs-iscc-m:viridian.145','viridian','viridian',[59,120,97],'3b7861',3897441], ['nbs-iscc-m:viridinegreen.119','viridinegreen','viridine green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-m:viridineyellow.117','viridineyellow','viridine yellow',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-m:vitellineyellow.84','vitellineyellow','vitelline yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:vitellinous.84','vitellinous','vitellinous',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:vitreous.119','vitreous','vitreous',[201,220,137],'c9dc89',13229193], ['nbs-iscc-m:wad.186','wad','wad',[83,104,120],'536878',5466232], ['nbs-iscc-m:wald.101','wald','wald',[234,230,121],'eae679',15394425], ['nbs-iscc-m:wald.102','wald','wald',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:wallflowerbrown.16','wallflowerbrown','wallflower [brown] ',[114,47,55],'722f37',7483191], ['nbs-iscc-m:wallflowerbrown.43','wallflowerbrown','wallflower [brown] ',[121,68,59],'79443b',7947323], ['nbs-iscc-m:wallgreen.160','wallgreen','wall green',[0,122,116],'007a74',31348], ['nbs-iscc-m:walnutbrown.76','walnutbrown','walnut [brown] ',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:warblergreen.106','warblergreen','warbler green',[134,126,54],'867e36',8814134], ['nbs-iscc-m:warmsepia.61','warmsepia','warm sepia ',[99,81,71],'635147',6508871], ['nbs-iscc-m:waterblue.164','waterblue','water blue',[49,120,115],'317873',3242099], ['nbs-iscc-m:watercolor.163','watercolor','water-color',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:watercress.120','watercress','water cress',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:waterfall.164','waterfall','waterfall',[49,120,115],'317873',3242099], ['nbs-iscc-m:watergreen.105','watergreen','water green',[185,181,125],'b9b57d',12170621], ['nbs-iscc-m:watergreen.119','watergreen','water green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-m:watergreen.121','watergreen','water green',[218,223,183],'dadfb7',14344119], ['nbs-iscc-m:watergrey.112','watergrey','water grey ',[138,135,118],'8a8776',9078646], ['nbs-iscc-m:waterloo.204','waterloo','waterloo',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:watermelon.3','watermelon','watermelon',[228,113,122],'e4717a',14971258], ['nbs-iscc-m:watermelon.15','watermelon','watermelon',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:watersprite.135','watersprite','water sprite',[147,197,146],'93c592',9684370], ['nbs-iscc-m:watteau.181','watteau','watteau',[112,163,204],'70a3cc',7381964], ['nbs-iscc-m:wau.101','wau','wau',[234,230,121],'eae679',15394425], ['nbs-iscc-m:wau.102','wau','wau',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:waxbrown.77','waxbrown','wax brown',[130,102,68],'826644',8545860], ['nbs-iscc-m:waxcolor.104','waxcolor','wax color',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-m:waxcolor.105','waxcolor','wax color',[185,181,125],'b9b57d',12170621], ['nbs-iscc-m:waxen.104','waxen','waxen',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-m:waxen.105','waxen','waxen',[185,181,125],'b9b57d',12170621], ['nbs-iscc-m:waxred.39','waxred','wax red',[180,116,94],'b4745e',11826270], ['nbs-iscc-m:waxwhite.104','waxwhite','wax white',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-m:waxwhite.105','waxwhite','wax white',[185,181,125],'b9b57d',12170621], ['nbs-iscc-m:waxyellow.87','waxyellow','wax yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:weatheredoak.59','weatheredoak','weathered oak',[66,37,24],'422518',4334872], ['nbs-iscc-m:weigelia.15','weigelia','weigelia',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:weld.101','weld','weld',[234,230,121],'eae679',15394425], ['nbs-iscc-m:weld.102','weld','weld',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:westminster.194','westminster','westminster',[48,38,122],'30267a',3155578], ['nbs-iscc-m:westminster.205','westminster','westminster',[144,101,202],'9065ca',9463242], ['nbs-iscc-m:westpoint.192','westpoint','west point',[81,88,94],'51585e',5331038], ['nbs-iscc-m:wheat.71','wheat','wheat',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:wheat.73','wheat','wheat',[250,214,165],'fad6a5',16438949], ['nbs-iscc-m:whippet.95','whippet','whippet',[108,84,30],'6c541e',7099422], ['nbs-iscc-m:whirlpool.174','whirlpool','whirlpool',[0,73,88],'004958',18776], ['nbs-iscc-m:whiteblue.190','whiteblue','white blue',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-m:whitejade.31','whitejade','white jade',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-m:whitejade.93','whitejade','white jade',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:wield.101','wield','wield',[234,230,121],'eae679',15394425], ['nbs-iscc-m:wield.102','wield','wield',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:wigwam.58','wigwam','wigwam',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:wildaster.219','wildaster','wild aster',[96,47,107],'602f6b',6303595], ['nbs-iscc-m:wildaster.238','wildaster','wild aster',[112,41,99],'702963',7350627], ['nbs-iscc-m:wildcherry.16','wildcherry','wild cherry',[114,47,55],'722f37',7483191], ['nbs-iscc-m:wildcherry.259','wildcherry','wild cherry',[103,49,71],'673147',6762823], ['nbs-iscc-m:wilddovegrey.64','wilddovegrey','wild dove grey ',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:wildhoney.54','wildhoney','wild honey',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:wildhoney.57','wildhoney','wild honey',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:wildiris.233','wildiris','wild iris',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:wildorchid.245','wildorchid','wild orchid',[131,100,121],'836479',8610937], ['nbs-iscc-m:wildpigeon.64','wildpigeon','wild pigeon',[91,80,79],'5b504f',5984335], ['nbs-iscc-m:wildraspberry.16','wildraspberry','wild raspberry',[114,47,55],'722f37',7483191], ['nbs-iscc-m:wildraspberry.259','wildraspberry','wild raspberry',[103,49,71],'673147',6762823], ['nbs-iscc-m:wildrose.6','wildrose','wild rose',[192,128,129],'c08081',12615809], ['nbs-iscc-m:wildstrawberry.13','wildstrawberry','wild strawberry',[132,27,45],'841b2d',8657709], ['nbs-iscc-m:wildstrawberry.16','wildstrawberry','wild strawberry',[114,47,55],'722f37',7483191], ['nbs-iscc-m:willow.107','willow','willow',[102,93,30],'665d1e',6708510], ['nbs-iscc-m:willowgreen.106','willowgreen','willow green',[134,126,54],'867e36',8814134], ['nbs-iscc-m:windflower.262','windflower','windflower',[145,95,109],'915f6d',9527149], ['nbs-iscc-m:windsor.224','windsor','windsor',[86,60,92],'563c5c',5651548], ['nbs-iscc-m:windsorblue.204','windsorblue','windsor blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-m:windsorgreen.137','windsorgreen','windsor green',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:windsortan.54','windsortan','windsor tan',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:wineberry.259','wineberry','wineberry',[103,49,71],'673147',6762823], ['nbs-iscc-m:winedregs.16','winedregs','wine dregs',[114,47,55],'722f37',7483191], ['nbs-iscc-m:winedregs.41','winedregs','wine dregs',[86,7,12],'56070c',5637900], ['nbs-iscc-m:winedregs.44','winedregs','wine dregs',[62,29,30],'3e1d1e',4070686], ['nbs-iscc-m:winelees.16','winelees','wine lees',[114,47,55],'722f37',7483191], ['nbs-iscc-m:winelees.41','winelees','wine lees',[86,7,12],'56070c',5637900], ['nbs-iscc-m:winelees.44','winelees','wine lees',[62,29,30],'3e1d1e',4070686], ['nbs-iscc-m:wineyellow.89','wineyellow','wine yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-m:wineyellow.90','wineyellow','wine yellow',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:wintergreen.136','wintergreen','winter green',[103,146,103],'679267',6787687], ['nbs-iscc-m:wintergreen.137','wintergreen','wintergreen ',[53,94,59],'355e3b',3497531], ['nbs-iscc-m:winterleaf.61','winterleaf','winter leaf',[99,81,71],'635147',6508871], ['nbs-iscc-m:wireless.182','wireless','wireless',[67,107,149],'436b95',4418453], ['nbs-iscc-m:wistariablue.210','wistariablue','wistaria [blue] ',[140,130,182],'8c82b6',9208502], ['nbs-iscc-m:wistariablue.199','wistariablue','wistaria blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-m:wistariaviolet.210','wistariaviolet','wistaria [violet] ',[140,130,182],'8c82b6',9208502], ['nbs-iscc-m:witchwood.58','witchwood','witchwood',[111,78,55],'6f4e37',7294519], ['nbs-iscc-m:witheredleaf.51','witheredleaf','withered leaf',[190,101,22],'be6516',12477718], ['nbs-iscc-m:witheredleaf.54','witheredleaf','withered leaf',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:witheredleaf.55','witheredleaf','withered leaf',[128,70,27],'80461b',8406555], ['nbs-iscc-m:witheredrose.19','witheredrose','withered rose',[144,93,93],'905d5d',9461085], ['nbs-iscc-m:witheredrose.43','witheredrose','withered rose',[121,68,59],'79443b',7947323], ['nbs-iscc-m:woad.186','woad','woad',[83,104,120],'536878',5466232], ['nbs-iscc-m:woald.101','woald','woald',[234,230,121],'eae679',15394425], ['nbs-iscc-m:woald.102','woald','woald',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:wod.101','wod','wod',[234,230,121],'eae679',15394425], ['nbs-iscc-m:wod.102','wod','wod',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:wode.186','wode','wode',[83,104,120],'536878',5466232], ['nbs-iscc-m:wold.101','wold','wold',[234,230,121],'eae679',15394425], ['nbs-iscc-m:wold.102','wold','wold',[185,180,89],'b9b459',12170329], ['nbs-iscc-m:woodash.93','woodash','woodash',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-m:woodbark.80','woodbark','woodbark',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-m:woodbinegreen.120','woodbinegreen','woodbine green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-m:woodbinegreen.122','woodbinegreen','woodbine green',[143,151,121],'8f9779',9410425], ['nbs-iscc-m:woodbinegreen.125','woodbinegreen','woodbine green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:woodbinegreen.127','woodbinegreen','woodbine green',[81,87,68],'515744',5330756], ['nbs-iscc-m:woodlandbrown.81','woodlandbrown','woodland brown',[72,60,50],'483c32',4734002], ['nbs-iscc-m:woodlandbrown.267','woodlandbrown','woodland brown',[34,34,34],'222222',2236962], ['nbs-iscc-m:woodlandgreen.125','woodlandgreen','woodland green ',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:woodlandrose.57','woodlandrose','woodland rose',[166,123,91],'a67b5b',10910555], ['nbs-iscc-m:woodrose.45','woodrose','wood rose',[151,127,115],'977f73',9928563], ['nbs-iscc-m:woodrose.60','woodrose','wood rose',[149,128,112],'958070',9797744], ['nbs-iscc-m:woodviolet.219','woodviolet','wood violet',[96,47,107],'602f6b',6303595], ['nbs-iscc-m:wren.111','wren','wren',[54,53,39],'363527',3552551], ['nbs-iscc-m:wren.113','wren','wren',[87,85,76],'57554c',5723468], ['nbs-iscc-m:wroughtiron.266','wroughtiron','wrought iron',[85,85,85],'555555',5592405], ['nbs-iscc-m:yacht.178','yacht','yacht',[0,103,165],'0067a5',26533], ['nbs-iscc-m:yaleblue.179','yaleblue','yale blue',[0,65,106],'00416a',16746], ['nbs-iscc-m:yama.163','yama','yama',[102,173,164],'66ada4',6729124], ['nbs-iscc-m:yellowbeige.76','yellowbeige','yellow beige',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:yellowbeige.77','yellowbeige','yellow beige',[130,102,68],'826644',8545860], ['nbs-iscc-m:yellowberries.68','yellowberries','yellow berries',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:yellowberries.71','yellowberries','yellow berries',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:yellowbrazilwood.87','yellowbrazilwood','yellow brazil wood',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:yellowbrazilwood.90','yellowbrazilwood','yellow brazil wood',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:yellowcarmine.68','yellowcarmine','yellow carmine',[234,162,33],'eaa221',15376929], ['nbs-iscc-m:yellowcarmine.71','yellowcarmine','yellow carmine',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:yellowdaisy.83','yellowdaisy','yellow daisy',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:yellowdaisy.84','yellowdaisy','yellow daisy',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:yellowdaisy.86','yellowdaisy','yellow daisy',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:yellowdaisy.87','yellowdaisy','yellow daisy',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:yellowearth.71','yellowearth','yellow earth',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:yellowmadder.83','yellowmadder','yellow madder',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:yellowmadder.84','yellowmadder','yellow madder',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:yellowmadder.86','yellowmadder','yellow madder',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:yellowmadder.87','yellowmadder','yellow madder',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:yellowochre.71','yellowochre','yellow ochre',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:yellowrealgar.83','yellowrealgar','yellow realgar',[250,218,94],'fada5e',16439902], ['nbs-iscc-m:yellowrealgar.84','yellowrealgar','yellow realgar',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:yellowrealgar.86','yellowrealgar','yellow realgar',[248,222,126],'f8de7e',16309886], ['nbs-iscc-m:yellowrealgar.87','yellowrealgar','yellow realgar',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:yellowsienna.71','yellowsienna','yellow sienna',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:yellowstone.105','yellowstone','yellow stone',[185,181,125],'b9b57d',12170621], ['nbs-iscc-m:yellowstone.91','yellowstone','yellowstone',[161,143,96],'a18f60',10588000], ['nbs-iscc-m:yellowwash.71','yellowwash','yellow wash',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:yellowwood.87','yellowwood','yellow wood',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-m:yellowwood.90','yellowwood','yellow wood',[194,178,128],'c2b280',12759680], ['nbs-iscc-m:yewgreen.125','yewgreen','yew green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-m:yolkyellow.84','yolkyellow','yolk yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:yosemite.76','yosemite','yosemite',[193,154,107],'c19a6b',12687979], ['nbs-iscc-m:yucatan.54','yucatan','yucatan',[174,105,56],'ae6938',11430200], ['nbs-iscc-m:yucatan.74','yucatan','yucatan',[153,101,21],'996515',10052885], ['nbs-iscc-m:yucca.150','yucca','yucca',[94,113,106],'5e716a',6189418], ['nbs-iscc-m:yuchi.146','yuchi','yu chi',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-m:yvetteviolet.228','yvetteviolet','yvette violet',[121,104,120],'796878',7956600], ['nbs-iscc-m:zaffreblue.179','zaffreblue','zaffre blue ',[0,65,106],'00416a',16746], ['nbs-iscc-m:zaffreblue.182','zaffreblue','zaffre blue ',[67,107,149],'436b95',4418453], ['nbs-iscc-m:zanzibar.47','zanzibar','zanzibar',[67,48,46],'43302e',4403246], ['nbs-iscc-m:zedoarywash.71','zedoarywash','zedoary wash',[227,168,87],'e3a857',14919767], ['nbs-iscc-m:zenithblue.199','zenithblue','zenith [blue] ',[135,145,191],'8791bf',8884671], ['nbs-iscc-m:zenithblue.203','zenithblue','zenith [blue] ',[140,146,172],'8c92ac',9212588], ['nbs-iscc-m:zephyr.7','zephyr','zephyr',[234,216,215],'ead8d7',15390935], ['nbs-iscc-m:zephyr.8','zephyr','zephyr',[196,174,173],'c4aead',12889773], ['nbs-iscc-m:zinc.233','zinc','zinc',[139,133,137],'8b8589',9143689], ['nbs-iscc-m:zinc.265','zinc','zinc',[132,132,130],'848482',8684674], ['nbs-iscc-m:zincgreen.136','zincgreen','zinc green',[103,146,103],'679267',6787687], ['nbs-iscc-m:zincorange.50','zincorange','zinc orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-m:zincorange.53','zincorange','zinc orange',[217,144,88],'d99058',14258264], ['nbs-iscc-m:zincyellow.84','zincyellow','zinc yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-m:zinnia.15','zinnia','zinnia',[171,78,82],'ab4e52',11226706], ['nbs-iscc-m:zulu.47','zulu','zulu',[67,48,46],'43302e',4403246], ['nbs-iscc-m:zunibrown.58','zunibrown','zuni brown',[111,78,55],'6f4e37',7294519] ]; } sub _description { return { 'subtitle' => 'Dictionary of Color', 'title' => 'NBS/ISCC M', 'description' => ' Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (M) Dictionary of Color Maerz and Paul, Dictionary of Color, 1st ed. This idiosyncratic dictionary\'s 3064 names map to 4401 colors, using 223 of the 267 centroids. [http://swissnet.ai.mit.edu/~jaffer/Color/Dictionaries#M] ' } } 1; P.pm100644000765000024 74755311667760546 22747 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionary/NBS_ISCCpackage Color::Library::Dictionary::NBS_ISCC::P; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::NBS_ISCC::P; =pod =head1 NAME Color::Library::Dictionary::NBS_ISCC::P - (NBS/ISCC P) Plochere Color System =head1 DESCRIPTION Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (P) Plochere Color System Plochere Color System This idiosyncratic dictionary for interior decorating has 1246 names mapping to 1606 colors, using 206 of the 267 centroids. L =head1 COLORS absinthe yellow absintheyellow #c9ae5d abstract blue abstractblue #bcd4e6 abyss abyss #8da399 acacia acacia #5e716a acacia gray acaciagray #7d8984 acacia green acaciagreen #7d8984 aden aden #6aab8e admiral admiral #50404d african green africangreen #36454f african night africannight #43302e after glow afterglow #e8ccd7 agean mist ageanmist #b2beb5 ageratum ageratum #c3a6b1 air castle blue aircastleblue #bcd4e6 airy cream airycream #f2f3f4 aladdin's lamp aladdinslamp #cb6d51 algiers blue algiersblue #367588 allure allure #70a3cc almond almond #c19a6b almond cream almondcream #fad6a5 alpine blue alpineblue #b3bce2 alpine blue alpineblue #c0c8e1 amaranth amaranth #673147 amaranth amaranth #915f6d amber coral ambercoral #d9a6a9 amber gold ambergold #c19a6b amber gold ambergold #c2b280 amber gold ambergold #a18f60 ambrosia ambrosia #b6e5af amethyst amethyst #836479 amethyst orchid amethystorchid #b695c0 amulet amulet #317873 ancestral ancestral #f2f3f4 ancestral ancestral #b9b8b5 angel blue angelblue #bcd4e6 angel wing angelwing #efbbcc angora angora #fad6a5 angora angora #f0ead6 antique brass antiquebrass #ab9144 antique bronze antiquebronze #665d1e antique fuchsia antiquefuchsia #915c83 antique yellow antiqueyellow #c9ae5d apple green applegreen #8a9a5b apricot apricot #fab57f apricot cream apricotcream #fad6a5 apricot cream apricotcream #f3e5ab apricot ice apricotice #fad6a5 apricot sherbet apricotsherbet #fbc97f apricot tan apricottan #d99058 apricot tan apricottan #e3a857 april sky aprilsky #96ded1 aqua gray aquagray #8da399 aquamarine green aquamarinegreen #317873 aqua queen aquaqueen #96ded1 aqua sky aquasky #66ada4 arbor green arborgreen #679267 arcadia arcadia #beb72e arcadia arcadia #b9b459 arctic arctic #536878 arctic arctic #36454f arno blue arnoblue #367588 ashes of roses ashesofroses #c08081 ashes of roses ashesofroses #c17e91 asthetic blue astheticblue #66aabc atlantis atlantis #00304e atonement atonement #aa98a9 aurora pink aurorapink #e68fac aurora pink aurorapink #d597ae aurora yellow aurorayellow #f8de7e autumn brown autumnbrown #996515 autumn brown autumnbrown #6c541e autumn glory autumnglory #841b2d autumn glory autumnglory #9e4732 autumn glory autumnglory #be8a3d autumn gold autumngold #be8a3d autumn tan autumntan #826644 avon avon #7d8984 azalea azalea #a8516e azurite blue azuriteblue #367588 azurite blue azuriteblue #536878 baby blue babyblue #a1caf1 baby blue eyes babyblueeyes #a1caf1 baby blue eyes babyblueeyes #b3bce2 bagdad bagdad #905d5d ballad blue balladblue #8791bf ballerina ballerina #dcd0ff balmy air balmyair #bcd4e6 balsam green balsamgreen #3a4b47 baltic baltic #36454f baltic baltic #222222 banana banana #f8de7e banshee banshee #5e716a banshee banshee #3a4b47 banshee banshee #317873 banshee banshee #004b49 baronet baronet #70a3cc basic basic #004b49 bath stone bathstone #fad6a5 bavarian blue bavarianblue #00304e bay leaf bayleaf #996515 bayou bayou #36454f bayou bayou #222222 beau blue beaublue #bcd4e6 beautiful beautiful #317873 beauty pink beautypink #ffc8d6 beige gray beigegray #bfb8a5 belladonna belladonna #86608e bellflower bellflower #604e81 beryl green berylgreen #66ada4 best effort besteffort #ebe8a4 best effort besteffort #dadfb7 bewitch bewitch #00a693 bewitching blue bewitchingblue #70a3cc billiard billiard #00443f billiard billiard #004b49 billow billow #bcd4e6 birch birch #dfede8 bird's-egg-green birdsegggreen #8da399 bird's-egg-green birdsegggreen #66ada4 biscay bay biscaybay #367588 biscay bay biscaybay #536878 bishop bishop #604e81 bison bison #6c541e bisque bisque #d9a6a9 bisque bisque #c7ada3 bittersweet bittersweet #9e4732 bittersweet orange bittersweetorange #d9603b bittersweet orange bittersweetorange #ed872d blackberry cream blackberrycream #d597ae black forest blackforest #515744 black knight blackknight #36454f black knight blackknight #51585e black water blackwater #272458 black water blackwater #222222 blanch blanch #96ded1 blarney blarney #008856 blarney blarney #007959 blaze blue blazeblue #536878 blaze blue blazeblue #36454f blend blend #dadfb7 blithe blithe #239eba blonde green blondegreen #dfede8 blossom blossom #ebe8a4 blue appeal blueappeal #a1caf1 blue appeal blueappeal #bcd4e6 blue bell bluebell #8791bf blue chill bluechill #bcd4e6 blue danube bluedanube #007791 blue dash bluedash #536878 blue day blueday #c0c8e1 blue fog bluefog #536878 blue fog bluefog #81878b blue glow blueglow #bcd4e6 blue grotto bluegrotto #66aabc blue heaven blueheaven #4997d0 blue heaven blueheaven #a1caf1 blue heaven blueheaven #70a3cc blue horizon bluehorizon #91a3b0 blue hour bluehour #367588 blue idol blueidol #317873 blue light bluelight #bcd4e6 blue lightning bluelightning #0067a5 blue mist bluemist #66aabc blue mist bluemist #91a3b0 blue prose blueprose #9cd1dc blue ridge blueridge #a1caf1 blue ridge blueridge #b3bce2 blue shadow blueshadow #367588 blue spruce bluespruce #3b7861 blue swirl blueswirl #66aabc blue tease bluetease #9cd1dc blue turquoise blueturquoise #239eba blue waltz bluewaltz #c7e6d7 blue waltz bluewaltz #96ded1 blue wash bluewash #e9e9ed blush rose blushrose #915f6d blush yellow blushyellow #fbc97f blush yellow blushyellow #fad6a5 bog bog #8f9779 bohemian blue bohemianblue #436b95 bonnie blue bonnieblue #00a1c2 bonnie blue bonnieblue #30267a bottle green bottlegreen #3b7861 bottle green bottlegreen #5e716a bougainvillea bougainvillea #ce4676 bounding main boundingmain #70a3cc bouquet green bouquetgreen #27a64c bouquet green bouquetgreen #83d37d bouquet orchid bouquetorchid #d5badb bouquet orchid bouquetorchid #d6cadd bouquet yellow bouquetyellow #f8de7e brass brass #ab9144 brazil red brazilred #9e4732 breath of spring breathofspring #ebe8a4 breath of spring breathofspring #c9dc89 bridesmaid pink bridesmaidpink #efbbcc bright sun brightsun #f3c300 bright sun brightsun #fada5e brilliant green brilliantgreen #004b49 bronze gold bronzegold #d4af37 bronze gold bronzegold #c9ae5d bronze mist bronzemist #867e36 bronze pink bronzepink #d9a6a9 bronze pink bronzepink #d99058 bronze sheen bronzesheen #5b5842 bronzio bronzio #79443b brook green brookgreen #96ded1 bruges bruges #51585e buccaneer buccaneer #bc3f4a buckskin tan buckskintan #fad6a5 buff citron buffcitron #c2b280 burnt almond burntalmond #6f4e37 burnt orange burntorange #ed872d burnt yellow burntyellow #e3a857 butterfly yellow butterflyyellow #e9e450 butterfly yellow butterflyyellow #eae679 cabbage cabbage #c7e6d7 caen stone caenstone #fad6a5 california gold californiagold #e3a857 california green californiagreen #7d8984 california poppy californiapoppy #eaa221 camelia pink cameliapink #ea9399 camelia pink cameliapink #f88379 camelia rose cameliarose #ea9399 cameo cameo #f9ccca cameo pink cameopink #ea9399 cameo pink cameopink #efbbcc canary bronze canarybronze #f3c300 canary yellow canaryyellow #f3c300 canary yellow canaryyellow #fada5e candida candida #d597ae canton canton #317873 caprice lavender capricelavender #e8e3e5 caprice pink capricepink #915c83 caprice pink capricepink #a8516e caramel caramel #a67b5b caramel cream caramelcream #fad6a5 caravan caravan #977f73 carnival red carnivalred #be0032 castilian blue castilianblue #0067a5 cathedral cathedral #301934 cathedral cathedral #291e29 cedar cedar #8a9a5b cedar bough cedarbough #8a9a5b celestial blue celestialblue #4997d0 celestial blue celestialblue #6c79b8 celestial yellow celestialyellow #f8de7e celestial yellow celestialyellow #f3e5ab ceramic ceramic #367588 ceramic ceramic #436b95 ceres ceres #f8de7e cerise pink cerisepink #b3446c cerise rose ceriserose #e4717a ceylon blue ceylonblue #536878 chalk violet chalkviolet #8c82b6 chalk violet chalkviolet #9690ab chamois yellow chamoisyellow #e3a857 chamois yellow chamoisyellow #c19a6b champagne champagne #f3e5ab champagne buff champagnebuff #f3e5ab chantilly chantilly #6aab8e charcoal charcoal #3e322c charcoal charcoal #222222 charm charm #ea9399 charm charm #f9ccca charm charm #efbbcc charm charm #9cd1dc charm pink charmpink #e68fac charm school charmschool #aa8a9e charm school charmschool #af868e chartreuse green chartreusegreen #8db600 chartreuse green chartreusegreen #bdda57 chartreuse yellow chartreuseyellow #e9e450 chaste chaste #f2f3f4 chateau chateau #66aabc cheddar cheese cheddarcheese #e3a857 cheer cheer #f3c300 cheerful yellow cheerfulyellow #f3e5ab cheerful yellow cheerfulyellow #f0ead6 chelsea yellow chelseayellow #eae679 chelsea yellow chelseayellow #ebe8a4 cherry cherry #be0032 chili chili #00a693 china pink chinapink #de6fa1 china pink chinapink #b3446c china rose chinarose #905d5d china sea chinasea #66aabc chive chive #4a5d23 chive chive #355e3b christmas green christmasgreen #3a4b47 chrysanthemum yelllow chrysanthemumyelllow #f3c300 chrysolite green chrysolitegreen #8a9a5b cinderella cinderella #fada5e cineraria cineraria #915f6d cinnamon cinnamon #ae6938 cinnamon cream cinnamoncream #ecd5c5 citron bronze citronbronze #6c541e citron gray citrongray #967117 citron gray citrongray #8c8767 citron yellow citronyellow #f8de7e citron yellow citronyellow #c9ae5d citron yellow citronyellow #eae679 citron yellow citronyellow #b9b459 classic blue classicblue #007791 classic blue classicblue #436b95 clementine clementine #efbbcc cleopatra cleopatra #c7e6d7 clivia clivia #d99058 cloister cloister #c7e6d7 cloister cloister #bcd4e6 cloud cream cloudcream #f3e5ab cloud cream cloudcream #f0ead6 cloud gray cloudgray #d6cadd cloudy blue cloudyblue #bcd4e6 clover clover #c17e91 cocoa bronze cocoabronze #867e36 cocoa brown cocoabrown #a67b5b cold morn coldmorn #9690ab cold morn coldmorn #aa98a9 colonial blue colonialblue #00304e colonial cream colonialcream #f3e5ab colonial exterior green colonialexteriorgreen #3b7861 conclude conclude #f0ead6 congo congo #79443b congo blue congoblue #536878 congo brown congobrown #80461b congo brown congobrown #6f4e37 conifer conifer #515744 continental blue continentalblue #5d555b cool eve cooleve #8da399 copper copper #cb6d51 copper bronze copperbronze #ae6938 copper cream coppercream #ecd5c5 coquette coquette #e8ccd7 coral coral #e4717a coral blush coralblush #f9ccca coral blush coralblush #f4c2c2 coral cloud coralcloud #f4c2c2 coral gold coralgold #cb6d51 coral pink coralpink #f88379 coral rose coralrose #e4717a coronation coronation #673147 coronet blue coronetblue #436b95 corsage pink corsagepink #e8ccd7 corsair corsair #36454f corydalis corydalis #c9dc89 corydalis corydalis #dadfb7 cosmic blue cosmicblue #436b95 cosmos pink cosmospink #d5badb cosmos pink cosmospink #d6cadd cowslip cowslip #fab57f crab pink crabpink #f9ccca crab pink crabpink #ead8d7 cream cream #f0ead6 cream blush creamblush #fad6a5 cream chant creamchant #ebe8a4 cream cheese creamcheese #f0ead6 cream delight creamdelight #ebe8a4 cream dream creamdream #f0ead6 cream gold creamgold #f8de7e cream pearl creampearl #f0ead6 cream tone creamtone #f3e5ab cream tone creamtone #f0ead6 cream white creamwhite #f0ead6 cream yellow creamyellow #f3e5ab creole pink creolepink #ecd5c5 crest crest #00a693 crimson glory crimsonglory #be0032 crisp blue crispblue #9cd1dc crocus rose crocusrose #efbbcc cruise blue cruiseblue #367588 cruise blue cruiseblue #436b95 crystal blue crystalblue #239eba crystal blue crystalblue #9cd1dc cuban orchid cubanorchid #b784a7 cuban orchid cubanorchid #d597ae cuban sand cubansand #c9ae5d cuban sand cubansand #ab9144 cuddle blue cuddleblue #bcd4e6 cuddle blue cuddleblue #91a3b0 cupid blue cupidblue #9cd1dc cyan blue cyanblue #367588 cypress cypress #679267 daphne pink daphnepink #c17e91 dark forest darkforest #3a4b47 dark fuchsia darkfuchsia #9e4f88 dawn glow dawnglow #d6cadd dawn glow dawnglow #e8ccd7 dawn pink dawnpink #efbbcc daybreak daybreak #aa98a9 day dream daydream #9690ab dazzle blue dazzleblue #007791 debonair debonair #91a3b0 debutante blue debutanteblue #9cd1dc debutante blue debutanteblue #bcd4e6 debutante pink debutantepink #ea9399 debutante yellow debutanteyellow #eae679 deep hellebore red deephelleborered #915f6d deep purple deeppurple #50404d deep purple deeppurple #291e29 deep purple deeppurple #242124 deep ravine deepravine #6c541e deep reverie deepreverie #5d555b deep sea deepsea #317873 deep twilight deeptwilight #8e8279 deep violet deepviolet #604e81 deep violet deepviolet #2f2140 deep water deepwater #436b95 delectable delectable #239eba delectable delectable #66aabc delectable delectable #70a3cc delight delight #d6cadd del monte delmonte #796878 delta delta #367588 delusion delusion #9cd1dc demon blue demonblue #51585e demure blue demureblue #bcd4e6 depth green depthgreen #3a4b47 desert brown desertbrown #f9ccca desert dust desertdust #f3e5ab desert dust desertdust #f0ead6 desert glass desertglass #b695c0 desert mist desertmist #fad6a5 desert palm desertpalm #5b5842 desert pride desertpride #dadfb7 desert sand desertsand #c19a6b desirable desirable #c7e6d7 desire desire #d5badb dewkist dewkist #b2beb5 dewkist dewkist #b9b8b5 diadem diadem #aa8a9e dignity dignity #dea5a4 dignity dignity #efbbcc dignity dignity #e8ccd7 distinction distinction #915f6d diva blue divablue #30267a diva blue divablue #6c79b8 divine blue divineblue #70a3cc dolly varden dollyvarden #f9ccca dove gray dovegray #bfb9bd dove gray dovegray #c3a6b1 drab olive drabolive #8a9a5b dream blue dreamblue #a1caf1 dream cream dreamcream #dadfb7 dream fluff dreamfluff #e8e3e5 dream stuff dreamstuff #efbbcc dreamy blue dreamyblue #91a3b0 dried leaf driedleaf #f8de7e drizzle drizzle #b2beb5 dryad dryad #66ada4 dryad rose dryadrose #ecd5c5 du barry blue dubarryblue #00a693 duckling blue ducklingblue #536878 duckling blue ducklingblue #36454f dusky blue duskyblue #91a3b0 dusky citron duskycitron #8a9a5b dusky green duskygreen #8f9779 dusty green dustygreen #8a9a5b dusty green dustygreen #8f9779 dutch cream dutchcream #fad6a5 dutch cream dutchcream #f0ead6 dynasty green dynastygreen #007a74 earth brown earthbrown #6f4e37 easter bonnet easterbonnet #bcd4e6 easter egg yellow eastereggyellow #f8de7e ecru ecru #f3e5ab ecru cream ecrucream #f3e5ab ecru cream ecrucream #f0ead6 eerie blue eerieblue #bcd4e6 egg plant eggplant #50404d egg plant eggplant #291e29 egg shell eggshell #fad6a5 egg shell eggshell #f3e5ab egyptian red egyptianred #722f37 eighteenth century citron eighteenthcenturycitron #8a9a5b eighteenth century green eighteenthcenturygreen #8f9779 eighteenth century tan eighteenthcenturytan #ad8884 eighteenth century turquoise eighteenthcenturyturquoise #367588 eighteenth century turquoise eighteenthcenturyturquoise #536878 eighteenth century violet eighteenthcenturyviolet #836479 eighteenth century yellow eighteenthcenturyyellow #c2b280 electra electra #96ded1 elf green elfgreen #8da399 elf green elfgreen #66ada4 elm elm #8f9779 emerald green emeraldgreen #b6e5af emerald isle emeraldisle #008856 empire yellow empireyellow #f3c300 empire yellow empireyellow #fada5e empirical blue empiricalblue #66ada4 enchantress enchantress #cb6d51 enduring enduring #66ada4 enduring enduring #66aabc english mist englishmist #7d8984 erie erie #317873 etherial green etherialgreen #c9dc89 etherial green etherialgreen #dadfb7 eucalyptus green eucalyptusgreen #8f9779 eve green evegreen #83d37d eve green evegreen #44944a evening glow eveningglow #f9ccca evening haze eveninghaze #dea5a4 eventide eventide #c3a6b1 everglade everglade #222222 fable fable #e8e3e5 fairy gold fairygold #eae679 fairy land fairyland #c7e6d7 fairy land fairyland #96ded1 fairy princess fairyprincess #e9e9ed falcon falcon #5b504f fall blue fallblue #91a3b0 fall blue fallblue #8c92ac fall bronze fallbronze #ab9144 fall leaf fallleaf #f8de7e fall leaf fallleaf #c9ae5d fall yellow fallyellow #f8de7e fall yellow fallyellow #c9ae5d fancy free fancyfree #c7e6d7 fanfare fanfare #007791 fantasia fantasia #c7e6d7 fantasy rose fantasyrose #c7ada3 fantasy yellow fantasyyellow #f3e5ab far horizon farhorizon #4e5755 favorite favorite #8da399 ferndell ferndell #355e3b fernery fernery #1b4d3e fern green ferngreen #8a9a5b fern lane fernlane #c7e6d7 festival festival #3eb489 festival festival #00a693 festive green festivegreen #27a64c festive green festivegreen #83d37d festoon festoon #3eb489 fidelity fidelity #c0c8e1 finesse finesse #c7ada3 firecracker firecracker #d9603b fire fly firefly #e4717a fir green firgreen #8a9a5b firmament blue firmamentblue #545aa7 firmament gray firmamentgray #bcd4e6 firmament gray firmamentgray #e9e9ed first lady firstlady #b784a7 first lady firstlady #de6fa1 flame flame #be0032 flame flame #bc3f4a flamingo pink flamingopink #ea9399 flash flash #bc3f4a flax flower blue flaxflowerblue #6c79b8 flemish blue flemishblue #536878 flesh cream fleshcream #ecd5c5 flesh cream fleshcream #fad6a5 flesh pink fleshpink #ecd5c5 flesh tint fleshtint #f4c2c2 flesh tint fleshtint #ecd5c5 flint flint #5c504f flirtation flirtation #aa98a9 flowerlet flowerlet #c9dc89 fog blue fogblue #8c92ac fog green foggreen #8da399 fog yellow fogyellow #a18f60 foliage foliage #7e9f2e forest shade forestshade #679267 fortune fortune #7e73b8 fountain blue fountainblue #c0c8e1 fountain green fountaingreen #83d37d fountain green fountaingreen #b6e5af four-leaf clover fourleafclover #355e3b french beige frenchbeige #a67b5b french blue frenchblue #8791bf french lilac frenchlilac #836479 french nude frenchnude #d9a6a9 frosty night frostynight #e9e9ed froth froth #f0ead6 frozen dew frozendew #bcd4e6 fuchsia fuchsia #bc3f4a fuchsia fuchsia #b3446c fuchsia pink fuchsiapink #e68fac fuchsia pink fuchsiapink #de6fa1 fuchsia pink fuchsiapink #de6fa1 fuchsia pink fuchsiapink #d597ae fuchsia rose fuchsiarose #ce4676 fuchsia rose fuchsiarose #b3446c gale cloud galecloud #51585e gale winds galewinds #51585e garden pool gardenpool #c7e6d7 garnet rose garnetrose #722f37 gay yellow gayyellow #e9e450 gay yellow gayyellow #eae679 geneva blue genevablue #00304e geneva blue genevablue #4c516d ghostly blue ghostlyblue #bcd4e6 ghostly blue ghostlyblue #c0c8e1 gleam gleam #eae679 glint o'gold glintogold #f8de7e glint o'gold glintogold #c9ae5d glory green glorygreen #bdda57 glory green-blue glorygreenblue #317873 gold coast goldcoast #ab9144 golden apricot goldenapricot #fab57f golden apricot goldenapricot #d99058 golden brown goldenbrown #ae6938 golden buff goldenbuff #f8de7e golden cream goldencream #f8de7e golden dawn goldendawn #f8de7e golden fleece goldenfleece #fad6a5 golden fleece goldenfleece #f3e5ab golden fleece goldenfleece #c2b280 golden gem goldengem #f8de7e golden glow goldenglow #fada5e golden mist goldenmist #b9b57d golden mist goldenmist #c9dc89 golden mist goldenmist #dadfb7 golden peach goldenpeach #e3a857 golden rapture goldenrapture #fada5e golden ray goldenray #fada5e golden ray goldenray #f8de7e golden rod goldenrod #fada5e golden sheaf goldensheaf #f3e5ab golden sulphur goldensulphur #eae679 golden tan goldentan #d99058 golden west goldenwest #be8a3d golden yellow goldenyellow #f8de7e gold fantasy goldfantasy #fada5e gold glow goldglow #eae679 gold glow goldglow #ebe8a4 gold pheasant goldpheasant #ae6938 gold rush goldrush #e3a857 good omen goodomen #8c82b6 good omen goodomen #70a3cc gorge gorge #b2beb5 gorge gorge #b9b8b5 gracious green graciousgreen #c7e6d7 grand canyon grandcanyon #a87c6d grand canyon grandcanyon #a67b5b granite blue graniteblue #536878 granite green granitegreen #8da399 grape grape #2f2140 grape grape #50404d grapefruit green grapefruitgreen #e9e450 grapefruit green grapefruitgreen #beb72e grapefruit green grapefruitgreen #eae679 grapefruit green grapefruitgreen #b9b459 grape green grapegreen #8a9a5b gravel gravel #c2ac99 gravel gravel #ae9b82 gravel gravel #bfb8a5 gray blue grayblue #b4bcc0 gray dream graydream #f0ead6 gray dream graydream #bfb8a5 gray drift graydrift #bcd4e6 gray drift graydrift #b4bcc0 gray green graygreen #5e716a gray lady graylady #b4bcc0 gray light graylight #c1b6b3 gray light graylight #b9b8b5 gray mist graymist #91a3b0 gray mist graymist #b4bcc0 gray mood graymood #5d555b gray morn graymorn #8e8279 gray night graynight #536878 gray sand graysand #c2b280 gray sand graysand #bfb8a5 grecian rose grecianrose #f88379 grecian rose grecianrose #d9a6a9 green banana greenbanana #b9b459 green banana greenbanana #b9b57d green black greenblack #3a4b47 green black greenblack #4e5755 green black greenblack #555555 green black greenblack #222222 green breath greenbreath #f0ead6 green charm greencharm #eae679 green charm greencharm #c9dc89 green dream greendream #96ded1 greenery greenery #8db600 greenery greenery #7e9f2e green eyes greeneyes #679267 green fog greenfog #8f9779 green glory greenglory #007a74 green glory greenglory #317873 green glow greenglow #c7e6d7 green grass greengrass #8a9a5b green haze greenhaze #8f9779 green ice greenice #f0ead6 green ice greenice #dfede8 green lily greenlily #c7e6d7 green matrix greenmatrix #004b49 green mist greenmist #8f9779 green moss greenmoss #8a9a5b green oasis greenoasis #98943e green oasis greenoasis #7e9f2e green olive greenolive #8a9a5b green pride greenpride #c9dc89 green ravine greenravine #5e716a green river mist greenrivermist #b2beb5 green slate greenslate #1e2321 green spring greenspring #7e9f2e green stone greenstone #dadfb7 green sulphur greensulphur #b9b459 green tea greentea #679267 green tee greentee #8a9a5b growth green growthgreen #bdda57 guinea green guineagreen #317873 gull gray gullgray #8b8589 gumdrop green gumdropgreen #c9dc89 gun metal gunmetal #5b504f gypsy gypsy #80461b hanging garden hanginggarden #27a64c hansa yellow hansayellow #f3c300 happy day happyday #ebe8a4 happy day happyday #dadfb7 harbor blue harborblue #bcd4e6 harem blue haremblue #bcd4e6 harmonious blue harmoniousblue #536878 harvest gold harvestgold #f8de7e hawk brown hawkbrown #6c541e heart's desire heartsdesire #ab4e52 heavenly charm heavenlycharm #f0ead6 heavenly day heavenlyday #ebe8a4 heavenly flower heavenlyflower #4997d0 heavenly green heavenlygreen #c9dc89 heavenly orchid heavenlyorchid #e8ccd7 heavenly pink heavenlypink #f9ccca heliotrope heliotrope #702963 heliotrope heliotrope #5d3954 heliotrope gray heliotropegray #aa98a9 heliotrope gray heliotropegray #aa8a9e heliotrope gray heliotropegray #c3a6b1 hemlock hemlock #93c592 hemp hemp #c2b280 hiawatha green hiawathagreen #317873 highland highland #3a4b47 holiday holiday #96ded1 holland blue hollandblue #91a3b0 honey beige honeybeige #d9a6a9 horizon horizon #91a3b0 hortensia hortensia #563c5c hortensia hortensia #5d3954 huckleberry huckleberry #50404d huron huron #66ada4 hussar hussar #4c516d iceberg green iceberggreen #8da399 iceberg green iceberggreen #91a3b0 ice boat iceboat #00a693 ice cap icecap #66aabc ice flow iceflow #c7e6d7 iceland blue icelandblue #bcd4e6 icy green icygreen #66ada4 icy morn icymorn #8ed1b2 icy morn icymorn #c7e6d7 ideal ideal #9cd1dc illusion illusion #bcd4e6 illusion illusion #b4bcc0 illusive illusive #d6cadd independence independence #2f2140 independence independence #563c5c independence independence #50404d indian red indianred #9e4732 ink blue inkblue #00304e ink blue inkblue #36454f inspiration inspiration #c7e6d7 intimate mood intimatemood #af868e ionian blue ionianblue #00304e ionian blue ionianblue #36454f irish isle irishisle #27a64c iris leaf irisleaf #515744 iris orchid irisorchid #e68fac iris orchid irisorchid #de6fa1 iron mask ironmask #36454f iron mask ironmask #222222 irresistible irresistible #b3446c island green islandgreen #8ed1b2 italian blue italianblue #66aabc ivory ivory #f3e5ab ivory white ivorywhite #f3e5ab jade cream jadecream #ebe8a4 jade lime jadelime #bdda57 jasper jasper #3a4b47 jasper jasper #222222 jealousy jealousy #8ed1b2 jersey cream jerseycream #f3e5ab jewel blue jewelblue #66aabc jewel green jewelgreen #317873 joy joy #93c592 june bud junebud #bdda57 june bud junebud #83d37d june green junegreen #c9dc89 jungle jungle #3a4b47 juniper juniper #5e716a juniper juniper #3a4b47 kaffa kaffa #674c47 killarney green killarneygreen #008856 king lear kinglear #604e81 king neptune kingneptune #70a3cc king's ransom kingsransom #d99058 kitten's ear kittensear #f3e5ab lady orchid ladyorchid #915f6d lagoon lagoon #317873 lake blue lakeblue #0067a5 lake como lakecomo #436b95 lake louise lakelouise #436b95 lamb's wool lambswool #f0ead6 la mer lamer #8ed1b2 languid lavender languidlavender #c4c3dd languid lavender languidlavender #d6cadd larkspur blue larkspurblue #70a3cc larkspur purple larkspurpurple #604e97 lava lava #483c32 lava lava #3b3121 leaf green leafgreen #27a64c lettuce green lettucegreen #7e9f2e life green lifegreen #4a5d23 light hearted lighthearted #ebe8a4 light mauve lightmauve #dea5a4 light mauve lightmauve #d597ae light oak lightoak #c19a6b light old rose lightoldrose #f88379 lilac lilac #b695c0 lilac gray lilacgray #796878 lilac hint lilachint #d6cadd lilac lavender lilaclavender #9690ab lilac shadow lilacshadow #563c5c lilac shadow lilacshadow #796878 lilting green liltinggreen #00a693 lily green lilygreen #b9b57d lily green lilygreen #c9dc89 lime cream limecream #c9dc89 lime yellow limeyellow #e9e450 lime yellow limeyellow #beb72e lime yellow limeyellow #bdda57 london fog londonfog #8b8589 love bird lovebird #bdda57 love light lovelight #eae679 lovely lovely #6aab8e lover's knot loversknot #efbbcc lover's note loversnote #bcd4e6 lucerne blue lucerneblue #8791bf lullaby lullaby #dfede8 lullaby lullaby #b2beb5 lullaby lullaby #f2f3f4 lullaby lullaby #b9b8b5 lush gray lushgray #317873 lush green lushgreen #3eb489 lustrous yellow lustrousyellow #eae679 lyons blue lyonsblue #30267a lyons blue lyonsblue #545aa7 lyre blue lyreblue #367588 magenta magenta #a8516e magenta rose magentarose #673147 magical magical #e8e3e5 magic moon magicmoon #66aabc magic moon magicmoon #91a3b0 maid of orleans maidoforleans #d5badb maid of orleans maidoforleans #d6cadd majolica majolica #00304e mandarin orange mandarinorange #d9603b mandarin orange mandarinorange #ed872d marble marble #3a4b47 marco polo marcopolo #367588 marine blue marineblue #367588 marine blue marineblue #004958 marine corps blue marinecorpsblue #00304e marine glow marineglow #c7e6d7 market green marketgreen #c7e6d7 martinique martinique #b9b459 mauve decade mauvedecade #915f6d mauve mist mauvemist #c3a6b1 mauve orchid mauveorchid #af868e mauve taupe mauvetaupe #915f6d mauvette mauvette #e8ccd7 mayflower mayflower #de6fa1 mayflower mayflower #c17e91 meadow green meadowgreen #3eb489 meadow green meadowgreen #6aab8e meadow mist meadowmist #8da399 mellow buff mellowbuff #fad6a5 mellow buff mellowbuff #f3e5ab mellow green mellowgreen #eae679 mellow mauve mellowmauve #915f6d mellow mood mellowmood #aa98a9 mellow yellow mellowyellow #f8de7e mellow yellow mellowyellow #f3e5ab mellow yellow mellowyellow #eae679 mellow yellow mellowyellow #ebe8a4 melodious melodious #91a3b0 memory lane memorylane #dfede8 merry green merrygreen #008856 midnight midnight #00304e midnight midnight #36454f midnight bronze midnightbronze #c1b6b3 midseason midseason #d6cadd mignonette mignonette #8a9a5b milano blue milanoblue #536878 milano blue milanoblue #8c92ac milky green milkygreen #dfede8 mince meat mincemeat #674c47 ming ming #007959 mint lime mintlime #93c592 mint lime mintlime #c7e6d7 mission white missionwhite #ecd5c5 mission white missionwhite #fad6a5 misted yellow mistedyellow #c9ae5d mistletoe mistletoe #8a9a5b mistletoe mistletoe #8f9779 misty cream mistycream #f3e5ab misty cream mistycream #f0ead6 misty green mistygreen #8f9779 misty jade mistyjade #eae679 misty jade mistyjade #ebe8a4 misty jade mistyjade #c9dc89 misty lilac mistylilac #b695c0 misty lilac mistylilac #aa98a9 misty morn mistymorn #f0ead6 misty morn mistymorn #dfede8 misty morn mistymorn #f2f3f4 misty rose mistyrose #ecd5c5 modest modest #b2beb5 mogul mogul #8c82b6 mohawk mohawk #79443b mohawk trail mohawktrail #3a4b47 monaco monaco #66ada4 monastral blue monastralblue #00304e monastral blue monastralblue #4e5180 monsignor monsignor #9e4f88 monticello green monticellogreen #355e3b monticello rose monticellorose #d9a6a9 montrose yellow montroseyellow #bdda57 mood beige moodbeige #c2b280 mood lilac moodlilac #86608e mood violet moodviolet #796878 moonbeam moonbeam #bfb9bd moonlight moonlight #ecd5c5 moonlight bay moonlightbay #96ded1 moonlit blue moonlitblue #bcd4e6 moonlit blue moonlitblue #b4bcc0 moonlit water moonlitwater #91a3b0 moonlit water moonlitwater #8c92ac moonmist moonmist #c1b6b3 morning glory morningglory #de6fa1 morning mist morningmist #c2ac99 moth moth #bfb8a5 moth moth #dadfb7 mountain haze mountainhaze #dea5a4 mountain peak blue mountainpeakblue #bcd4e6 mountain top mountaintop #515744 mountain top mountaintop #31362b mulberry mulberry #796878 murmur murmur #f3e5ab murmur murmur #bfb8a5 muse muse #c9dc89 mushroom mushroom #f3e5ab mushroom mushroom #f0ead6 mustard mustard #ab9144 mustard cream mustardcream #f8de7e mustard cream mustardcream #f3e5ab muted yellow mutedyellow #f8de7e muted yellow mutedyellow #eae679 myrtle green myrtlegreen #5e716a mystic blue mysticblue #bcd4e6 mystic purple mysticpurple #915c83 mystic white mysticwhite #e9e9ed myth myth #d6cadd myth blue mythblue #536878 myth blue mythblue #51585e nabob nabob #3a4b47 nabob nabob #36454f nabob nabob #51585e naid naid #00a693 naid naid #96ded1 naid naid #66ada4 naive naive #dfede8 napoleon napoleon #272458 nasturtium nasturtium #ffc14f nasturtium buff nasturtiumbuff #e3a857 native blue nativeblue #004b49 neon blue neonblue #239eba neopolitan night neopolitannight #436b95 neopolitan night neopolitannight #4e5180 neutral neutral #f3e5ab neutral neutral #f0ead6 new blue newblue #e9e9ed niagara niagara #239eba night blue nightblue #004958 night cloud nightcloud #e9e9ed night fighter nightfighter #51585e night fighter nightfighter #5d555b night fighter nightfighter #555555 night horizon nighthorizon #202428 night horizon nighthorizon #222222 night magic nightmagic #aa98a9 nightshade nightshade #50404d nightshade nightshade #5d555b night watch nightwatch #1a2421 nil nil #f2f3f4 nocturne nocturne #bfb9bd noel noel #3a4b47 nomad brown nomadbrown #3e322c norse blue norseblue #4997d0 norse blue norseblue #6c79b8 north blue northblue #007791 northern skies northernskies #bcd4e6 north green northgreen #5e716a north green northgreen #317873 north sea northsea #51585e norway pine norwaypine #679267 nubian brown nubianbrown #635147 nymph pink nymphpink #d597ae oak leaf oakleaf #515744 ocean wave oceanwave #66ada4 octoroon rose octoroonrose #905d5d octoroon rose octoroonrose #977f73 old coral oldcoral #ab4e52 old gold oldgold #eaa221 old gold oldgold #e3a857 old gold oldgold #d4af37 old lavender oldlavender #d6cadd old master green oldmastergreen #515744 old rose oldrose #c08081 olive glow oliveglow #ebe8a4 olive glow oliveglow #dadfb7 olive hint olivehint #ebe8a4 olive hint olivehint #dadfb7 ombre ombre #36454f ombre ombre #222222 opal green opalgreen #317873 opera blue operablue #00304e opera blue operablue #4e5180 opera mauve operamauve #b784a7 opera pink operapink #f4c2c2 orange orange #ed872d orange blush orangeblush #fad6a5 orange cream orangecream #f3e5ab orchid orchid #c3a6b1 orchid lane orchidlane #d5badb orchid leaf orchidleaf #d6cadd orchid mauve orchidmauve #c17e91 orchid night orchidnight #905d5d orchid night orchidnight #915f6d orchid pink orchidpink #f9ccca orchid pink orchidpink #dea5a4 orchid smoke orchidsmoke #c3a6b1 oriental bronze orientalbronze #6c541e oriental sand orientalsand #8c8767 padre brown padrebrown #3e1d1e palace blue palaceblue #0067a5 palace blue palaceblue #436b95 pale star palestar #eae679 pale star palestar #ebe8a4 pale water palewater #8ed1b2 paloma paloma #a67b5b paloma paloma #9cd1dc pan pan #5e716a pan pan #317873 panama blue panamablue #b3bce2 pansy purple pansypurple #915c83 pansy purple pansypurple #5d3954 pansy yellow pansyyellow #fada5e paprica paprica #9e4732 paradise green paradisegreen #b6e5af paradise green paradisegreen #93c592 paramount paramount #239eba paramount paramount #66aabc paramour paramour #66aabc parrakeet parrakeet #3eb489 peace peace #f0ead6 peace-maker peacemaker #dfede8 peach amber peachamber #d9a6a9 peach bisque peachbisque #a87c6d peach bud peachbud #f4c2c2 peach cream peachcream #fad6a5 peach gray peachgray #eae3e1 peach gray peachgray #c1b6b3 peach gray peachgray #ecd5c5 peach pink peachpink #f4c2c2 peach rust peachrust #cb6d51 peach sand peachsand #c1b6b3 peach sand peachsand #8e8279 peacock blue peacockblue #004958 pea green peagreen #8a9a5b pearl cream pearlcream #eae3e1 pearly gates pearlygates #f0ead6 peasant blue peasantblue #00304e peasant blue peasantblue #36454f persian green persiangreen #00a693 persian gulf persiangulf #5e716a persian gulf persiangulf #317873 persian melon persianmelon #cb6d51 persian rose persianrose #ce4676 persian rose persianrose #b3446c personal personal #e8ccd7 petunia petunia #86608e pewter pewter #c1b6b3 pewter cream pewtercream #eae3e1 phantom blue phantomblue #9cd1dc phantom blue phantomblue #bcd4e6 phantom green phantomgreen #dfede8 phlox pink phloxpink #de6fa1 picturesque picturesque #00a693 picturesque picturesque #96ded1 pine frost pinefrost #8ed1b2 pink carnation pinkcarnation #ffc8d6 pink dust pinkdust #f4c2c2 pink dust pinkdust #ecd5c5 pink icing pinkicing #efbbcc pink jewel pinkjewel #f88379 pink lavender pinklavender #e8ccd7 pink lily pinklily #f9ccca pink mist pinkmist #e8ccd7 pink orchid pinkorchid #e8ccd7 pink powder pinkpowder #ffc8d6 pink rapture pinkrapture #9e4f88 pink shock pinkshock #b3446c pinocchio pinocchio #f4c2c2 piquant piquant #96ded1 piquant green piquantgreen #8a9a5b pistachio cream pistachiocream #bdda57 placid placid #e8e3e5 plantation plantation #79443b plantation yellow plantationyellow #fada5e platonic platonic #91a3b0 plenty bright plentybright #007a74 plumbago blue plumbagoblue #bcd4e6 plumbago blue plumbagoblue #c0c8e1 plume plume #96ded1 poet's yellow poetsyellow #eae679 polar bear polarbear #66aabc pom pom pompom #f8de7e pom pom pompom #eae679 pool green poolgreen #00a693 porcelain green porcelaingreen #6aab8e pouf de vent poufdevent #efbbcc pouf de vent poufdevent #e8ccd7 prairie sunset prairiesunset #d9a6a9 prairie sunset prairiesunset #fab57f primeval primeval #3b7861 primrose yellow primroseyellow #e9e450 princely blue princelyblue #b3bce2 princely blue princelyblue #c0c8e1 princess princess #8c82b6 priscilla blue priscillablue #367588 prism pink prismpink #efbbcc prism violet prismviolet #604e97 profound profound #722f37 profound blue profoundblue #536878 profound blue profoundblue #8c92ac promise promise #f0ead6 promised land promisedland #3eb489 promised land promisedland #007959 promised land promisedland #00a693 promised land promisedland #007a74 promise green promisegreen #c7e6d7 prudence prudence #66ada4 prudence prudence #91a3b0 pumpkin pumpkin #d99058 puritan puritan #536878 puritan puritan #51585e purple aster purpleaster #915c83 purple heather purpleheather #86608e purple lake purplelake #673147 purple night purplenight #36454f purple ode purpleode #9690ab quail quail #8e8279 quaker quaker #8b8589 quality quality #8c82b6 quality pink qualitypink #e68fac quality pink qualitypink #d597ae queen anne queenanne #8a9a5b queen blue queenblue #436b95 queen coral queencoral #f88379 queen coral queencoral #f4c2c2 queen pink queenpink #e8ccd7 quiet quiet #dfede8 radiance radiance #fada5e radiant radiant #f88379 radiant radiant #cb6d51 radiant orchid radiantorchid #d6cadd rainbow mist rainbowmist #c7ada3 raisin raisin #43302e rapture rapture #ab4e52 raspberry glace raspberryglace #915f6d raven raven #222222 reed reed #dadfb7 reflection reflection #9cd1dc regal orchid regalorchid #b695c0 remote remote #5e716a repose repose #8f9779 restrained blue restrainedblue #bcd4e6 retreat retreat #91a3b0 retreat retreat #81878b rhapsody blue rhapsodyblue #36454f rigi blue rigiblue #536878 rill rill #66ada4 rio blue rioblue #91a3b0 rio grande riogrande #c2b280 river mist rivermist #536878 river nile rivernile #317873 riviera riviera #436b95 rivulet blue rivuletblue #66aabc robin egg robinegg #96ded1 romance romance #e8ccd7 romance romance #9690ab romance romance #796878 roman purple romanpurple #50404d roman purple romanpurple #5d555b roman rose romanrose #43302e roman tan romantan #a87c6d romantic blue romanticblue #a1caf1 romantic blue romanticblue #70a3cc room green roomgreen #b2beb5 rosario rosario #d9a6a9 rosea rosea #efbbcc rose ash roseash #eae3e1 rose ash roseash #ecd5c5 rose caroline rosecaroline #d9a6a9 rose castor rosecastor #905d5d rose castor rosecastor #8f817f rose cloud rosecloud #dea5a4 rose dust rosedust #ecd5c5 rose garden rosegarden #de6fa1 rose glory roseglory #e4717a rose leaf roseleaf #ea9399 rose marie rosemarie #de6fa1 rose mist rosemist #ad8884 rose mist rosemist #c7ada3 rose morn rosemorn #f9ccca rose morn rosemorn #ead8d7 rose morn rosemorn #f4c2c2 rose morn rosemorn #ecd5c5 rose muse rosemuse #c7ada3 rose nude rosenude #ecd5c5 rose pearl rosepearl #ead8d7 rose pearl rosepearl #ecd5c5 rose shadow roseshadow #ead8d7 rose shadow roseshadow #ecd5c5 rose smoke rosesmoke #ad8884 rose smoke rosesmoke #8f817f rose stain rosestain #905d5d rosy pink rosypink #f9ccca royal lilac royallilac #86608e royal robe royalrobe #2f2140 royal violet royalviolet #673147 ruby lake rubylake #673147 ruffled petunia ruffledpetunia #e68fac russet leaf russetleaf #a18f60 russet yellow russetyellow #c9ae5d russian blue russianblue #91a3b0 russian blue russianblue #81878b rust rose rustrose #ab4e52 sable sable #6f4e37 saga blue sagablue #91a3b0 sage sage #8a9a5b sailor sailor #282022 salmon buff salmonbuff #d9a6a9 salmon flush salmonflush #f4c2c2 salmon pink salmonpink #f4c2c2 salmon rose salmonrose #f88379 salome blue salomeblue #00a693 salome green salomegreen #3eb489 salome green salomegreen #8ed1b2 salome pink salomepink #ea9399 sandlewood sandlewood #a67b5b sandrift sandrift #8e8279 sand stucco sandstucco #977f73 santa anita green santaanitagreen #66ada4 saxe blue saxeblue #367588 saxe blue saxeblue #536878 scarab scarab #317873 scarlet scarlet #e25822 scotch blue scotchblue #554c69 scotch mist scotchmist #b2beb5 scotch mist scotchmist #bfb8a5 scotch mist scotchmist #dadfb7 sea foam seafoam #f0ead6 sea foam seafoam #dfede8 sea fog seafog #d6cadd sea fog seafog #bfb9bd sea mist seamist #dadfb7 seance seance #e8ccd7 seclusion seclusion #4e5755 secret secret #796878 sentimental mood sentimentalmood #bcd4e6 sentimental mood sentimentalmood #c0c8e1 serene serene #ecd5c5 serenity serenity #d597ae seville seville #8a9a5b sevres sevres #00a1c2 sevres sevres #0067a5 shadow aqua shadowaqua #5e716a shadow beige shadowbeige #967117 shadow blue shadowblue #91a3b0 shadow green shadowgreen #5e716a shadow green shadowgreen #3a4b47 shadow lilac shadowlilac #796878 shadow lime shadowlime #c9dc89 shadow mauve shadowmauve #796878 shadow olive shadowolive #b9b57d shamrock shamrock #44944a shell coral shellcoral #f4c2c2 shell coral shellcoral #ecd5c5 shine shine #ebe8a4 shining shining #eae679 shore line shoreline #536878 shrimp pink shrimppink #f88379 siam sand siamsand #c2b280 sierra sierra #9e4732 sierra sierra #80461b silent night silentnight #5e716a silver blue silverblue #bcd4e6 silver blue silverblue #c0c8e1 silver cloud silvercloud #bcd4e6 silver cloud silvercloud #b4bcc0 silver green silvergreen #dadfb7 silver lining silverlining #bfb8a5 silver lining silverlining #b9b8b5 silver night silvernight #aa98a9 silver pine silverpine #5e716a silver pink silverpink #c4aead silver pink silverpink #c7ada3 silver salmon silversalmon #c7ada3 silver sky silversky #e8e3e5 silver sky silversky #bfb9bd silver wing silverwing #bfb9bd silver wing silverwing #8b8589 singing blue singingblue #239eba singing blue singingblue #66aabc sky sky #8f9779 sky cloud skycloud #b4bcc0 sky green skygreen #96ded1 sky lane skylane #c7e6d7 slate slate #5d555b slate slate #555555 slate blue slateblue #536878 slate blue slateblue #51585e slate citron slatecitron #8a9a5b slate green slategreen #5e716a slate orchid slateorchid #796878 slate rose slaterose #905d5d slate turquoise slateturquoise #367588 slate turquoise slateturquoise #536878 slate violet slateviolet #796878 sleepy hollow sleepyhollow #8da399 sleepy hollow sleepyhollow #91a3b0 sleigh bells sleighbells #9cd1dc sleigh bells sleighbells #bcd4e6 smile smile #f0ead6 smiles smiles #f4c2c2 smog smog #ae9b82 smoke smoke #91a3b0 smoke blue smokeblue #8c92ac smoke pine smokepine #8f9779 smoke pine smokepine #b2beb5 smoke ring smokering #91a3b0 smokestain rose smokestainrose #ad8884 snow green snowgreen #c7e6d7 snow green snowgreen #bcd4e6 snow green snowgreen #b4bcc0 solitary solitary #dfede8 solitary solitary #b2beb5 solitary solitary #f2f3f4 solitary solitary #b9b8b5 solitary blue solitaryblue #536878 somber blue somberblue #536878 sonata sonata #f4c2c2 song of norway songofnorway #00a693 sophisticated lady sophisticatedlady #b695c0 sorcerer sorcerer #554c69 sorcerer sorcerer #796878 sorcerer sorcerer #36454f sorcerer sorcerer #202830 sorcerer sorcerer #202428 sorrento sorrento #317873 southern rose southernrose #a87c6d southern sun southernsun #fada5e southern sun southernsun #f8de7e souvenir souvenir #c4c3dd sovereign blue sovereignblue #70a3cc sovereign blue sovereignblue #8791bf spanish blue spanishblue #317873 spanish gold spanishgold #e3a857 spanish white spanishwhite #fad6a5 sparkle sparkle #9cd1dc sparrow sparrow #7e6d5a spectra blue spectrablue #30267a spectra green spectragreen #004b49 spectra red spectrared #be0032 spectra rose spectrarose #ce4676 spectra yellow spectrayellow #f3c300 spice spice #ae6938 spice spice #a67b5b spiritual blue spiritualblue #bcd4e6 spitfire spitfire #ab4e52 spray spray #96ded1 spring spring #83d37d spring bud springbud #c9dc89 spring dream springdream #eae679 spring dream springdream #ebe8a4 spring eve springeve #eae679 spring eve springeve #bdda57 spring eve springeve #c9dc89 spring flower springflower #e9e450 spring stream springstream #96ded1 spring yellow springyellow #f3e5ab starch white starchwhite #bcd4e6 static static #91a3b0 steam blue steamblue #e9e9ed steel blue steelblue #66aabc stellar stellar #efbbcc sterling blue sterlingblue #91a3b0 sterling blue sterlingblue #b4bcc0 stoic stoic #222222 storm storm #536878 stormy night stormynight #36454f stratosphere stratosphere #536878 stratosphere stratosphere #51585e straw yellow strawyellow #f3e5ab streamlet streamlet #96ded1 streamline streamline #96ded1 string string #f0ead6 style gray stylegray #536878 sublime sublime #91a3b0 sublime sublime #8c92ac suet suet #f0ead6 suez blue suezblue #36454f suez green suezgreen #317873 suggestion suggestion #96ded1 sulphate green sulphategreen #00a693 sulphate green sulphategreen #66ada4 sulphur sulphur #eae679 sultana sultana #905d5d sultan sand sultansand #c19a6b summer green summergreen #3eb489 summer green summergreen #8ed1b2 summer shower summershower #c7e6d7 summer sun summersun #e9e450 sunburst sunburst #fbc97f sunburst sunburst #e3a857 sunburst sunburst #fad6a5 sundown sundown #f4c2c2 sundown sundown #d9a6a9 sundown sundown #fad6a5 sung green sunggreen #8f9779 sun glow sunglow #f8de7e sun glow sunglow #f3e5ab sun god sungod #d9603b sun green sungreen #ebe8a4 sun rose sunrose #f9ccca sunset cream sunsetcream #f0ead6 sunshine sunshine #eae679 sun yellow sunyellow #e9e450 sun yellow sunyellow #eae679 superior superior #317873 supreme supreme #4997d0 surf spray surfspray #dfede8 surrender surrender #b695c0 sussanqua pink sussanquapink #ffc8d6 sussanqua pink sussanquapink #e68fac swank swank #c4c3dd swank swank #d6cadd sweet blue sweetblue #bcd4e6 sweet lady sweetlady #8c82b6 sweet lavender sweetlavender #c4c3dd sweet pea pink sweetpeapink #915f6d swiss blue swissblue #8c92ac swiss rose swissrose #905d5d sylvan sylvan #dadfb7 tabu tabu #536878 talisman talisman #fab57f talisman talisman #d99058 tangerine tangerine #d9603b tangerine tangerine #ed872d tango tango #e4717a tapestry beige tapestrybeige #977f73 tapestry red tapestryred #722f37 taupe rose tauperose #5c504f taupe rose tauperose #674c47 taupe sand taupesand #967117 teal blue tealblue #367588 teen age pink teenagepink #efbbcc television blue televisionblue #36454f tempest tempest #50404d tempest blue tempestblue #51585e temple temple #8f9779 temptation temptation #d6cadd tete-a-tete teteatete #9cd1dc thames river thamesriver #91a3b0 thames river thamesriver #b4bcc0 theatrical blue theatricalblue #436b95 thistle bloom thistlebloom #a8516e thistle down thistledown #e8ccd7 tobacco brown tobaccobrown #674c47 tomato red tomatored #be0032 topaz amber topazamber #d99058 torchlight torchlight #be0032 torchlight torchlight #bc3f4a toreador toreador #bc3f4a tourmaline green tourmalinegreen #c7e6d7 tourmaline green tourmalinegreen #96ded1 tourmaline pink tourmalinepink #ffc8d6 tourmaline pink tourmalinepink #efbbcc trade winds tradewinds #536878 trail green trailgreen #1b4d3e trail green trailgreen #3a4b47 tranquil green tranquilgreen #3a4b47 tranquil green tranquilgreen #36454f transatlantic blue transatlanticblue #202830 translucent blue translucentblue #91a3b0 transparent yellow transparentyellow #f3e5ab transparent yellow transparentyellow #f0ead6 trellis trellis #93c592 tropic night tropicnight #836479 troubador troubador #be0032 troubador troubador #bc3f4a tulip yellow tulipyellow #fada5e tumbleweed tumbleweed #f3e5ab tumbleweed tumbleweed #bfb8a5 turf green turfgreen #44944a turf green turfgreen #679267 turquoise blue turquoiseblue #66ada4 tuscan sand tuscansand #967117 twilight mood twilightmood #bcd4e6 twilight sun twilightsun #f3e5ab twilight sun twilightsun #dadfb7 twinkle twinkle #bcd4e6 tyrian blue tyrianblue #536878 ultramarine ultramarine #30267a uniform blue uniformblue #00304e unique unique #ebe8a4 universal universal #36454f vagabond vagabond #317873 valencia rose valenciarose #c08081 valor green valorgreen #36454f vamp vamp #efbbcc vanda vanda #aa8a9e vanilla custard vanillacustard #f8de7e vanilla custard vanillacustard #f3e5ab vapor blue vaporblue #e9e9ed vatican vatican #673147 veiled sun veiledsun #e3a857 veiled sun veiledsun #d4af37 venetian rose venetianrose #905d5d venetian turquoise venetianturquoise #66ada4 venice venice #8da399 venice blue veniceblue #96ded1 venus blue venusblue #bcd4e6 venus blue venusblue #e9e9ed verbena lavender verbenalavender #915c83 verbena lavender verbenalavender #915f6d verdant verdant #8db600 verdugo verdugo #bdda57 verdugo verdugo #c9dc89 vermilion vermilion #d9603b vesta vesta #ea9399 vesta vesta #f9ccca vesta vesta #dea5a4 vibrant green vibrantgreen #83d37d victoria victoria #f4c2c2 viking viking #36454f viola viola #b695c0 violet leaf violetleaf #4a5d23 violet pansy violetpansy #50404d virginia lavender virginialavender #e8e3e5 vista green vistagreen #8f9779 vivid vivid #c17e91 vivid turquoise vividturquoise #007a74 wafted feather waftedfeather #e8e3e5 wafted feather waftedfeather #bfb9bd walnut walnut #a67b5b walnut cream walnutcream #fad6a5 wan blue wanblue #e9e9ed wan blue wanblue #e8e3e5 water fall waterfall #367588 water green watergreen #dadfb7 watteau watteau #66aabc whimsical whimsical #b695c0 white clover whiteclover #f0ead6 white fawn whitefawn #fad6a5 white jade whitejade #f4c2c2 white jade whitejade #ecd5c5 white light whitelight #bcd4e6 white mist whitemist #f4c2c2 white mist whitemist #ecd5c5 white smoke whitesmoke #b4bcc0 white swan whiteswan #bcd4e6 white swan whiteswan #c0c8e1 wild orchid wildorchid #b784a7 windflower windflower #915f6d wineberry wineberry #796878 wineberry wineberry #50404d winsome winsome #d6cadd winsome blue winsomeblue #66aabc winter pear winterpear #8a9a5b winter sky wintersky #bcd4e6 winter sun wintersun #eae679 winter white winterwhite #e4717a winter yellow winteryellow #f3e5ab winter yellow winteryellow #c2b280 wisteria wisteria #8c82b6 wisteria gray wisteriagray #796878 wisteria mist wisteriamist #796878 withered rose witheredrose #905d5d yale blue yaleblue #545aa7 yale blue yaleblue #272458 yale blue yaleblue #4e5180 yama yama #66ada4 yellow bright yellowbright #e9e450 yellow bright yellowbright #eae679 yellow cream yellowcream #f3e5ab yellow essence yellowessence #ebe8a4 yellow gem yellowgem #f3e5ab yellow mist yellowmist #967117 yellow rose yellowrose #eae679 yellow smoke yellowsmoke #c9ae5d yellow smoke yellowsmoke #ab9144 yew green yewgreen #515744 youth yellow youthyellow #eae679 yuletime yuletime #4a5d23 yule tree yuletree #004b49 zephyr blue zephyrblue #bcd4e6 zephyr blue zephyrblue #91a3b0 zephyr green zephyrgreen #c7e6d7 zest pink zestpink #ea9399 zinnia gold zinniagold #fbc97f zinnia gold zinniagold #f8de7e =cut sub _load_color_list() { return [ ['nbs-iscc-p:absintheyellow.87','absintheyellow','absinthe yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-p:abstractblue.184','abstractblue','abstract blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:abyss.149','abyss','abyss',[141,163,153],'8da399',9282457], ['nbs-iscc-p:acacia.150','acacia','acacia',[94,113,106],'5e716a',6189418], ['nbs-iscc-p:acaciagray.155','acaciagray','acacia gray',[125,137,132],'7d8984',8227204], ['nbs-iscc-p:acaciagreen.155','acaciagreen','acacia green',[125,137,132],'7d8984',8227204], ['nbs-iscc-p:aden.144','aden','aden',[106,171,142],'6aab8e',6990734], ['nbs-iscc-p:admiral.229','admiral','admiral',[80,64,77],'50404d',5259341], ['nbs-iscc-p:africangreen.187','africangreen','african green',[54,69,79],'36454f',3556687], ['nbs-iscc-p:africannight.47','africannight','african night',[67,48,46],'43302e',4403246], ['nbs-iscc-p:afterglow.252','afterglow','after glow',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-p:ageanmist.154','ageanmist','agean mist',[178,190,181],'b2beb5',11714229], ['nbs-iscc-p:ageratum.253','ageratum','ageratum',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-p:aircastleblue.184','aircastleblue','air castle blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:airycream.263','airycream','airy cream',[242,243,244],'f2f3f4',15922164], ['nbs-iscc-p:aladdinslamp.37','aladdinslamp','aladdin\'s lamp',[203,109,81],'cb6d51',13331793], ['nbs-iscc-p:algiersblue.173','algiersblue','algiers blue',[54,117,136],'367588',3569032], ['nbs-iscc-p:allure.181','allure','allure',[112,163,204],'70a3cc',7381964], ['nbs-iscc-p:almond.76','almond','almond',[193,154,107],'c19a6b',12687979], ['nbs-iscc-p:almondcream.73','almondcream','almond cream',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:alpineblue.198','alpineblue','alpine blue',[179,188,226],'b3bce2',11779298], ['nbs-iscc-p:alpineblue.202','alpineblue','alpine blue',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-p:amaranth.259','amaranth','amaranth',[103,49,71],'673147',6762823], ['nbs-iscc-p:amaranth.262','amaranth','amaranth',[145,95,109],'915f6d',9527149], ['nbs-iscc-p:ambercoral.29','ambercoral','amber coral',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-p:ambergold.76','ambergold','amber gold',[193,154,107],'c19a6b',12687979], ['nbs-iscc-p:ambergold.90','ambergold','amber gold',[194,178,128],'c2b280',12759680], ['nbs-iscc-p:ambergold.91','ambergold','amber gold',[161,143,96],'a18f60',10588000], ['nbs-iscc-p:ambrosia.134','ambrosia','ambrosia',[182,229,175],'b6e5af',11986351], ['nbs-iscc-p:amethyst.245','amethyst','amethyst',[131,100,121],'836479',8610937], ['nbs-iscc-p:amethystorchid.222','amethystorchid','amethyst orchid',[182,149,192],'b695c0',11965888], ['nbs-iscc-p:amulet.164','amulet','amulet',[49,120,115],'317873',3242099], ['nbs-iscc-p:ancestral.263','ancestral','ancestral',[242,243,244],'f2f3f4',15922164], ['nbs-iscc-p:ancestral.264','ancestral','ancestral',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-p:angelblue.184','angelblue','angel blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:angelwing.249','angelwing','angel wing',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:angora.73','angora','angora',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:angora.92','angora','angora',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:antiquebrass.88','antiquebrass','antique brass',[171,145,68],'ab9144',11243844], ['nbs-iscc-p:antiquebronze.107','antiquebronze','antique bronze',[102,93,30],'665d1e',6708510], ['nbs-iscc-p:antiquefuchsia.241','antiquefuchsia','antique fuchsia',[145,92,131],'915c83',9526403], ['nbs-iscc-p:antiqueyellow.87','antiqueyellow','antique yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-p:applegreen.120','applegreen','apple green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:apricot.52','apricot','apricot',[250,181,127],'fab57f',16430463], ['nbs-iscc-p:apricotcream.73','apricotcream','apricot cream',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:apricotcream.89','apricotcream','apricot cream',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:apricotice.73','apricotice','apricot ice',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:apricotsherbet.70','apricotsherbet','apricot sherbet',[251,201,127],'fbc97f',16501119], ['nbs-iscc-p:apricottan.53','apricottan','apricot tan',[217,144,88],'d99058',14258264], ['nbs-iscc-p:apricottan.71','apricottan','apricot tan',[227,168,87],'e3a857',14919767], ['nbs-iscc-p:aprilsky.162','aprilsky','april sky',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:aquagray.149','aquagray','aqua gray',[141,163,153],'8da399',9282457], ['nbs-iscc-p:aquamarinegreen.164','aquamarinegreen','aquamarine green',[49,120,115],'317873',3242099], ['nbs-iscc-p:aquaqueen.162','aquaqueen','aqua queen',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:aquasky.163','aquasky','aqua sky',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:arborgreen.136','arborgreen','arbor green',[103,146,103],'679267',6787687], ['nbs-iscc-p:arcadia.99','arcadia','arcadia',[190,183,46],'beb72e',12498734], ['nbs-iscc-p:arcadia.102','arcadia','arcadia',[185,180,89],'b9b459',12170329], ['nbs-iscc-p:arctic.186','arctic','arctic',[83,104,120],'536878',5466232], ['nbs-iscc-p:arctic.187','arctic','arctic',[54,69,79],'36454f',3556687], ['nbs-iscc-p:arnoblue.173','arnoblue','arno blue',[54,117,136],'367588',3569032], ['nbs-iscc-p:ashesofroses.6','ashesofroses','ashes of roses ',[192,128,129],'c08081',12615809], ['nbs-iscc-p:ashesofroses.251','ashesofroses','ashes of roses ',[193,126,145],'c17e91',12680849], ['nbs-iscc-p:astheticblue.172','astheticblue','asthetic blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:atlantis.183','atlantis','atlantis',[0,48,78],'00304e',12366], ['nbs-iscc-p:atonement.227','atonement','atonement',[170,152,169],'aa98a9',11180201], ['nbs-iscc-p:aurorapink.247','aurorapink','aurora pink',[230,143,172],'e68fac',15110060], ['nbs-iscc-p:aurorapink.250','aurorapink','aurora pink',[213,151,174],'d597ae',13997998], ['nbs-iscc-p:aurorayellow.86','aurorayellow','aurora yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:autumnbrown.74','autumnbrown','autumn brown',[153,101,21],'996515',10052885], ['nbs-iscc-p:autumnbrown.95','autumnbrown','autumn brown',[108,84,30],'6c541e',7099422], ['nbs-iscc-p:autumnglory.13','autumnglory','autumn glory',[132,27,45],'841b2d',8657709], ['nbs-iscc-p:autumnglory.38','autumnglory','autumn glory',[158,71,50],'9e4732',10372914], ['nbs-iscc-p:autumnglory.72','autumnglory','autumn glory',[190,138,61],'be8a3d',12487229], ['nbs-iscc-p:autumngold.72','autumngold','autumn gold ',[190,138,61],'be8a3d',12487229], ['nbs-iscc-p:autumntan.77','autumntan','autumn tan',[130,102,68],'826644',8545860], ['nbs-iscc-p:avon.155','avon','avon',[125,137,132],'7d8984',8227204], ['nbs-iscc-p:azalea.258','azalea','azalea',[168,81,110],'a8516e',11030894], ['nbs-iscc-p:azuriteblue.173','azuriteblue','azurite blue',[54,117,136],'367588',3569032], ['nbs-iscc-p:azuriteblue.186','azuriteblue','azurite blue',[83,104,120],'536878',5466232], ['nbs-iscc-p:babyblue.180','babyblue','baby blue',[161,202,241],'a1caf1',10603249], ['nbs-iscc-p:babyblueeyes.180','babyblueeyes','baby blue eyes',[161,202,241],'a1caf1',10603249], ['nbs-iscc-p:babyblueeyes.198','babyblueeyes','baby blue eyes',[179,188,226],'b3bce2',11779298], ['nbs-iscc-p:bagdad.19','bagdad','bagdad',[144,93,93],'905d5d',9461085], ['nbs-iscc-p:balladblue.199','balladblue','ballad blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-p:ballerina.209','ballerina','ballerina',[220,208,255],'dcd0ff',14471423], ['nbs-iscc-p:balmyair.184','balmyair','balmy air',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:balsamgreen.151','balsamgreen','balsam green ',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:baltic.187','baltic','baltic ',[54,69,79],'36454f',3556687], ['nbs-iscc-p:baltic.267','baltic','baltic ',[34,34,34],'222222',2236962], ['nbs-iscc-p:banana.86','banana','banana',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:banshee.150','banshee','banshee',[94,113,106],'5e716a',6189418], ['nbs-iscc-p:banshee.151','banshee','banshee',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:banshee.164','banshee','banshee',[49,120,115],'317873',3242099], ['nbs-iscc-p:banshee.165','banshee','banshee',[0,75,73],'004b49',19273], ['nbs-iscc-p:baronet.181','baronet','baronet',[112,163,204],'70a3cc',7381964], ['nbs-iscc-p:basic.165','basic','basic',[0,75,73],'004b49',19273], ['nbs-iscc-p:bathstone.73','bathstone','bath stone',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:bavarianblue.183','bavarianblue','bavarian blue',[0,48,78],'00304e',12366], ['nbs-iscc-p:bayleaf.74','bayleaf','bay leaf',[153,101,21],'996515',10052885], ['nbs-iscc-p:bayou.187','bayou','bayou',[54,69,79],'36454f',3556687], ['nbs-iscc-p:bayou.267','bayou','bayou',[34,34,34],'222222',2236962], ['nbs-iscc-p:beaublue.184','beaublue','beau blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:beautiful.164','beautiful','beautiful',[49,120,115],'317873',3242099], ['nbs-iscc-p:beautypink.246','beautypink','beauty pink',[255,200,214],'ffc8d6',16763094], ['nbs-iscc-p:beigegray.93','beigegray','beige gray',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-p:belladonna.223','belladonna','belladonna',[134,96,142],'86608e',8806542], ['nbs-iscc-p:bellflower.211','bellflower','bellflower',[96,78,129],'604e81',6311553], ['nbs-iscc-p:berylgreen.163','berylgreen','beryl green',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:besteffort.104','besteffort','best effort',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:besteffort.121','besteffort','best effort',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:bewitch.159','bewitch','bewitch',[0,166,147],'00a693',42643], ['nbs-iscc-p:bewitchingblue.181','bewitchingblue','bewitching blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-p:billiard.161','billiard','billiard',[0,68,63],'00443f',17471], ['nbs-iscc-p:billiard.165','billiard','billiard',[0,75,73],'004b49',19273], ['nbs-iscc-p:billow.184','billow','billow',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:birch.153','birch','birch',[223,237,232],'dfede8',14675432], ['nbs-iscc-p:birdsegggreen.149','birdsegggreen','bird\'s-egg-green',[141,163,153],'8da399',9282457], ['nbs-iscc-p:birdsegggreen.163','birdsegggreen','bird\'s-egg-green',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:biscaybay.173','biscaybay','biscay bay',[54,117,136],'367588',3569032], ['nbs-iscc-p:biscaybay.186','biscaybay','biscay bay',[83,104,120],'536878',5466232], ['nbs-iscc-p:bishop.211','bishop','bishop',[96,78,129],'604e81',6311553], ['nbs-iscc-p:bison.95','bison','bison',[108,84,30],'6c541e',7099422], ['nbs-iscc-p:bisque.29','bisque','bisque',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-p:bisque.32','bisque','bisque',[199,173,163],'c7ada3',13086115], ['nbs-iscc-p:bittersweet.38','bittersweet','bittersweet',[158,71,50],'9e4732',10372914], ['nbs-iscc-p:bittersweetorange.35','bittersweetorange','bittersweet orange',[217,96,59],'d9603b',14245947], ['nbs-iscc-p:bittersweetorange.50','bittersweetorange','bittersweet orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-p:blackberrycream.250','blackberrycream','blackberry cream',[213,151,174],'d597ae',13997998], ['nbs-iscc-p:blackforest.127','blackforest','black forest',[81,87,68],'515744',5330756], ['nbs-iscc-p:blackknight.187','blackknight','black knight',[54,69,79],'36454f',3556687], ['nbs-iscc-p:blackknight.192','blackknight','black knight',[81,88,94],'51585e',5331038], ['nbs-iscc-p:blackwater.187','blackwater','black water',[39,36,88],'272458',2565208], ['nbs-iscc-p:blackwater.267','blackwater','black water',[34,34,34],'222222',2236962], ['nbs-iscc-p:blanch.162','blanch','blanch',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:blarney.139','blarney','blarney',[0,136,86],'008856',34902], ['nbs-iscc-p:blarney.141','blarney','blarney',[0,121,89],'007959',31065], ['nbs-iscc-p:blazeblue.186','blazeblue','blaze blue ',[83,104,120],'536878',5466232], ['nbs-iscc-p:blazeblue.187','blazeblue','blaze blue ',[54,69,79],'36454f',3556687], ['nbs-iscc-p:blend.121','blend','blend',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:blithe.168','blithe','blithe',[35,158,186],'239eba',2334394], ['nbs-iscc-p:blondegreen.153','blondegreen','blonde green',[223,237,232],'dfede8',14675432], ['nbs-iscc-p:blossom.104','blossom','blossom',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:blueappeal.180','blueappeal','blue appeal',[161,202,241],'a1caf1',10603249], ['nbs-iscc-p:blueappeal.184','blueappeal','blue appeal',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:bluebell.199','bluebell','blue bell',[135,145,191],'8791bf',8884671], ['nbs-iscc-p:bluechill.184','bluechill','blue chill',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:bluedanube.169','bluedanube','blue danube',[0,119,145],'007791',30609], ['nbs-iscc-p:bluedash.186','bluedash','blue dash',[83,104,120],'536878',5466232], ['nbs-iscc-p:blueday.202','blueday','blue day',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-p:bluefog.186','bluefog','blue fog',[83,104,120],'536878',5466232], ['nbs-iscc-p:bluefog.191','bluefog','blue fog',[129,135,139],'81878b',8488843], ['nbs-iscc-p:blueglow.184','blueglow','blue glow',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:bluegrotto.172','bluegrotto','blue grotto',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:blueheaven.177','blueheaven','blue heaven',[73,151,208],'4997d0',4822992], ['nbs-iscc-p:blueheaven.180','blueheaven','blue heaven',[161,202,241],'a1caf1',10603249], ['nbs-iscc-p:blueheaven.181','blueheaven','blue heaven',[112,163,204],'70a3cc',7381964], ['nbs-iscc-p:bluehorizon.185','bluehorizon','blue horizon',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:bluehour.173','bluehour','blue hour',[54,117,136],'367588',3569032], ['nbs-iscc-p:blueidol.164','blueidol','blue idol',[49,120,115],'317873',3242099], ['nbs-iscc-p:bluelight.184','bluelight','blue light',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:bluelightning.178','bluelightning','blue lightning',[0,103,165],'0067a5',26533], ['nbs-iscc-p:bluemist.172','bluemist','blue mist',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:bluemist.185','bluemist','blue mist',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:blueprose.171','blueprose','blue prose',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-p:blueridge.180','blueridge','blue ridge',[161,202,241],'a1caf1',10603249], ['nbs-iscc-p:blueridge.198','blueridge','blue ridge',[179,188,226],'b3bce2',11779298], ['nbs-iscc-p:blueshadow.173','blueshadow','blue shadow',[54,117,136],'367588',3569032], ['nbs-iscc-p:bluespruce.145','bluespruce','blue spruce',[59,120,97],'3b7861',3897441], ['nbs-iscc-p:blueswirl.172','blueswirl','blue swirl',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:bluetease.171','bluetease','blue tease',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-p:blueturquoise.168','blueturquoise','blue turquoise',[35,158,186],'239eba',2334394], ['nbs-iscc-p:bluewaltz.148','bluewaltz','blue waltz ',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:bluewaltz.162','bluewaltz','blue waltz ',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:bluewash.189','bluewash','blue wash',[233,233,237],'e9e9ed',15329773], ['nbs-iscc-p:blushrose.262','blushrose','blush rose',[145,95,109],'915f6d',9527149], ['nbs-iscc-p:blushyellow.70','blushyellow','blush yellow',[251,201,127],'fbc97f',16501119], ['nbs-iscc-p:blushyellow.73','blushyellow','blush yellow',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:bog.122','bog','bog',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:bohemianblue.182','bohemianblue','bohemian blue',[67,107,149],'436b95',4418453], ['nbs-iscc-p:bonnieblue.176','bonnieblue','bonnie blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-p:bonnieblue.194','bonnieblue','bonnie blue',[48,38,122],'30267a',3155578], ['nbs-iscc-p:bottlegreen.145','bottlegreen','bottle green',[59,120,97],'3b7861',3897441], ['nbs-iscc-p:bottlegreen.150','bottlegreen','bottle green',[94,113,106],'5e716a',6189418], ['nbs-iscc-p:bougainvillea.254','bougainvillea','bougainvillea ',[206,70,118],'ce4676',13518454], ['nbs-iscc-p:boundingmain.181','boundingmain','bounding main',[112,163,204],'70a3cc',7381964], ['nbs-iscc-p:bouquetgreen.129','bouquetgreen','bouquet green',[39,166,76],'27a64c',2598476], ['nbs-iscc-p:bouquetgreen.130','bouquetgreen','bouquet green',[131,211,125],'83d37d',8639357], ['nbs-iscc-p:bouquetorchid.221','bouquetorchid','bouquet orchid',[213,186,219],'d5badb',14007003], ['nbs-iscc-p:bouquetorchid.226','bouquetorchid','bouquet orchid',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:bouquetyellow.86','bouquetyellow','bouquet yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:brass.88','brass','brass',[171,145,68],'ab9144',11243844], ['nbs-iscc-p:brazilred.38','brazilred','brazil red',[158,71,50],'9e4732',10372914], ['nbs-iscc-p:breathofspring.104','breathofspring','breath of spring',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:breathofspring.119','breathofspring','breath of spring',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:bridesmaidpink.249','bridesmaidpink','bridesmaid pink',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:brightsun.82','brightsun','bright sun',[243,195,0],'f3c300',15975168], ['nbs-iscc-p:brightsun.83','brightsun','bright sun',[250,218,94],'fada5e',16439902], ['nbs-iscc-p:brilliantgreen.165','brilliantgreen','brilliant green',[0,75,73],'004b49',19273], ['nbs-iscc-p:bronzegold.84','bronzegold','bronze gold ',[212,175,55],'d4af37',13938487], ['nbs-iscc-p:bronzegold.87','bronzegold','bronze gold ',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-p:bronzemist.106','bronzemist','bronze mist',[134,126,54],'867e36',8814134], ['nbs-iscc-p:bronzepink.29','bronzepink','bronze pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-p:bronzepink.53','bronzepink','bronze pink',[217,144,88],'d99058',14258264], ['nbs-iscc-p:bronzesheen.110','bronzesheen','bronze sheen',[91,88,66],'5b5842',5986370], ['nbs-iscc-p:bronzio.43','bronzio','bronzio',[121,68,59],'79443b',7947323], ['nbs-iscc-p:brookgreen.162','brookgreen','brook green',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:bruges.192','bruges','bruges',[81,88,94],'51585e',5331038], ['nbs-iscc-p:buccaneer.12','buccaneer','buccaneer',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-p:buckskintan.73','buckskintan','buckskin tan',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:buffcitron.90','buffcitron','buff citron',[194,178,128],'c2b280',12759680], ['nbs-iscc-p:burntalmond.58','burntalmond','burnt almond',[111,78,55],'6f4e37',7294519], ['nbs-iscc-p:burntorange.50','burntorange','burnt orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-p:burntyellow.71','burntyellow','burnt yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-p:butterflyyellow.98','butterflyyellow','butterfly yellow',[233,228,80],'e9e450',15328336], ['nbs-iscc-p:butterflyyellow.101','butterflyyellow','butterfly yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-p:cabbage.148','cabbage','cabbage',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:caenstone.73','caenstone','caen stone',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:californiagold.71','californiagold','california gold',[227,168,87],'e3a857',14919767], ['nbs-iscc-p:californiagreen.155','californiagreen','california green',[125,137,132],'7d8984',8227204], ['nbs-iscc-p:californiapoppy.68','californiapoppy','california poppy',[234,162,33],'eaa221',15376929], ['nbs-iscc-p:cameliapink.2','cameliapink','camelia pink',[234,147,153],'ea9399',15373209], ['nbs-iscc-p:cameliapink.26','cameliapink','camelia pink',[248,131,121],'f88379',16286585], ['nbs-iscc-p:cameliarose.2','cameliarose','camelia rose',[234,147,153],'ea9399',15373209], ['nbs-iscc-p:cameo.4','cameo','cameo',[249,204,202],'f9ccca',16370890], ['nbs-iscc-p:cameopink.2','cameopink','cameo pink',[234,147,153],'ea9399',15373209], ['nbs-iscc-p:cameopink.249','cameopink','cameo pink',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:canarybronze.82','canarybronze','canary bronze',[243,195,0],'f3c300',15975168], ['nbs-iscc-p:canaryyellow.82','canaryyellow','canary yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-p:canaryyellow.83','canaryyellow','canary yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-p:candida.250','candida','candida',[213,151,174],'d597ae',13997998], ['nbs-iscc-p:canton.164','canton','canton',[49,120,115],'317873',3242099], ['nbs-iscc-p:capricelavender.231','capricelavender','caprice lavender',[232,227,229],'e8e3e5',15262693], ['nbs-iscc-p:capricepink.241','capricepink','caprice pink',[145,92,131],'915c83',9526403], ['nbs-iscc-p:capricepink.258','capricepink','caprice pink',[168,81,110],'a8516e',11030894], ['nbs-iscc-p:caramel.57','caramel','caramel',[166,123,91],'a67b5b',10910555], ['nbs-iscc-p:caramelcream.73','caramelcream','caramel cream',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:caravan.45','caravan','caravan',[151,127,115],'977f73',9928563], ['nbs-iscc-p:carnivalred.11','carnivalred','carnival red',[190,0,50],'be0032',12451890], ['nbs-iscc-p:castilianblue.178','castilianblue','castilian blue',[0,103,165],'0067a5',26533], ['nbs-iscc-p:cathedral.225','cathedral','cathedral',[48,25,52],'301934',3152180], ['nbs-iscc-p:cathedral.230','cathedral','cathedral',[41,30,41],'291e29',2694697], ['nbs-iscc-p:cedar.120','cedar','cedar',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:cedarbough.120','cedarbough','cedar bough',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:celestialblue.177','celestialblue','celestial blue',[73,151,208],'4997d0',4822992], ['nbs-iscc-p:celestialblue.195','celestialblue','celestial blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc-p:celestialyellow.86','celestialyellow','celestial yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:celestialyellow.89','celestialyellow','celestial yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:ceramic.173','ceramic','ceramic',[54,117,136],'367588',3569032], ['nbs-iscc-p:ceramic.182','ceramic','ceramic',[67,107,149],'436b95',4418453], ['nbs-iscc-p:ceres.86','ceres','ceres',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:cerisepink.255','cerisepink','cerise pink',[179,68,108],'b3446c',11748460], ['nbs-iscc-p:ceriserose.3','ceriserose','cerise rose',[228,113,122],'e4717a',14971258], ['nbs-iscc-p:ceylonblue.186','ceylonblue','ceylon blue',[83,104,120],'536878',5466232], ['nbs-iscc-p:chalkviolet.210','chalkviolet','chalk violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc-p:chalkviolet.214','chalkviolet','chalk violet',[150,144,171],'9690ab',9867435], ['nbs-iscc-p:chamoisyellow.71','chamoisyellow','chamois yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-p:chamoisyellow.76','chamoisyellow','chamois yellow',[193,154,107],'c19a6b',12687979], ['nbs-iscc-p:champagne.89','champagne','champagne',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:champagnebuff.89','champagnebuff','champagne buff',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:chantilly.144','chantilly','chantilly',[106,171,142],'6aab8e',6990734], ['nbs-iscc-p:charcoal.62','charcoal','charcoal',[62,50,44],'3e322c',4076076], ['nbs-iscc-p:charcoal.267','charcoal','charcoal',[34,34,34],'222222',2236962], ['nbs-iscc-p:charm.2','charm','charm',[234,147,153],'ea9399',15373209], ['nbs-iscc-p:charm.4','charm','charm',[249,204,202],'f9ccca',16370890], ['nbs-iscc-p:charm.249','charm','charm',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:charm.171','charm','charm',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-p:charmpink.247','charmpink','charm pink',[230,143,172],'e68fac',15110060], ['nbs-iscc-p:charmschool.244','charmschool','charm school',[170,138,158],'aa8a9e',11176606], ['nbs-iscc-p:charmschool.261','charmschool','charm school',[175,134,142],'af868e',11503246], ['nbs-iscc-p:chartreusegreen.115','chartreusegreen','chartreuse green',[141,182,0],'8db600',9287168], ['nbs-iscc-p:chartreusegreen.116','chartreusegreen','chartreuse green',[189,218,87],'bdda57',12442199], ['nbs-iscc-p:chartreuseyellow.98','chartreuseyellow','chartreuse yellow',[233,228,80],'e9e450',15328336], ['nbs-iscc-p:chaste.263','chaste','chaste',[242,243,244],'f2f3f4',15922164], ['nbs-iscc-p:chateau.172','chateau','chateau',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:cheddarcheese.71','cheddarcheese','cheddar cheese',[227,168,87],'e3a857',14919767], ['nbs-iscc-p:cheer.82','cheer','cheer',[243,195,0],'f3c300',15975168], ['nbs-iscc-p:cheerfulyellow.89','cheerfulyellow','cheerful yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:cheerfulyellow.92','cheerfulyellow','cheerful yellow',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:chelseayellow.101','chelseayellow','chelsea yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-p:chelseayellow.104','chelseayellow','chelsea yellow',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:cherry.11','cherry','cherry',[190,0,50],'be0032',12451890], ['nbs-iscc-p:chili.159','chili','chili ',[0,166,147],'00a693',42643], ['nbs-iscc-p:chinapink.248','chinapink','china pink',[222,111,161],'de6fa1',14577569], ['nbs-iscc-p:chinapink.255','chinapink','china pink',[179,68,108],'b3446c',11748460], ['nbs-iscc-p:chinarose.19','chinarose','china rose',[144,93,93],'905d5d',9461085], ['nbs-iscc-p:chinasea.172','chinasea','china sea',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:chive.125','chive','chive',[74,93,35],'4a5d23',4873507], ['nbs-iscc-p:chive.137','chive','chive',[53,94,59],'355e3b',3497531], ['nbs-iscc-p:christmasgreen.151','christmasgreen','christmas green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:chrysanthemumyelllow.82','chrysanthemumyelllow','chrysanthemum yelllow',[243,195,0],'f3c300',15975168], ['nbs-iscc-p:chrysolitegreen.120','chrysolitegreen','chrysolite green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:cinderella.83','cinderella','cinderella',[250,218,94],'fada5e',16439902], ['nbs-iscc-p:cineraria.262','cineraria','cineraria',[145,95,109],'915f6d',9527149], ['nbs-iscc-p:cinnamon.54','cinnamon','cinnamon',[174,105,56],'ae6938',11430200], ['nbs-iscc-p:cinnamoncream.31','cinnamoncream','cinnamon cream',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:citronbronze.95','citronbronze','citron bronze',[108,84,30],'6c541e',7099422], ['nbs-iscc-p:citrongray.94','citrongray','citron gray',[150,113,23],'967117',9859351], ['nbs-iscc-p:citrongray.109','citrongray','citron gray',[140,135,103],'8c8767',9209703], ['nbs-iscc-p:citronyellow.86','citronyellow','citron yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:citronyellow.87','citronyellow','citron yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-p:citronyellow.101','citronyellow','citron yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-p:citronyellow.102','citronyellow','citron yellow',[185,180,89],'b9b459',12170329], ['nbs-iscc-p:classicblue.169','classicblue','classic blue',[0,119,145],'007791',30609], ['nbs-iscc-p:classicblue.182','classicblue','classic blue',[67,107,149],'436b95',4418453], ['nbs-iscc-p:clementine.249','clementine','clementine',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:cleopatra.148','cleopatra','cleopatra',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:clivia.53','clivia','clivia',[217,144,88],'d99058',14258264], ['nbs-iscc-p:cloister.148','cloister','cloister',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:cloister.184','cloister','cloister',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:cloudcream.89','cloudcream','cloud cream',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:cloudcream.92','cloudcream','cloud cream',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:cloudgray.226','cloudgray','cloud gray',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:cloudyblue.184','cloudyblue','cloudy blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:clover.251','clover','clover',[193,126,145],'c17e91',12680849], ['nbs-iscc-p:cocoabronze.106','cocoabronze','cocoa bronze',[134,126,54],'867e36',8814134], ['nbs-iscc-p:cocoabrown.57','cocoabrown','cocoa brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-p:coldmorn.214','coldmorn','cold morn',[150,144,171],'9690ab',9867435], ['nbs-iscc-p:coldmorn.227','coldmorn','cold morn',[170,152,169],'aa98a9',11180201], ['nbs-iscc-p:colonialblue.183','colonialblue','colonial blue',[0,48,78],'00304e',12366], ['nbs-iscc-p:colonialcream.89','colonialcream','colonial cream',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:colonialexteriorgreen.145','colonialexteriorgreen','colonial exterior green',[59,120,97],'3b7861',3897441], ['nbs-iscc-p:conclude.92','conclude','conclude',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:congo.43','congo','congo',[121,68,59],'79443b',7947323], ['nbs-iscc-p:congoblue.186','congoblue','congo blue',[83,104,120],'536878',5466232], ['nbs-iscc-p:congobrown.55','congobrown','congo brown',[128,70,27],'80461b',8406555], ['nbs-iscc-p:congobrown.58','congobrown','congo brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-p:conifer.127','conifer','conifer',[81,87,68],'515744',5330756], ['nbs-iscc-p:continentalblue.234','continentalblue','continental blue',[93,85,91],'5d555b',6116699], ['nbs-iscc-p:cooleve.149','cooleve','cool eve',[141,163,153],'8da399',9282457], ['nbs-iscc-p:copper.37','copper','copper',[203,109,81],'cb6d51',13331793], ['nbs-iscc-p:copperbronze.54','copperbronze','copper bronze',[174,105,56],'ae6938',11430200], ['nbs-iscc-p:coppercream.31','coppercream','copper cream',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:coquette.252','coquette','coquette',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-p:coral.3','coral','coral',[228,113,122],'e4717a',14971258], ['nbs-iscc-p:coralblush.4','coralblush','coral blush',[249,204,202],'f9ccca',16370890], ['nbs-iscc-p:coralblush.28','coralblush','coral blush',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:coralcloud.28','coralcloud','coral cloud',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:coralgold.37','coralgold','coral gold',[203,109,81],'cb6d51',13331793], ['nbs-iscc-p:coralpink.26','coralpink','coral pink',[248,131,121],'f88379',16286585], ['nbs-iscc-p:coralrose.3','coralrose','coral rose',[228,113,122],'e4717a',14971258], ['nbs-iscc-p:coronation.259','coronation','coronation',[103,49,71],'673147',6762823], ['nbs-iscc-p:coronetblue.182','coronetblue','coronet blue',[67,107,149],'436b95',4418453], ['nbs-iscc-p:corsagepink.252','corsagepink','corsage pink',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-p:corsair.187','corsair','corsair',[54,69,79],'36454f',3556687], ['nbs-iscc-p:corydalis.119','corydalis','corydalis',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:corydalis.121','corydalis','corydalis',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:cosmicblue.182','cosmicblue','cosmic blue',[67,107,149],'436b95',4418453], ['nbs-iscc-p:cosmospink.221','cosmospink','cosmos pink',[213,186,219],'d5badb',14007003], ['nbs-iscc-p:cosmospink.226','cosmospink','cosmos pink',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:cowslip.52','cowslip','cowslip',[250,181,127],'fab57f',16430463], ['nbs-iscc-p:crabpink.4','crabpink','crab pink',[249,204,202],'f9ccca',16370890], ['nbs-iscc-p:crabpink.7','crabpink','crab pink',[234,216,215],'ead8d7',15390935], ['nbs-iscc-p:cream.92','cream','cream',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:creamblush.73','creamblush','cream blush',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:creamchant.104','creamchant','cream chant',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:creamcheese.92','creamcheese','cream cheese',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:creamdelight.104','creamdelight','cream delight',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:creamdream.92','creamdream','cream dream',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:creamgold.86','creamgold','cream gold',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:creampearl.92','creampearl','cream pearl',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:creamtone.89','creamtone','cream tone',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:creamtone.92','creamtone','cream tone',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:creamwhite.92','creamwhite','cream white',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:creamyellow.89','creamyellow','cream yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:creolepink.31','creolepink','creole pink',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:crest.159','crest','crest',[0,166,147],'00a693',42643], ['nbs-iscc-p:crimsonglory.11','crimsonglory','crimson glory',[190,0,50],'be0032',12451890], ['nbs-iscc-p:crispblue.171','crispblue','crisp blue',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-p:crocusrose.249','crocusrose','crocus rose',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:cruiseblue.173','cruiseblue','cruise blue',[54,117,136],'367588',3569032], ['nbs-iscc-p:cruiseblue.182','cruiseblue','cruise blue',[67,107,149],'436b95',4418453], ['nbs-iscc-p:crystalblue.168','crystalblue','crystal blue',[35,158,186],'239eba',2334394], ['nbs-iscc-p:crystalblue.171','crystalblue','crystal blue',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-p:cubanorchid.240','cubanorchid','cuban orchid',[183,132,167],'b784a7',12027047], ['nbs-iscc-p:cubanorchid.250','cubanorchid','cuban orchid',[213,151,174],'d597ae',13997998], ['nbs-iscc-p:cubansand.87','cubansand','cuban sand',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-p:cubansand.88','cubansand','cuban sand',[171,145,68],'ab9144',11243844], ['nbs-iscc-p:cuddleblue.184','cuddleblue','cuddle blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:cuddleblue.185','cuddleblue','cuddle blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:cupidblue.171','cupidblue','cupid blue',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-p:cyanblue.173','cyanblue','cyan blue',[54,117,136],'367588',3569032], ['nbs-iscc-p:cypress.136','cypress','cypress',[103,146,103],'679267',6787687], ['nbs-iscc-p:daphnepink.251','daphnepink','daphne pink',[193,126,145],'c17e91',12680849], ['nbs-iscc-p:darkforest.151','darkforest','dark forest',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:darkfuchsia.237','darkfuchsia','dark fuchsia',[158,79,136],'9e4f88',10375048], ['nbs-iscc-p:dawnglow.226','dawnglow','dawn glow',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:dawnglow.252','dawnglow','dawn glow',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-p:dawnpink.249','dawnpink','dawn pink',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:daybreak.227','daybreak','daybreak',[170,152,169],'aa98a9',11180201], ['nbs-iscc-p:daydream.214','daydream','day dream',[150,144,171],'9690ab',9867435], ['nbs-iscc-p:dazzleblue.169','dazzleblue','dazzle blue',[0,119,145],'007791',30609], ['nbs-iscc-p:debonair.185','debonair','debonair',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:debutanteblue.171','debutanteblue','debutante blue',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-p:debutanteblue.184','debutanteblue','debutante blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:debutantepink.2','debutantepink','debutante pink',[234,147,153],'ea9399',15373209], ['nbs-iscc-p:debutanteyellow.101','debutanteyellow','debutante yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-p:deephelleborered.262','deephelleborered','deep hellebore red ',[145,95,109],'915f6d',9527149], ['nbs-iscc-p:deeppurple.229','deeppurple','deep purple',[80,64,77],'50404d',5259341], ['nbs-iscc-p:deeppurple.230','deeppurple','deep purple',[41,30,41],'291e29',2694697], ['nbs-iscc-p:deeppurple.235','deeppurple','deep purple',[36,33,36],'242124',2367780], ['nbs-iscc-p:deepravine.95','deepravine','deep ravine',[108,84,30],'6c541e',7099422], ['nbs-iscc-p:deepreverie.234','deepreverie','deep reverie',[93,85,91],'5d555b',6116699], ['nbs-iscc-p:deepsea.164','deepsea','deep sea',[49,120,115],'317873',3242099], ['nbs-iscc-p:deeptwilight.63','deeptwilight','deep twilight',[142,130,121],'8e8279',9339513], ['nbs-iscc-p:deepviolet.211','deepviolet','deep violet',[96,78,129],'604e81',6311553], ['nbs-iscc-p:deepviolet.212','deepviolet','deep violet',[47,33,64],'2f2140',3088704], ['nbs-iscc-p:deepwater.182','deepwater','deep water',[67,107,149],'436b95',4418453], ['nbs-iscc-p:delectable.168','delectable','delectable',[35,158,186],'239eba',2334394], ['nbs-iscc-p:delectable.172','delectable','delectable',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:delectable.181','delectable','delectable',[112,163,204],'70a3cc',7381964], ['nbs-iscc-p:delight.226','delight','delight',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:delmonte.228','delmonte','del monte',[121,104,120],'796878',7956600], ['nbs-iscc-p:delta.173','delta','delta',[54,117,136],'367588',3569032], ['nbs-iscc-p:delusion.171','delusion','delusion ',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-p:demonblue.192','demonblue','demon blue',[81,88,94],'51585e',5331038], ['nbs-iscc-p:demureblue.184','demureblue','demure blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:depthgreen.151','depthgreen','depth green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:desertbrown.4','desertbrown','desert brown',[249,204,202],'f9ccca',16370890], ['nbs-iscc-p:desertdust.89','desertdust','desert dust',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:desertdust.92','desertdust','desert dust',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:desertglass.222','desertglass','desert glass',[182,149,192],'b695c0',11965888], ['nbs-iscc-p:desertmist.73','desertmist','desert mist',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:desertpalm.110','desertpalm','desert palm',[91,88,66],'5b5842',5986370], ['nbs-iscc-p:desertpride.121','desertpride','desert pride',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:desertsand.76','desertsand','desert sand',[193,154,107],'c19a6b',12687979], ['nbs-iscc-p:desirable.148','desirable','desirable',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:desire.221','desire','desire',[213,186,219],'d5badb',14007003], ['nbs-iscc-p:dewkist.154','dewkist','dewkist ',[178,190,181],'b2beb5',11714229], ['nbs-iscc-p:dewkist.264','dewkist','dewkist ',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-p:diadem.244','diadem','diadem',[170,138,158],'aa8a9e',11176606], ['nbs-iscc-p:dignity.5','dignity','dignity',[222,165,164],'dea5a4',14591396], ['nbs-iscc-p:dignity.249','dignity','dignity',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:dignity.252','dignity','dignity',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-p:distinction.262','distinction','distinction',[145,95,109],'915f6d',9527149], ['nbs-iscc-p:divablue.194','divablue','diva blue',[48,38,122],'30267a',3155578], ['nbs-iscc-p:divablue.195','divablue','diva blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc-p:divineblue.181','divineblue','divine blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-p:dollyvarden.4','dollyvarden','dolly varden',[249,204,202],'f9ccca',16370890], ['nbs-iscc-p:dovegray.232','dovegray','dove gray',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-p:dovegray.253','dovegray','dove gray',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-p:drabolive.120','drabolive','drab olive',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:dreamblue.180','dreamblue','dream blue',[161,202,241],'a1caf1',10603249], ['nbs-iscc-p:dreamcream.121','dreamcream','dream cream',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:dreamfluff.231','dreamfluff','dream fluff',[232,227,229],'e8e3e5',15262693], ['nbs-iscc-p:dreamstuff.249','dreamstuff','dream stuff',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:dreamyblue.185','dreamyblue','dreamy blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:driedleaf.86','driedleaf','dried leaf',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:drizzle.154','drizzle','drizzle',[178,190,181],'b2beb5',11714229], ['nbs-iscc-p:dryad.163','dryad','dryad',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:dryadrose.31','dryadrose','dryad rose ',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:dubarryblue.159','dubarryblue','du barry blue',[0,166,147],'00a693',42643], ['nbs-iscc-p:ducklingblue.186','ducklingblue','duckling blue',[83,104,120],'536878',5466232], ['nbs-iscc-p:ducklingblue.187','ducklingblue','duckling blue',[54,69,79],'36454f',3556687], ['nbs-iscc-p:duskyblue.185','duskyblue','dusky blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:duskycitron.120','duskycitron','dusky citron',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:duskygreen.122','duskygreen','dusky green',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:dustygreen.120','dustygreen','dusty green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:dustygreen.122','dustygreen','dusty green',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:dutchcream.73','dutchcream','dutch cream',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:dutchcream.92','dutchcream','dutch cream',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:dynastygreen.160','dynastygreen','dynasty green',[0,122,116],'007a74',31348], ['nbs-iscc-p:earthbrown.58','earthbrown','earth brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-p:easterbonnet.184','easterbonnet','easter bonnet',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:eastereggyellow.86','eastereggyellow','easter egg yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:ecru.89','ecru','ecru',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:ecrucream.89','ecrucream','ecru cream',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:ecrucream.92','ecrucream','ecru cream',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:eerieblue.184','eerieblue','eerie blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:eggplant.229','eggplant','egg plant ',[80,64,77],'50404d',5259341], ['nbs-iscc-p:eggplant.230','eggplant','egg plant ',[41,30,41],'291e29',2694697], ['nbs-iscc-p:eggshell.73','eggshell','egg shell',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:eggshell.89','eggshell','egg shell',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:egyptianred.16','egyptianred','egyptian red',[114,47,55],'722f37',7483191], ['nbs-iscc-p:eighteenthcenturycitron.120','eighteenthcenturycitron','eighteenth century citron',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:eighteenthcenturygreen.122','eighteenthcenturygreen','eighteenth century green',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:eighteenthcenturytan.18','eighteenthcenturytan','eighteenth century tan',[173,136,132],'ad8884',11372676], ['nbs-iscc-p:eighteenthcenturyturquoise.173','eighteenthcenturyturquoise','eighteenth century turquoise',[54,117,136],'367588',3569032], ['nbs-iscc-p:eighteenthcenturyturquoise.186','eighteenthcenturyturquoise','eighteenth century turquoise',[83,104,120],'536878',5466232], ['nbs-iscc-p:eighteenthcenturyviolet.245','eighteenthcenturyviolet','eighteenth century violet',[131,100,121],'836479',8610937], ['nbs-iscc-p:eighteenthcenturyyellow.90','eighteenthcenturyyellow','eighteenth century yellow',[194,178,128],'c2b280',12759680], ['nbs-iscc-p:electra.162','electra','electra',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:elfgreen.149','elfgreen','elf green',[141,163,153],'8da399',9282457], ['nbs-iscc-p:elfgreen.163','elfgreen','elf green',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:elm.122','elm','elm',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:emeraldgreen.134','emeraldgreen','emerald green',[182,229,175],'b6e5af',11986351], ['nbs-iscc-p:emeraldisle.139','emeraldisle','emerald isle',[0,136,86],'008856',34902], ['nbs-iscc-p:empireyellow.82','empireyellow','empire yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-p:empireyellow.83','empireyellow','empire yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-p:empiricalblue.163','empiricalblue','empirical blue',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:enchantress.37','enchantress','enchantress',[203,109,81],'cb6d51',13331793], ['nbs-iscc-p:enduring.163','enduring','enduring',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:enduring.172','enduring','enduring',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:englishmist.155','englishmist','english mist',[125,137,132],'7d8984',8227204], ['nbs-iscc-p:erie.164','erie','erie',[49,120,115],'317873',3242099], ['nbs-iscc-p:etherialgreen.119','etherialgreen','etherial green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:etherialgreen.121','etherialgreen','etherial green',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:eucalyptusgreen.122','eucalyptusgreen','eucalyptus green ',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:evegreen.130','evegreen','eve green',[131,211,125],'83d37d',8639357], ['nbs-iscc-p:evegreen.131','evegreen','eve green',[68,148,74],'44944a',4494410], ['nbs-iscc-p:eveningglow.4','eveningglow','evening glow',[249,204,202],'f9ccca',16370890], ['nbs-iscc-p:eveninghaze.5','eveninghaze','evening haze',[222,165,164],'dea5a4',14591396], ['nbs-iscc-p:eventide.253','eventide','eventide',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-p:everglade.267','everglade','everglade',[34,34,34],'222222',2236962], ['nbs-iscc-p:fable.231','fable','fable',[232,227,229],'e8e3e5',15262693], ['nbs-iscc-p:fairygold.101','fairygold','fairy gold',[234,230,121],'eae679',15394425], ['nbs-iscc-p:fairyland.148','fairyland','fairy land ',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:fairyland.162','fairyland','fairy land ',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:fairyprincess.189','fairyprincess','fairy princess',[233,233,237],'e9e9ed',15329773], ['nbs-iscc-p:falcon.64','falcon','falcon',[91,80,79],'5b504f',5984335], ['nbs-iscc-p:fallblue.185','fallblue','fall blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:fallblue.203','fallblue','fall blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-p:fallbronze.88','fallbronze','fall bronze',[171,145,68],'ab9144',11243844], ['nbs-iscc-p:fallleaf.86','fallleaf','fall leaf',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:fallleaf.87','fallleaf','fall leaf',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-p:fallyellow.86','fallyellow','fall yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:fallyellow.87','fallyellow','fall yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-p:fancyfree.148','fancyfree','fancy free',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:fanfare.169','fanfare','fanfare',[0,119,145],'007791',30609], ['nbs-iscc-p:fantasia.148','fantasia','fantasia',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:fantasyrose.32','fantasyrose','fantasy rose',[199,173,163],'c7ada3',13086115], ['nbs-iscc-p:fantasyyellow.89','fantasyyellow','fantasy yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:farhorizon.156','farhorizon','far horizon',[78,87,85],'4e5755',5134165], ['nbs-iscc-p:favorite.149','favorite','favorite',[141,163,153],'8da399',9282457], ['nbs-iscc-p:ferndell.137','ferndell','ferndell',[53,94,59],'355e3b',3497531], ['nbs-iscc-p:fernery.146','fernery','fernery',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-p:ferngreen.120','ferngreen','fern green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:fernlane.148','fernlane','fern lane ',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:festival.140','festival','festival',[62,180,137],'3eb489',4109449], ['nbs-iscc-p:festival.159','festival','festival',[0,166,147],'00a693',42643], ['nbs-iscc-p:festivegreen.129','festivegreen','festive green',[39,166,76],'27a64c',2598476], ['nbs-iscc-p:festivegreen.130','festivegreen','festive green',[131,211,125],'83d37d',8639357], ['nbs-iscc-p:festoon.140','festoon','festoon',[62,180,137],'3eb489',4109449], ['nbs-iscc-p:fidelity.202','fidelity','fidelity',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-p:finesse.32','finesse','finesse',[199,173,163],'c7ada3',13086115], ['nbs-iscc-p:firecracker.35','firecracker','firecracker',[217,96,59],'d9603b',14245947], ['nbs-iscc-p:firefly.3','firefly','fire fly ',[228,113,122],'e4717a',14971258], ['nbs-iscc-p:firgreen.120','firgreen','fir green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:firmamentblue.196','firmamentblue','firmament blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-p:firmamentgray.184','firmamentgray','firmament gray',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:firmamentgray.189','firmamentgray','firmament gray',[233,233,237],'e9e9ed',15329773], ['nbs-iscc-p:firstlady.240','firstlady','first lady',[183,132,167],'b784a7',12027047], ['nbs-iscc-p:firstlady.248','firstlady','first lady',[222,111,161],'de6fa1',14577569], ['nbs-iscc-p:flame.11','flame','flame',[190,0,50],'be0032',12451890], ['nbs-iscc-p:flame.12','flame','flame',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-p:flamingopink.2','flamingopink','flamingo pink',[234,147,153],'ea9399',15373209], ['nbs-iscc-p:flash.12','flash','flash',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-p:flaxflowerblue.195','flaxflowerblue','flax flower blue ',[108,121,184],'6c79b8',7109048], ['nbs-iscc-p:flemishblue.186','flemishblue','flemish blue',[83,104,120],'536878',5466232], ['nbs-iscc-p:fleshcream.31','fleshcream','flesh cream',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:fleshcream.73','fleshcream','flesh cream',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:fleshpink.31','fleshpink','flesh pink',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:fleshtint.28','fleshtint','flesh tint',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:fleshtint.31','fleshtint','flesh tint',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:flint.23','flint','flint',[92,80,79],'5c504f',6049871], ['nbs-iscc-p:flirtation.227','flirtation','flirtation',[170,152,169],'aa98a9',11180201], ['nbs-iscc-p:flowerlet.119','flowerlet','flowerlet',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:fogblue.203','fogblue','fog blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-p:foggreen.149','foggreen','fog green',[141,163,153],'8da399',9282457], ['nbs-iscc-p:fogyellow.91','fogyellow','fog yellow',[161,143,96],'a18f60',10588000], ['nbs-iscc-p:foliage.117','foliage','foliage',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-p:forestshade.136','forestshade','forest shade',[103,146,103],'679267',6787687], ['nbs-iscc-p:fortune.206','fortune','fortune',[126,115,184],'7e73b8',8287160], ['nbs-iscc-p:fountainblue.202','fountainblue','fountain blue',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-p:fountaingreen.130','fountaingreen','fountain green',[131,211,125],'83d37d',8639357], ['nbs-iscc-p:fountaingreen.134','fountaingreen','fountain green',[182,229,175],'b6e5af',11986351], ['nbs-iscc-p:fourleafclover.137','fourleafclover','four-leaf clover',[53,94,59],'355e3b',3497531], ['nbs-iscc-p:frenchbeige.57','frenchbeige','french beige',[166,123,91],'a67b5b',10910555], ['nbs-iscc-p:frenchblue.199','frenchblue','french blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-p:frenchlilac.245','frenchlilac','french lilac',[131,100,121],'836479',8610937], ['nbs-iscc-p:frenchnude.29','frenchnude','french nude',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-p:frostynight.189','frostynight','frosty night',[233,233,237],'e9e9ed',15329773], ['nbs-iscc-p:froth.92','froth','froth',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:frozendew.184','frozendew','frozen dew',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:fuchsia.12','fuchsia','fuchsia',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-p:fuchsia.255','fuchsia','fuchsia',[179,68,108],'b3446c',11748460], ['nbs-iscc-p:fuchsiapink.247','fuchsiapink','fuchsia pink',[230,143,172],'e68fac',15110060], ['nbs-iscc-p:fuchsiapink.248','fuchsiapink','fuchsia pink',[222,111,161],'de6fa1',14577569], ['nbs-iscc-p:fuchsiapink.248','fuchsiapink','fuchsia pink',[222,111,161],'de6fa1',14577569], ['nbs-iscc-p:fuchsiapink.250','fuchsiapink','fuchsia pink',[213,151,174],'d597ae',13997998], ['nbs-iscc-p:fuchsiarose.254','fuchsiarose','fuchsia rose',[206,70,118],'ce4676',13518454], ['nbs-iscc-p:fuchsiarose.255','fuchsiarose','fuchsia rose',[179,68,108],'b3446c',11748460], ['nbs-iscc-p:galecloud.192','galecloud','gale cloud',[81,88,94],'51585e',5331038], ['nbs-iscc-p:galewinds.192','galewinds','gale winds',[81,88,94],'51585e',5331038], ['nbs-iscc-p:gardenpool.148','gardenpool','garden pool',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:garnetrose.16','garnetrose','garnet rose',[114,47,55],'722f37',7483191], ['nbs-iscc-p:gayyellow.98','gayyellow','gay yellow',[233,228,80],'e9e450',15328336], ['nbs-iscc-p:gayyellow.101','gayyellow','gay yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-p:genevablue.183','genevablue','geneva blue',[0,48,78],'00304e',12366], ['nbs-iscc-p:genevablue.204','genevablue','geneva blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-p:ghostlyblue.184','ghostlyblue','ghostly blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:ghostlyblue.202','ghostlyblue','ghostly blue',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-p:gleam.101','gleam','gleam',[234,230,121],'eae679',15394425], ['nbs-iscc-p:glintogold.86','glintogold','glint o\'gold',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:glintogold.87','glintogold','glint o\'gold',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-p:glorygreen.116','glorygreen','glory green',[189,218,87],'bdda57',12442199], ['nbs-iscc-p:glorygreenblue.164','glorygreenblue','glory green-blue',[49,120,115],'317873',3242099], ['nbs-iscc-p:goldcoast.88','goldcoast','gold coast',[171,145,68],'ab9144',11243844], ['nbs-iscc-p:goldenapricot.52','goldenapricot','golden apricot',[250,181,127],'fab57f',16430463], ['nbs-iscc-p:goldenapricot.53','goldenapricot','golden apricot',[217,144,88],'d99058',14258264], ['nbs-iscc-p:goldenbrown.54','goldenbrown','golden brown',[174,105,56],'ae6938',11430200], ['nbs-iscc-p:goldenbuff.86','goldenbuff','golden buff',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:goldencream.86','goldencream','golden cream',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:goldendawn.86','goldendawn','golden dawn',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:goldenfleece.73','goldenfleece','golden fleece',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:goldenfleece.89','goldenfleece','golden fleece',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:goldenfleece.90','goldenfleece','golden fleece',[194,178,128],'c2b280',12759680], ['nbs-iscc-p:goldengem.86','goldengem','golden gem',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:goldenglow.83','goldenglow','golden glow',[250,218,94],'fada5e',16439902], ['nbs-iscc-p:goldenmist.105','goldenmist','golden mist',[185,181,125],'b9b57d',12170621], ['nbs-iscc-p:goldenmist.119','goldenmist','golden mist',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:goldenmist.121','goldenmist','golden mist',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:goldenpeach.71','goldenpeach','golden peach',[227,168,87],'e3a857',14919767], ['nbs-iscc-p:goldenrapture.83','goldenrapture','golden rapture',[250,218,94],'fada5e',16439902], ['nbs-iscc-p:goldenray.83','goldenray','golden ray',[250,218,94],'fada5e',16439902], ['nbs-iscc-p:goldenray.86','goldenray','golden ray',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:goldenrod.83','goldenrod','golden rod',[250,218,94],'fada5e',16439902], ['nbs-iscc-p:goldensheaf.89','goldensheaf','golden sheaf',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:goldensulphur.101','goldensulphur','golden sulphur',[234,230,121],'eae679',15394425], ['nbs-iscc-p:goldentan.53','goldentan','golden tan',[217,144,88],'d99058',14258264], ['nbs-iscc-p:goldenwest.72','goldenwest','golden west',[190,138,61],'be8a3d',12487229], ['nbs-iscc-p:goldenyellow.86','goldenyellow','golden yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:goldfantasy.83','goldfantasy','gold fantasy',[250,218,94],'fada5e',16439902], ['nbs-iscc-p:goldglow.101','goldglow','gold glow',[234,230,121],'eae679',15394425], ['nbs-iscc-p:goldglow.104','goldglow','gold glow',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:goldpheasant.54','goldpheasant','gold pheasant',[174,105,56],'ae6938',11430200], ['nbs-iscc-p:goldrush.71','goldrush','gold rush',[227,168,87],'e3a857',14919767], ['nbs-iscc-p:goodomen.210','goodomen','good omen',[140,130,182],'8c82b6',9208502], ['nbs-iscc-p:goodomen.181','goodomen','good omen',[112,163,204],'70a3cc',7381964], ['nbs-iscc-p:gorge.154','gorge','gorge',[178,190,181],'b2beb5',11714229], ['nbs-iscc-p:gorge.264','gorge','gorge',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-p:graciousgreen.148','graciousgreen','gracious green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:grandcanyon.42','grandcanyon','grand canyon',[168,124,109],'a87c6d',11041901], ['nbs-iscc-p:grandcanyon.57','grandcanyon','grand canyon',[166,123,91],'a67b5b',10910555], ['nbs-iscc-p:graniteblue.186','graniteblue','granite blue',[83,104,120],'536878',5466232], ['nbs-iscc-p:granitegreen.149','granitegreen','granite green',[141,163,153],'8da399',9282457], ['nbs-iscc-p:grape.212','grape','grape',[47,33,64],'2f2140',3088704], ['nbs-iscc-p:grape.229','grape','grape',[80,64,77],'50404d',5259341], ['nbs-iscc-p:grapefruitgreen.98','grapefruitgreen','grapefruit green',[233,228,80],'e9e450',15328336], ['nbs-iscc-p:grapefruitgreen.99','grapefruitgreen','grapefruit green',[190,183,46],'beb72e',12498734], ['nbs-iscc-p:grapefruitgreen.101','grapefruitgreen','grapefruit green',[234,230,121],'eae679',15394425], ['nbs-iscc-p:grapefruitgreen.102','grapefruitgreen','grapefruit green',[185,180,89],'b9b459',12170329], ['nbs-iscc-p:grapegreen.120','grapegreen','grape green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:gravel.33','gravel','gravel',[194,172,153],'c2ac99',12758169], ['nbs-iscc-p:gravel.79','gravel','gravel',[174,155,130],'ae9b82',11443074], ['nbs-iscc-p:gravel.93','gravel','gravel',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-p:grayblue.190','grayblue','gray blue',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-p:graydream.92','graydream','gray dream',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:graydream.93','graydream','gray dream',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-p:graydrift.184','graydrift','gray drift',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:graydrift.190','graydrift','gray drift',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-p:graygreen.150','graygreen','gray green',[94,113,106],'5e716a',6189418], ['nbs-iscc-p:graylady.190','graylady','gray lady',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-p:graylight.10','graylight','gray light',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-p:graylight.264','graylight','gray light',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-p:graymist.185','graymist','gray mist',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:graymist.190','graymist','gray mist',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-p:graymood.234','graymood','gray mood',[93,85,91],'5d555b',6116699], ['nbs-iscc-p:graymorn.63','graymorn','gray morn',[142,130,121],'8e8279',9339513], ['nbs-iscc-p:graynight.186','graynight','gray night',[83,104,120],'536878',5466232], ['nbs-iscc-p:graysand.90','graysand','gray sand',[194,178,128],'c2b280',12759680], ['nbs-iscc-p:graysand.93','graysand','gray sand',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-p:grecianrose.26','grecianrose','grecian rose',[248,131,121],'f88379',16286585], ['nbs-iscc-p:grecianrose.29','grecianrose','grecian rose',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-p:greenbanana.102','greenbanana','green banana',[185,180,89],'b9b459',12170329], ['nbs-iscc-p:greenbanana.105','greenbanana','green banana',[185,181,125],'b9b57d',12170621], ['nbs-iscc-p:greenblack.151','greenblack','green black',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:greenblack.156','greenblack','green black',[78,87,85],'4e5755',5134165], ['nbs-iscc-p:greenblack.266','greenblack','green black',[85,85,85],'555555',5592405], ['nbs-iscc-p:greenblack.267','greenblack','green black',[34,34,34],'222222',2236962], ['nbs-iscc-p:greenbreath.92','greenbreath','green breath',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:greencharm.101','greencharm','green charm',[234,230,121],'eae679',15394425], ['nbs-iscc-p:greencharm.119','greencharm','green charm',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:greendream.162','greendream','green dream',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:greenery.115','greenery','greenery',[141,182,0],'8db600',9287168], ['nbs-iscc-p:greenery.117','greenery','greenery',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-p:greeneyes.136','greeneyes','green eyes',[103,146,103],'679267',6787687], ['nbs-iscc-p:greenfog.122','greenfog','green fog',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:greenglory.160','greenglory','green glory',[0,122,116],'007a74',31348], ['nbs-iscc-p:greenglory.164','greenglory','green glory',[49,120,115],'317873',3242099], ['nbs-iscc-p:greenglow.148','greenglow','green glow',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:greengrass.120','greengrass','green grass',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:greenhaze.122','greenhaze','green haze',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:greenice.92','greenice','green ice',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:greenice.153','greenice','green ice',[223,237,232],'dfede8',14675432], ['nbs-iscc-p:greenlily.148','greenlily','green lily',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:greenmatrix.165','greenmatrix','green matrix',[0,75,73],'004b49',19273], ['nbs-iscc-p:greenmist.122','greenmist','green mist',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:greenmoss.120','greenmoss','green moss',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:greenoasis.103','greenoasis','green oasis',[152,148,62],'98943e',9999422], ['nbs-iscc-p:greenoasis.117','greenoasis','green oasis',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-p:greenolive.120','greenolive','green olive ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:greenpride.119','greenpride','green pride',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:greenravine.150','greenravine','green ravine',[94,113,106],'5e716a',6189418], ['nbs-iscc-p:greenrivermist.154','greenrivermist','green river mist',[178,190,181],'b2beb5',11714229], ['nbs-iscc-p:greenslate.157','greenslate','green slate',[30,35,33],'1e2321',1975073], ['nbs-iscc-p:greenspring.117','greenspring','green spring',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-p:greenstone.121','greenstone','green stone',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:greensulphur.102','greensulphur','green sulphur',[185,180,89],'b9b459',12170329], ['nbs-iscc-p:greentea.136','greentea','green tea',[103,146,103],'679267',6787687], ['nbs-iscc-p:greentee.120','greentee','green tee ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:growthgreen.116','growthgreen','growth green',[189,218,87],'bdda57',12442199], ['nbs-iscc-p:guineagreen.164','guineagreen','guinea green',[49,120,115],'317873',3242099], ['nbs-iscc-p:gullgray.233','gullgray','gull gray',[139,133,137],'8b8589',9143689], ['nbs-iscc-p:gumdropgreen.119','gumdropgreen','gumdrop green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:gunmetal.64','gunmetal','gun metal',[91,80,79],'5b504f',5984335], ['nbs-iscc-p:gypsy.55','gypsy','gypsy',[128,70,27],'80461b',8406555], ['nbs-iscc-p:hanginggarden.129','hanginggarden','hanging garden',[39,166,76],'27a64c',2598476], ['nbs-iscc-p:hansayellow.82','hansayellow','hansa yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-p:happyday.104','happyday','happy day',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:happyday.121','happyday','happy day',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:harborblue.184','harborblue','harbor blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:haremblue.184','haremblue','harem blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:harmoniousblue.186','harmoniousblue','harmonious blue',[83,104,120],'536878',5466232], ['nbs-iscc-p:harvestgold.86','harvestgold','harvest gold',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:hawkbrown.95','hawkbrown','hawk brown',[108,84,30],'6c541e',7099422], ['nbs-iscc-p:heartsdesire.15','heartsdesire','heart\'s desire',[171,78,82],'ab4e52',11226706], ['nbs-iscc-p:heavenlycharm.92','heavenlycharm','heavenly charm',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:heavenlyday.104','heavenlyday','heavenly day',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:heavenlyflower.177','heavenlyflower','heavenly flower',[73,151,208],'4997d0',4822992], ['nbs-iscc-p:heavenlygreen.119','heavenlygreen','heavenly green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:heavenlyorchid.252','heavenlyorchid','heavenly orchid',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-p:heavenlypink.4','heavenlypink','heavenly pink',[249,204,202],'f9ccca',16370890], ['nbs-iscc-p:heliotrope.238','heliotrope','heliotrope',[112,41,99],'702963',7350627], ['nbs-iscc-p:heliotrope.242','heliotrope','heliotrope',[93,57,84],'5d3954',6109524], ['nbs-iscc-p:heliotropegray.227','heliotropegray','heliotrope gray',[170,152,169],'aa98a9',11180201], ['nbs-iscc-p:heliotropegray.244','heliotropegray','heliotrope gray',[170,138,158],'aa8a9e',11176606], ['nbs-iscc-p:heliotropegray.253','heliotropegray','heliotrope gray',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-p:hemlock.135','hemlock','hemlock',[147,197,146],'93c592',9684370], ['nbs-iscc-p:hemp.90','hemp','hemp',[194,178,128],'c2b280',12759680], ['nbs-iscc-p:hiawathagreen.164','hiawathagreen','hiawatha green',[49,120,115],'317873',3242099], ['nbs-iscc-p:highland.151','highland','highland',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:holiday.162','holiday','holiday',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:hollandblue.185','hollandblue','holland blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:honeybeige.29','honeybeige','honey beige',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-p:horizon.185','horizon','horizon',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:hortensia.224','hortensia','hortensia',[86,60,92],'563c5c',5651548], ['nbs-iscc-p:hortensia.242','hortensia','hortensia',[93,57,84],'5d3954',6109524], ['nbs-iscc-p:huckleberry.229','huckleberry','huckleberry',[80,64,77],'50404d',5259341], ['nbs-iscc-p:huron.163','huron','huron',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:hussar.204','hussar','hussar',[76,81,109],'4c516d',5001581], ['nbs-iscc-p:iceberggreen.149','iceberggreen','iceberg green',[141,163,153],'8da399',9282457], ['nbs-iscc-p:iceberggreen.185','iceberggreen','iceberg green',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:iceboat.159','iceboat','ice boat',[0,166,147],'00a693',42643], ['nbs-iscc-p:icecap.172','icecap','ice cap',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:iceflow.148','iceflow','ice flow',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:icelandblue.184','icelandblue','iceland blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:icygreen.163','icygreen','icy green',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:icymorn.143','icymorn','icy morn',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-p:icymorn.148','icymorn','icy morn',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:ideal.171','ideal','ideal',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-p:illusion.184','illusion','illusion',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:illusion.190','illusion','illusion',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-p:illusive.226','illusive','illusive',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:independence.212','independence','independence',[47,33,64],'2f2140',3088704], ['nbs-iscc-p:independence.224','independence','independence',[86,60,92],'563c5c',5651548], ['nbs-iscc-p:independence.229','independence','independence',[80,64,77],'50404d',5259341], ['nbs-iscc-p:indianred.38','indianred','indian red',[158,71,50],'9e4732',10372914], ['nbs-iscc-p:inkblue.183','inkblue','ink blue',[0,48,78],'00304e',12366], ['nbs-iscc-p:inkblue.187','inkblue','ink blue',[54,69,79],'36454f',3556687], ['nbs-iscc-p:inspiration.148','inspiration','inspiration',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:intimatemood.261','intimatemood','intimate mood',[175,134,142],'af868e',11503246], ['nbs-iscc-p:ionianblue.183','ionianblue','ionian blue',[0,48,78],'00304e',12366], ['nbs-iscc-p:ionianblue.187','ionianblue','ionian blue',[54,69,79],'36454f',3556687], ['nbs-iscc-p:irishisle.129','irishisle','irish isle',[39,166,76],'27a64c',2598476], ['nbs-iscc-p:irisleaf.127','irisleaf','iris leaf',[81,87,68],'515744',5330756], ['nbs-iscc-p:irisorchid.247','irisorchid','iris orchid',[230,143,172],'e68fac',15110060], ['nbs-iscc-p:irisorchid.248','irisorchid','iris orchid',[222,111,161],'de6fa1',14577569], ['nbs-iscc-p:ironmask.187','ironmask','iron mask',[54,69,79],'36454f',3556687], ['nbs-iscc-p:ironmask.267','ironmask','iron mask',[34,34,34],'222222',2236962], ['nbs-iscc-p:irresistible.255','irresistible','irresistible',[179,68,108],'b3446c',11748460], ['nbs-iscc-p:islandgreen.143','islandgreen','island green',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-p:italianblue.172','italianblue','italian blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:ivory.89','ivory','ivory',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:ivorywhite.89','ivorywhite','ivory white',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:jadecream.104','jadecream','jade cream',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:jadelime.116','jadelime','jade lime',[189,218,87],'bdda57',12442199], ['nbs-iscc-p:jasper.151','jasper','jasper',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:jasper.267','jasper','jasper',[34,34,34],'222222',2236962], ['nbs-iscc-p:jealousy.143','jealousy','jealousy',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-p:jerseycream.89','jerseycream','jersey cream',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:jewelblue.172','jewelblue','jewel blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:jewelgreen.164','jewelgreen','jewel green',[49,120,115],'317873',3242099], ['nbs-iscc-p:joy.135','joy','joy',[147,197,146],'93c592',9684370], ['nbs-iscc-p:junebud.116','junebud','june bud',[189,218,87],'bdda57',12442199], ['nbs-iscc-p:junebud.130','junebud','june bud',[131,211,125],'83d37d',8639357], ['nbs-iscc-p:junegreen.119','junegreen','june green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:jungle.151','jungle','jungle',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:juniper.150','juniper','juniper',[94,113,106],'5e716a',6189418], ['nbs-iscc-p:juniper.151','juniper','juniper',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:kaffa.46','kaffa','kaffa',[103,76,71],'674c47',6769735], ['nbs-iscc-p:killarneygreen.139','killarneygreen','killarney green ',[0,136,86],'008856',34902], ['nbs-iscc-p:kinglear.211','kinglear','king lear',[96,78,129],'604e81',6311553], ['nbs-iscc-p:kingneptune.181','kingneptune','king neptune',[112,163,204],'70a3cc',7381964], ['nbs-iscc-p:kingsransom.53','kingsransom','king\'s ransom',[217,144,88],'d99058',14258264], ['nbs-iscc-p:kittensear.89','kittensear','kitten\'s ear',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:ladyorchid.262','ladyorchid','lady orchid',[145,95,109],'915f6d',9527149], ['nbs-iscc-p:lagoon.164','lagoon','lagoon',[49,120,115],'317873',3242099], ['nbs-iscc-p:lakeblue.178','lakeblue','lake blue',[0,103,165],'0067a5',26533], ['nbs-iscc-p:lakecomo.182','lakecomo','lake como',[67,107,149],'436b95',4418453], ['nbs-iscc-p:lakelouise.182','lakelouise','lake louise',[67,107,149],'436b95',4418453], ['nbs-iscc-p:lambswool.92','lambswool','lamb\'s wool',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:lamer.143','lamer','la mer',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-p:languidlavender.213','languidlavender','languid lavender',[196,195,221],'c4c3dd',12895197], ['nbs-iscc-p:languidlavender.226','languidlavender','languid lavender',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:larkspurblue.181','larkspurblue','larkspur blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-p:larkspurpurple.207','larkspurpurple','larkspur purple',[96,78,151],'604e97',6311575], ['nbs-iscc-p:lava.81','lava','lava',[72,60,50],'483c32',4734002], ['nbs-iscc-p:lava.96','lava','lava',[59,49,33],'3b3121',3879201], ['nbs-iscc-p:leafgreen.129','leafgreen','leaf green',[39,166,76],'27a64c',2598476], ['nbs-iscc-p:lettucegreen.117','lettucegreen','lettuce green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-p:lifegreen.125','lifegreen','life green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-p:lighthearted.104','lighthearted','light hearted',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:lightmauve.5','lightmauve','light mauve',[222,165,164],'dea5a4',14591396], ['nbs-iscc-p:lightmauve.250','lightmauve','light mauve',[213,151,174],'d597ae',13997998], ['nbs-iscc-p:lightoak.76','lightoak','light oak',[193,154,107],'c19a6b',12687979], ['nbs-iscc-p:lightoldrose.26','lightoldrose','light old rose',[248,131,121],'f88379',16286585], ['nbs-iscc-p:lilac.222','lilac','lilac',[182,149,192],'b695c0',11965888], ['nbs-iscc-p:lilacgray.228','lilacgray','lilac gray',[121,104,120],'796878',7956600], ['nbs-iscc-p:lilachint.226','lilachint','lilac hint',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:lilaclavender.214','lilaclavender','lilac lavender',[150,144,171],'9690ab',9867435], ['nbs-iscc-p:lilacshadow.224','lilacshadow','lilac shadow',[86,60,92],'563c5c',5651548], ['nbs-iscc-p:lilacshadow.228','lilacshadow','lilac shadow',[121,104,120],'796878',7956600], ['nbs-iscc-p:liltinggreen.159','liltinggreen','lilting green',[0,166,147],'00a693',42643], ['nbs-iscc-p:lilygreen.105','lilygreen','lily green',[185,181,125],'b9b57d',12170621], ['nbs-iscc-p:lilygreen.119','lilygreen','lily green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:limecream.119','limecream','lime cream',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:limeyellow.98','limeyellow','lime yellow',[233,228,80],'e9e450',15328336], ['nbs-iscc-p:limeyellow.99','limeyellow','lime yellow',[190,183,46],'beb72e',12498734], ['nbs-iscc-p:limeyellow.116','limeyellow','lime yellow',[189,218,87],'bdda57',12442199], ['nbs-iscc-p:londonfog.233','londonfog','london fog',[139,133,137],'8b8589',9143689], ['nbs-iscc-p:lovebird.116','lovebird','love bird',[189,218,87],'bdda57',12442199], ['nbs-iscc-p:lovelight.101','lovelight','love light',[234,230,121],'eae679',15394425], ['nbs-iscc-p:lovely.144','lovely','lovely',[106,171,142],'6aab8e',6990734], ['nbs-iscc-p:loversknot.249','loversknot','lover\'s knot',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:loversnote.184','loversnote','lover\'s note',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:lucerneblue.199','lucerneblue','lucerne blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-p:lullaby.153','lullaby','lullaby',[223,237,232],'dfede8',14675432], ['nbs-iscc-p:lullaby.154','lullaby','lullaby',[178,190,181],'b2beb5',11714229], ['nbs-iscc-p:lullaby.263','lullaby','lullaby',[242,243,244],'f2f3f4',15922164], ['nbs-iscc-p:lullaby.264','lullaby','lullaby',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-p:lushgray.164','lushgray','lush gray',[49,120,115],'317873',3242099], ['nbs-iscc-p:lushgreen.140','lushgreen','lush green',[62,180,137],'3eb489',4109449], ['nbs-iscc-p:lustrousyellow.101','lustrousyellow','lustrous yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-p:lyonsblue.194','lyonsblue','lyons blue',[48,38,122],'30267a',3155578], ['nbs-iscc-p:lyonsblue.196','lyonsblue','lyons blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-p:lyreblue.173','lyreblue','lyre blue',[54,117,136],'367588',3569032], ['nbs-iscc-p:magenta.258','magenta','magenta',[168,81,110],'a8516e',11030894], ['nbs-iscc-p:magentarose.259','magentarose','magenta rose',[103,49,71],'673147',6762823], ['nbs-iscc-p:magical.231','magical','magical',[232,227,229],'e8e3e5',15262693], ['nbs-iscc-p:magicmoon.172','magicmoon','magic moon',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:magicmoon.185','magicmoon','magic moon',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:maidoforleans.221','maidoforleans','maid of orleans',[213,186,219],'d5badb',14007003], ['nbs-iscc-p:maidoforleans.226','maidoforleans','maid of orleans',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:majolica.183','majolica','majolica',[0,48,78],'00304e',12366], ['nbs-iscc-p:mandarinorange.35','mandarinorange','mandarin orange',[217,96,59],'d9603b',14245947], ['nbs-iscc-p:mandarinorange.50','mandarinorange','mandarin orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-p:marble.151','marble','marble',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:marcopolo.173','marcopolo','marco polo',[54,117,136],'367588',3569032], ['nbs-iscc-p:marineblue.173','marineblue','marine blue',[54,117,136],'367588',3569032], ['nbs-iscc-p:marineblue.174','marineblue','marine blue',[0,73,88],'004958',18776], ['nbs-iscc-p:marinecorpsblue.183','marinecorpsblue','marine corps blue',[0,48,78],'00304e',12366], ['nbs-iscc-p:marineglow.148','marineglow','marine glow',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:marketgreen.148','marketgreen','market green ',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:martinique.102','martinique','martinique',[185,180,89],'b9b459',12170329], ['nbs-iscc-p:mauvedecade.262','mauvedecade','mauve decade',[145,95,109],'915f6d',9527149], ['nbs-iscc-p:mauvemist.253','mauvemist','mauve mist',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-p:mauveorchid.261','mauveorchid','mauve orchid',[175,134,142],'af868e',11503246], ['nbs-iscc-p:mauvetaupe.262','mauvetaupe','mauve taupe',[145,95,109],'915f6d',9527149], ['nbs-iscc-p:mauvette.252','mauvette','mauvette',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-p:mayflower.248','mayflower','mayflower',[222,111,161],'de6fa1',14577569], ['nbs-iscc-p:mayflower.251','mayflower','mayflower',[193,126,145],'c17e91',12680849], ['nbs-iscc-p:meadowgreen.140','meadowgreen','meadow green',[62,180,137],'3eb489',4109449], ['nbs-iscc-p:meadowgreen.144','meadowgreen','meadow green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-p:meadowmist.149','meadowmist','meadow mist',[141,163,153],'8da399',9282457], ['nbs-iscc-p:mellowbuff.73','mellowbuff','mellow buff',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:mellowbuff.89','mellowbuff','mellow buff',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:mellowgreen.101','mellowgreen','mellow green',[234,230,121],'eae679',15394425], ['nbs-iscc-p:mellowmauve.262','mellowmauve','mellow mauve',[145,95,109],'915f6d',9527149], ['nbs-iscc-p:mellowmood.227','mellowmood','mellow mood',[170,152,169],'aa98a9',11180201], ['nbs-iscc-p:mellowyellow.86','mellowyellow','mellow yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:mellowyellow.89','mellowyellow','mellow yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:mellowyellow.101','mellowyellow','mellow yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-p:mellowyellow.104','mellowyellow','mellow yellow',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:melodious.185','melodious','melodious',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:memorylane.153','memorylane','memory lane ',[223,237,232],'dfede8',14675432], ['nbs-iscc-p:merrygreen.139','merrygreen','merry green ',[0,136,86],'008856',34902], ['nbs-iscc-p:midnight.183','midnight','midnight ',[0,48,78],'00304e',12366], ['nbs-iscc-p:midnight.187','midnight','midnight ',[54,69,79],'36454f',3556687], ['nbs-iscc-p:midnightbronze.10','midnightbronze','midnight bronze ',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-p:midseason.226','midseason','midseason ',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:mignonette.120','mignonette','mignonette ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:milanoblue.186','milanoblue','milano blue ',[83,104,120],'536878',5466232], ['nbs-iscc-p:milanoblue.203','milanoblue','milano blue ',[140,146,172],'8c92ac',9212588], ['nbs-iscc-p:milkygreen.153','milkygreen','milky green ',[223,237,232],'dfede8',14675432], ['nbs-iscc-p:mincemeat.46','mincemeat','mince meat ',[103,76,71],'674c47',6769735], ['nbs-iscc-p:ming.141','ming','ming ',[0,121,89],'007959',31065], ['nbs-iscc-p:mintlime.135','mintlime','mint lime ',[147,197,146],'93c592',9684370], ['nbs-iscc-p:mintlime.148','mintlime','mint lime ',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:missionwhite.31','missionwhite','mission white ',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:missionwhite.73','missionwhite','mission white ',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:mistedyellow.87','mistedyellow','misted yellow ',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-p:mistletoe.120','mistletoe','mistletoe ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:mistletoe.122','mistletoe','mistletoe ',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:mistycream.89','mistycream','misty cream ',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:mistycream.92','mistycream','misty cream ',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:mistygreen.122','mistygreen','misty green ',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:mistyjade.101','mistyjade','misty jade ',[234,230,121],'eae679',15394425], ['nbs-iscc-p:mistyjade.104','mistyjade','misty jade ',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:mistyjade.119','mistyjade','misty jade ',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:mistylilac.222','mistylilac','misty lilac ',[182,149,192],'b695c0',11965888], ['nbs-iscc-p:mistylilac.227','mistylilac','misty lilac ',[170,152,169],'aa98a9',11180201], ['nbs-iscc-p:mistymorn.92','mistymorn','misty morn ',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:mistymorn.153','mistymorn','misty morn ',[223,237,232],'dfede8',14675432], ['nbs-iscc-p:mistymorn.263','mistymorn','misty morn ',[242,243,244],'f2f3f4',15922164], ['nbs-iscc-p:mistyrose.31','mistyrose','misty rose ',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:modest.154','modest','modest ',[178,190,181],'b2beb5',11714229], ['nbs-iscc-p:mogul.210','mogul','mogul ',[140,130,182],'8c82b6',9208502], ['nbs-iscc-p:mohawk.43','mohawk','mohawk ',[121,68,59],'79443b',7947323], ['nbs-iscc-p:mohawktrail.151','mohawktrail','mohawk trail ',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:monaco.163','monaco','monaco ',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:monastralblue.183','monastralblue','monastral blue ',[0,48,78],'00304e',12366], ['nbs-iscc-p:monastralblue.200','monastralblue','monastral blue ',[78,81,128],'4e5180',5132672], ['nbs-iscc-p:monsignor.237','monsignor','monsignor ',[158,79,136],'9e4f88',10375048], ['nbs-iscc-p:monticellogreen.137','monticellogreen','monticello green ',[53,94,59],'355e3b',3497531], ['nbs-iscc-p:monticellorose.29','monticellorose','monticello rose ',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-p:montroseyellow.116','montroseyellow','montrose yellow ',[189,218,87],'bdda57',12442199], ['nbs-iscc-p:moodbeige.90','moodbeige','mood beige ',[194,178,128],'c2b280',12759680], ['nbs-iscc-p:moodlilac.223','moodlilac','mood lilac ',[134,96,142],'86608e',8806542], ['nbs-iscc-p:moodviolet.228','moodviolet','mood violet ',[121,104,120],'796878',7956600], ['nbs-iscc-p:moonbeam.232','moonbeam','moonbeam ',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-p:moonlight.31','moonlight','moonlight ',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:moonlightbay.162','moonlightbay','moonlight bay ',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:moonlitblue.184','moonlitblue','moonlit blue ',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:moonlitblue.190','moonlitblue','moonlit blue ',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-p:moonlitwater.185','moonlitwater','moonlit water ',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:moonlitwater.203','moonlitwater','moonlit water ',[140,146,172],'8c92ac',9212588], ['nbs-iscc-p:moonmist.10','moonmist','moonmist ',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-p:morningglory.248','morningglory','morning glory ',[222,111,161],'de6fa1',14577569], ['nbs-iscc-p:morningmist.33','morningmist','morning mist ',[194,172,153],'c2ac99',12758169], ['nbs-iscc-p:moth.93','moth','moth ',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-p:moth.121','moth','moth ',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:mountainhaze.5','mountainhaze','mountain haze ',[222,165,164],'dea5a4',14591396], ['nbs-iscc-p:mountainpeakblue.184','mountainpeakblue','mountain peak blue ',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:mountaintop.127','mountaintop','mountain top ',[81,87,68],'515744',5330756], ['nbs-iscc-p:mountaintop.128','mountaintop','mountain top ',[49,54,43],'31362b',3225131], ['nbs-iscc-p:mulberry.228','mulberry','mulberry ',[121,104,120],'796878',7956600], ['nbs-iscc-p:murmur.89','murmur','murmur ',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:murmur.93','murmur','murmur ',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-p:muse.119','muse','muse ',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:mushroom.89','mushroom','mushroom ',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:mushroom.92','mushroom','mushroom ',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:mustard.88','mustard','mustard ',[171,145,68],'ab9144',11243844], ['nbs-iscc-p:mustardcream.86','mustardcream','mustard cream ',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:mustardcream.89','mustardcream','mustard cream ',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:mutedyellow.86','mutedyellow','muted yellow ',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:mutedyellow.101','mutedyellow','muted yellow ',[234,230,121],'eae679',15394425], ['nbs-iscc-p:myrtlegreen.150','myrtlegreen','myrtle green ',[94,113,106],'5e716a',6189418], ['nbs-iscc-p:mysticblue.184','mysticblue','mystic blue ',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:mysticpurple.241','mysticpurple','mystic purple ',[145,92,131],'915c83',9526403], ['nbs-iscc-p:mysticwhite.189','mysticwhite','mystic white ',[233,233,237],'e9e9ed',15329773], ['nbs-iscc-p:myth.226','myth','myth ',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:mythblue.186','mythblue','myth blue ',[83,104,120],'536878',5466232], ['nbs-iscc-p:mythblue.192','mythblue','myth blue ',[81,88,94],'51585e',5331038], ['nbs-iscc-p:nabob.151','nabob','nabob ',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:nabob.187','nabob','nabob ',[54,69,79],'36454f',3556687], ['nbs-iscc-p:nabob.192','nabob','nabob ',[81,88,94],'51585e',5331038], ['nbs-iscc-p:naid.159','naid','naid ',[0,166,147],'00a693',42643], ['nbs-iscc-p:naid.162','naid','naid ',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:naid.163','naid','naid ',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:naive.153','naive','naive ',[223,237,232],'dfede8',14675432], ['nbs-iscc-p:napoleon.197','napoleon','napoleon ',[39,36,88],'272458',2565208], ['nbs-iscc-p:nasturtium.67','nasturtium','nasturtium ',[255,193,79],'ffc14f',16761167], ['nbs-iscc-p:nasturtiumbuff.71','nasturtiumbuff','nasturtium buff ',[227,168,87],'e3a857',14919767], ['nbs-iscc-p:nativeblue.165','nativeblue','native blue',[0,75,73],'004b49',19273], ['nbs-iscc-p:neonblue.168','neonblue','neon blue',[35,158,186],'239eba',2334394], ['nbs-iscc-p:neopolitannight.182','neopolitannight','neopolitan night ',[67,107,149],'436b95',4418453], ['nbs-iscc-p:neopolitannight.200','neopolitannight','neopolitan night ',[78,81,128],'4e5180',5132672], ['nbs-iscc-p:neutral.89','neutral','neutral',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:neutral.92','neutral','neutral',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:newblue.189','newblue','new blue',[233,233,237],'e9e9ed',15329773], ['nbs-iscc-p:niagara.168','niagara','niagara',[35,158,186],'239eba',2334394], ['nbs-iscc-p:nightblue.174','nightblue','night blue',[0,73,88],'004958',18776], ['nbs-iscc-p:nightcloud.189','nightcloud','night cloud',[233,233,237],'e9e9ed',15329773], ['nbs-iscc-p:nightfighter.192','nightfighter','night fighter',[81,88,94],'51585e',5331038], ['nbs-iscc-p:nightfighter.234','nightfighter','night fighter',[93,85,91],'5d555b',6116699], ['nbs-iscc-p:nightfighter.266','nightfighter','night fighter',[85,85,85],'555555',5592405], ['nbs-iscc-p:nighthorizon.193','nighthorizon','night horizon',[32,36,40],'202428',2106408], ['nbs-iscc-p:nighthorizon.267','nighthorizon','night horizon',[34,34,34],'222222',2236962], ['nbs-iscc-p:nightmagic.227','nightmagic','night magic',[170,152,169],'aa98a9',11180201], ['nbs-iscc-p:nightshade.229','nightshade','nightshade',[80,64,77],'50404d',5259341], ['nbs-iscc-p:nightshade.234','nightshade','nightshade',[93,85,91],'5d555b',6116699], ['nbs-iscc-p:nightwatch.152','nightwatch','night watch',[26,36,33],'1a2421',1713185], ['nbs-iscc-p:nil.263','nil','nil',[242,243,244],'f2f3f4',15922164], ['nbs-iscc-p:nocturne.232','nocturne','nocturne',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-p:noel.151','noel','noel',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:nomadbrown.62','nomadbrown','nomad brown',[62,50,44],'3e322c',4076076], ['nbs-iscc-p:norseblue.177','norseblue','norse blue',[73,151,208],'4997d0',4822992], ['nbs-iscc-p:norseblue.195','norseblue','norse blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc-p:northblue.169','northblue','north blue',[0,119,145],'007791',30609], ['nbs-iscc-p:northernskies.184','northernskies','northern skies',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:northgreen.150','northgreen','north green',[94,113,106],'5e716a',6189418], ['nbs-iscc-p:northgreen.164','northgreen','north green',[49,120,115],'317873',3242099], ['nbs-iscc-p:northsea.192','northsea','north sea',[81,88,94],'51585e',5331038], ['nbs-iscc-p:norwaypine.136','norwaypine','norway pine',[103,146,103],'679267',6787687], ['nbs-iscc-p:nubianbrown.61','nubianbrown','nubian brown',[99,81,71],'635147',6508871], ['nbs-iscc-p:nymphpink.250','nymphpink','nymph pink',[213,151,174],'d597ae',13997998], ['nbs-iscc-p:oakleaf.127','oakleaf','oak leaf',[81,87,68],'515744',5330756], ['nbs-iscc-p:oceanwave.163','oceanwave','ocean wave',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:octoroonrose.19','octoroonrose','octoroon rose',[144,93,93],'905d5d',9461085], ['nbs-iscc-p:octoroonrose.45','octoroonrose','octoroon rose',[151,127,115],'977f73',9928563], ['nbs-iscc-p:oldcoral.15','oldcoral','old coral',[171,78,82],'ab4e52',11226706], ['nbs-iscc-p:oldgold.68','oldgold','old gold',[234,162,33],'eaa221',15376929], ['nbs-iscc-p:oldgold.71','oldgold','old gold',[227,168,87],'e3a857',14919767], ['nbs-iscc-p:oldgold.84','oldgold','old gold',[212,175,55],'d4af37',13938487], ['nbs-iscc-p:oldlavender.226','oldlavender','old lavender',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:oldmastergreen.127','oldmastergreen','old master green',[81,87,68],'515744',5330756], ['nbs-iscc-p:oldrose.6','oldrose','old rose',[192,128,129],'c08081',12615809], ['nbs-iscc-p:oliveglow.104','oliveglow','olive glow',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:oliveglow.121','oliveglow','olive glow',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:olivehint.104','olivehint','olive hint',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:olivehint.121','olivehint','olive hint',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:ombre.187','ombre','ombre',[54,69,79],'36454f',3556687], ['nbs-iscc-p:ombre.267','ombre','ombre',[34,34,34],'222222',2236962], ['nbs-iscc-p:opalgreen.164','opalgreen','opal green',[49,120,115],'317873',3242099], ['nbs-iscc-p:operablue.183','operablue','opera blue',[0,48,78],'00304e',12366], ['nbs-iscc-p:operablue.200','operablue','opera blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-p:operamauve.240','operamauve','opera mauve',[183,132,167],'b784a7',12027047], ['nbs-iscc-p:operapink.28','operapink','opera pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:orange.50','orange','orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-p:orangeblush.73','orangeblush','orange blush',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:orangecream.89','orangecream','orange cream',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:orchid.253','orchid','orchid',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-p:orchidlane.221','orchidlane','orchid lane',[213,186,219],'d5badb',14007003], ['nbs-iscc-p:orchidleaf.226','orchidleaf','orchid leaf',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:orchidmauve.251','orchidmauve','orchid mauve',[193,126,145],'c17e91',12680849], ['nbs-iscc-p:orchidnight.19','orchidnight','orchid night',[144,93,93],'905d5d',9461085], ['nbs-iscc-p:orchidnight.262','orchidnight','orchid night',[145,95,109],'915f6d',9527149], ['nbs-iscc-p:orchidpink.4','orchidpink','orchid pink',[249,204,202],'f9ccca',16370890], ['nbs-iscc-p:orchidpink.5','orchidpink','orchid pink',[222,165,164],'dea5a4',14591396], ['nbs-iscc-p:orchidsmoke.253','orchidsmoke','orchid smoke',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-p:orientalbronze.95','orientalbronze','oriental bronze',[108,84,30],'6c541e',7099422], ['nbs-iscc-p:orientalsand.109','orientalsand','oriental sand',[140,135,103],'8c8767',9209703], ['nbs-iscc-p:padrebrown.44','padrebrown','padre brown',[62,29,30],'3e1d1e',4070686], ['nbs-iscc-p:palaceblue.178','palaceblue','palace blue',[0,103,165],'0067a5',26533], ['nbs-iscc-p:palaceblue.182','palaceblue','palace blue',[67,107,149],'436b95',4418453], ['nbs-iscc-p:palestar.101','palestar','pale star',[234,230,121],'eae679',15394425], ['nbs-iscc-p:palestar.104','palestar','pale star',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:palewater.143','palewater','pale water',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-p:paloma.57','paloma','paloma',[166,123,91],'a67b5b',10910555], ['nbs-iscc-p:paloma.171','paloma','paloma',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-p:pan.150','pan','pan',[94,113,106],'5e716a',6189418], ['nbs-iscc-p:pan.164','pan','pan',[49,120,115],'317873',3242099], ['nbs-iscc-p:panamablue.198','panamablue','panama blue',[179,188,226],'b3bce2',11779298], ['nbs-iscc-p:pansypurple.241','pansypurple','pansy purple',[145,92,131],'915c83',9526403], ['nbs-iscc-p:pansypurple.242','pansypurple','pansy purple',[93,57,84],'5d3954',6109524], ['nbs-iscc-p:pansyyellow.83','pansyyellow','pansy yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-p:paprica.38','paprica','paprica',[158,71,50],'9e4732',10372914], ['nbs-iscc-p:paradisegreen.134','paradisegreen','paradise green',[182,229,175],'b6e5af',11986351], ['nbs-iscc-p:paradisegreen.135','paradisegreen','paradise green',[147,197,146],'93c592',9684370], ['nbs-iscc-p:paramount.168','paramount','paramount',[35,158,186],'239eba',2334394], ['nbs-iscc-p:paramount.172','paramount','paramount',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:paramour.172','paramour','paramour',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:parrakeet.140','parrakeet','parrakeet',[62,180,137],'3eb489',4109449], ['nbs-iscc-p:peace.92','peace','peace',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:peacemaker.153','peacemaker','peace-maker',[223,237,232],'dfede8',14675432], ['nbs-iscc-p:peachamber.29','peachamber','peach amber',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-p:peachbisque.42','peachbisque','peach bisque',[168,124,109],'a87c6d',11041901], ['nbs-iscc-p:peachbud.28','peachbud','peach bud',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:peachcream.73','peachcream','peach cream',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:peachgray.9','peachgray','peach gray',[234,227,225],'eae3e1',15393761], ['nbs-iscc-p:peachgray.10','peachgray','peach gray',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-p:peachgray.31','peachgray','peach gray',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:peachpink.28','peachpink','peach pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:peachrust.37','peachrust','peach rust',[203,109,81],'cb6d51',13331793], ['nbs-iscc-p:peachsand.10','peachsand','peach sand',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-p:peachsand.63','peachsand','peach sand',[142,130,121],'8e8279',9339513], ['nbs-iscc-p:peacockblue.174','peacockblue','peacock blue',[0,73,88],'004958',18776], ['nbs-iscc-p:peagreen.120','peagreen','pea green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:pearlcream.9','pearlcream','pearl cream',[234,227,225],'eae3e1',15393761], ['nbs-iscc-p:pearlygates.92','pearlygates','pearly gates ',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:peasantblue.183','peasantblue','peasant blue',[0,48,78],'00304e',12366], ['nbs-iscc-p:peasantblue.187','peasantblue','peasant blue',[54,69,79],'36454f',3556687], ['nbs-iscc-p:persiangreen.159','persiangreen','persian green',[0,166,147],'00a693',42643], ['nbs-iscc-p:persiangulf.150','persiangulf','persian gulf',[94,113,106],'5e716a',6189418], ['nbs-iscc-p:persiangulf.164','persiangulf','persian gulf',[49,120,115],'317873',3242099], ['nbs-iscc-p:persianmelon.37','persianmelon','persian melon',[203,109,81],'cb6d51',13331793], ['nbs-iscc-p:persianrose.254','persianrose','persian rose',[206,70,118],'ce4676',13518454], ['nbs-iscc-p:persianrose.255','persianrose','persian rose',[179,68,108],'b3446c',11748460], ['nbs-iscc-p:personal.252','personal','personal',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-p:petunia.223','petunia','petunia',[134,96,142],'86608e',8806542], ['nbs-iscc-p:pewter.10','pewter','pewter',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-p:pewtercream.9','pewtercream','pewter cream',[234,227,225],'eae3e1',15393761], ['nbs-iscc-p:phantomblue.171','phantomblue','phantom blue',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-p:phantomblue.184','phantomblue','phantom blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:phantomgreen.153','phantomgreen','phantom green',[223,237,232],'dfede8',14675432], ['nbs-iscc-p:phloxpink.248','phloxpink','phlox pink',[222,111,161],'de6fa1',14577569], ['nbs-iscc-p:picturesque.159','picturesque','picturesque',[0,166,147],'00a693',42643], ['nbs-iscc-p:picturesque.162','picturesque','picturesque',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:pinefrost.143','pinefrost','pine frost',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-p:pinkcarnation.246','pinkcarnation','pink carnation',[255,200,214],'ffc8d6',16763094], ['nbs-iscc-p:pinkdust.28','pinkdust','pink dust',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:pinkdust.31','pinkdust','pink dust',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:pinkicing.249','pinkicing','pink icing',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:pinkjewel.26','pinkjewel','pink jewel',[248,131,121],'f88379',16286585], ['nbs-iscc-p:pinklavender.252','pinklavender','pink lavender',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-p:pinklily.4','pinklily','pink lily',[249,204,202],'f9ccca',16370890], ['nbs-iscc-p:pinkmist.252','pinkmist','pink mist',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-p:pinkorchid.252','pinkorchid','pink orchid',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-p:pinkpowder.246','pinkpowder','pink powder',[255,200,214],'ffc8d6',16763094], ['nbs-iscc-p:pinkrapture.237','pinkrapture','pink rapture',[158,79,136],'9e4f88',10375048], ['nbs-iscc-p:pinkshock.255','pinkshock','pink shock',[179,68,108],'b3446c',11748460], ['nbs-iscc-p:pinocchio.28','pinocchio','pinocchio',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:piquant.162','piquant','piquant',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:piquantgreen.120','piquantgreen','piquant green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:pistachiocream.116','pistachiocream','pistachio cream',[189,218,87],'bdda57',12442199], ['nbs-iscc-p:placid.231','placid','placid',[232,227,229],'e8e3e5',15262693], ['nbs-iscc-p:plantation.43','plantation','plantation',[121,68,59],'79443b',7947323], ['nbs-iscc-p:plantationyellow.83','plantationyellow','plantation yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-p:platonic.185','platonic','platonic',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:plentybright.160','plentybright','plenty bright',[0,122,116],'007a74',31348], ['nbs-iscc-p:plumbagoblue.184','plumbagoblue','plumbago blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:plumbagoblue.202','plumbagoblue','plumbago blue',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-p:plume.162','plume','plume',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:poetsyellow.101','poetsyellow','poet\'s yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-p:polarbear.172','polarbear','polar bear',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:pompom.86','pompom','pom pom',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:pompom.101','pompom','pom pom',[234,230,121],'eae679',15394425], ['nbs-iscc-p:poolgreen.159','poolgreen','pool green',[0,166,147],'00a693',42643], ['nbs-iscc-p:porcelaingreen.144','porcelaingreen','porcelain green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-p:poufdevent.249','poufdevent','pouf de vent',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:poufdevent.252','poufdevent','pouf de vent',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-p:prairiesunset.29','prairiesunset','prairie sunset',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-p:prairiesunset.52','prairiesunset','prairie sunset',[250,181,127],'fab57f',16430463], ['nbs-iscc-p:primeval.145','primeval','primeval',[59,120,97],'3b7861',3897441], ['nbs-iscc-p:primroseyellow.98','primroseyellow','primrose yellow',[233,228,80],'e9e450',15328336], ['nbs-iscc-p:princelyblue.198','princelyblue','princely blue',[179,188,226],'b3bce2',11779298], ['nbs-iscc-p:princelyblue.202','princelyblue','princely blue',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-p:princess.210','princess','princess',[140,130,182],'8c82b6',9208502], ['nbs-iscc-p:priscillablue.173','priscillablue','priscilla blue',[54,117,136],'367588',3569032], ['nbs-iscc-p:prismpink.249','prismpink','prism pink',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:prismviolet.207','prismviolet','prism violet',[96,78,151],'604e97',6311575], ['nbs-iscc-p:profound.16','profound','profound',[114,47,55],'722f37',7483191], ['nbs-iscc-p:profoundblue.186','profoundblue','profound blue',[83,104,120],'536878',5466232], ['nbs-iscc-p:profoundblue.203','profoundblue','profound blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-p:promise.92','promise','promise ',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:promisedland.140','promisedland','promised land',[62,180,137],'3eb489',4109449], ['nbs-iscc-p:promisedland.141','promisedland','promised land',[0,121,89],'007959',31065], ['nbs-iscc-p:promisedland.159','promisedland','promised land',[0,166,147],'00a693',42643], ['nbs-iscc-p:promisedland.160','promisedland','promised land',[0,122,116],'007a74',31348], ['nbs-iscc-p:promisegreen.148','promisegreen','promise green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:prudence.163','prudence','prudence',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:prudence.185','prudence','prudence',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:pumpkin.53','pumpkin','pumpkin',[217,144,88],'d99058',14258264], ['nbs-iscc-p:puritan.186','puritan','puritan',[83,104,120],'536878',5466232], ['nbs-iscc-p:puritan.192','puritan','puritan',[81,88,94],'51585e',5331038], ['nbs-iscc-p:purpleaster.241','purpleaster','purple aster',[145,92,131],'915c83',9526403], ['nbs-iscc-p:purpleheather.223','purpleheather','purple heather',[134,96,142],'86608e',8806542], ['nbs-iscc-p:purplelake.259','purplelake','purple lake',[103,49,71],'673147',6762823], ['nbs-iscc-p:purplenight.187','purplenight','purple night',[54,69,79],'36454f',3556687], ['nbs-iscc-p:purpleode.214','purpleode','purple ode',[150,144,171],'9690ab',9867435], ['nbs-iscc-p:quail.63','quail','quail',[142,130,121],'8e8279',9339513], ['nbs-iscc-p:quaker.233','quaker','quaker',[139,133,137],'8b8589',9143689], ['nbs-iscc-p:quality.210','quality','quality',[140,130,182],'8c82b6',9208502], ['nbs-iscc-p:qualitypink.247','qualitypink','quality pink',[230,143,172],'e68fac',15110060], ['nbs-iscc-p:qualitypink.250','qualitypink','quality pink',[213,151,174],'d597ae',13997998], ['nbs-iscc-p:queenanne.120','queenanne','queen anne',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:queenblue.182','queenblue','queen blue',[67,107,149],'436b95',4418453], ['nbs-iscc-p:queencoral.26','queencoral','queen coral',[248,131,121],'f88379',16286585], ['nbs-iscc-p:queencoral.28','queencoral','queen coral',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:queenpink.252','queenpink','queen pink',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-p:quiet.153','quiet','quiet',[223,237,232],'dfede8',14675432], ['nbs-iscc-p:radiance.83','radiance','radiance',[250,218,94],'fada5e',16439902], ['nbs-iscc-p:radiant.26','radiant','radiant',[248,131,121],'f88379',16286585], ['nbs-iscc-p:radiant.37','radiant','radiant',[203,109,81],'cb6d51',13331793], ['nbs-iscc-p:radiantorchid.226','radiantorchid','radiant orchid',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:rainbowmist.32','rainbowmist','rainbow mist',[199,173,163],'c7ada3',13086115], ['nbs-iscc-p:raisin.47','raisin','raisin',[67,48,46],'43302e',4403246], ['nbs-iscc-p:rapture.15','rapture','rapture',[171,78,82],'ab4e52',11226706], ['nbs-iscc-p:raspberryglace.262','raspberryglace','raspberry glace ',[145,95,109],'915f6d',9527149], ['nbs-iscc-p:raven.267','raven','raven',[34,34,34],'222222',2236962], ['nbs-iscc-p:reed.121','reed','reed',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:reflection.171','reflection','reflection',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-p:regalorchid.222','regalorchid','regal orchid',[182,149,192],'b695c0',11965888], ['nbs-iscc-p:remote.150','remote','remote',[94,113,106],'5e716a',6189418], ['nbs-iscc-p:repose.122','repose','repose',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:restrainedblue.184','restrainedblue','restrained blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:retreat.185','retreat','retreat',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:retreat.191','retreat','retreat',[129,135,139],'81878b',8488843], ['nbs-iscc-p:rhapsodyblue.187','rhapsodyblue','rhapsody blue',[54,69,79],'36454f',3556687], ['nbs-iscc-p:rigiblue.186','rigiblue','rigi blue ',[83,104,120],'536878',5466232], ['nbs-iscc-p:rill.163','rill','rill',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:rioblue.185','rioblue','rio blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:riogrande.90','riogrande','rio grande',[194,178,128],'c2b280',12759680], ['nbs-iscc-p:rivermist.186','rivermist','river mist',[83,104,120],'536878',5466232], ['nbs-iscc-p:rivernile.164','rivernile','river nile',[49,120,115],'317873',3242099], ['nbs-iscc-p:riviera.182','riviera','riviera',[67,107,149],'436b95',4418453], ['nbs-iscc-p:rivuletblue.172','rivuletblue','rivulet blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:robinegg.162','robinegg','robin egg',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:romance.252','romance','romance',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-p:romance.214','romance','romance',[150,144,171],'9690ab',9867435], ['nbs-iscc-p:romance.228','romance','romance',[121,104,120],'796878',7956600], ['nbs-iscc-p:romanpurple.229','romanpurple','roman purple',[80,64,77],'50404d',5259341], ['nbs-iscc-p:romanpurple.234','romanpurple','roman purple',[93,85,91],'5d555b',6116699], ['nbs-iscc-p:romanrose.47','romanrose','roman rose',[67,48,46],'43302e',4403246], ['nbs-iscc-p:romantan.42','romantan','roman tan',[168,124,109],'a87c6d',11041901], ['nbs-iscc-p:romanticblue.180','romanticblue','romantic blue',[161,202,241],'a1caf1',10603249], ['nbs-iscc-p:romanticblue.181','romanticblue','romantic blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-p:roomgreen.154','roomgreen','room green',[178,190,181],'b2beb5',11714229], ['nbs-iscc-p:rosario.29','rosario','rosario',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-p:rosea.249','rosea','rosea ',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:roseash.9','roseash','rose ash',[234,227,225],'eae3e1',15393761], ['nbs-iscc-p:roseash.31','roseash','rose ash',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:rosecaroline.29','rosecaroline','rose caroline',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-p:rosecastor.19','rosecastor','rose castor',[144,93,93],'905d5d',9461085], ['nbs-iscc-p:rosecastor.22','rosecastor','rose castor',[143,129,127],'8f817f',9404799], ['nbs-iscc-p:rosecloud.5','rosecloud','rose cloud',[222,165,164],'dea5a4',14591396], ['nbs-iscc-p:rosedust.31','rosedust','rose dust ',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:rosegarden.248','rosegarden','rose garden',[222,111,161],'de6fa1',14577569], ['nbs-iscc-p:roseglory.3','roseglory','rose glory',[228,113,122],'e4717a',14971258], ['nbs-iscc-p:roseleaf.2','roseleaf','rose leaf',[234,147,153],'ea9399',15373209], ['nbs-iscc-p:rosemarie.248','rosemarie','rose marie',[222,111,161],'de6fa1',14577569], ['nbs-iscc-p:rosemist.18','rosemist','rose mist',[173,136,132],'ad8884',11372676], ['nbs-iscc-p:rosemist.32','rosemist','rose mist',[199,173,163],'c7ada3',13086115], ['nbs-iscc-p:rosemorn.4','rosemorn','rose morn',[249,204,202],'f9ccca',16370890], ['nbs-iscc-p:rosemorn.7','rosemorn','rose morn',[234,216,215],'ead8d7',15390935], ['nbs-iscc-p:rosemorn.28','rosemorn','rose morn',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:rosemorn.31','rosemorn','rose morn',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:rosemuse.32','rosemuse','rose muse',[199,173,163],'c7ada3',13086115], ['nbs-iscc-p:rosenude.31','rosenude','rose nude',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:rosepearl.7','rosepearl','rose pearl',[234,216,215],'ead8d7',15390935], ['nbs-iscc-p:rosepearl.31','rosepearl','rose pearl',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:roseshadow.7','roseshadow','rose shadow',[234,216,215],'ead8d7',15390935], ['nbs-iscc-p:roseshadow.31','roseshadow','rose shadow',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:rosesmoke.18','rosesmoke','rose smoke',[173,136,132],'ad8884',11372676], ['nbs-iscc-p:rosesmoke.22','rosesmoke','rose smoke',[143,129,127],'8f817f',9404799], ['nbs-iscc-p:rosestain.19','rosestain','rose stain',[144,93,93],'905d5d',9461085], ['nbs-iscc-p:rosypink.4','rosypink','rosy pink',[249,204,202],'f9ccca',16370890], ['nbs-iscc-p:royallilac.223','royallilac','royal lilac',[134,96,142],'86608e',8806542], ['nbs-iscc-p:royalrobe.212','royalrobe','royal robe',[47,33,64],'2f2140',3088704], ['nbs-iscc-p:royalviolet.259','royalviolet','royal violet',[103,49,71],'673147',6762823], ['nbs-iscc-p:rubylake.259','rubylake','ruby lake',[103,49,71],'673147',6762823], ['nbs-iscc-p:ruffledpetunia.247','ruffledpetunia','ruffled petunia',[230,143,172],'e68fac',15110060], ['nbs-iscc-p:russetleaf.91','russetleaf','russet leaf',[161,143,96],'a18f60',10588000], ['nbs-iscc-p:russetyellow.87','russetyellow','russet yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-p:russianblue.185','russianblue','russian blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:russianblue.191','russianblue','russian blue',[129,135,139],'81878b',8488843], ['nbs-iscc-p:rustrose.15','rustrose','rust rose',[171,78,82],'ab4e52',11226706], ['nbs-iscc-p:sable.58','sable','sable',[111,78,55],'6f4e37',7294519], ['nbs-iscc-p:sagablue.185','sagablue','saga blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:sage.120','sage','sage',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:sailor.24','sailor','sailor',[40,32,34],'282022',2629666], ['nbs-iscc-p:salmonbuff.29','salmonbuff','salmon buff',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-p:salmonflush.28','salmonflush','salmon flush',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:salmonpink.28','salmonpink','salmon pink ',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:salmonrose.26','salmonrose','salmon rose',[248,131,121],'f88379',16286585], ['nbs-iscc-p:salomeblue.159','salomeblue','salome blue',[0,166,147],'00a693',42643], ['nbs-iscc-p:salomegreen.140','salomegreen','salome green',[62,180,137],'3eb489',4109449], ['nbs-iscc-p:salomegreen.143','salomegreen','salome green',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-p:salomepink.2','salomepink','salome pink',[234,147,153],'ea9399',15373209], ['nbs-iscc-p:sandlewood.57','sandlewood','sandlewood',[166,123,91],'a67b5b',10910555], ['nbs-iscc-p:sandrift.63','sandrift','sandrift',[142,130,121],'8e8279',9339513], ['nbs-iscc-p:sandstucco.45','sandstucco','sand stucco',[151,127,115],'977f73',9928563], ['nbs-iscc-p:santaanitagreen.163','santaanitagreen','santa anita green',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:saxeblue.173','saxeblue','saxe blue',[54,117,136],'367588',3569032], ['nbs-iscc-p:saxeblue.186','saxeblue','saxe blue',[83,104,120],'536878',5466232], ['nbs-iscc-p:scarab.164','scarab','scarab',[49,120,115],'317873',3242099], ['nbs-iscc-p:scarlet.34','scarlet','scarlet',[226,88,34],'e25822',14833698], ['nbs-iscc-p:scotchblue.215','scotchblue','scotch blue',[85,76,105],'554c69',5590121], ['nbs-iscc-p:scotchmist.154','scotchmist','scotch mist',[178,190,181],'b2beb5',11714229], ['nbs-iscc-p:scotchmist.93','scotchmist','scotch mist',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-p:scotchmist.121','scotchmist','scotch mist',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:seafoam.92','seafoam','sea foam ',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:seafoam.153','seafoam','sea foam ',[223,237,232],'dfede8',14675432], ['nbs-iscc-p:seafog.226','seafog','sea fog',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:seafog.232','seafog','sea fog',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-p:seamist.121','seamist','sea mist',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:seance.252','seance','seance',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-p:seclusion.156','seclusion','seclusion',[78,87,85],'4e5755',5134165], ['nbs-iscc-p:secret.228','secret','secret',[121,104,120],'796878',7956600], ['nbs-iscc-p:sentimentalmood.184','sentimentalmood','sentimental mood',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:sentimentalmood.202','sentimentalmood','sentimental mood',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-p:serene.31','serene','serene',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:serenity.250','serenity','serenity',[213,151,174],'d597ae',13997998], ['nbs-iscc-p:seville.120','seville','seville',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:sevres.176','sevres','sevres',[0,161,194],'00a1c2',41410], ['nbs-iscc-p:sevres.178','sevres','sevres',[0,103,165],'0067a5',26533], ['nbs-iscc-p:shadowaqua.150','shadowaqua','shadow aqua',[94,113,106],'5e716a',6189418], ['nbs-iscc-p:shadowbeige.94','shadowbeige','shadow beige',[150,113,23],'967117',9859351], ['nbs-iscc-p:shadowblue.185','shadowblue','shadow blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:shadowgreen.150','shadowgreen','shadow green',[94,113,106],'5e716a',6189418], ['nbs-iscc-p:shadowgreen.151','shadowgreen','shadow green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:shadowlilac.228','shadowlilac','shadow lilac',[121,104,120],'796878',7956600], ['nbs-iscc-p:shadowlime.119','shadowlime','shadow lime',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:shadowmauve.228','shadowmauve','shadow mauve',[121,104,120],'796878',7956600], ['nbs-iscc-p:shadowolive.105','shadowolive','shadow olive',[185,181,125],'b9b57d',12170621], ['nbs-iscc-p:shamrock.131','shamrock','shamrock',[68,148,74],'44944a',4494410], ['nbs-iscc-p:shellcoral.28','shellcoral','shell coral',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:shellcoral.31','shellcoral','shell coral',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:shine.104','shine','shine',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:shining.101','shining','shining',[234,230,121],'eae679',15394425], ['nbs-iscc-p:shoreline.186','shoreline','shore line',[83,104,120],'536878',5466232], ['nbs-iscc-p:shrimppink.26','shrimppink','shrimp pink',[248,131,121],'f88379',16286585], ['nbs-iscc-p:siamsand.90','siamsand','siam sand',[194,178,128],'c2b280',12759680], ['nbs-iscc-p:sierra.38','sierra','sierra',[158,71,50],'9e4732',10372914], ['nbs-iscc-p:sierra.55','sierra','sierra',[128,70,27],'80461b',8406555], ['nbs-iscc-p:silentnight.150','silentnight','silent night',[94,113,106],'5e716a',6189418], ['nbs-iscc-p:silverblue.184','silverblue','silver blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:silverblue.202','silverblue','silver blue',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-p:silvercloud.184','silvercloud','silver cloud',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:silvercloud.190','silvercloud','silver cloud',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-p:silvergreen.121','silvergreen','silver green',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:silverlining.93','silverlining','silver lining',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-p:silverlining.264','silverlining','silver lining',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-p:silvernight.227','silvernight','silver night',[170,152,169],'aa98a9',11180201], ['nbs-iscc-p:silverpine.150','silverpine','silver pine ',[94,113,106],'5e716a',6189418], ['nbs-iscc-p:silverpink.8','silverpink','silver pink',[196,174,173],'c4aead',12889773], ['nbs-iscc-p:silverpink.32','silverpink','silver pink',[199,173,163],'c7ada3',13086115], ['nbs-iscc-p:silversalmon.32','silversalmon','silver salmon',[199,173,163],'c7ada3',13086115], ['nbs-iscc-p:silversky.231','silversky','silver sky',[232,227,229],'e8e3e5',15262693], ['nbs-iscc-p:silversky.232','silversky','silver sky',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-p:silverwing.232','silverwing','silver wing ',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-p:silverwing.233','silverwing','silver wing ',[139,133,137],'8b8589',9143689], ['nbs-iscc-p:singingblue.168','singingblue','singing blue',[35,158,186],'239eba',2334394], ['nbs-iscc-p:singingblue.172','singingblue','singing blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:sky.122','sky','sky',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:skycloud.190','skycloud','sky cloud',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-p:skygreen.162','skygreen','sky green',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:skylane.148','skylane','sky lane',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:slate.234','slate','slate',[93,85,91],'5d555b',6116699], ['nbs-iscc-p:slate.266','slate','slate',[85,85,85],'555555',5592405], ['nbs-iscc-p:slateblue.186','slateblue','slate blue',[83,104,120],'536878',5466232], ['nbs-iscc-p:slateblue.192','slateblue','slate blue',[81,88,94],'51585e',5331038], ['nbs-iscc-p:slatecitron.120','slatecitron','slate citron',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:slategreen.150','slategreen','slate green ',[94,113,106],'5e716a',6189418], ['nbs-iscc-p:slateorchid.228','slateorchid','slate orchid',[121,104,120],'796878',7956600], ['nbs-iscc-p:slaterose.19','slaterose','slate rose',[144,93,93],'905d5d',9461085], ['nbs-iscc-p:slateturquoise.173','slateturquoise','slate turquoise',[54,117,136],'367588',3569032], ['nbs-iscc-p:slateturquoise.186','slateturquoise','slate turquoise',[83,104,120],'536878',5466232], ['nbs-iscc-p:slateviolet.228','slateviolet','slate violet ',[121,104,120],'796878',7956600], ['nbs-iscc-p:sleepyhollow.149','sleepyhollow','sleepy hollow',[141,163,153],'8da399',9282457], ['nbs-iscc-p:sleepyhollow.185','sleepyhollow','sleepy hollow',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:sleighbells.171','sleighbells','sleigh bells',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-p:sleighbells.184','sleighbells','sleigh bells',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:smile.92','smile','smile',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:smiles.28','smiles','smiles',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:smog.79','smog','smog',[174,155,130],'ae9b82',11443074], ['nbs-iscc-p:smoke.185','smoke','smoke',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:smokeblue.203','smokeblue','smoke blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-p:smokepine.122','smokepine','smoke pine',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:smokepine.154','smokepine','smoke pine',[178,190,181],'b2beb5',11714229], ['nbs-iscc-p:smokering.185','smokering','smoke ring',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:smokestainrose.18','smokestainrose','smokestain rose',[173,136,132],'ad8884',11372676], ['nbs-iscc-p:snowgreen.148','snowgreen','snow green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:snowgreen.184','snowgreen','snow green',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:snowgreen.190','snowgreen','snow green',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-p:solitary.153','solitary','solitary',[223,237,232],'dfede8',14675432], ['nbs-iscc-p:solitary.154','solitary','solitary',[178,190,181],'b2beb5',11714229], ['nbs-iscc-p:solitary.263','solitary','solitary',[242,243,244],'f2f3f4',15922164], ['nbs-iscc-p:solitary.264','solitary','solitary',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-p:solitaryblue.186','solitaryblue','solitary blue',[83,104,120],'536878',5466232], ['nbs-iscc-p:somberblue.186','somberblue','somber blue',[83,104,120],'536878',5466232], ['nbs-iscc-p:sonata.28','sonata','sonata',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:songofnorway.159','songofnorway','song of norway',[0,166,147],'00a693',42643], ['nbs-iscc-p:sophisticatedlady.222','sophisticatedlady','sophisticated lady',[182,149,192],'b695c0',11965888], ['nbs-iscc-p:sorcerer.215','sorcerer','sorcerer',[85,76,105],'554c69',5590121], ['nbs-iscc-p:sorcerer.228','sorcerer','sorcerer',[121,104,120],'796878',7956600], ['nbs-iscc-p:sorcerer.187','sorcerer','sorcerer',[54,69,79],'36454f',3556687], ['nbs-iscc-p:sorcerer.188','sorcerer','sorcerer',[32,40,48],'202830',2107440], ['nbs-iscc-p:sorcerer.193','sorcerer','sorcerer',[32,36,40],'202428',2106408], ['nbs-iscc-p:sorrento.164','sorrento','sorrento',[49,120,115],'317873',3242099], ['nbs-iscc-p:southernrose.42','southernrose','southern rose',[168,124,109],'a87c6d',11041901], ['nbs-iscc-p:southernsun.83','southernsun','southern sun',[250,218,94],'fada5e',16439902], ['nbs-iscc-p:southernsun.86','southernsun','southern sun',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:souvenir.213','souvenir','souvenir',[196,195,221],'c4c3dd',12895197], ['nbs-iscc-p:sovereignblue.181','sovereignblue','sovereign blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-p:sovereignblue.199','sovereignblue','sovereign blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-p:spanishblue.164','spanishblue','spanish blue',[49,120,115],'317873',3242099], ['nbs-iscc-p:spanishgold.71','spanishgold','spanish gold',[227,168,87],'e3a857',14919767], ['nbs-iscc-p:spanishwhite.73','spanishwhite','spanish white',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:sparkle.171','sparkle','sparkle',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-p:sparrow.80','sparrow','sparrow',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-p:spectrablue.194','spectrablue','spectra blue',[48,38,122],'30267a',3155578], ['nbs-iscc-p:spectragreen.165','spectragreen','spectra green',[0,75,73],'004b49',19273], ['nbs-iscc-p:spectrared.11','spectrared','spectra red',[190,0,50],'be0032',12451890], ['nbs-iscc-p:spectrarose.254','spectrarose','spectra rose',[206,70,118],'ce4676',13518454], ['nbs-iscc-p:spectrayellow.82','spectrayellow','spectra yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-p:spice.54','spice','spice',[174,105,56],'ae6938',11430200], ['nbs-iscc-p:spice.57','spice','spice',[166,123,91],'a67b5b',10910555], ['nbs-iscc-p:spiritualblue.184','spiritualblue','spiritual blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:spitfire.15','spitfire','spitfire',[171,78,82],'ab4e52',11226706], ['nbs-iscc-p:spray.162','spray','spray',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:spring.130','spring','spring',[131,211,125],'83d37d',8639357], ['nbs-iscc-p:springbud.119','springbud','spring bud',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:springdream.101','springdream','spring dream',[234,230,121],'eae679',15394425], ['nbs-iscc-p:springdream.104','springdream','spring dream',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:springeve.101','springeve','spring eve',[234,230,121],'eae679',15394425], ['nbs-iscc-p:springeve.116','springeve','spring eve',[189,218,87],'bdda57',12442199], ['nbs-iscc-p:springeve.119','springeve','spring eve',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:springflower.98','springflower','spring flower ',[233,228,80],'e9e450',15328336], ['nbs-iscc-p:springstream.162','springstream','spring stream',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:springyellow.89','springyellow','spring yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:starchwhite.184','starchwhite','starch white',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:static.185','static','static',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:steamblue.189','steamblue','steam blue',[233,233,237],'e9e9ed',15329773], ['nbs-iscc-p:steelblue.172','steelblue','steel blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:stellar.249','stellar','stellar',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:sterlingblue.185','sterlingblue','sterling blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:sterlingblue.190','sterlingblue','sterling blue',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-p:stoic.267','stoic','stoic',[34,34,34],'222222',2236962], ['nbs-iscc-p:storm.186','storm','storm',[83,104,120],'536878',5466232], ['nbs-iscc-p:stormynight.187','stormynight','stormy night',[54,69,79],'36454f',3556687], ['nbs-iscc-p:stratosphere.186','stratosphere','stratosphere',[83,104,120],'536878',5466232], ['nbs-iscc-p:stratosphere.192','stratosphere','stratosphere',[81,88,94],'51585e',5331038], ['nbs-iscc-p:strawyellow.89','strawyellow','straw yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:streamlet.162','streamlet','streamlet',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:streamline.162','streamline','streamline',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:string.92','string','string',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:stylegray.186','stylegray','style gray',[83,104,120],'536878',5466232], ['nbs-iscc-p:sublime.185','sublime','sublime',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:sublime.203','sublime','sublime',[140,146,172],'8c92ac',9212588], ['nbs-iscc-p:suet.92','suet','suet',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:suezblue.187','suezblue','suez blue',[54,69,79],'36454f',3556687], ['nbs-iscc-p:suezgreen.164','suezgreen','suez green',[49,120,115],'317873',3242099], ['nbs-iscc-p:suggestion.162','suggestion','suggestion',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:sulphategreen.159','sulphategreen','sulphate green',[0,166,147],'00a693',42643], ['nbs-iscc-p:sulphategreen.163','sulphategreen','sulphate green',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:sulphur.101','sulphur','sulphur',[234,230,121],'eae679',15394425], ['nbs-iscc-p:sultana.19','sultana','sultana',[144,93,93],'905d5d',9461085], ['nbs-iscc-p:sultansand.76','sultansand','sultan sand',[193,154,107],'c19a6b',12687979], ['nbs-iscc-p:summergreen.140','summergreen','summer green',[62,180,137],'3eb489',4109449], ['nbs-iscc-p:summergreen.143','summergreen','summer green',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-p:summershower.148','summershower','summer shower',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:summersun.98','summersun','summer sun',[233,228,80],'e9e450',15328336], ['nbs-iscc-p:sunburst.70','sunburst','sunburst',[251,201,127],'fbc97f',16501119], ['nbs-iscc-p:sunburst.71','sunburst','sunburst',[227,168,87],'e3a857',14919767], ['nbs-iscc-p:sunburst.73','sunburst','sunburst',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:sundown.28','sundown','sundown',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:sundown.29','sundown','sundown',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-p:sundown.73','sundown','sundown',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:sunggreen.122','sunggreen','sung green',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:sunglow.86','sunglow','sun glow ',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:sunglow.89','sunglow','sun glow ',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:sungod.35','sungod','sun god ',[217,96,59],'d9603b',14245947], ['nbs-iscc-p:sungreen.104','sungreen','sun green',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:sunrose.4','sunrose','sun rose',[249,204,202],'f9ccca',16370890], ['nbs-iscc-p:sunsetcream.92','sunsetcream','sunset cream',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:sunshine.101','sunshine','sunshine',[234,230,121],'eae679',15394425], ['nbs-iscc-p:sunyellow.98','sunyellow','sun yellow',[233,228,80],'e9e450',15328336], ['nbs-iscc-p:sunyellow.101','sunyellow','sun yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-p:superior.164','superior','superior',[49,120,115],'317873',3242099], ['nbs-iscc-p:supreme.177','supreme','supreme',[73,151,208],'4997d0',4822992], ['nbs-iscc-p:surfspray.153','surfspray','surf spray',[223,237,232],'dfede8',14675432], ['nbs-iscc-p:surrender.222','surrender','surrender',[182,149,192],'b695c0',11965888], ['nbs-iscc-p:sussanquapink.246','sussanquapink','sussanqua pink',[255,200,214],'ffc8d6',16763094], ['nbs-iscc-p:sussanquapink.247','sussanquapink','sussanqua pink',[230,143,172],'e68fac',15110060], ['nbs-iscc-p:swank.213','swank','swank',[196,195,221],'c4c3dd',12895197], ['nbs-iscc-p:swank.226','swank','swank',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:sweetblue.184','sweetblue','sweet blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:sweetlady.210','sweetlady','sweet lady',[140,130,182],'8c82b6',9208502], ['nbs-iscc-p:sweetlavender.213','sweetlavender','sweet lavender',[196,195,221],'c4c3dd',12895197], ['nbs-iscc-p:sweetpeapink.262','sweetpeapink','sweet pea pink',[145,95,109],'915f6d',9527149], ['nbs-iscc-p:swissblue.203','swissblue','swiss blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-p:swissrose.19','swissrose','swiss rose',[144,93,93],'905d5d',9461085], ['nbs-iscc-p:sylvan.121','sylvan','sylvan',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:tabu.186','tabu','tabu',[83,104,120],'536878',5466232], ['nbs-iscc-p:talisman.52','talisman','talisman',[250,181,127],'fab57f',16430463], ['nbs-iscc-p:talisman.53','talisman','talisman',[217,144,88],'d99058',14258264], ['nbs-iscc-p:tangerine.35','tangerine','tangerine',[217,96,59],'d9603b',14245947], ['nbs-iscc-p:tangerine.50','tangerine','tangerine',[237,135,45],'ed872d',15566637], ['nbs-iscc-p:tango.3','tango','tango',[228,113,122],'e4717a',14971258], ['nbs-iscc-p:tapestrybeige.45','tapestrybeige','tapestry beige',[151,127,115],'977f73',9928563], ['nbs-iscc-p:tapestryred.16','tapestryred','tapestry red',[114,47,55],'722f37',7483191], ['nbs-iscc-p:tauperose.23','tauperose','taupe rose',[92,80,79],'5c504f',6049871], ['nbs-iscc-p:tauperose.46','tauperose','taupe rose',[103,76,71],'674c47',6769735], ['nbs-iscc-p:taupesand.94','taupesand','taupe sand',[150,113,23],'967117',9859351], ['nbs-iscc-p:tealblue.173','tealblue','teal blue',[54,117,136],'367588',3569032], ['nbs-iscc-p:teenagepink.249','teenagepink','teen age pink',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:televisionblue.187','televisionblue','television blue',[54,69,79],'36454f',3556687], ['nbs-iscc-p:tempest.229','tempest','tempest',[80,64,77],'50404d',5259341], ['nbs-iscc-p:tempestblue.192','tempestblue','tempest blue',[81,88,94],'51585e',5331038], ['nbs-iscc-p:temple.122','temple','temple',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:temptation.226','temptation','temptation',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:teteatete.171','teteatete','tete-a-tete',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-p:thamesriver.185','thamesriver','thames river',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:thamesriver.190','thamesriver','thames river',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-p:theatricalblue.182','theatricalblue','theatrical blue',[67,107,149],'436b95',4418453], ['nbs-iscc-p:thistlebloom.258','thistlebloom','thistle bloom',[168,81,110],'a8516e',11030894], ['nbs-iscc-p:thistledown.252','thistledown','thistle down',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-p:tobaccobrown.46','tobaccobrown','tobacco brown',[103,76,71],'674c47',6769735], ['nbs-iscc-p:tomatored.11','tomatored','tomato red',[190,0,50],'be0032',12451890], ['nbs-iscc-p:topazamber.53','topazamber','topaz amber',[217,144,88],'d99058',14258264], ['nbs-iscc-p:torchlight.11','torchlight','torchlight',[190,0,50],'be0032',12451890], ['nbs-iscc-p:torchlight.12','torchlight','torchlight',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-p:toreador.12','toreador','toreador',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-p:tourmalinegreen.148','tourmalinegreen','tourmaline green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:tourmalinegreen.162','tourmalinegreen','tourmaline green',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:tourmalinepink.246','tourmalinepink','tourmaline pink',[255,200,214],'ffc8d6',16763094], ['nbs-iscc-p:tourmalinepink.249','tourmalinepink','tourmaline pink',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:tradewinds.186','tradewinds','trade winds',[83,104,120],'536878',5466232], ['nbs-iscc-p:trailgreen.146','trailgreen','trail green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-p:trailgreen.151','trailgreen','trail green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:tranquilgreen.151','tranquilgreen','tranquil green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-p:tranquilgreen.187','tranquilgreen','tranquil green',[54,69,79],'36454f',3556687], ['nbs-iscc-p:transatlanticblue.188','transatlanticblue','transatlantic blue',[32,40,48],'202830',2107440], ['nbs-iscc-p:translucentblue.185','translucentblue','translucent blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:transparentyellow.89','transparentyellow','transparent yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:transparentyellow.92','transparentyellow','transparent yellow',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:trellis.135','trellis','trellis',[147,197,146],'93c592',9684370], ['nbs-iscc-p:tropicnight.245','tropicnight','tropic night',[131,100,121],'836479',8610937], ['nbs-iscc-p:troubador.11','troubador','troubador',[190,0,50],'be0032',12451890], ['nbs-iscc-p:troubador.12','troubador','troubador',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-p:tulipyellow.83','tulipyellow','tulip yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-p:tumbleweed.89','tumbleweed','tumbleweed',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:tumbleweed.93','tumbleweed','tumbleweed',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-p:turfgreen.131','turfgreen','turf green',[68,148,74],'44944a',4494410], ['nbs-iscc-p:turfgreen.136','turfgreen','turf green',[103,146,103],'679267',6787687], ['nbs-iscc-p:turquoiseblue.163','turquoiseblue','turquoise blue',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:tuscansand.94','tuscansand','tuscan sand',[150,113,23],'967117',9859351], ['nbs-iscc-p:twilightmood.184','twilightmood','twilight mood',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:twilightsun.89','twilightsun','twilight sun',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:twilightsun.121','twilightsun','twilight sun',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:twinkle.184','twinkle','twinkle',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:tyrianblue.186','tyrianblue','tyrian blue',[83,104,120],'536878',5466232], ['nbs-iscc-p:ultramarine.194','ultramarine','ultramarine',[48,38,122],'30267a',3155578], ['nbs-iscc-p:uniformblue.183','uniformblue','uniform blue',[0,48,78],'00304e',12366], ['nbs-iscc-p:unique.104','unique','unique',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:universal.187','universal','universal',[54,69,79],'36454f',3556687], ['nbs-iscc-p:vagabond.164','vagabond','vagabond',[49,120,115],'317873',3242099], ['nbs-iscc-p:valenciarose.6','valenciarose','valencia rose',[192,128,129],'c08081',12615809], ['nbs-iscc-p:valorgreen.187','valorgreen','valor green',[54,69,79],'36454f',3556687], ['nbs-iscc-p:vamp.249','vamp','vamp',[239,187,204],'efbbcc',15711180], ['nbs-iscc-p:vanda.244','vanda','vanda',[170,138,158],'aa8a9e',11176606], ['nbs-iscc-p:vanillacustard.86','vanillacustard','vanilla custard',[248,222,126],'f8de7e',16309886], ['nbs-iscc-p:vanillacustard.89','vanillacustard','vanilla custard',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:vaporblue.189','vaporblue','vapor blue',[233,233,237],'e9e9ed',15329773], ['nbs-iscc-p:vatican.259','vatican','vatican',[103,49,71],'673147',6762823], ['nbs-iscc-p:veiledsun.71','veiledsun','veiled sun',[227,168,87],'e3a857',14919767], ['nbs-iscc-p:veiledsun.84','veiledsun','veiled sun',[212,175,55],'d4af37',13938487], ['nbs-iscc-p:venetianrose.19','venetianrose','venetian rose',[144,93,93],'905d5d',9461085], ['nbs-iscc-p:venetianturquoise.163','venetianturquoise','venetian turquoise',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:venice.149','venice','venice',[141,163,153],'8da399',9282457], ['nbs-iscc-p:veniceblue.162','veniceblue','venice blue',[150,222,209],'96ded1',9887441], ['nbs-iscc-p:venusblue.184','venusblue','venus blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:venusblue.189','venusblue','venus blue',[233,233,237],'e9e9ed',15329773], ['nbs-iscc-p:verbenalavender.241','verbenalavender','verbena lavender',[145,92,131],'915c83',9526403], ['nbs-iscc-p:verbenalavender.262','verbenalavender','verbena lavender',[145,95,109],'915f6d',9527149], ['nbs-iscc-p:verdant.115','verdant','verdant',[141,182,0],'8db600',9287168], ['nbs-iscc-p:verdugo.116','verdugo','verdugo',[189,218,87],'bdda57',12442199], ['nbs-iscc-p:verdugo.119','verdugo','verdugo',[201,220,137],'c9dc89',13229193], ['nbs-iscc-p:vermilion.35','vermilion','vermilion',[217,96,59],'d9603b',14245947], ['nbs-iscc-p:vesta.2','vesta','vesta',[234,147,153],'ea9399',15373209], ['nbs-iscc-p:vesta.4','vesta','vesta',[249,204,202],'f9ccca',16370890], ['nbs-iscc-p:vesta.5','vesta','vesta',[222,165,164],'dea5a4',14591396], ['nbs-iscc-p:vibrantgreen.130','vibrantgreen','vibrant green',[131,211,125],'83d37d',8639357], ['nbs-iscc-p:victoria.28','victoria','victoria',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:viking.187','viking','viking',[54,69,79],'36454f',3556687], ['nbs-iscc-p:viola.222','viola','viola',[182,149,192],'b695c0',11965888], ['nbs-iscc-p:violetleaf.125','violetleaf','violet leaf',[74,93,35],'4a5d23',4873507], ['nbs-iscc-p:violetpansy.229','violetpansy','violet pansy',[80,64,77],'50404d',5259341], ['nbs-iscc-p:virginialavender.231','virginialavender','virginia lavender',[232,227,229],'e8e3e5',15262693], ['nbs-iscc-p:vistagreen.122','vistagreen','vista green',[143,151,121],'8f9779',9410425], ['nbs-iscc-p:vivid.251','vivid','vivid',[193,126,145],'c17e91',12680849], ['nbs-iscc-p:vividturquoise.160','vividturquoise','vivid turquoise',[0,122,116],'007a74',31348], ['nbs-iscc-p:waftedfeather.231','waftedfeather','wafted feather',[232,227,229],'e8e3e5',15262693], ['nbs-iscc-p:waftedfeather.232','waftedfeather','wafted feather',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-p:walnut.57','walnut','walnut',[166,123,91],'a67b5b',10910555], ['nbs-iscc-p:walnutcream.73','walnutcream','walnut cream',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:wanblue.189','wanblue','wan blue',[233,233,237],'e9e9ed',15329773], ['nbs-iscc-p:wanblue.231','wanblue','wan blue',[232,227,229],'e8e3e5',15262693], ['nbs-iscc-p:waterfall.173','waterfall','water fall ',[54,117,136],'367588',3569032], ['nbs-iscc-p:watergreen.121','watergreen','water green',[218,223,183],'dadfb7',14344119], ['nbs-iscc-p:watteau.172','watteau','watteau',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:whimsical.222','whimsical','whimsical',[182,149,192],'b695c0',11965888], ['nbs-iscc-p:whiteclover.92','whiteclover','white clover',[240,234,214],'f0ead6',15788758], ['nbs-iscc-p:whitefawn.73','whitefawn','white fawn',[250,214,165],'fad6a5',16438949], ['nbs-iscc-p:whitejade.28','whitejade','white jade',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:whitejade.31','whitejade','white jade',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:whitelight.184','whitelight','white light',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:whitemist.28','whitemist','white mist',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-p:whitemist.31','whitemist','white mist',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-p:whitesmoke.190','whitesmoke','white smoke',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-p:whiteswan.184','whiteswan','white swan',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:whiteswan.202','whiteswan','white swan',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-p:wildorchid.240','wildorchid','wild orchid',[183,132,167],'b784a7',12027047], ['nbs-iscc-p:windflower.262','windflower','windflower',[145,95,109],'915f6d',9527149], ['nbs-iscc-p:wineberry.228','wineberry','wineberry',[121,104,120],'796878',7956600], ['nbs-iscc-p:wineberry.229','wineberry','wineberry',[80,64,77],'50404d',5259341], ['nbs-iscc-p:winsome.226','winsome','winsome',[214,202,221],'d6cadd',14076637], ['nbs-iscc-p:winsomeblue.172','winsomeblue','winsome blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-p:winterpear.120','winterpear','winter pear',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-p:wintersky.184','wintersky','winter sky',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:wintersun.101','wintersun','winter sun ',[234,230,121],'eae679',15394425], ['nbs-iscc-p:winterwhite.3','winterwhite','winter white',[228,113,122],'e4717a',14971258], ['nbs-iscc-p:winteryellow.89','winteryellow','winter yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:winteryellow.90','winteryellow','winter yellow',[194,178,128],'c2b280',12759680], ['nbs-iscc-p:wisteria.210','wisteria','wisteria',[140,130,182],'8c82b6',9208502], ['nbs-iscc-p:wisteriagray.228','wisteriagray','wisteria gray',[121,104,120],'796878',7956600], ['nbs-iscc-p:wisteriamist.228','wisteriamist','wisteria mist',[121,104,120],'796878',7956600], ['nbs-iscc-p:witheredrose.19','witheredrose','withered rose',[144,93,93],'905d5d',9461085], ['nbs-iscc-p:yaleblue.196','yaleblue','yale blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-p:yaleblue.197','yaleblue','yale blue',[39,36,88],'272458',2565208], ['nbs-iscc-p:yaleblue.200','yaleblue','yale blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-p:yama.163','yama','yama',[102,173,164],'66ada4',6729124], ['nbs-iscc-p:yellowbright.98','yellowbright','yellow bright',[233,228,80],'e9e450',15328336], ['nbs-iscc-p:yellowbright.101','yellowbright','yellow bright',[234,230,121],'eae679',15394425], ['nbs-iscc-p:yellowcream.89','yellowcream','yellow cream',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:yellowessence.104','yellowessence','yellow essence',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-p:yellowgem.89','yellowgem','yellow gem',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-p:yellowmist.94','yellowmist','yellow mist',[150,113,23],'967117',9859351], ['nbs-iscc-p:yellowrose.101','yellowrose','yellow rose',[234,230,121],'eae679',15394425], ['nbs-iscc-p:yellowsmoke.87','yellowsmoke','yellow smoke',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-p:yellowsmoke.88','yellowsmoke','yellow smoke',[171,145,68],'ab9144',11243844], ['nbs-iscc-p:yewgreen.127','yewgreen','yew green',[81,87,68],'515744',5330756], ['nbs-iscc-p:youthyellow.101','youthyellow','youth yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-p:yuletime.125','yuletime','yuletime',[74,93,35],'4a5d23',4873507], ['nbs-iscc-p:yuletree.165','yuletree','yule tree',[0,75,73],'004b49',19273], ['nbs-iscc-p:zephyrblue.184','zephyrblue','zephyr blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-p:zephyrblue.185','zephyrblue','zephyr blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-p:zephyrgreen.148','zephyrgreen','zephyr green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-p:zestpink.2','zestpink','zest pink',[234,147,153],'ea9399',15373209], ['nbs-iscc-p:zinniagold.70','zinniagold','zinnia gold',[251,201,127],'fbc97f',16501119], ['nbs-iscc-p:zinniagold.86','zinniagold','zinnia gold',[248,222,126],'f8de7e',16309886] ]; } sub _description { return { 'subtitle' => 'Plochere Color System', 'title' => 'NBS/ISCC P', 'description' => ' Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (P) Plochere Color System Plochere Color System This idiosyncratic dictionary for interior decorating has 1246 names mapping to 1606 colors, using 206 of the 267 centroids. [http://swissnet.ai.mit.edu/~jaffer/Color/Dictionaries#P] ' } } 1; R.pm100644000765000024 77013211667760546 22736 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionary/NBS_ISCCpackage Color::Library::Dictionary::NBS_ISCC::R; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::NBS_ISCC::R; =pod =head1 NAME Color::Library::Dictionary::NBS_ISCC::R - (NBS/ISCC R) Color Standards and Color Nomenclature =head1 DESCRIPTION Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (R) Color Standards and Color Nomenclature Ridgway, Color Standards and Color Nomenclature While using some modifiers, this primarily idiosyncratic dictionary was intended for biology and botany. It maps 1096 names to 1602 colors, using 214 of the 267 centroids. L =head1 COLORS absinthe green absinthegreen #8a9a5b acajou red acajoured #905d5d acetin blue acetinblue #367588 acetin blue acetinblue #4c516d ackermann's green ackermannsgreen #3b7861 aconite violet aconiteviolet #86608e ageratum violet ageratumviolet #86608e alice blue aliceblue #91a3b0 alizarine blue alizarineblue #436b95 alizarine pink alizarinepink #ea9399 alizarine pink alizarinepink #e4717a amaranth pink amaranthpink #de6fa1 amaranth purple amaranthpurple #78184a amber brown amberbrown #80461b amber yellow amberyellow #fada5e amber yellow amberyellow #d4af37 amber yellow amberyellow #f8de7e amber yellow amberyellow #c9ae5d american green americangreen #679267 amethyst violet amethystviolet #9a4eae amparo blue amparoblue #6c79b8 amparo purple amparopurple #d399e6 amparo purple amparopurple #875692 andover green andovergreen #8f9779 aniline black anilineblack #50404d aniline black anilineblack #5d555b aniline lilac anilinelilac #8c82b6 aniline yellow anilineyellow #af8d13 anthracene green anthracenegreen #317873 anthracene green anthracenegreen #004b49 anthracene purple anthracenepurple #50404d anthracene purple anthracenepurple #673147 anthracene violet anthraceneviolet #604e81 antimony yellow antimonyyellow #e3a857 antique brown antiquebrown #80461b antique brown antiquebrown #6f4e37 antique green antiquegreen #5e716a antique green antiquegreen #3a4b47 antwerp blue antwerpblue #436b95 antwerp blue antwerpblue #00304e antwerp blue antwerpblue #536878 apple green applegreen #7e9f2e apricot buff apricotbuff #d99058 apricot orange apricotorange #d99058 apricot yellow apricotyellow #d4af37 argus brown argusbrown #6f4e37 argyle purple argylepurple #915c83 army brown armybrown #6f4e37 army brown armybrown #635147 artemesia green artemesiagreen #7d8984 asphodel green asphodelgreen #8a9a5b aster purple asterpurple #78184a auburn auburn #79443b auricula purple auriculapurple #673147 avellaneous avellaneous #c19a6b avellaneous avellaneous #ae9b82 azurite blue azuriteblue #4e5180 barium yellow bariumyellow #eae679 barium yellow bariumyellow #b9b459 baryta yellow barytayellow #f8de7e bay bay #79443b begonia rose begoniarose #e66761 benzo brown benzobrown #977f73 benzo brown benzobrown #958070 benzo brown benzobrown #635147 benzol green benzolgreen #007a74 berlin blue berlinblue #00304e beryl blue berylblue #9cd1dc beryl green berylgreen #00a693 bice green bicegreen #8a9a5b biscay green biscaygreen #8a9a5b bishop's purple bishopspurple #915c83 bister bister #7e6d5a bister bister #483c32 bittersweet orange bittersweetorange #cb6d51 bittersweet pink bittersweetpink #d99058 black black #222222 blackish green-blue blackishgreenblue #004958 blackish green-gray blackishgreengray #222222 blackish mouse-gray blackishmousegray #5b504f blackish mouse-gray blackishmousegray #555555 blackish plumbeous blackishplumbeous #51585e blackish purple blackishpurple #5d3954 blackish purple blackishpurple #341731 blackish red-purple blackishredpurple #673147 blackish slate blackishslate #555555 blackish violet blackishviolet #604e81 blackish violet blackishviolet #2f2140 blackish violet blackishviolet #554c69 blackish violet-gray blackishvioletgray #5d555b blackish violet-gray blackishvioletgray #555555 blanc's blue blancsblue #436b95 blanc's violet blancsviolet #554c69 blanc's violet blancsviolet #796878 blanc's violet blancsviolet #50404d blue-violet blueviolet #30267a blue-violet blueviolet #9065ca blue-violet black bluevioletblack #5d555b blue-violet black bluevioletblack #555555 bluish black bluishblack #36454f bluish black bluishblack #202830 bluish glaucous bluishglaucous #c7e6d7 bluish glaucous bluishglaucous #96ded1 bluish gray-green bluishgraygreen #8da399 bluish gray-green bluishgraygreen #5e716a bluish lavender bluishlavender #8c82b6 bluish slate-black bluishslateblack #00304e bluish slate-black bluishslateblack #36454f bluish violet bluishviolet #30267a bluish violet bluishviolet #9065ca bone brown bonebrown #635147 bone brown bonebrown #5b504f bordeaux bordeaux #673147 bottle green bottlegreen #1b4d3e bradley's blue bradleysblue #00a1c2 bradley's violet bradleysviolet #7e73b8 bradley's violet bradleysviolet #604e97 bradley's violet bradleysviolet #8c82b6 bradley's violet bradleysviolet #604e81 brazil red brazilred #9e4732 bremen blue bremenblue #66aabc brick red brickred #79443b bright chalcedony yellow brightchalcedonyyellow #bdda57 bright chalcedony yellow brightchalcedonyyellow #c9dc89 bright green-yellow brightgreenyellow #8db600 brownish drab brownishdrab #977f73 brownish drab brownishdrab #958070 brownish olive brownisholive #6c541e brownish vinaceous brownishvinaceous #ad8884 brussels brown brusselsbrown #6f4e37 buckthorn brown buckthornbrown #996515 buff-pink or buff pink buffpinkorbuffpink #d9a6a9 buffy brown buffybrown #c19a6b buffy brown buffybrown #826644 buffy citrine buffycitrine #967117 buff-yellow or buff yellow buffyelloworbuffyellow #f8de7e buff-yellow or buff yellow buffyelloworbuffyellow #c9ae5d buffy olive buffyolive #867e36 burn blue burnblue #a1caf1 burn blue burnblue #70a3cc burn blue burnblue #b3bce2 burn blue burnblue #8791bf burnt lake burntlake #5d3954 burnt sienna burntsienna #882d17 burnt umber burntumber #674c47 cacao brown cacaobrown #a87c6d cadet blue cadetblue #0067a5 cadet blue cadetblue #436b95 cadet gray cadetgray #91a3b0 cadmium orange cadmiumorange #f38400 cadmium orange cadmiumorange #ed872d cadmium yellow cadmiumyellow #ed872d cadmium yellow cadmiumyellow #eaa221 calamine blue calamineblue #9cd1dc calamine blue calamineblue #66aabc calla green callagreen #665d1e calliste green callistegreen #7e9f2e cameo brown cameobrown #79443b cameo brown cameobrown #674c47 cameo pink cameopink #ffc8d6 cameo pink cameopink #efbbcc capri blue capriblue #367588 capucine buff capucinebuff #fbc97f capucine buff capucinebuff #e3a857 capucine buff capucinebuff #fad6a5 capucine orange capucineorange #d99058 capucine yellow capucineyellow #eaa221 carmine carmine #be0032 carnelian red carnelianred #d9603b carob brown carobbrown #3e1d1e carrot red carrotred #cb6d51 cartridge buff cartridgebuff #f3e5ab castor gray castorgray #7d8984 castor gray castorgray #848482 cedar green cedargreen #8a9a5b cedar green cedargreen #4a5d23 celandine green celandinegreen #8da399 cendre blue cendreblue #239eba cendre green cendregreen #83d37d cerulean blue ceruleanblue #0067a5 chaetura black chaeturablack #483c32 chaetura drab chaeturadrab #5b504f chalcedony yellow chalcedonyyellow #eae679 chamois chamois #c9ae5d chapman's blue chapmansblue #436b95 chartreuse yellow chartreuseyellow #eae679 chatenay pink chatenaypink #dea5a4 chatenay pink chatenaypink #d9a6a9 chessylite blue chessyliteblue #367588 chessylite blue chessyliteblue #004958 chessylite blue chessyliteblue #436b95 chessylite blue chessyliteblue #536878 chestnut chestnut #79443b chestnut-brown chestnutbrown #79443b chestnut-brown chestnutbrown #674c47 chicory blue chicoryblue #8791bf chicory blue chicoryblue #8c82b6 china blue chinablue #436b95 chinese violet chineseviolet #86608e chocolate chocolate #674c47 chromium green chromiumgreen #8a9a5b chrysolite green chrysolitegreen #8a9a5b chrysopraise green chrysopraisegreen #93c592 cinereous cinereous #b4bcc0 cinereous cinereous #81878b cinnamon cinnamon #a67b5b cinnamon cinnamon #be8a3d cinnamon-brown cinnamonbrown #6f4e37 cinnamon-buff cinnamonbuff #e3a857 cinnamon-buff cinnamonbuff #c19a6b cinnamon-buff cinnamonbuff #c9ae5d cinnamon-drab cinnamondrab #977f73 cinnamon-drab cinnamondrab #958070 cinnamon-rufous cinnamonrufous #ae6938 citrine citrine #867e36 citrine citrine #665d1e citrine-drab citrinedrab #867e36 citron green citrongreen #b9b459 citron green citrongreen #b9b57d citron yellow citronyellow #e9e450 citron yellow citronyellow #beb72e citron yellow citronyellow #eae679 citron yellow citronyellow #b9b459 civette green civettegreen #679267 claret brown claretbrown #79443b clay color claycolor #996515 clay color claycolor #826644 clay color claycolor #967117 clear cadet blue clearcadetblue #4997d0 clear cadet blue clearcadetblue #0067a5 clear dull green-yellow cleardullgreenyellow #bdda57 clear dull green-yellow cleardullgreenyellow #7e9f2e clear dull green-yellow cleardullgreenyellow #c9dc89 clear dull green-yellow cleardullgreenyellow #8a9a5b clear fluorite green clearfluoritegreen #93c592 clear green-blue gray cleargreenbluegray #91a3b0 clear green-blue gray cleargreenbluegray #81878b clear payne's gray clearpaynesgray #536878 clear payne's gray clearpaynesgray #81878b clear windsor blue clearwindsorblue #8791bf clear yellow-green clearyellowgreen #bdda57 clove brown clovebrown #483c32 cobalt green cobaltgreen #6aab8e colonial buff colonialbuff #f8de7e columbia blue columbiablue #70a3cc columbia blue columbiablue #436b95 commelina blue commelinablue #30267a congo pink congopink #f88379 congo pink congopink #d9a6a9 coral pink coralpink #f88379 coral red coralred #cb6d51 corinthian pink corinthianpink #dea5a4 corinthian purple corinthianpurple #673147 corinthian red corinthianred #905d5d cornflower blue cornflowerblue #30267a corydalis green corydalisgreen #c9dc89 corydalis green corydalisgreen #dadfb7 cossack green cossackgreen #4a5d23 cossack green cossackgreen #515744 cosse green cossegreen #7e9f2e cotinga purple cotingapurple #602f6b cotinga purple cotingapurple #86608e courge green courgegreen #8a9a5b court gray courtgray #c7e6d7 court grey courtgrey #c7e6d7 cream buff creambuff #f8de7e cream buff creambuff #c9ae5d cream color creamcolor #f8de7e cress green cressgreen #8a9a5b cress green cressgreen #4a5d23 cyanine blue cyanineblue #4e5180 dahlia carmine dahliacarmine #673147 dahlia purple dahliapurple #673147 daphne pink daphnepink #de6fa1 daphne pink daphnepink #c17e91 daphne red daphnered #a8516e dark american green darkamericangreen #355e3b dark american green darkamericangreen #5e716a dark american green darkamericangreen #3a4b47 dark aniline blue darkanilineblue #36454f dark aniline blue darkanilineblue #50404d dark anthracene violet darkanthraceneviolet #563c5c dark anthracene violet darkanthraceneviolet #50404d dark bluish glaucous darkbluishglaucous #6aab8e dark bluish glaucous darkbluishglaucous #8da399 dark bluish gray-green darkbluishgraygreen #5e716a dark bluish gray-green darkbluishgraygreen #3a4b47 dark bluish gray-green darkbluishgraygreen #317873 dark bluish gray-green darkbluishgraygreen #004b49 dark bluish violet darkbluishviolet #604e81 dark bluish violet darkbluishviolet #2f2140 dark bluish violet darkbluishviolet #554c69 dark cadet blue darkcadetblue #436b95 dark cadet blue darkcadetblue #4c516d dark chessylite blue darkchessyliteblue #004958 dark chessylite blue darkchessyliteblue #436b95 dark chessylite blue darkchessyliteblue #00304e dark chessylite blue darkchessyliteblue #536878 dark cinnabar green darkcinnabargreen #317873 dark citrine darkcitrine #665d1e dark corinthian purple darkcorinthianpurple #673147 dark cress green darkcressgreen #4a5d23 dark delft blue darkdelftblue #00304e dark delft blue darkdelftblue #36454f dark diva blue darkdivablue #545aa7 dark diva blue darkdivablue #4e5180 dark dull bluish violet darkdullbluishviolet #604e81 dark dull bluish violet darkdullbluishviolet #554c69 dark dull bluish violet darkdullbluishviolet #554c69 dark dull bluish violet darkdullbluishviolet #563c5c dark dull violet-blue darkdullvioletblue #4c516d dark dull violet-blue darkdullvioletblue #554c69 dark dull violet-blue darkdullvioletblue #554c69 dark dull yellow-green darkdullyellowgreen #4a5d23 dark dull yellow-green darkdullyellowgreen #515744 dark glaucous-gray darkglaucousgray #5e716a dark grayish blue-green darkgrayishbluegreen #4e5755 dark grayish blue-green darkgrayishbluegreen #555555 dark grayish blue-violet darkgrayishblueviolet #554c69 dark grayish brown darkgrayishbrown #905d5d dark grayish brown darkgrayishbrown #5c504f dark grayish lavender darkgrayishlavender #9690ab dark grayish olive darkgrayisholive #57554c dark green darkgreen #355e3b dark green darkgreen #5e716a dark green darkgreen #3a4b47 dark green-blue gray darkgreenbluegray #536878 dark green-blue slate darkgreenblueslate #00304e dark green-blue slate darkgreenblueslate #36454f dark greenish glaucous darkgreenishglaucous #93c592 dark greenish glaucous darkgreenishglaucous #679267 dark greenish olive darkgreenisholive #665d1e dark greenish olive darkgreenisholive #5b5842 dark gull gray darkgullgray #555555 dark heliotrope gray darkheliotropegray #796878 dark heliotrope slate darkheliotropeslate #50404d dark heliotrope slate darkheliotropeslate #5d555b dark hyssop violet darkhyssopviolet #563c5c dark hyssop violet darkhyssopviolet #796878 dark indian red darkindianred #905d5d dark indian red darkindianred #543d3f dark ivy green darkivygreen #515744 dark lavender darklavender #b695c0 dark livid brown darklividbrown #905d5d dark livid purple darklividpurple #50404d dark livid purple darklividpurple #673147 dark madder blue darkmadderblue #536878 dark madder blue darkmadderblue #4c516d dark madder violet darkmadderviolet #563c5c dark madder violet darkmadderviolet #50404d dark maroon purple darkmaroonpurple #5d3954 dark medici blue darkmediciblue #51585e dark mineral red darkmineralred #905d5d dark mineral red darkmineralred #543d3f dark mouse gray darkmousegray #5b504f dark mouse gray darkmousegray #555555 dark naphthalene violet darknaphthaleneviolet #50404d dark naphthalene violet darknaphthaleneviolet #5d3954 dark neutral gray darkneutralgray #555555 dark nigrosin violet darknigrosinviolet #563c5c dark olive darkolive #5b5842 dark olive-buff darkolivebuff #a18f60 dark olive-gray darkolivegray #5b5842 dark olive-gray darkolivegray #57554c dark orient blue darkorientblue #536878 dark payne's gray darkpaynesgray #36454f dark payne's gray darkpaynesgray #51585e dark perilla purple darkperillapurple #673147 dark plumbago blue darkplumbagoblue #9690ab dark plumbago blue darkplumbagoblue #aa98a9 dark plumbago gray darkplumbagogray #796878 dark plumbago gray darkplumbagogray #8b8589 dark plumbago gray darkplumbagogray #5d555b dark plumbago slate darkplumbagoslate #5d555b dark plumbeous darkplumbeous #51585e dark porcelain green darkporcelaingreen #5e716a dark purple-drab darkpurpledrab #796878 dark purplish gray darkpurplishgray #5d555b dark purplish gray darkpurplishgray #555555 dark quaker drab darkquakerdrab #5d555b dark russian green darkrussiangreen #5e716a dark russian green darkrussiangreen #3a4b47 dark slate-purple darkslatepurple #5d3954 dark slate-violet darkslateviolet #5d555b dark slate-violet darkslateviolet #796878 dark soft blue-violet darksoftblueviolet #4e5180 dark soft blue-violet darksoftblueviolet #604e81 dark soft bluish violet darksoftbluishviolet #604e81 dark sulphate green darksulphategreen #317873 dark terre verte darkterreverte #5e716a dark tyrian blue darktyrianblue #536878 dark tyrian blue darktyrianblue #4c516d dark varley's gray darkvarleysgray #5d555b dark vinaceous darkvinaceous #905d5d dark vinaceous-brown darkvinaceousbrown #905d5d dark vinaceous-drab darkvinaceousdrab #905d5d dark vinaceous-drab darkvinaceousdrab #5c504f dark vinaceous-gray darkvinaceousgray #796878 dark vinaceous-purple darkvinaceouspurple #673147 dark violet darkviolet #604e81 dark violet-gray darkvioletgray #5d555b dark violet-gray darkvioletgray #555555 dark violet-slate darkvioletslate #536878 dark viridian green darkviridiangreen #3b7861 dark yellowish green darkyellowishgreen #355e3b dark yvette violet darkyvetteviolet #50404d dark zinc green darkzincgreen #3b7861 dauphin's violet dauphinsviolet #604e81 dawn gray dawngray #b4bcc0 dawn gray dawngray #b9b8b5 deep aniline lilac deepanilinelilac #4997d0 deep blue-violet deepblueviolet #30267a deep blue-violet deepblueviolet #9065ca deep bluish glaucous deepbluishglaucous #96ded1 deep bluish gray-green deepbluishgraygreen #5e716a deep bluish gray-green deepbluishgraygreen #317873 deep brownish drab deepbrownishdrab #635147 deep brownish vinaceous deepbrownishvinaceous #905d5d deep cadet blue deepcadetblue #436b95 deep chicory blue deepchicoryblue #7e73b8 deep chrome deepchrome #eaa221 deep chrysolite green deepchrysolitegreen #8a9a5b deep colonial buff deepcolonialbuff #c9ae5d deep corinthian red deepcorinthianred #905d5d deep delft blue deepdelftblue #536878 deep dull bluish violet deepdullbluishviolet #604e97 deep dull bluish violet deepdullbluishviolet #604e81 deep dull bluish violet deepdullbluishviolet #8c92ac deep dull bluish violet deepdullbluishviolet #4c516d deep dull bluish violet deepdullbluishviolet #9690ab deep dull bluish violet deepdullbluishviolet #554c69 deep dull bluish violet deepdullbluishviolet #604e81 deep dull lavender deepdulllavender #aa98a9 deep dull violaceous blue deepdullviolaceousblue #4e5180 deep dull violet-blue deepdullvioletblue #604e81 deep dutch blue deepdutchblue #536878 deep dutch blue deepdutchblue #8c92ac deep glaucous-gray deepglaucousgray #81878b deep glaucous-green deepglaucousgreen #6aab8e deep grape green deepgrapegreen #8a9a5b deep grape green deepgrapegreen #8f9779 deep grayish blue-green deepgrayishbluegreen #5e716a deep grayish lavender deepgrayishlavender #9690ab deep grayish lavender deepgrayishlavender #aa98a9 deep grayish olive deepgrayisholive #57554c deep green-blue gray deepgreenbluegray #536878 deep greenish glaucous deepgreenishglaucous #8ed1b2 deep gull gray deepgullgray #848482 deep heliotrope gray deepheliotropegray #796878 deep hyssop violet deephyssopviolet #86608e deep lavender deeplavender #8c82b6 deep lavender-blue deeplavenderblue #6c79b8 deep lichen green deeplichengreen #93c592 deep livid brown deeplividbrown #905d5d deep livid purple deeplividpurple #673147 deep madder blue deepmadderblue #4c516d deep malachite green deepmalachitegreen #679267 deep medici blue deepmediciblue #81878b deep mouse gray deepmousegray #5b504f deep mouse gray deepmousegray #848482 deep mouse gray deepmousegray #555555 deep neutral gray deepneutralgray #555555 deep olive deepolive #665d1e deep olive deepolive #5b5842 deep olive-buff deepolivebuff #c2b280 deep olive-gray deepolivegray #8a8776 deep orient blue deeporientblue #536878 deep payne's gray deeppaynesgray #536878 deep plumbago blue deepplumbagoblue #aa98a9 deep plumbago gray deepplumbagogray #8b8589 deep plumbeous deepplumbeous #536878 deep plumbeous deepplumbeous #81878b deep purplish gray deeppurplishgray #5d555b deep purplish vinaceous deeppurplishvinaceous #915f6d deep quaker drab deepquakerdrab #5d555b deep rose pink deeprosepink #e68fac deep sea-foam green deepseafoamgreen #c9dc89 deep slate-blue deepslateblue #536878 deep slate-green deepslategreen #4e5755 deep slate-olive deepslateolive #4e5755 deep slate-violet deepslateviolet #796878 deep slaty brown deepslatybrown #50404d deep soft blue-violet deepsoftblueviolet #4e5180 deep soft blue-violet deepsoftblueviolet #604e81 deep soft bluish violet deepsoftbluishviolet #604e97 deep turtle green deepturtlegreen #44944a deep turtle green deepturtlegreen #679267 deep varley's gray deepvarleysgray #796878 deep varley's gray deepvarleysgray #5d555b deep vinaceous deepvinaceous #c08081 deep vinaceous-gray deepvinaceousgray #796878 deep vinaceous-lavender deepvinaceouslavender #aa8a9e deep vinaceous-lavender deepvinaceouslavender #c3a6b1 deep violet-gray deepvioletgray #8b8589 deep violet-gray deepvioletgray #5d555b deep violet-gray deepvioletgray #848482 deep violet-gray deepvioletgray #555555 deep violet-plumbeous deepvioletplumbeous #4c516d deep wedgewood blue deepwedgewoodblue #6c79b8 delft blue delftblue #536878 diamin-azo blue diaminazoblue #554c69 diamin-azo blue diaminazoblue #50404d diamine brown diaminebrown #674c47 diamine green diaminegreen #3b7861 diamine green diaminegreen #1b4d3e diva blue divablue #6c79b8 diva blue divablue #545aa7 drab drab #c19a6b drab drab #826644 drab drab #ae9b82 drab drab #7e6d5a drab-gray drabgray #ae9b82 drab-gray drabgray #bfb8a5 dragons-blood red dragonsbloodred #9e4732 dresden brown dresdenbrown #826644 duck green duckgreen #3a4b47 dull blackish green dullblackishgreen #3a4b47 dull blue-green black dullbluegreenblack #36454f dull blue-green black dullbluegreenblack #202830 dull blue-green black dullbluegreenblack #202428 dull blue-violet dullblueviolet #545aa7 dull blue-violet dullblueviolet #7e73b8 dull blue-violet dullblueviolet #604e97 dull blue-violet dullblueviolet #604e81 dull bluish violet dullbluishviolet #7e73b8 dull bluish violet dullbluishviolet #604e97 dull bluish violet dullbluishviolet #8c82b6 dull bluish violet dullbluishviolet #604e81 dull bluish violet dullbluishviolet #604e97 dull bluish violet dullbluishviolet #604e81 dull citrine dullcitrine #867e36 dull citrine dullcitrine #665d1e dull dark purple dulldarkpurple #9e4f88 dull dark purple dulldarkpurple #702963 dull dark purple dulldarkpurple #915c83 dull dusky purple dullduskypurple #50404d dull dusky purple dullduskypurple #5d3954 dull greenish black dullgreenishblack #4e5755 dull greenish black dullgreenishblack #555555 dull greenish black dullgreenishblack #4e5755 dull greenish black dullgreenishblack #555555 dull green-yellow dullgreenyellow #7e9f2e dull indian purple dullindianpurple #915f6d dull lavender dulllavender #c3a6b1 dull magenta purple dullmagentapurple #9e4f88 dull opaline green dullopalinegreen #c7e6d7 dull purplish black dullpurplishblack #5d555b dull violaceous blue dullviolaceousblue #545aa7 dull violet-black dullvioletblack #5d555b dull violet-black dullvioletblack #36454f dull violet-black dullvioletblack #51585e dull violet-black dullvioletblack #50404d dull violet-black dullvioletblack #5d555b dull violet-black dullvioletblack #555555 dull violet-black dullvioletblack #222222 dull violet-blue dullvioletblue #545aa7 dull violet-blue dullvioletblue #604e81 dusky auricula purple duskyauriculapurple #5d3954 dusky blue duskyblue #4c516d dusky blue-green duskybluegreen #3a4b47 dusky blue-violet duskyblueviolet #554c69 dusky blue-violet duskyblueviolet #2f2140 dusky blue-violet duskyblueviolet #50404d dusky bluish green duskybluishgreen #4e5755 dusky brown duskybrown #50404d dusky brown duskybrown #5d555b dusky drab duskydrab #5b504f dusky dull bluish green duskydullbluishgreen #3a4b47 dusky dull green duskydullgreen #3a4b47 dusky dull green duskydullgreen #4e5755 dusky dull violet duskydullviolet #563c5c dusky dull violet duskydullviolet #86608e dusky dull violet duskydullviolet #563c5c dusky dull violet duskydullviolet #796878 dusky dull violet-blue duskydullvioletblue #554c69 dusky green duskygreen #5e716a dusky green duskygreen #3a4b47 dusky green-blue duskygreenblue #004b49 dusky green-blue duskygreenblue #004958 dusky green-blue duskygreenblue #536878 dusky green-blue duskygreenblue #536878 dusky green-blue duskygreenblue #36454f dusky green-gray duskygreengray #555555 dusky greenish blue duskygreenishblue #00416a dusky greenish blue duskygreenishblue #436b95 dusky greenish blue duskygreenishblue #00304e dusky neutral gray duskyneutralgray #555555 dusky olive-green duskyolivegreen #515744 dusky orient blue duskyorientblue #536878 dusky purplish gray duskypurplishgray #50404d dusky purplish gray duskypurplishgray #5d555b dusky purplish gray duskypurplishgray #555555 dusky purplish gray duskypurplishgray #222222 dusky slate-blue duskyslateblue #36454f dusky slate-violet duskyslateviolet #50404d dusky slate-violet duskyslateviolet #5d555b dusky violet duskyviolet #50404d dusky violet-blue duskyvioletblue #4c516d dusky violet-blue duskyvioletblue #554c69 dusky violet-blue duskyvioletblue #36454f dusky yellowish green duskyyellowishgreen #515744 dutch blue dutchblue #91a3b0 dutch blue dutchblue #8c92ac ecru-drab ecrudrab #c2ac99 ecru-olive ecruolive #ab9144 ecru-olive ecruolive #a18f60 elm green elmgreen #4a5d23 elm green elmgreen #515744 emerald green emeraldgreen #83d37d empire green empiregreen #5e716a empire green empiregreen #3a4b47 empire yellow empireyellow #fada5e endive blue endiveblue #8791bf endive blue endiveblue #8c92ac english red englishred #9e4732 eosine pink eosinepink #e4717a ethyl green ethylgreen #007a74 ethyl green ethylgreen #317873 eton blue etonblue #436b95 etruscan red etruscanred #905d5d eugenia red eugeniared #ab4e52 eupatorium purple eupatoriumpurple #b784a7 eupatorium purple eupatoriumpurple #915c83 fawn color fawncolor #977f73 fawn color fawncolor #a67b5b fawn color fawncolor #958070 ferruginous ferruginous #cb6d51 ferruginous ferruginous #9e4732 flame scarlet flamescarlet #e25822 flax-flower blue flaxflowerblue #6c79b8 flesh color fleshcolor #dea5a4 flesh-ochre fleshochre #d99058 flesh pink fleshpink #f4c2c2 flesh pink fleshpink #d9a6a9 fluorite green fluoritegreen #679267 fluorite violet fluoriteviolet #563c5c forest green forestgreen #8a9a5b forest green forestgreen #4a5d23 forget-me-not blue forgetmenotblue #6c79b8 french gray frenchgray #91a3b0 french gray frenchgray #b4bcc0 french green frenchgreen #3b7861 fuscous fuscous #5b504f fuscous-black fuscousblack #5b504f fuscous-black fuscousblack #555555 garnet brown garnetbrown #841b2d gendarme blue gendarmeblue #436b95 gentian blue gentianblue #545aa7 geranium pink geraniumpink #e4717a geranium pink geraniumpink #e66761 glass green glassgreen #c9dc89 glaucous glaucous #dadfb7 glaucous-blue glaucousblue #66aabc glaucous-gray glaucousgray #b4bcc0 glaucous-green glaucousgreen #8da399 gnaphalium green gnaphaliumgreen #c7e6d7 gnaphalium green gnaphaliumgreen #8da399 grass green grassgreen #8a9a5b grayish blue-green grayishbluegreen #5e716a grayish blue-violet grayishblueviolet #545aa7 grayish blue-violet grayishblueviolet #4e5180 grayish blue-violet grayishblueviolet #604e97 grayish blue-violet grayishblueviolet #604e81 grayish blue-violet grayishblueviolet #8791bf grayish lavender grayishlavender #aa98a9 grayish olive grayisholive #8c8767 grayish violaceous blue grayishviolaceousblue #8791bf grayish violet-blue grayishvioletblue #8c82b6 grayish violet-blue grayishvioletblue #604e81 green-blue slate greenblueslate #536878 greenish glaucous greenishglaucous #c7e6d7 greenish glaucous-blue greenishglaucousblue #66ada4 greenish slate-black greenishslateblack #3a4b47 greenish slate-black greenishslateblack #4e5755 greenish slate-black greenishslateblack #555555 greenish slate-black greenishslateblack #222222 greenish yellow greenishyellow #beb72e green-yellow greenyellow #e9e450 grenadine grenadine #d9603b grenadine pink grenadinepink #f88379 grenadine red grenadinered #e25822 guinea green guineagreen #007a74 gull gray gullgray #848482 haematite red haematitered #674c47 haematoxylin violet haematoxylinviolet #86608e hair brown hairbrown #5b504f hathi gray hathigray #b2beb5 hathi gray hathigray #7d8984 hathi gray hathigray #b9b8b5 hathi gray hathigray #848482 hay's blue haysblue #545aa7 hay's brown haysbrown #905d5d hay's brown haysbrown #674c47 hay's green haysgreen #679267 hay's green haysgreen #355e3b hay's lilac hayslilac #b695c0 hay's maroon haysmaroon #543d3f hay's russet haysrusset #79443b hazel hazel #80461b heliotrope gray heliotropegray #aa98a9 heliotrope gray heliotropegray #796878 heliotrope slate heliotropeslate #796878 hellebore red helleborered #a8516e helvetia blue helvetiablue #545aa7 hermosa pink hermosapink #ea9399 hessian brown hessianbrown #674c47 hessian brown hessianbrown #43302e honey yellow honeyyellow #c9ae5d honey yellow honeyyellow #ab9144 hortense blue hortenseblue #436b95 hortense violet hortenseviolet #d399e6 hyacinth blue hyacinthblue #272458 hyacinth blue hyacinthblue #604e81 hyacinth violet hyacinthviolet #602f6b hydrangea pink hydrangeapink #f4c2c2 hydrangea pink hydrangeapink #d9a6a9 hydrangea red hydrangeared #905d5d hyssop violet hyssopviolet #86608e indian lake indianlake #a8516e indian lake indianlake #915f6d indian purple indianpurple #50404d indian purple indianpurple #673147 indian red indianred #905d5d indigo blue indigoblue #00304e indigo blue indigoblue #536878 indigo blue indigoblue #36454f indigo blue indigoblue #4c516d indulin blue indulinblue #4c516d invisible green invisiblegreen #3a4b47 invisible green invisiblegreen #004b49 iron gray irongray #57554c isabella color isabellacolor #a18f60 italian blue italianblue #007791 ivory yellow ivoryyellow #f3e5ab ivy green ivygreen #665d1e ivy green ivygreen #5b5842 jade green jadegreen #4a5d23 jade green jadegreen #515744 japan rose japanrose #d9a6a9 jasper green jaspergreen #3b7861 jasper pink jasperpink #e4717a jasper pink jasperpink #f88379 jasper pink jasperpink #e66761 jasper red jasperred #ab4e52 javel green javelgreen #b9b459 jay blue jayblue #436b95 jay blue jayblue #8791bf jouvence blue jouvenceblue #317873 jouvence blue jouvenceblue #367588 kaiser brown kaiserbrown #80461b kildare green kildaregreen #8a9a5b killarney green killarneygreen #679267 king's blue kingsblue #70a3cc kronberg's green kronbergsgreen #867e36 kronberg's green kronbergsgreen #665d1e laelia pink laeliapink #b784a7 laelia pink laeliapink #de6fa1 la france pink lafrancepink #ffb5ba lavender lavender #dcd0ff lavender lavender #c4c3dd lavender-blue lavenderblue #6c79b8 lavender-blue lavenderblue #8791bf lavender-gray lavendergray #c0c8e1 lavender-gray lavendergray #8c92ac lavender-gray lavendergray #c4c3dd lavender-gray lavendergray #9690ab lavender-violet lavenderviolet #7e73b8 leaf green leafgreen #515744 leitch's blue leitchsblue #0067a5 lemon chrome lemonchrome #d4af37 lemon yellow lemonyellow #e9e450 lemon yellow lemonyellow #beb72e lettuce green lettucegreen #8a9a5b lichen green lichengreen #c7e6d7 light alice blue lightaliceblue #70a3cc light alice blue lightaliceblue #91a3b0 light amparo blue lightamparoblue #4997d0 light amparo purple lightamparopurple #d399e6 light bice green lightbicegreen #8a9a5b light blue-green lightbluegreen #3eb489 light blue-green lightbluegreen #6aab8e light blue-violet lightblueviolet #30267a light bluish violet lightbluishviolet #6c79b8 light bluish violet lightbluishviolet #545aa7 light bluish violet lightbluishviolet #7e73b8 light brownish drab lightbrownishdrab #958070 light brownish olive lightbrownisholive #967117 light brownish vinaceous lightbrownishvinaceous #c4aead light buff lightbuff #fad6a5 light buff lightbuff #f3e5ab light cadet blue lightcadetblue #4997d0 light cadmium lightcadmium #f3c300 light campanula blue lightcampanulablue #6c79b8 light celandine green lightcelandinegreen #b2beb5 light celandine green lightcelandinegreen #7d8984 light cendre green lightcendregreen #83d37d light cendre green lightcendregreen #93c592 light cerulean blue lightceruleanblue #70a3cc light chalcedony yellow lightchalcedonyyellow #eae679 light chicory blue lightchicoryblue #8c82b6 light cinnamon-drab lightcinnamondrab #977f73 light cinnamon-drab lightcinnamondrab #958070 light columbia blue lightcolumbiablue #70a3cc light congo pink lightcongopink #f4c2c2 light congo pink lightcongopink #d9a6a9 light coral red lightcoralred #cb6d51 light corinthian red lightcorinthianred #c08081 light cress green lightcressgreen #8a9a5b light danube green lightdanubegreen #3b7861 light drab lightdrab #ae9b82 light dull bluish violet lightdullbluishviolet #8c82b6 light dull glaucous-blue lightdullglaucousblue #66aabc light dull glaucous-blue lightdullglaucousblue #91a3b0 light dull green-yellow lightdullgreenyellow #c9dc89 light elm green lightelmgreen #8a9a5b light fluorite green lightfluoritegreen #c9dc89 light forget-me-not blue lightforgetmenotblue #70a3cc light glaucous-blue lightglaucousblue #9cd1dc light grape green lightgrapegreen #8a9a5b light grayish blue-violet lightgrayishblueviolet #70a3cc light grayish blue-violet lightgrayishblueviolet #8791bf light grayish olive lightgrayisholive #8c8767 light grayish olive lightgrayisholive #8a8776 light grayish vinaceous lightgrayishvinaceous #c7ada3 light grayish violet-blue lightgrayishvioletblue #6c79b8 light greenish yellow lightgreenishyellow #e9e450 light greenish yellow lightgreenishyellow #beb72e light green-yellow lightgreenyellow #eae679 light gull gray lightgullgray #b9b8b5 light heliotrope gray lightheliotropegray #aa98a9 light hellebore green lighthelleboregreen #8a9a5b light hellebore green lighthelleboregreen #8f9779 light hortense violet lighthortenseviolet #d399e6 light hyssop violet lighthyssopviolet #8c82b6 light jasper red lightjasperred #e4717a light jasper red lightjasperred #ab4e52 light king's blue lightkingsblue #bcd4e6 light king's blue lightkingsblue #91a3b0 light lavender-blue lightlavenderblue #8791bf light lavender-violet lightlavenderviolet #8c82b6 light lobelia violet lightlobeliaviolet #b695c0 light lumiere green lightlumieregreen #c9dc89 light mallow purple lightmallowpurple #de6fa1 light mauve lightmauve #8c82b6 light medici blue lightmediciblue #536878 light methyl blue lightmethylblue #4997d0 light methyl blue lightmethylblue #0067a5 light mineral gray lightmineralgray #b2beb5 light mouse gray lightmousegray #8e8279 light neropalin blue lightneropalinblue #91a3b0 light neutral gray lightneutralgray #848482 light niagara green lightniagaragreen #66ada4 light ochraceous-buff lightochraceousbuff #e3a857 light ochraceous-salmon lightochraceoussalmon #fad6a5 light olive-gray lightolivegray #bfb8a5 light orange-yellow lightorangeyellow #e3a857 light orange-yellow lightorangeyellow #d4af37 light oriental green lightorientalgreen #93c592 light paris green lightparisgreen #93c592 light payne's gray lightpaynesgray #91a3b0 light payne's gray lightpaynesgray #81878b light perilla purple lightperillapurple #915c83 light perilla purple lightperillapurple #836479 light phlox purple lightphloxpurple #de6fa1 light pinkish cinnamon lightpinkishcinnamon #f4c2c2 light pinkish cinnamon lightpinkishcinnamon #d9a6a9 light pinkish lilac lightpinkishlilac #efbbcc light plumbago gray lightplumbagogray #8b8589 light porcelain green lightporcelaingreen #66ada4 light porcelain green lightporcelaingreen #317873 light purple-drab lightpurpledrab #796878 light purplish gray lightpurplishgray #8b8589 light purplish gray lightpurplishgray #848482 light purplish vinaceous lightpurplishvinaceous #dea5a4 light quaker drab lightquakerdrab #8b8589 light rosolane purple lightrosolanepurple #de6fa1 light russet-vinaceous lightrussetvinaceous #a87c6d light salmon-orange lightsalmonorange #d99058 light seal brown lightsealbrown #5c504f light sky blue lightskyblue #91a3b0 light soft blue-violet lightsoftblueviolet #6c79b8 light soft blue-violet lightsoftblueviolet #7e73b8 light squill blue lightsquillblue #70a3cc light sulphate green lightsulphategreen #66ada4 light terre verte lightterreverte #317873 light turtle green lightturtlegreen #c9dc89 light tyrian blue lighttyrianblue #536878 light tyrian blue lighttyrianblue #8c92ac light tyrian blue lighttyrianblue #4c516d light varley's gray lightvarleysgray #aa98a9 light vinaceous-cinnamon lightvinaceouscinnamon #fad6a5 light vinaceous-drab lightvinaceousdrab #905d5d light vinaceous-fawn lightvinaceousfawn #c7ada3 light vinaceous-fawn lightvinaceousfawn #c2ac99 light vinaceous-gray lightvinaceousgray #aa98a9 light vinaceous-gray lightvinaceousgray #bfb9bd light vinaceous-gray lightvinaceousgray #8b8589 light vinaceous-gray lightvinaceousgray #c3a6b1 light vinaceous-lilac lightvinaceouslilac #b784a7 light vinaceous-lilac lightvinaceouslilac #aa8a9e light vinaceous-lilac lightvinaceouslilac #d597ae light vinaceous-lilac lightvinaceouslilac #c3a6b1 light vinaceous-purple lightvinaceouspurple #836479 light violet lightviolet #6c79b8 light violet lightviolet #7e73b8 light violet-blue lightvioletblue #545aa7 light violet-gray lightvioletgray #8b8589 light violet-gray lightvioletgray #848482 light violet-plumbeous lightvioletplumbeous #91a3b0 light violet-plumbeous lightvioletplumbeous #536878 light violet-plumbeous lightvioletplumbeous #8c92ac light viridine green lightviridinegreen #c9dc89 light viridine yellow lightviridineyellow #eae679 light windsor blue lightwindsorblue #8791bf light wistaria blue lightwistariablue #8791bf light wistaria blue lightwistariablue #8c82b6 light wistaria violet lightwistariaviolet #8c82b6 light yellow-green lightyellowgreen #bdda57 light yellow-green lightyellowgreen #c9dc89 light yellowish olive lightyellowisholive #98943e lilac lilac #b695c0 lilac lilac #aa98a9 lilac gray lilacgray #bfb9bd lily green lilygreen #7d8984 lime green limegreen #b9b459 lime green limegreen #98943e lime green limegreen #867e36 lincoln green lincolngreen #515744 liseran purple liseranpurple #9e4f88 liseran purple liseranpurple #b784a7 liseran purple liseranpurple #915c83 liseran purple liseranpurple #de6fa1 litho purple lithopurple #875692 litho purple lithopurple #602f6b litho purple lithopurple #86608e liver brown liverbrown #79443b livid brown lividbrown #905d5d livid pink lividpink #f9ccca livid pink lividpink #dea5a4 livid pink lividpink #ead8d7 livid pink lividpink #c4aead livid purple lividpurple #915c83 livid violet lividviolet #86608e livid violet lividviolet #796878 lobelia violet lobeliaviolet #b695c0 lumiere blue lumiereblue #66ada4 lumiere blue lumiereblue #66aabc lumiere green lumieregreen #c9dc89 lumiere green lumieregreen #8a9a5b lyons blue lyonsblue #0067a5 madder blue madderblue #9690ab madder blue madderblue #796878 madder brown madderbrown #905d5d madder violet madderviolet #563c5c magenta magenta #9e4f88 mahogany red mahoganyred #79443b maize yellow maizeyellow #f8de7e malachite green malachitegreen #93c592 mallow pink mallowpink #e68fac mallow purple mallowpurple #870074 mallow purple mallowpurple #de6fa1 manganese violet manganeseviolet #875692 marguerite yellow margueriteyellow #f3e5ab marine blue marineblue #436b95 maroon maroon #3e1d1e mars brown marsbrown #6f4e37 mars orange marsorange #cb6d51 mars orange marsorange #9e4732 mars violet marsviolet #50404d mars yellow marsyellow #c98500 mars yellow marsyellow #be8a3d martius yellow martiusyellow #eae679 massicot yellow massicotyellow #f8de7e massicot yellow massicotyellow #f3e5ab mathew's blue mathewsblue #0067a5 mathew's purple mathewspurple #875692 mathew's purple mathewspurple #86608e mauve mauve #7e73b8 mauvette mauvette #efbbcc mazarine blue mazarineblue #4997d0 mazarine blue mazarineblue #70a3cc meadow green meadowgreen #679267 medal bronze medalbronze #6c541e medici blue mediciblue #81878b methyl blue methylblue #00a1c2 methyl green methylgreen #007a74 methyl green methylgreen #317873 microcline green microclinegreen #96ded1 mignonette green mignonettegreen #867e36 mikado brown mikadobrown #a67b5b mikado orange mikadoorange #ed872d mineral gray mineralgray #8f9779 mineral green mineralgreen #7e9f2e mineral red mineralred #905d5d montpellier green montpelliergreen #6aab8e montpellier green montpelliergreen #3b7861 morocco red moroccored #79443b motmot blue motmotblue #367588 motmot green motmotgreen #44944a motmot green motmotgreen #679267 mouse gray mousegray #8e8279 mulberry purple mulberrypurple #602f6b mulberry purple mulberrypurple #563c5c mummy brown mummybrown #4b3621 munich lake munichlake #be0032 munich lake munichlake #bc3f4a mustard yellow mustardyellow #d4af37 myrtle green myrtlegreen #004b49 mytho green mythogreen #8a9a5b mytho green mythogreen #8f9779 naphthalene violet naphthaleneviolet #5d3954 naphthalene yellow naphthaleneyellow #eae679 naphthalene yellow naphthaleneyellow #ebe8a4 naples yellow naplesyellow #f8de7e natal brown natalbrown #635147 navy blue navyblue #4e5180 navy blue navyblue #4c516d neropalin blue neropalinblue #70a3cc neutral gray neutralgray #848482 neutral red neutralred #673147 neutral red neutralred #915f6d neuvider green neuvidergreen #93c592 neva green nevagreen #bdda57 niagara green niagaragreen #8da399 niagara green niagaragreen #66ada4 nickel green nickelgreen #3b7861 nickel green nickelgreen #5e716a night green nightgreen #8db600 nigrosin blue nigrosinblue #4c516d nigrosin violet nigrosinviolet #563c5c nile blue nileblue #66ada4 nopal red nopalred #bc3f4a ocher red ocherred #905d5d ochraceous-buff ochraceousbuff #f4c2c2 ochraceous-buff ochraceousbuff #d9a6a9 ochraceous-orange ochraceousorange #eaa221 ochraceous-orange ochraceousorange #c98500 ochraceous-salmon ochraceoussalmon #d99058 ochraceous-tawny ochraceoustawny #be8a3d ochraceous-tawny ochraceoustawny #996515 oil green oilgreen #8a9a5b old burgundy oldburgundy #2e1d21 old gold oldgold #ab9144 old gold oldgold #967117 old rose oldrose #ab4e52 olive olive #665d1e olive olive #5b5842 olive-brown olivebrown #7e6d5a olive-buff olivebuff #f3e5ab olive-buff olivebuff #c2b280 olive-citrine olivecitrine #665d1e olive-gray olivegray #8c8767 olive-gray olivegray #8a8776 olive green olivegreen #665d1e olive lake olivelake #a18f60 olive lake olivelake #867e36 olive-ocher oliveocher #c9ae5d olive-ocher oliveocher #ab9144 olive-yellow oliveyellow #b9b459 olivine olivine #93c592 olympic blue olympicblue #0067a5 onion-skin pink onionskinpink #d9a6a9 onion-skin pink onionskinpink #d99058 ontario violet ontarioviolet #8c82b6 opaline green opalinegreen #c9dc89 opaline green opalinegreen #dadfb7 orange orange #ed872d orange-buff orangebuff #e3a857 orange chrome orangechrome #f38400 orange-cinnamon orangecinnamon #d99058 orange-citrine orangecitrine #967117 orange-pink orangepink #fd943f orange-pink orangepink #fab57f orange-rufous orangerufous #be6516 orange-vinaceous orangevinaceous #e4717a orange-vinaceous orangevinaceous #f88379 oriental green orientalgreen #679267 orient blue orientblue #436b95 orient blue orientblue #536878 orient pink orientpink #f88379 oural green ouralgreen #b6e5af oural green ouralgreen #93c592 ox-blood red oxbloodred #841b2d oxide blue oxideblue #0067a5 oxide blue oxideblue #436b95 pale amaranth pink paleamaranthpink #e68fac pale amparo blue paleamparoblue #bcd4e6 pale amparo blue paleamparoblue #91a3b0 pale amparo purple paleamparopurple #b695c0 pale aniline lilac paleanilinelilac #a1caf1 pale aniline lilac paleanilinelilac #70a3cc pale blue paleblue #9cd1dc pale blue paleblue #bcd4e6 pale blue-green palebluegreen #c7e6d7 pale blue-violet paleblueviolet #6c79b8 pale bluish lavender palebluishlavender #c4c3dd pale bluish lavender palebluishlavender #d6cadd pale bluish violet palebluishviolet #6c79b8 pale brownish drab palebrownishdrab #c1b6b3 pale brownish vinaceous palebrownishvinaceous #ead8d7 pale brownish vinaceous palebrownishvinaceous #c4aead pale cadet blue palecadetblue #70a3cc pale cadet blue palecadetblue #91a3b0 pale cadet blue palecadetblue #8791bf pale cadet blue palecadetblue #8c92ac pale campanula blue palecampanulablue #b3bce2 pale campanula blue palecampanulablue #8791bf pale cendre green palecendregreen #c9dc89 pale cendre green palecendregreen #dadfb7 pale cerulean blue paleceruleanblue #a1caf1 pale cerulean blue paleceruleanblue #70a3cc pale chalcedony yellow palechalcedonyyellow #ebe8a4 pale cinnamon-pink palecinnamonpink #f4c2c2 pale cinnamon-pink palecinnamonpink #d9a6a9 pale cinnamon-pink palecinnamonpink #ecd5c5 pale cinnamon-pink palecinnamonpink #c2ac99 pale congo pink palecongopink #f4c2c2 pale congo pink palecongopink #d9a6a9 pale congo pink palecongopink #ecd5c5 pale congo pink palecongopink #c7ada3 pale drab-gray paledrabgray #f2f3f4 pale drab-gray paledrabgray #b9b8b5 pale dull glaucous-blue paledullglaucousblue #bcd4e6 pale dull glaucous-blue paledullglaucousblue #91a3b0 pale dull green-yellow paledullgreenyellow #c9dc89 pale ecru-drab paleecrudrab #c1b6b3 pale flesh color palefleshcolor #f4c2c2 pale flesh color palefleshcolor #d9a6a9 pale fluorite green palefluoritegreen #c7e6d7 pale glass green paleglassgreen #c9dc89 pale glass green paleglassgreen #dadfb7 pale glaucous-blue paleglaucousblue #9cd1dc pale glaucous-blue paleglaucousblue #bcd4e6 pale glaucous-green paleglaucousgreen #c7e6d7 pale grayish blue palegrayishblue #bcd4e6 pale grayish blue palegrayishblue #c0c8e1 pale grayish blue-violet palegrayishblueviolet #c0c8e1 pale grayish vinaceous palegrayishvinaceous #c1b6b3 pale grayish vinaceous palegrayishvinaceous #ecd5c5 pale grayish vinaceous palegrayishvinaceous #c7ada3 pale grayish violet-blue palegrayishvioletblue #8791bf pale green-blue gray palegreenbluegray #91a3b0 pale greenish yellow palegreenishyellow #eae679 pale greenish yellow palegreenishyellow #b9b459 pale green-yellow palegreenyellow #eae679 pale green-yellow palegreenyellow #ebe8a4 pale gull gray palegullgray #b9b8b5 pale hortense violet palehortenseviolet #d5badb pale hortense violet palehortenseviolet #b695c0 pale king's blue palekingsblue #c4c3dd pale laelia pink palelaeliapink #efbbcc pale laelia pink palelaeliapink #d597ae pale lavender-violet palelavenderviolet #b695c0 pale lavender-violet palelavenderviolet #aa98a9 pale lemon yellow palelemonyellow #e9e450 pale lilac palelilac #e8ccd7 pale lobelia violet palelobeliaviolet #d6cadd pale lobelia violet palelobeliaviolet #aa98a9 pale lumiere green palelumieregreen #c9dc89 pale mauve palemauve #d6cadd pale mazarine blue palemazarineblue #bcd4e6 pale mazarine blue palemazarineblue #91a3b0 pale mazarine blue palemazarineblue #c0c8e1 pale mazarine blue palemazarineblue #8c92ac pale medici blue palemediciblue #91a3b0 pale medici blue palemediciblue #b4bcc0 pale medici blue palemediciblue #81878b pale methyl blue palemethylblue #70a3cc pale mouse gray palemousegray #8e8279 pale mouse gray palemousegray #bfb8a5 pale neropalin blue paleneropalinblue #bcd4e6 pale neutral gray paleneutralgray #848482 pale niagara green paleniagaragreen #c7e6d7 pale nile blue palenileblue #96ded1 pale ochraceous-buff paleochraceousbuff #f4c2c2 pale ochraceous-salmon paleochraceoussalmon #fad6a5 pale ochraceous-salmon paleochraceoussalmon #f3e5ab pale olive-buff paleolivebuff #f3e5ab pale olive-gray paleolivegray #f0ead6 pale olive-gray paleolivegray #bfb8a5 pale olivine paleolivine #c7e6d7 pale orange-yellow paleorangeyellow #fbc97f pale orange-yellow paleorangeyellow #e3a857 pale orange-yellow paleorangeyellow #fada5e pale orange-yellow paleorangeyellow #d4af37 pale orange-yellow paleorangeyellow #f8de7e pale orange-yellow paleorangeyellow #c9ae5d pale payne's gray palepaynesgray #91a3b0 pale persian lilac palepersianlilac #d597ae pale pinkish buff palepinkishbuff #fad6a5 pale pinkish cinnamon palepinkishcinnamon #fad6a5 pale purple-drab palepurpledrab #c3a6b1 pale purplish gray palepurplishgray #8b8589 pale purplish vinaceous palepurplishvinaceous #f9ccca pale purplish vinaceous palepurplishvinaceous #dea5a4 pale quaker drab palequakerdrab #bfb9bd pale quaker drab palequakerdrab #8b8589 pale rhodonite pink palerhodonitepink #efbbcc pale rose-purple palerosepurple #b695c0 pale rosolane purple palerosolanepurple #de6fa1 pale russian blue palerussianblue #bcd4e6 pale salmon color palesalmoncolor #fad6a5 pale smoke gray palesmokegray #bfb8a5 pale soft blue-violet palesoftblueviolet #8791bf pale soft blue-violet palesoftblueviolet #8c82b6 pale sulphate green palesulphategreen #66ada4 pale tiber green paletibergreen #c9dc89 pale turquoise green paleturquoisegreen #96ded1 pale turtle green paleturtlegreen #c9dc89 pale turtle green paleturtlegreen #dadfb7 pale varley's gray palevarleysgray #9690ab pale varley's gray palevarleysgray #aa98a9 pale verbena violet paleverbenaviolet #dcd0ff pale veronese green paleveronesegreen #c9dc89 pale veronese green paleveronesegreen #dadfb7 pale vinaceous palevinaceous #dea5a4 pale vinaceous-drab palevinaceousdrab #c4aead pale vinaceous-drab palevinaceousdrab #c1b6b3 pale vinaceous-drab palevinaceousdrab #ad8884 pale vinaceous-drab palevinaceousdrab #8f817f pale vinaceous-fawn palevinaceousfawn #c1b6b3 pale vinaceous-fawn palevinaceousfawn #ecd5c5 pale vinaceous-fawn palevinaceousfawn #c7ada3 pale vinaceous-fawn palevinaceousfawn #c2ac99 pale vinaceous-lilac palevinaceouslilac #efbbcc pale vinaceous-lilac palevinaceouslilac #e8ccd7 pale vinaceous-pink palevinaceouspink #ecd5c5 pale vinaceous-pink palevinaceouspink #c7ada3 pale violet paleviolet #8791bf pale violet paleviolet #8c82b6 pale violet-blue palevioletblue #4997d0 pale violet-gray palevioletgray #8b8589 pale violet-gray palevioletgray #848482 pale violet-plumbeous palevioletplumbeous #91a3b0 pale violet-plumbeous palevioletplumbeous #8c92ac pale viridine yellow paleviridineyellow #eae679 pale viridine yellow paleviridineyellow #ebe8a4 pale windsor blue palewindsorblue #70a3cc pale windsor blue palewindsorblue #8791bf pale wistaria blue palewistariablue #dcd0ff pale wistaria blue palewistariablue #8c82b6 pale wistaria violet palewistariaviolet #8c82b6 pale wistaria violet palewistariaviolet #9690ab pale yellow-green paleyellowgreen #c9dc89 pale yellow-orange paleyelloworange #f4c2c2 pallid blue-violet pallidblueviolet #b3bce2 pallid blue-violet pallidblueviolet #8791bf pallid bluish violet pallidbluishviolet #b3bce2 pallid bluish violet pallidbluishviolet #8791bf pallid bluish violet pallidbluishviolet #dcd0ff pallid bluish violet pallidbluishviolet #8c82b6 pallid brownish drab pallidbrownishdrab #c1b6b3 pallid grayish violet-blue pallidgrayishvioletblue #8791bf pallid grayish violet-blue pallidgrayishvioletblue #8c92ac pallid methyl blue pallidmethylblue #a1caf1 pallid mouse gray pallidmousegray #c1b6b3 pallid mouse gray pallidmousegray #b9b8b5 pallid neutral gray pallidneutralgray #b9b8b5 pallid purple-drab pallidpurpledrab #bfb9bd pallid purple-drab pallidpurpledrab #c3a6b1 pallid purplish gray pallidpurplishgray #bfb9bd pallid quaker drab pallidquakerdrab #bfb9bd pallid soft blue-violet pallidsoftblueviolet #b3bce2 pallid soft blue-violet pallidsoftblueviolet #8791bf pallid soft blue-violet pallidsoftblueviolet #dcd0ff pallid soft blue-violet pallidsoftblueviolet #8c82b6 pallid vinaceous-drab pallidvinaceousdrab #bfb9bd pallid vinaceous-drab pallidvinaceousdrab #e8ccd7 pallid violet pallidviolet #b3bce2 pallid violet pallidviolet #8791bf pallid violet pallidviolet #c0c8e1 pallid violet pallidviolet #8c92ac pallid violet pallidviolet #dcd0ff pallid violet pallidviolet #8c82b6 pallid violet pallidviolet #c4c3dd pallid violet pallidviolet #9690ab pallid violet-blue pallidvioletblue #b3bce2 pallid violet-blue pallidvioletblue #8791bf pansy purple pansypurple #673147 pansy violet pansyviolet #875692 paris blue parisblue #0067a5 paris blue parisblue #00416a paris green parisgreen #93c592 parrot green parrotgreen #8a9a5b parula blue parulablue #91a3b0 parula blue parulablue #536878 patent blue patentblue #004958 payne's gray paynesgray #536878 peach red peachred #cb6d51 peacock blue peacockblue #007791 peacock green peacockgreen #8a9a5b pea green peagreen #7d8984 pearl blue pearlblue #c0c8e1 pearl blue pearlblue #8c92ac pearl gray pearlgray #b9b8b5 pecan brown pecanbrown #a67b5b perilla purple perillapurple #673147 persian blue persianblue #bcd4e6 persian blue persianblue #91a3b0 persian lilac persianlilac #c17e91 petunia violet petuniaviolet #602f6b phenyl blue phenylblue #30267a phlox pink phloxpink #b695c0 phlox purple phloxpurple #9e4f88 picric yellow picricyellow #e9e450 pinard yellow pinardyellow #fada5e pinard yellow pinardyellow #f8de7e pinkish buff pinkishbuff #f4c2c2 pinkish buff pinkishbuff #d9a6a9 pinkish cinnamon pinkishcinnamon #e3a857 pinkish cinnamon pinkishcinnamon #c19a6b pinkish vinaceous pinkishvinaceous #d9a6a9 pistachio green pistachiogreen #679267 pleroma violet pleromaviolet #7e73b8 pleroma violet pleromaviolet #604e97 plumbago blue plumbagoblue #9690ab plumbago blue plumbagoblue #aa98a9 plumbago gray plumbagogray #8b8589 plumbeous plumbeous #91a3b0 plumbeous plumbeous #81878b plumbeous black plumbeousblack #36454f plumbeous black plumbeousblack #222222 plum purple plumpurple #2f2140 pois green poisgreen #8f9779 pompeian red pompeianred #ab4e52 porcelain blue porcelainblue #66aabc porcelain green porcelaingreen #317873 primrose yellow primroseyellow #eae679 primuline yellow primulineyellow #d4af37 prout's brown proutsbrown #6f4e37 prune purple prunepurple #563c5c prussian blue prussianblue #0067a5 prussian blue prussianblue #436b95 prussian green prussiangreen #004b49 prussian red prussianred #905d5d puritan gray puritangray #81878b purple purple #870074 purple-drab purpledrab #796878 purplish gray purplishgray #796878 purplish gray purplishgray #5d555b purplish lilac purplishlilac #b784a7 purplish lilac purplishlilac #d597ae purplish vinaceous purplishvinaceous #ad8884 pyrite yellow pyriteyellow #98943e quaker drab quakerdrab #8b8589 quaker drab quakerdrab #848482 rainette green rainettegreen #8a9a5b raisin black raisinblack #50404d raisin purple raisinpurple #5d3954 ramier blue ramierblue #9690ab ramier blue ramierblue #554c69 ramier blue ramierblue #796878 raw sienna rawsienna #be8a3d raw sienna rawsienna #996515 reed yellow reedyellow #b9b459 rejane green rejanegreen #93c592 rejane green rejanegreen #679267 rhodamine purple rhodaminepurple #ce4676 rhodonite pink rhodonitepink #c17e91 rinnemann's green rinnemannsgreen #8a9a5b rivage green rivagegreen #c9dc89 rivage green rivagegreen #8a9a5b rocellin purple rocellinpurple #de6fa1 rocellin purple rocellinpurple #c17e91 roman green romangreen #665d1e rood's blue roodsblue #00a1c2 rood's brown roodsbrown #977f73 rood's brown roodsbrown #a67b5b rood's brown roodsbrown #6f4e37 rood's lavender roodslavender #aa98a9 rood's violet roodsviolet #702963 rose color rosecolor #de6fa1 rose color rosecolor #ce4676 rose doree rosedoree #e66761 rose pink rosepink #efbbcc rose-purple rosepurple #d399e6 rose red rosered #be0032 roslyn blue roslynblue #272458 roslyn blue roslynblue #4e5180 roslyn blue roslynblue #604e81 rosolane pink rosolanepink #ffc8d6 rosolane pink rosolanepink #efbbcc rosolane purple rosolanepurple #b3446c royal purple royalpurple #604e81 rufous rufous #cb6d51 russet russet #6f4e37 russet-vinaceous russetvinaceous #905d5d russet-vinaceous russetvinaceous #a87c6d russian blue russianblue #bcd4e6 russian blue russianblue #91a3b0 russian green russiangreen #5e716a saccardo's olive saccardosolive #967117 saccardo's olive saccardosolive #6c541e saccardo's slate saccardosslate #51585e saccardo's umber saccardosumber #7e6d5a saccardo's umber saccardosumber #6c541e saccardo's violet saccardosviolet #875692 saccardo's violet saccardosviolet #86608e safrano pink safranopink #f88379 sage green sagegreen #8da399 sailor blue sailorblue #545aa7 salmon-buff salmonbuff #e3a857 salmon-buff salmonbuff #fad6a5 salmon color salmoncolor #d9a6a9 salmon color salmoncolor #fab57f salmon color salmoncolor #d99058 salmon-orange salmonorange #ed872d salvia blue salviablue #30267a sanford's brown sanfordsbrown #ae6938 sanford's brown sanfordsbrown #80461b sayal brown sayalbrown #996515 sayal brown sayalbrown #826644 scarlet scarlet #d9603b scarlet-red scarletred #be0032 scheele's green scheelesgreen #7e9f2e scheele's green scheelesgreen #8a9a5b schoenfeld's purple schoenfeldspurple #78184a sea-foam green seafoamgreen #ebe8a4 sea-foam yellow seafoamyellow #eae679 sea-foam yellow seafoamyellow #ebe8a4 sea green seagreen #317873 seal brown sealbrown #5c504f seal brown sealbrown #674c47 seashell pink seashellpink #ecd5c5 seashell pink seashellpink #c2ac99 seashell pink seashellpink #fad6a5 sepia sepia #483c32 sepia sepia #6c541e serpentine green serpentinegreen #867e36 shamrock green shamrockgreen #679267 shell pink shellpink #ecd5c5 shell pink shellpink #c7ada3 shrimp pink shrimppink #f4c2c2 shrimp pink shrimppink #d9a6a9 skobeloff green skobeloffgreen #007a74 sky blue skyblue #70a3cc sky gray skygray #bcd4e6 slate-black slateblack #222222 slate-blue slateblue #4c516d slate color slatecolor #555555 slate-gray slategray #555555 slate-olive slateolive #7d8984 slate-purple slatepurple #796878 slate-purple slatepurple #836479 slate-violet slateviolet #50404d slate-violet slateviolet #5d555b slate-violet slateviolet #796878 smalt blue smaltblue #30267a smoke gray smokegray #c2b280 smoke gray smokegray #bfb8a5 snuff brown snuffbrown #826644 snuff brown snuffbrown #7e6d5a soft blue-violet softblueviolet #7e73b8 soft bluish violet softbluishviolet #604e97 sooty black sootyblack #555555 sorghum brown sorghumbrown #674c47 sorrento green sorrentogreen #317873 spectrum blue spectrumblue #00a1c2 spectrum red spectrumred #be0032 spectrum violet spectrumviolet #604e97 spinach green spinachgreen #8a9a5b spinel pink spinelpink #b3446c spinel red spinelred #b3446c squill blue squillblue #70a3cc stone green stonegreen #679267 storm gray stormgray #7d8984 strawberry pink strawberrypink #cb6d51 straw yellow strawyellow #f8de7e strontian yellow strontianyellow #beb72e sudan brown sudanbrown #80461b sudan brown sudanbrown #a67b5b sudan brown sudanbrown #996515 sulphate green sulphategreen #66ada4 sulphate green sulphategreen #317873 sulphine yellow sulphineyellow #ab9144 sulphur yellow sulphuryellow #eae679 sulphur yellow sulphuryellow #ebe8a4 taupe brown taupebrown #50404d tawny tawny #ae6938 tawny-olive tawnyolive #826644 tawny-olive tawnyolive #967117 tea green teagreen #8f9779 terra cotta terracotta #b4745e terre verte terreverte #5e716a testaceous testaceous #b4745e testaceous testaceous #a87c6d thulite pink thulitepink #e68fac tiber green tibergreen #93c592 tilleul-buff tilleulbuff #ecd5c5 tourmaline pink tourmalinepink #9e4f88 tourmaline pink tourmalinepink #de6fa1 turquoise green turquoisegreen #66ada4 turtle green turtlegreen #8a9a5b tyrian blue tyrianblue #536878 tyrian blue tyrianblue #4c516d tyrian pink tyrianpink #9e4f88 tyrian rose tyrianrose #ce4676 tyrolite green tyrolitegreen #66ada4 ultramarine ash ultramarineash #0067a5 ultramarine blue ultramarineblue #00a1c2 urania blue uraniablue #2f2140 urania blue uraniablue #554c69 urania blue uraniablue #50404d vanderpoel's blue vanderpoelsblue #0067a5 vanderpoel's blue vanderpoelsblue #436b95 vanderpoel's green vanderpoelsgreen #bdda57 vanderpoel's green vanderpoelsgreen #7e9f2e vanderpoel's violet vanderpoelsviolet #8c82b6 vandyke brown vandykebrown #6f4e37 vandyke brown vandykebrown #635147 vandyke red vandykered #905d5d variscite green variscitegreen #8ed1b2 varley's gray varleysgray #796878 varley's green varleysgreen #355e3b venetian blue venetianblue #0067a5 venetian pink venetianpink #f88379 venice green venicegreen #00a693 verbena violet verbenaviolet #9690ab verdigris green verdigrisgreen #6aab8e vernonia purple vernoniapurple #915f6d verona brown veronabrown #6f4e37 veronese green veronesegreen #c9dc89 veronese green veronesegreen #8a9a5b vetiver green vetivergreen #8a9a5b vetiver green vetivergreen #8f9779 victoria lake victorialake #722f37 victoria lake victorialake #3f1728 vinaceous vinaceous #ea9399 vinaceous vinaceous #e4717a vinaceous vinaceous #dea5a4 vinaceous vinaceous #c08081 vinaceous-brown vinaceousbrown #905d5d vinaceous-buff vinaceousbuff #f4c2c2 vinaceous-buff vinaceousbuff #d9a6a9 vinaceous-buff vinaceousbuff #ecd5c5 vinaceous-buff vinaceousbuff #c2ac99 vinaceous-cinnamon vinaceouscinnamon #d9a6a9 vinaceous-cinnamon vinaceouscinnamon #c19a6b vinaceous-drab vinaceousdrab #905d5d vinaceous-fawn vinaceousfawn #d9a6a9 vinaceous-fawn vinaceousfawn #c7ada3 vinaceous-gray vinaceousgray #aa98a9 vinaceous-gray vinaceousgray #796878 vinaceous-lavender vinaceouslavender #dea5a4 vinaceous-lilac vinaceouslilac #c17e91 vinaceous-lilac vinaceouslilac #915f6d vinaceous-pink vinaceouspink #b4745e vinaceous-pink vinaceouspink #a87c6d vinaceous-purple vinaceouspurple #a8516e vinaceous-purple vinaceouspurple #915f6d vinaceous-purple vinaceouspurple #836479 vinaceous-rufous vinaceousrufous #9e4732 vinaceous-russet vinaceousrusset #a87c6d vinaceous-russet vinaceousrusset #79443b vinaceous-slate vinaceousslate #796878 vinaceous-tawny vinaceoustawny #b4745e violet carmine violetcarmine #673147 violet-gray violetgray #8b8589 violet-plumbeous violetplumbeous #8c92ac violet-purple violetpurple #9a4eae violet-slate violetslate #536878 violet ultramarine violetultramarine #545aa7 violet ultramarine violetultramarine #604e97 viridian green viridiangreen #3eb489 viridian green viridiangreen #007959 viridine green viridinegreen #bdda57 viridine yellow viridineyellow #beb72e viridine yellow viridineyellow #b9b459 vivid green vividgreen #3eb489 wall green wallgreen #317873 walnut brown walnutbrown #79443b walnut brown walnutbrown #674c47 warbler green warblergreen #867e36 warm blackish brown warmblackishbrown #543d3f warm blackish brown warmblackishbrown #5c504f warm buff warmbuff #e3a857 warm buff warmbuff #fad6a5 warm buff warmbuff #c9ae5d warm sepia warmsepia #635147 water green watergreen #dadfb7 wax yellow waxyellow #d4af37 wedgewood blue wedgewoodblue #a1caf1 wedgewood blue wedgewoodblue #70a3cc wedgewood blue wedgewoodblue #b3bce2 wedgewood blue wedgewoodblue #8791bf white white #f2f3f4 windsor blue windsorblue #4e5180 winter green wintergreen #679267 wistaria blue wistariablue #6c79b8 wistaria blue wistariablue #7e73b8 wistaria violet wistariaviolet #7e73b8 wood brown woodbrown #c19a6b wood brown woodbrown #ae9b82 xanthine orange xanthineorange #be6516 yale blue yaleblue #70a3cc yellow green yellowgreen #bdda57 yellowish citrine yellowishcitrine #98943e yellowish glaucous yellowishglaucous #dadfb7 yellowish oil green yellowishoilgreen #867e36 yellowish olive yellowisholive #867e36 yellowish olive yellowisholive #665d1e yellow ochre yellowochre #be8a3d yew green yewgreen #4a5d23 yvette violet yvetteviolet #554c69 zinc green zincgreen #3b7861 zinc orange zincorange #ed872d zinc orange zincorange #d99058 =cut sub _load_color_list() { return [ ['nbs-iscc-r:absinthegreen.120','absinthegreen','absinthe green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:acajoured.19','acajoured','acajou red',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:acetinblue.173-','acetinblue','acetin blue ',[54,117,136],'367588',3569032], ['nbs-iscc-r:acetinblue.204','acetinblue','acetin blue ',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:ackermannsgreen.145','ackermannsgreen','ackermann\'s green',[59,120,97],'3b7861',3897441], ['nbs-iscc-r:aconiteviolet.223','aconiteviolet','aconite violet',[134,96,142],'86608e',8806542], ['nbs-iscc-r:ageratumviolet.223','ageratumviolet','ageratum violet',[134,96,142],'86608e',8806542], ['nbs-iscc-r:aliceblue.185','aliceblue','alice blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:alizarineblue.182','alizarineblue','alizarine blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:alizarinepink.2','alizarinepink','alizarine pink',[234,147,153],'ea9399',15373209], ['nbs-iscc-r:alizarinepink.3','alizarinepink','alizarine pink',[228,113,122],'e4717a',14971258], ['nbs-iscc-r:amaranthpink.248','amaranthpink','amaranth pink',[222,111,161],'de6fa1',14577569], ['nbs-iscc-r:amaranthpurple.256','amaranthpurple','amaranth purple',[120,24,74],'78184a',7870538], ['nbs-iscc-r:amberbrown.55','amberbrown','amber brown',[128,70,27],'80461b',8406555], ['nbs-iscc-r:amberyellow.83','amberyellow','amber yellow ',[250,218,94],'fada5e',16439902], ['nbs-iscc-r:amberyellow.84','amberyellow','amber yellow ',[212,175,55],'d4af37',13938487], ['nbs-iscc-r:amberyellow.86','amberyellow','amber yellow ',[248,222,126],'f8de7e',16309886], ['nbs-iscc-r:amberyellow.87','amberyellow','amber yellow ',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-r:americangreen.136','americangreen','american green',[103,146,103],'679267',6787687], ['nbs-iscc-r:amethystviolet.216','amethystviolet','amethyst violet',[154,78,174],'9a4eae',10112686], ['nbs-iscc-r:amparoblue.195','amparoblue','amparo blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc-r:amparopurple.217','amparopurple','amparo purple',[211,153,230],'d399e6',13867494], ['nbs-iscc-r:amparopurple.218','amparopurple','amparo purple',[135,86,146],'875692',8869522], ['nbs-iscc-r:andovergreen.122','andovergreen','andover green',[143,151,121],'8f9779',9410425], ['nbs-iscc-r:anilineblack.229','anilineblack','aniline black',[80,64,77],'50404d',5259341], ['nbs-iscc-r:anilineblack.234','anilineblack','aniline black',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:anilinelilac.210','anilinelilac','aniline lilac',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:anilineyellow.85','anilineyellow','aniline yellow',[175,141,19],'af8d13',11504915], ['nbs-iscc-r:anthracenegreen.164','anthracenegreen','anthracene green',[49,120,115],'317873',3242099], ['nbs-iscc-r:anthracenegreen.165','anthracenegreen','anthracene green',[0,75,73],'004b49',19273], ['nbs-iscc-r:anthracenepurple.229','anthracenepurple','anthracene purple',[80,64,77],'50404d',5259341], ['nbs-iscc-r:anthracenepurple.259','anthracenepurple','anthracene purple',[103,49,71],'673147',6762823], ['nbs-iscc-r:anthraceneviolet.211','anthraceneviolet','anthracene violet',[96,78,129],'604e81',6311553], ['nbs-iscc-r:antimonyyellow.71','antimonyyellow','antimony yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-r:antiquebrown.55','antiquebrown','antique brown',[128,70,27],'80461b',8406555], ['nbs-iscc-r:antiquebrown.58','antiquebrown','antique brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-r:antiquegreen.150','antiquegreen','antique green',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:antiquegreen.151','antiquegreen','antique green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-r:antwerpblue.182','antwerpblue','antwerp blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:antwerpblue.183','antwerpblue','antwerp blue',[0,48,78],'00304e',12366], ['nbs-iscc-r:antwerpblue.186','antwerpblue','antwerp blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:applegreen.117','applegreen','apple green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-r:apricotbuff.53','apricotbuff','apricot buff',[217,144,88],'d99058',14258264], ['nbs-iscc-r:apricotorange.53','apricotorange','apricot orange',[217,144,88],'d99058',14258264], ['nbs-iscc-r:apricotyellow.84','apricotyellow','apricot yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-r:argusbrown.58','argusbrown','argus brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-r:argylepurple.241','argylepurple','argyle purple',[145,92,131],'915c83',9526403], ['nbs-iscc-r:armybrown.58','armybrown','army brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-r:armybrown.61','armybrown','army brown',[99,81,71],'635147',6508871], ['nbs-iscc-r:artemesiagreen.155','artemesiagreen','artemesia green',[125,137,132],'7d8984',8227204], ['nbs-iscc-r:asphodelgreen.120','asphodelgreen','asphodel green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:asterpurple.256','asterpurple','aster purple',[120,24,74],'78184a',7870538], ['nbs-iscc-r:auburn.43','auburn','auburn',[121,68,59],'79443b',7947323], ['nbs-iscc-r:auriculapurple.259','auriculapurple','auricula purple',[103,49,71],'673147',6762823], ['nbs-iscc-r:avellaneous.76','avellaneous','avellaneous',[193,154,107],'c19a6b',12687979], ['nbs-iscc-r:avellaneous.79','avellaneous','avellaneous',[174,155,130],'ae9b82',11443074], ['nbs-iscc-r:azuriteblue.200','azuriteblue','azurite blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-r:bariumyellow.101','bariumyellow','barium yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-r:bariumyellow.102','bariumyellow','barium yellow',[185,180,89],'b9b459',12170329], ['nbs-iscc-r:barytayellow.86','barytayellow','baryta yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-r:bay.43','bay','bay',[121,68,59],'79443b',7947323], ['nbs-iscc-r:begoniarose.27','begoniarose','begonia rose',[230,103,97],'e66761',15099745], ['nbs-iscc-r:benzobrown.45','benzobrown','benzo brown',[151,127,115],'977f73',9928563], ['nbs-iscc-r:benzobrown.60','benzobrown','benzo brown',[149,128,112],'958070',9797744], ['nbs-iscc-r:benzobrown.61','benzobrown','benzo brown',[99,81,71],'635147',6508871], ['nbs-iscc-r:benzolgreen.160','benzolgreen','benzol green',[0,122,116],'007a74',31348], ['nbs-iscc-r:berlinblue.183','berlinblue','berlin blue',[0,48,78],'00304e',12366], ['nbs-iscc-r:berylblue.171','berylblue','beryl blue',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-r:berylgreen.159','berylgreen','beryl green',[0,166,147],'00a693',42643], ['nbs-iscc-r:bicegreen.120','bicegreen','bice green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:biscaygreen.120','biscaygreen','biscay green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:bishopspurple.241','bishopspurple','bishop\'s purple',[145,92,131],'915c83',9526403], ['nbs-iscc-r:bister.80','bister','bister',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-r:bister.81','bister','bister',[72,60,50],'483c32',4734002], ['nbs-iscc-r:bittersweetorange.37','bittersweetorange','bittersweet orange',[203,109,81],'cb6d51',13331793], ['nbs-iscc-r:bittersweetpink.53','bittersweetpink','bittersweet pink',[217,144,88],'d99058',14258264], ['nbs-iscc-r:black.267','black','black',[34,34,34],'222222',2236962], ['nbs-iscc-r:blackishgreenblue.174','blackishgreenblue','blackish green-blue',[0,73,88],'004958',18776], ['nbs-iscc-r:blackishgreengray.267','blackishgreengray','blackish green-gray',[34,34,34],'222222',2236962], ['nbs-iscc-r:blackishmousegray.64','blackishmousegray','blackish mouse-gray',[91,80,79],'5b504f',5984335], ['nbs-iscc-r:blackishmousegray.266','blackishmousegray','blackish mouse-gray',[85,85,85],'555555',5592405], ['nbs-iscc-r:blackishplumbeous.192','blackishplumbeous','blackish plumbeous',[81,88,94],'51585e',5331038], ['nbs-iscc-r:blackishpurple.242','blackishpurple','blackish purple',[93,57,84],'5d3954',6109524], ['nbs-iscc-r:blackishpurple.243','blackishpurple','blackish purple',[52,23,49],'341731',3413809], ['nbs-iscc-r:blackishredpurple.259','blackishredpurple','blackish red-purple',[103,49,71],'673147',6762823], ['nbs-iscc-r:blackishslate.266','blackishslate','blackish slate',[85,85,85],'555555',5592405], ['nbs-iscc-r:blackishviolet.211','blackishviolet','blackish violet',[96,78,129],'604e81',6311553], ['nbs-iscc-r:blackishviolet.212','blackishviolet','blackish violet',[47,33,64],'2f2140',3088704], ['nbs-iscc-r:blackishviolet.215','blackishviolet','blackish violet',[85,76,105],'554c69',5590121], ['nbs-iscc-r:blackishvioletgray.234','blackishvioletgray','blackish violet-gray',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:blackishvioletgray.266','blackishvioletgray','blackish violet-gray',[85,85,85],'555555',5592405], ['nbs-iscc-r:blancsblue.182','blancsblue','blanc\'s blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:blancsviolet.215','blancsviolet','blanc\'s violet',[85,76,105],'554c69',5590121], ['nbs-iscc-r:blancsviolet.228','blancsviolet','blanc\'s violet',[121,104,120],'796878',7956600], ['nbs-iscc-r:blancsviolet.229','blancsviolet','blanc\'s violet',[80,64,77],'50404d',5259341], ['nbs-iscc-r:blueviolet.194','blueviolet','blue-violet',[48,38,122],'30267a',3155578], ['nbs-iscc-r:blueviolet.205','blueviolet','blue-violet',[144,101,202],'9065ca',9463242], ['nbs-iscc-r:bluevioletblack.234','bluevioletblack','blue-violet black',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:bluevioletblack.266','bluevioletblack','blue-violet black',[85,85,85],'555555',5592405], ['nbs-iscc-r:bluishblack.187','bluishblack','bluish black',[54,69,79],'36454f',3556687], ['nbs-iscc-r:bluishblack.188','bluishblack','bluish black',[32,40,48],'202830',2107440], ['nbs-iscc-r:bluishglaucous.148','bluishglaucous','bluish glaucous',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-r:bluishglaucous.162','bluishglaucous','bluish glaucous',[150,222,209],'96ded1',9887441], ['nbs-iscc-r:bluishgraygreen.149','bluishgraygreen','bluish gray-green',[141,163,153],'8da399',9282457], ['nbs-iscc-r:bluishgraygreen.150','bluishgraygreen','bluish gray-green',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:bluishlavender.210','bluishlavender','bluish lavender',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:bluishslateblack.183','bluishslateblack','bluish slate-black',[0,48,78],'00304e',12366], ['nbs-iscc-r:bluishslateblack.187','bluishslateblack','bluish slate-black',[54,69,79],'36454f',3556687], ['nbs-iscc-r:bluishviolet.194','bluishviolet','bluish violet',[48,38,122],'30267a',3155578], ['nbs-iscc-r:bluishviolet.205','bluishviolet','bluish violet',[144,101,202],'9065ca',9463242], ['nbs-iscc-r:bonebrown.61','bonebrown','bone brown',[99,81,71],'635147',6508871], ['nbs-iscc-r:bonebrown.64','bonebrown','bone brown',[91,80,79],'5b504f',5984335], ['nbs-iscc-r:bordeaux.259','bordeaux','bordeaux',[103,49,71],'673147',6762823], ['nbs-iscc-r:bottlegreen.146','bottlegreen','bottle green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-r:bradleysblue.176','bradleysblue','bradley\'s blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-r:bradleysviolet.206','bradleysviolet','bradley\'s violet',[126,115,184],'7e73b8',8287160], ['nbs-iscc-r:bradleysviolet.207','bradleysviolet','bradley\'s violet',[96,78,151],'604e97',6311575], ['nbs-iscc-r:bradleysviolet.210','bradleysviolet','bradley\'s violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:bradleysviolet.211','bradleysviolet','bradley\'s violet',[96,78,129],'604e81',6311553], ['nbs-iscc-r:brazilred.38','brazilred','brazil red',[158,71,50],'9e4732',10372914], ['nbs-iscc-r:bremenblue.172','bremenblue','bremen blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-r:brickred.43','brickred','brick red',[121,68,59],'79443b',7947323], ['nbs-iscc-r:brightchalcedonyyellow.116','brightchalcedonyyellow','bright chalcedony yellow',[189,218,87],'bdda57',12442199], ['nbs-iscc-r:brightchalcedonyyellow.119','brightchalcedonyyellow','bright chalcedony yellow',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:brightgreenyellow.115','brightgreenyellow','bright green-yellow',[141,182,0],'8db600',9287168], ['nbs-iscc-r:brownishdrab.45','brownishdrab','brownish drab',[151,127,115],'977f73',9928563], ['nbs-iscc-r:brownishdrab.70','brownishdrab','brownish drab',[149,128,112],'958070',9797744], ['nbs-iscc-r:brownisholive.95','brownisholive','brownish olive',[108,84,30],'6c541e',7099422], ['nbs-iscc-r:brownishvinaceous.18','brownishvinaceous','brownish vinaceous',[173,136,132],'ad8884',11372676], ['nbs-iscc-r:brusselsbrown.58','brusselsbrown','brussels brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-r:buckthornbrown.74','buckthornbrown','buckthorn brown',[153,101,21],'996515',10052885], ['nbs-iscc-r:buffpinkorbuffpink.29','buffpinkorbuffpink','buff-pink or buff pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:buffybrown.76','buffybrown','buffy brown ',[193,154,107],'c19a6b',12687979], ['nbs-iscc-r:buffybrown.77','buffybrown','buffy brown ',[130,102,68],'826644',8545860], ['nbs-iscc-r:buffycitrine.94','buffycitrine','buffy citrine',[150,113,23],'967117',9859351], ['nbs-iscc-r:buffyelloworbuffyellow.86','buffyelloworbuffyellow','buff-yellow or buff yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-r:buffyelloworbuffyellow.87','buffyelloworbuffyellow','buff-yellow or buff yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-r:buffyolive.106','buffyolive','buffy olive',[134,126,54],'867e36',8814134], ['nbs-iscc-r:burnblue.180','burnblue','burn blue',[161,202,241],'a1caf1',10603249], ['nbs-iscc-r:burnblue.181','burnblue','burn blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:burnblue.198','burnblue','burn blue',[179,188,226],'b3bce2',11779298], ['nbs-iscc-r:burnblue.199','burnblue','burn blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:burntlake.242','burntlake','burnt lake',[93,57,84],'5d3954',6109524], ['nbs-iscc-r:burntsienna.40','burntsienna','burnt sienna',[136,45,23],'882d17',8924439], ['nbs-iscc-r:burntumber.46','burntumber','burnt umber',[103,76,71],'674c47',6769735], ['nbs-iscc-r:cacaobrown.42','cacaobrown','cacao brown',[168,124,109],'a87c6d',11041901], ['nbs-iscc-r:cadetblue.178','cadetblue','cadet blue',[0,103,165],'0067a5',26533], ['nbs-iscc-r:cadetblue.182','cadetblue','cadet blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:cadetgray.185','cadetgray','cadet gray',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:cadmiumorange.48','cadmiumorange','cadmium orange',[243,132,0],'f38400',15959040], ['nbs-iscc-r:cadmiumorange.50','cadmiumorange','cadmium orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-r:cadmiumyellow.50','cadmiumyellow','cadmium yellow',[237,135,45],'ed872d',15566637], ['nbs-iscc-r:cadmiumyellow.68','cadmiumyellow','cadmium yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-r:calamineblue.171','calamineblue','calamine blue',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-r:calamineblue.172','calamineblue','calamine blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-r:callagreen.107','callagreen','calla green',[102,93,30],'665d1e',6708510], ['nbs-iscc-r:callistegreen.117','callistegreen','calliste green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-r:cameobrown.43','cameobrown','cameo brown',[121,68,59],'79443b',7947323], ['nbs-iscc-r:cameobrown.46','cameobrown','cameo brown',[103,76,71],'674c47',6769735], ['nbs-iscc-r:cameopink.246','cameopink','cameo pink',[255,200,214],'ffc8d6',16763094], ['nbs-iscc-r:cameopink.249','cameopink','cameo pink',[239,187,204],'efbbcc',15711180], ['nbs-iscc-r:capriblue.173','capriblue','capri blue ',[54,117,136],'367588',3569032], ['nbs-iscc-r:capucinebuff.70','capucinebuff','capucine buff ',[251,201,127],'fbc97f',16501119], ['nbs-iscc-r:capucinebuff.71','capucinebuff','capucine buff ',[227,168,87],'e3a857',14919767], ['nbs-iscc-r:capucinebuff.73','capucinebuff','capucine buff ',[250,214,165],'fad6a5',16438949], ['nbs-iscc-r:capucineorange.53','capucineorange','capucine orange ',[217,144,88],'d99058',14258264], ['nbs-iscc-r:capucineyellow.68','capucineyellow','capucine yellow ',[234,162,33],'eaa221',15376929], ['nbs-iscc-r:carmine.11','carmine','carmine',[190,0,50],'be0032',12451890], ['nbs-iscc-r:carnelianred.35','carnelianred','carnelian red',[217,96,59],'d9603b',14245947], ['nbs-iscc-r:carobbrown.44','carobbrown','carob brown',[62,29,30],'3e1d1e',4070686], ['nbs-iscc-r:carrotred.37','carrotred','carrot red',[203,109,81],'cb6d51',13331793], ['nbs-iscc-r:cartridgebuff.89','cartridgebuff','cartridge buff',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-r:castorgray.155','castorgray','castor gray',[125,137,132],'7d8984',8227204], ['nbs-iscc-r:castorgray.265','castorgray','castor gray',[132,132,130],'848482',8684674], ['nbs-iscc-r:cedargreen.120','cedargreen','cedar green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:cedargreen.125','cedargreen','cedar green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-r:celandinegreen.149','celandinegreen','celandine green',[141,163,153],'8da399',9282457], ['nbs-iscc-r:cendreblue.168','cendreblue','cendre blue',[35,158,186],'239eba',2334394], ['nbs-iscc-r:cendregreen.130','cendregreen','cendre green',[131,211,125],'83d37d',8639357], ['nbs-iscc-r:ceruleanblue.178','ceruleanblue','cerulean blue',[0,103,165],'0067a5',26533], ['nbs-iscc-r:chaeturablack.81','chaeturablack','chaetura black',[72,60,50],'483c32',4734002], ['nbs-iscc-r:chaeturadrab.64','chaeturadrab','chaetura drab',[91,80,79],'5b504f',5984335], ['nbs-iscc-r:chalcedonyyellow.101','chalcedonyyellow','chalcedony yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-r:chamois.87','chamois','chamois',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-r:chapmansblue.182','chapmansblue','chapman\'s blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:chartreuseyellow.101','chartreuseyellow','chartreuse yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-r:chatenaypink.5','chatenaypink','chatenay pink',[222,165,164],'dea5a4',14591396], ['nbs-iscc-r:chatenaypink.29','chatenaypink','chatenay pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:chessyliteblue.173','chessyliteblue','chessylite blue',[54,117,136],'367588',3569032], ['nbs-iscc-r:chessyliteblue.174','chessyliteblue','chessylite blue',[0,73,88],'004958',18776], ['nbs-iscc-r:chessyliteblue.182','chessyliteblue','chessylite blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:chessyliteblue.186','chessyliteblue','chessylite blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:chestnut.43','chestnut','chestnut',[121,68,59],'79443b',7947323], ['nbs-iscc-r:chestnutbrown.43','chestnutbrown','chestnut-brown',[121,68,59],'79443b',7947323], ['nbs-iscc-r:chestnutbrown.46','chestnutbrown','chestnut-brown',[103,76,71],'674c47',6769735], ['nbs-iscc-r:chicoryblue.199','chicoryblue','chicory blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:chicoryblue.210','chicoryblue','chicory blue',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:chinablue.182','chinablue','china blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:chineseviolet.223','chineseviolet','chinese violet',[134,96,142],'86608e',8806542], ['nbs-iscc-r:chocolate.46','chocolate','chocolate',[103,76,71],'674c47',6769735], ['nbs-iscc-r:chromiumgreen.120','chromiumgreen','chromium green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:chrysolitegreen.120','chrysolitegreen','chrysolite green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:chrysopraisegreen.135','chrysopraisegreen','chrysopraise green',[147,197,146],'93c592',9684370], ['nbs-iscc-r:cinereous.190','cinereous','cinereous',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-r:cinereous.191','cinereous','cinereous',[129,135,139],'81878b',8488843], ['nbs-iscc-r:cinnamon.57','cinnamon','cinnamon',[166,123,91],'a67b5b',10910555], ['nbs-iscc-r:cinnamon.72','cinnamon','cinnamon',[190,138,61],'be8a3d',12487229], ['nbs-iscc-r:cinnamonbrown.58','cinnamonbrown','cinnamon-brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-r:cinnamonbuff.71','cinnamonbuff','cinnamon-buff',[227,168,87],'e3a857',14919767], ['nbs-iscc-r:cinnamonbuff.76','cinnamonbuff','cinnamon-buff',[193,154,107],'c19a6b',12687979], ['nbs-iscc-r:cinnamonbuff.87','cinnamonbuff','cinnamon-buff',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-r:cinnamondrab.45','cinnamondrab','cinnamon-drab',[151,127,115],'977f73',9928563], ['nbs-iscc-r:cinnamondrab.60','cinnamondrab','cinnamon-drab',[149,128,112],'958070',9797744], ['nbs-iscc-r:cinnamonrufous.54','cinnamonrufous','cinnamon-rufous',[174,105,56],'ae6938',11430200], ['nbs-iscc-r:citrine.106','citrine','citrine',[134,126,54],'867e36',8814134], ['nbs-iscc-r:citrine.107','citrine','citrine',[102,93,30],'665d1e',6708510], ['nbs-iscc-r:citrinedrab.106','citrinedrab','citrine-drab',[134,126,54],'867e36',8814134], ['nbs-iscc-r:citrongreen.102','citrongreen','citron green',[185,180,89],'b9b459',12170329], ['nbs-iscc-r:citrongreen.105','citrongreen','citron green',[185,181,125],'b9b57d',12170621], ['nbs-iscc-r:citronyellow.98','citronyellow','citron yellow',[233,228,80],'e9e450',15328336], ['nbs-iscc-r:citronyellow.99','citronyellow','citron yellow',[190,183,46],'beb72e',12498734], ['nbs-iscc-r:citronyellow.101','citronyellow','citron yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-r:citronyellow.102','citronyellow','citron yellow',[185,180,89],'b9b459',12170329], ['nbs-iscc-r:civettegreen.136','civettegreen','civette green',[103,146,103],'679267',6787687], ['nbs-iscc-r:claretbrown.43','claretbrown','claret brown',[121,68,59],'79443b',7947323], ['nbs-iscc-r:claycolor.74','claycolor','clay color',[153,101,21],'996515',10052885], ['nbs-iscc-r:claycolor.77','claycolor','clay color',[130,102,68],'826644',8545860], ['nbs-iscc-r:claycolor.94','claycolor','clay color',[150,113,23],'967117',9859351], ['nbs-iscc-r:clearcadetblue.177','clearcadetblue','clear cadet blue',[73,151,208],'4997d0',4822992], ['nbs-iscc-r:clearcadetblue.178','clearcadetblue','clear cadet blue',[0,103,165],'0067a5',26533], ['nbs-iscc-r:cleardullgreenyellow.116','cleardullgreenyellow','clear dull green-yellow',[189,218,87],'bdda57',12442199], ['nbs-iscc-r:cleardullgreenyellow.117','cleardullgreenyellow','clear dull green-yellow',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-r:cleardullgreenyellow.119','cleardullgreenyellow','clear dull green-yellow',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:cleardullgreenyellow.120','cleardullgreenyellow','clear dull green-yellow',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:clearfluoritegreen.135','clearfluoritegreen','clear fluorite green',[147,197,146],'93c592',9684370], ['nbs-iscc-r:cleargreenbluegray.185','cleargreenbluegray','clear green-blue gray',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:cleargreenbluegray.191','cleargreenbluegray','clear green-blue gray',[129,135,139],'81878b',8488843], ['nbs-iscc-r:clearpaynesgray.186','clearpaynesgray','clear payne\'s gray ',[83,104,120],'536878',5466232], ['nbs-iscc-r:clearpaynesgray.191','clearpaynesgray','clear payne\'s gray ',[129,135,139],'81878b',8488843], ['nbs-iscc-r:clearwindsorblue.199','clearwindsorblue','clear windsor blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:clearyellowgreen.116','clearyellowgreen','clear yellow-green',[189,218,87],'bdda57',12442199], ['nbs-iscc-r:clovebrown.81','clovebrown','clove brown',[72,60,50],'483c32',4734002], ['nbs-iscc-r:cobaltgreen.144','cobaltgreen','cobalt green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-r:colonialbuff.86','colonialbuff','colonial buff',[248,222,126],'f8de7e',16309886], ['nbs-iscc-r:columbiablue.181','columbiablue','columbia blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:columbiablue.182','columbiablue','columbia blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:commelinablue.194','commelinablue','commelina blue',[48,38,122],'30267a',3155578], ['nbs-iscc-r:congopink.26','congopink','congo pink',[248,131,121],'f88379',16286585], ['nbs-iscc-r:congopink.29','congopink','congo pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:coralpink.26','coralpink','coral pink',[248,131,121],'f88379',16286585], ['nbs-iscc-r:coralred.37','coralred','coral red',[203,109,81],'cb6d51',13331793], ['nbs-iscc-r:corinthianpink.5','corinthianpink','corinthian pink',[222,165,164],'dea5a4',14591396], ['nbs-iscc-r:corinthianpurple.259','corinthianpurple','corinthian purple',[103,49,71],'673147',6762823], ['nbs-iscc-r:corinthianred.19','corinthianred','corinthian red',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:cornflowerblue.194','cornflowerblue','cornflower blue',[48,38,122],'30267a',3155578], ['nbs-iscc-r:corydalisgreen.119','corydalisgreen','corydalis green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:corydalisgreen.121','corydalisgreen','corydalis green',[218,223,183],'dadfb7',14344119], ['nbs-iscc-r:cossackgreen.125','cossackgreen','cossack green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-r:cossackgreen.127','cossackgreen','cossack green',[81,87,68],'515744',5330756], ['nbs-iscc-r:cossegreen.117','cossegreen','cosse green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-r:cotingapurple.219','cotingapurple','cotinga purple',[96,47,107],'602f6b',6303595], ['nbs-iscc-r:cotingapurple.223','cotingapurple','cotinga purple',[134,96,142],'86608e',8806542], ['nbs-iscc-r:courgegreen.120','courgegreen','courge green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:courtgray.148','courtgray','court gray',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-r:courtgrey.148','courtgrey','court grey ',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-r:creambuff.86','creambuff','cream buff',[248,222,126],'f8de7e',16309886], ['nbs-iscc-r:creambuff.87','creambuff','cream buff',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-r:creamcolor.86','creamcolor','cream color',[248,222,126],'f8de7e',16309886], ['nbs-iscc-r:cressgreen.120','cressgreen','cress green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:cressgreen.125','cressgreen','cress green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-r:cyanineblue.200','cyanineblue','cyanine blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-r:dahliacarmine.259','dahliacarmine','dahlia carmine',[103,49,71],'673147',6762823], ['nbs-iscc-r:dahliapurple.259','dahliapurple','dahlia purple',[103,49,71],'673147',6762823], ['nbs-iscc-r:daphnepink.248','daphnepink','daphne pink',[222,111,161],'de6fa1',14577569], ['nbs-iscc-r:daphnepink.251','daphnepink','daphne pink',[193,126,145],'c17e91',12680849], ['nbs-iscc-r:daphnered.258','daphnered','daphne red',[168,81,110],'a8516e',11030894], ['nbs-iscc-r:darkamericangreen.137','darkamericangreen','dark american green',[53,94,59],'355e3b',3497531], ['nbs-iscc-r:darkamericangreen.150','darkamericangreen','dark american green',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:darkamericangreen.151','darkamericangreen','dark american green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-r:darkanilineblue.187','darkanilineblue','dark aniline blue',[54,69,79],'36454f',3556687], ['nbs-iscc-r:darkanilineblue.229','darkanilineblue','dark aniline blue',[80,64,77],'50404d',5259341], ['nbs-iscc-r:darkanthraceneviolet.224','darkanthraceneviolet','dark anthracene violet',[86,60,92],'563c5c',5651548], ['nbs-iscc-r:darkanthraceneviolet.229','darkanthraceneviolet','dark anthracene violet',[80,64,77],'50404d',5259341], ['nbs-iscc-r:darkbluishglaucous.144','darkbluishglaucous','dark bluish glaucous',[106,171,142],'6aab8e',6990734], ['nbs-iscc-r:darkbluishglaucous.149','darkbluishglaucous','dark bluish glaucous',[141,163,153],'8da399',9282457], ['nbs-iscc-r:darkbluishgraygreen.150','darkbluishgraygreen','dark bluish gray-green',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:darkbluishgraygreen.151','darkbluishgraygreen','dark bluish gray-green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-r:darkbluishgraygreen.164','darkbluishgraygreen','dark bluish gray-green',[49,120,115],'317873',3242099], ['nbs-iscc-r:darkbluishgraygreen.165','darkbluishgraygreen','dark bluish gray-green',[0,75,73],'004b49',19273], ['nbs-iscc-r:darkbluishviolet.211','darkbluishviolet','dark bluish violet',[96,78,129],'604e81',6311553], ['nbs-iscc-r:darkbluishviolet.212','darkbluishviolet','dark bluish violet',[47,33,64],'2f2140',3088704], ['nbs-iscc-r:darkbluishviolet.215','darkbluishviolet','dark bluish violet',[85,76,105],'554c69',5590121], ['nbs-iscc-r:darkcadetblue.182','darkcadetblue','dark cadet blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:darkcadetblue.204','darkcadetblue','dark cadet blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:darkchessyliteblue.174','darkchessyliteblue','dark chessylite blue',[0,73,88],'004958',18776], ['nbs-iscc-r:darkchessyliteblue.182','darkchessyliteblue','dark chessylite blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:darkchessyliteblue.183','darkchessyliteblue','dark chessylite blue',[0,48,78],'00304e',12366], ['nbs-iscc-r:darkchessyliteblue.186','darkchessyliteblue','dark chessylite blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:darkcinnabargreen.164','darkcinnabargreen','dark cinnabar green',[49,120,115],'317873',3242099], ['nbs-iscc-r:darkcitrine.107','darkcitrine','dark citrine',[102,93,30],'665d1e',6708510], ['nbs-iscc-r:darkcorinthianpurple.259','darkcorinthianpurple','dark corinthian purple',[103,49,71],'673147',6762823], ['nbs-iscc-r:darkcressgreen.125','darkcressgreen','dark cress green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-r:darkdelftblue.183','darkdelftblue','dark delft blue',[0,48,78],'00304e',12366], ['nbs-iscc-r:darkdelftblue.187','darkdelftblue','dark delft blue',[54,69,79],'36454f',3556687], ['nbs-iscc-r:darkdivablue.196','darkdivablue','dark diva blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-r:darkdivablue.200','darkdivablue','dark diva blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-r:darkdullbluishviolet.211','darkdullbluishviolet','dark dull bluish violet',[96,78,129],'604e81',6311553], ['nbs-iscc-r:darkdullbluishviolet.215','darkdullbluishviolet','dark dull bluish violet',[85,76,105],'554c69',5590121], ['nbs-iscc-r:darkdullbluishviolet.215','darkdullbluishviolet','dark dull bluish violet',[85,76,105],'554c69',5590121], ['nbs-iscc-r:darkdullbluishviolet.224','darkdullbluishviolet','dark dull bluish violet',[86,60,92],'563c5c',5651548], ['nbs-iscc-r:darkdullvioletblue.204','darkdullvioletblue','dark dull violet-blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:darkdullvioletblue.215','darkdullvioletblue','dark dull violet-blue',[85,76,105],'554c69',5590121], ['nbs-iscc-r:darkdullvioletblue.215','darkdullvioletblue','dark dull violet-blue',[85,76,105],'554c69',5590121], ['nbs-iscc-r:darkdullyellowgreen.125','darkdullyellowgreen','dark dull yellow-green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-r:darkdullyellowgreen.127','darkdullyellowgreen','dark dull yellow-green',[81,87,68],'515744',5330756], ['nbs-iscc-r:darkglaucousgray.150','darkglaucousgray','dark glaucous-gray',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:darkgrayishbluegreen.156','darkgrayishbluegreen','dark grayish blue-green',[78,87,85],'4e5755',5134165], ['nbs-iscc-r:darkgrayishbluegreen.266','darkgrayishbluegreen','dark grayish blue-green',[85,85,85],'555555',5592405], ['nbs-iscc-r:darkgrayishblueviolet.215','darkgrayishblueviolet','dark grayish blue-violet',[85,76,105],'554c69',5590121], ['nbs-iscc-r:darkgrayishbrown.19','darkgrayishbrown','dark grayish brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:darkgrayishbrown.23','darkgrayishbrown','dark grayish brown',[92,80,79],'5c504f',6049871], ['nbs-iscc-r:darkgrayishlavender.214','darkgrayishlavender','dark grayish lavender',[150,144,171],'9690ab',9867435], ['nbs-iscc-r:darkgrayisholive.113','darkgrayisholive','dark grayish olive',[87,85,76],'57554c',5723468], ['nbs-iscc-r:darkgreen.137','darkgreen','dark green',[53,94,59],'355e3b',3497531], ['nbs-iscc-r:darkgreen.150','darkgreen','dark green',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:darkgreen.151','darkgreen','dark green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-r:darkgreenbluegray.186','darkgreenbluegray','dark green-blue gray',[83,104,120],'536878',5466232], ['nbs-iscc-r:darkgreenblueslate.183','darkgreenblueslate','dark green-blue slate',[0,48,78],'00304e',12366], ['nbs-iscc-r:darkgreenblueslate.187','darkgreenblueslate','dark green-blue slate',[54,69,79],'36454f',3556687], ['nbs-iscc-r:darkgreenishglaucous.135','darkgreenishglaucous','dark greenish glaucous',[147,197,146],'93c592',9684370], ['nbs-iscc-r:darkgreenishglaucous.136','darkgreenishglaucous','dark greenish glaucous',[103,146,103],'679267',6787687], ['nbs-iscc-r:darkgreenisholive.107','darkgreenisholive','dark greenish olive',[102,93,30],'665d1e',6708510], ['nbs-iscc-r:darkgreenisholive.110','darkgreenisholive','dark greenish olive',[91,88,66],'5b5842',5986370], ['nbs-iscc-r:darkgullgray.266','darkgullgray','dark gull gray',[85,85,85],'555555',5592405], ['nbs-iscc-r:darkheliotropegray.228','darkheliotropegray','dark heliotrope gray',[121,104,120],'796878',7956600], ['nbs-iscc-r:darkheliotropeslate.229','darkheliotropeslate','dark heliotrope slate',[80,64,77],'50404d',5259341], ['nbs-iscc-r:darkheliotropeslate.234','darkheliotropeslate','dark heliotrope slate',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:darkhyssopviolet.224','darkhyssopviolet','dark hyssop violet',[86,60,92],'563c5c',5651548], ['nbs-iscc-r:darkhyssopviolet.228','darkhyssopviolet','dark hyssop violet',[121,104,120],'796878',7956600], ['nbs-iscc-r:darkindianred.19','darkindianred','dark indian red',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:darkindianred.20','darkindianred','dark indian red',[84,61,63],'543d3f',5520703], ['nbs-iscc-r:darkivygreen.127','darkivygreen','dark ivy green',[81,87,68],'515744',5330756], ['nbs-iscc-r:darklavender.222','darklavender','dark lavender',[182,149,192],'b695c0',11965888], ['nbs-iscc-r:darklividbrown.19','darklividbrown','dark livid brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:darklividpurple.229','darklividpurple','dark livid purple',[80,64,77],'50404d',5259341], ['nbs-iscc-r:darklividpurple.259','darklividpurple','dark livid purple',[103,49,71],'673147',6762823], ['nbs-iscc-r:darkmadderblue.186','darkmadderblue','dark madder blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:darkmadderblue.204','darkmadderblue','dark madder blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:darkmadderviolet.224','darkmadderviolet','dark madder violet',[86,60,92],'563c5c',5651548], ['nbs-iscc-r:darkmadderviolet.229','darkmadderviolet','dark madder violet',[80,64,77],'50404d',5259341], ['nbs-iscc-r:darkmaroonpurple.242','darkmaroonpurple','dark maroon purple',[93,57,84],'5d3954',6109524], ['nbs-iscc-r:darkmediciblue.192','darkmediciblue','dark medici blue',[81,88,94],'51585e',5331038], ['nbs-iscc-r:darkmineralred.19','darkmineralred','dark mineral red ',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:darkmineralred.20','darkmineralred','dark mineral red ',[84,61,63],'543d3f',5520703], ['nbs-iscc-r:darkmousegray.64','darkmousegray','dark mouse gray ',[91,80,79],'5b504f',5984335], ['nbs-iscc-r:darkmousegray.266','darkmousegray','dark mouse gray ',[85,85,85],'555555',5592405], ['nbs-iscc-r:darknaphthaleneviolet.229','darknaphthaleneviolet','dark naphthalene violet ',[80,64,77],'50404d',5259341], ['nbs-iscc-r:darknaphthaleneviolet.242','darknaphthaleneviolet','dark naphthalene violet ',[93,57,84],'5d3954',6109524], ['nbs-iscc-r:darkneutralgray.266','darkneutralgray','dark neutral gray',[85,85,85],'555555',5592405], ['nbs-iscc-r:darknigrosinviolet.224','darknigrosinviolet','dark nigrosin violet',[86,60,92],'563c5c',5651548], ['nbs-iscc-r:darkolive.110','darkolive','dark olive',[91,88,66],'5b5842',5986370], ['nbs-iscc-r:darkolivebuff.91','darkolivebuff','dark olive-buff',[161,143,96],'a18f60',10588000], ['nbs-iscc-r:darkolivegray.110','darkolivegray','dark olive-gray',[91,88,66],'5b5842',5986370], ['nbs-iscc-r:darkolivegray.113','darkolivegray','dark olive-gray',[87,85,76],'57554c',5723468], ['nbs-iscc-r:darkorientblue.186','darkorientblue','dark orient blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:darkpaynesgray.187','darkpaynesgray','dark payne\'s gray',[54,69,79],'36454f',3556687], ['nbs-iscc-r:darkpaynesgray.192','darkpaynesgray','dark payne\'s gray',[81,88,94],'51585e',5331038], ['nbs-iscc-r:darkperillapurple.259','darkperillapurple','dark perilla purple',[103,49,71],'673147',6762823], ['nbs-iscc-r:darkplumbagoblue.214','darkplumbagoblue','dark plumbago blue',[150,144,171],'9690ab',9867435], ['nbs-iscc-r:darkplumbagoblue.227','darkplumbagoblue','dark plumbago blue',[170,152,169],'aa98a9',11180201], ['nbs-iscc-r:darkplumbagogray.228','darkplumbagogray','dark plumbago gray',[121,104,120],'796878',7956600], ['nbs-iscc-r:darkplumbagogray.233','darkplumbagogray','dark plumbago gray',[139,133,137],'8b8589',9143689], ['nbs-iscc-r:darkplumbagogray.234','darkplumbagogray','dark plumbago gray',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:darkplumbagoslate.234','darkplumbagoslate','dark plumbago slate',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:darkplumbeous.192','darkplumbeous','dark plumbeous',[81,88,94],'51585e',5331038], ['nbs-iscc-r:darkporcelaingreen.150','darkporcelaingreen','dark porcelain green',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:darkpurpledrab.228','darkpurpledrab','dark purple-drab',[121,104,120],'796878',7956600], ['nbs-iscc-r:darkpurplishgray.234','darkpurplishgray','dark purplish gray',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:darkpurplishgray.266','darkpurplishgray','dark purplish gray',[85,85,85],'555555',5592405], ['nbs-iscc-r:darkquakerdrab.234','darkquakerdrab','dark quaker drab',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:darkrussiangreen.150','darkrussiangreen','dark russian green',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:darkrussiangreen.151','darkrussiangreen','dark russian green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-r:darkslatepurple.242','darkslatepurple','dark slate-purple',[93,57,84],'5d3954',6109524], ['nbs-iscc-r:darkslateviolet.234','darkslateviolet','dark slate-violet ',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:darkslateviolet.228','darkslateviolet','dark slate-violet ',[121,104,120],'796878',7956600], ['nbs-iscc-r:darksoftblueviolet.200','darksoftblueviolet','dark soft blue-violet',[78,81,128],'4e5180',5132672], ['nbs-iscc-r:darksoftblueviolet.211','darksoftblueviolet','dark soft blue-violet',[96,78,129],'604e81',6311553], ['nbs-iscc-r:darksoftbluishviolet.211','darksoftbluishviolet','dark soft bluish violet',[96,78,129],'604e81',6311553], ['nbs-iscc-r:darksulphategreen.164','darksulphategreen','dark sulphate green',[49,120,115],'317873',3242099], ['nbs-iscc-r:darkterreverte.150','darkterreverte','dark terre verte',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:darktyrianblue.186','darktyrianblue','dark tyrian blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:darktyrianblue.204','darktyrianblue','dark tyrian blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:darkvarleysgray.234','darkvarleysgray','dark varley\'s gray',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:darkvinaceous.19','darkvinaceous','dark vinaceous',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:darkvinaceousbrown.19','darkvinaceousbrown','dark vinaceous-brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:darkvinaceousdrab.19','darkvinaceousdrab','dark vinaceous-drab',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:darkvinaceousdrab.23','darkvinaceousdrab','dark vinaceous-drab',[92,80,79],'5c504f',6049871], ['nbs-iscc-r:darkvinaceousgray.228','darkvinaceousgray','dark vinaceous-gray',[121,104,120],'796878',7956600], ['nbs-iscc-r:darkvinaceouspurple.259','darkvinaceouspurple','dark vinaceous-purple',[103,49,71],'673147',6762823], ['nbs-iscc-r:darkviolet.211','darkviolet','dark violet',[96,78,129],'604e81',6311553], ['nbs-iscc-r:darkvioletgray.234','darkvioletgray','dark violet-gray',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:darkvioletgray.266','darkvioletgray','dark violet-gray',[85,85,85],'555555',5592405], ['nbs-iscc-r:darkvioletslate.186','darkvioletslate','dark violet-slate',[83,104,120],'536878',5466232], ['nbs-iscc-r:darkviridiangreen.145','darkviridiangreen','dark viridian green',[59,120,97],'3b7861',3897441], ['nbs-iscc-r:darkyellowishgreen.137','darkyellowishgreen','dark yellowish green',[53,94,59],'355e3b',3497531], ['nbs-iscc-r:darkyvetteviolet.229','darkyvetteviolet','dark yvette violet',[80,64,77],'50404d',5259341], ['nbs-iscc-r:darkzincgreen.145','darkzincgreen','dark zinc green',[59,120,97],'3b7861',3897441], ['nbs-iscc-r:dauphinsviolet.211','dauphinsviolet','dauphin\'s violet',[96,78,129],'604e81',6311553], ['nbs-iscc-r:dawngray.190','dawngray','dawn gray',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-r:dawngray.264','dawngray','dawn gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-r:deepanilinelilac.177','deepanilinelilac','deep aniline lilac',[73,151,208],'4997d0',4822992], ['nbs-iscc-r:deepblueviolet.194','deepblueviolet','deep blue-violet',[48,38,122],'30267a',3155578], ['nbs-iscc-r:deepblueviolet.205','deepblueviolet','deep blue-violet',[144,101,202],'9065ca',9463242], ['nbs-iscc-r:deepbluishglaucous.162','deepbluishglaucous','deep bluish glaucous',[150,222,209],'96ded1',9887441], ['nbs-iscc-r:deepbluishgraygreen.150','deepbluishgraygreen','deep bluish gray-green',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:deepbluishgraygreen.164','deepbluishgraygreen','deep bluish gray-green',[49,120,115],'317873',3242099], ['nbs-iscc-r:deepbrownishdrab.61','deepbrownishdrab','deep brownish drab',[99,81,71],'635147',6508871], ['nbs-iscc-r:deepbrownishvinaceous.19','deepbrownishvinaceous','deep brownish vinaceous',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:deepcadetblue.182','deepcadetblue','deep cadet blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:deepchicoryblue.206','deepchicoryblue','deep chicory blue',[126,115,184],'7e73b8',8287160], ['nbs-iscc-r:deepchrome.68','deepchrome','deep chrome',[234,162,33],'eaa221',15376929], ['nbs-iscc-r:deepchrysolitegreen.120','deepchrysolitegreen','deep chrysolite green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:deepcolonialbuff.87','deepcolonialbuff','deep colonial buff',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-r:deepcorinthianred.19','deepcorinthianred','deep corinthian red',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:deepdelftblue.186','deepdelftblue','deep delft blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:deepdullbluishviolet.207','deepdullbluishviolet','deep dull bluish violet',[96,78,151],'604e97',6311575], ['nbs-iscc-r:deepdullbluishviolet.211','deepdullbluishviolet','deep dull bluish violet',[96,78,129],'604e81',6311553], ['nbs-iscc-r:deepdullbluishviolet.203','deepdullbluishviolet','deep dull bluish violet',[140,146,172],'8c92ac',9212588], ['nbs-iscc-r:deepdullbluishviolet.204','deepdullbluishviolet','deep dull bluish violet',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:deepdullbluishviolet.214','deepdullbluishviolet','deep dull bluish violet',[150,144,171],'9690ab',9867435], ['nbs-iscc-r:deepdullbluishviolet.215','deepdullbluishviolet','deep dull bluish violet',[85,76,105],'554c69',5590121], ['nbs-iscc-r:deepdullbluishviolet.211','deepdullbluishviolet','deep dull bluish violet',[96,78,129],'604e81',6311553], ['nbs-iscc-r:deepdulllavender.227','deepdulllavender','deep dull lavender',[170,152,169],'aa98a9',11180201], ['nbs-iscc-r:deepdullviolaceousblue.200','deepdullviolaceousblue','deep dull violaceous blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-r:deepdullvioletblue.211','deepdullvioletblue','deep dull violet-blue',[96,78,129],'604e81',6311553], ['nbs-iscc-r:deepdutchblue.186','deepdutchblue','deep dutch blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:deepdutchblue.203','deepdutchblue','deep dutch blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-r:deepglaucousgray.191','deepglaucousgray','deep glaucous-gray',[129,135,139],'81878b',8488843], ['nbs-iscc-r:deepglaucousgreen.144','deepglaucousgreen','deep glaucous-green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-r:deepgrapegreen.120','deepgrapegreen','deep grape green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:deepgrapegreen.122','deepgrapegreen','deep grape green',[143,151,121],'8f9779',9410425], ['nbs-iscc-r:deepgrayishbluegreen.150','deepgrayishbluegreen','deep grayish blue-green',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:deepgrayishlavender.214','deepgrayishlavender','deep grayish lavender ',[150,144,171],'9690ab',9867435], ['nbs-iscc-r:deepgrayishlavender.227','deepgrayishlavender','deep grayish lavender ',[170,152,169],'aa98a9',11180201], ['nbs-iscc-r:deepgrayisholive.113','deepgrayisholive','deep grayish olive',[87,85,76],'57554c',5723468], ['nbs-iscc-r:deepgreenbluegray.186','deepgreenbluegray','deep green-blue gray',[83,104,120],'536878',5466232], ['nbs-iscc-r:deepgreenishglaucous.143','deepgreenishglaucous','deep greenish glaucous',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-r:deepgullgray.265','deepgullgray','deep gull gray',[132,132,130],'848482',8684674], ['nbs-iscc-r:deepheliotropegray.228','deepheliotropegray','deep heliotrope gray ',[121,104,120],'796878',7956600], ['nbs-iscc-r:deephyssopviolet.223','deephyssopviolet','deep hyssop violet',[134,96,142],'86608e',8806542], ['nbs-iscc-r:deeplavender.210','deeplavender','deep lavender',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:deeplavenderblue.195','deeplavenderblue','deep lavender-blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc-r:deeplichengreen.135','deeplichengreen','deep lichen green',[147,197,146],'93c592',9684370], ['nbs-iscc-r:deeplividbrown.19','deeplividbrown','deep livid brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:deeplividpurple.259','deeplividpurple','deep livid purple',[103,49,71],'673147',6762823], ['nbs-iscc-r:deepmadderblue.204','deepmadderblue','deep madder blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:deepmalachitegreen.136','deepmalachitegreen','deep malachite green',[103,146,103],'679267',6787687], ['nbs-iscc-r:deepmediciblue.191','deepmediciblue','deep medici blue',[129,135,139],'81878b',8488843], ['nbs-iscc-r:deepmousegray.64','deepmousegray','deep mouse gray ',[91,80,79],'5b504f',5984335], ['nbs-iscc-r:deepmousegray.265','deepmousegray','deep mouse gray ',[132,132,130],'848482',8684674], ['nbs-iscc-r:deepmousegray.266','deepmousegray','deep mouse gray ',[85,85,85],'555555',5592405], ['nbs-iscc-r:deepneutralgray.266','deepneutralgray','deep neutral gray',[85,85,85],'555555',5592405], ['nbs-iscc-r:deepolive.107','deepolive','deep olive',[102,93,30],'665d1e',6708510], ['nbs-iscc-r:deepolive.110','deepolive','deep olive',[91,88,66],'5b5842',5986370], ['nbs-iscc-r:deepolivebuff.90','deepolivebuff','deep olive-buff',[194,178,128],'c2b280',12759680], ['nbs-iscc-r:deepolivegray.112','deepolivegray','deep olive-gray',[138,135,118],'8a8776',9078646], ['nbs-iscc-r:deeporientblue.186','deeporientblue','deep orient blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:deeppaynesgray.186','deeppaynesgray','deep payne\'s gray',[83,104,120],'536878',5466232], ['nbs-iscc-r:deepplumbagoblue.227','deepplumbagoblue','deep plumbago blue',[170,152,169],'aa98a9',11180201], ['nbs-iscc-r:deepplumbagogray.233','deepplumbagogray','deep plumbago gray',[139,133,137],'8b8589',9143689], ['nbs-iscc-r:deepplumbeous.186','deepplumbeous','deep plumbeous',[83,104,120],'536878',5466232], ['nbs-iscc-r:deepplumbeous.191','deepplumbeous','deep plumbeous',[129,135,139],'81878b',8488843], ['nbs-iscc-r:deeppurplishgray.234','deeppurplishgray','deep purplish gray',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:deeppurplishvinaceous.262','deeppurplishvinaceous','deep purplish vinaceous',[145,95,109],'915f6d',9527149], ['nbs-iscc-r:deepquakerdrab.234','deepquakerdrab','deep quaker drab',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:deeprosepink.247','deeprosepink','deep rose pink',[230,143,172],'e68fac',15110060], ['nbs-iscc-r:deepseafoamgreen.119','deepseafoamgreen','deep sea-foam green ',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:deepslateblue.186','deepslateblue','deep slate-blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:deepslategreen.156','deepslategreen','deep slate-green',[78,87,85],'4e5755',5134165], ['nbs-iscc-r:deepslateolive.156','deepslateolive','deep slate-olive',[78,87,85],'4e5755',5134165], ['nbs-iscc-r:deepslateviolet.228','deepslateviolet','deep slate-violet',[121,104,120],'796878',7956600], ['nbs-iscc-r:deepslatybrown.229','deepslatybrown','deep slaty brown',[80,64,77],'50404d',5259341], ['nbs-iscc-r:deepsoftblueviolet.200','deepsoftblueviolet','deep soft blue-violet',[78,81,128],'4e5180',5132672], ['nbs-iscc-r:deepsoftblueviolet.211','deepsoftblueviolet','deep soft blue-violet',[96,78,129],'604e81',6311553], ['nbs-iscc-r:deepsoftbluishviolet.207','deepsoftbluishviolet','deep soft bluish violet',[96,78,151],'604e97',6311575], ['nbs-iscc-r:deepturtlegreen.131','deepturtlegreen','deep turtle green',[68,148,74],'44944a',4494410], ['nbs-iscc-r:deepturtlegreen.136','deepturtlegreen','deep turtle green',[103,146,103],'679267',6787687], ['nbs-iscc-r:deepvarleysgray.228','deepvarleysgray','deep varley\'s gray',[121,104,120],'796878',7956600], ['nbs-iscc-r:deepvarleysgray.234','deepvarleysgray','deep varley\'s gray',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:deepvinaceous.6','deepvinaceous','deep vinaceous',[192,128,129],'c08081',12615809], ['nbs-iscc-r:deepvinaceousgray.228','deepvinaceousgray','deep vinaceous-gray',[121,104,120],'796878',7956600], ['nbs-iscc-r:deepvinaceouslavender.244','deepvinaceouslavender','deep vinaceous-lavender',[170,138,158],'aa8a9e',11176606], ['nbs-iscc-r:deepvinaceouslavender.253','deepvinaceouslavender','deep vinaceous-lavender',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-r:deepvioletgray.233','deepvioletgray','deep violet-gray',[139,133,137],'8b8589',9143689], ['nbs-iscc-r:deepvioletgray.234','deepvioletgray','deep violet-gray',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:deepvioletgray.265','deepvioletgray','deep violet-gray',[132,132,130],'848482',8684674], ['nbs-iscc-r:deepvioletgray.266','deepvioletgray','deep violet-gray',[85,85,85],'555555',5592405], ['nbs-iscc-r:deepvioletplumbeous.204','deepvioletplumbeous','deep violet-plumbeous ',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:deepwedgewoodblue.195','deepwedgewoodblue','deep wedgewood blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc-r:delftblue.186','delftblue','delft blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:diaminazoblue.215','diaminazoblue','diamin-azo blue',[85,76,105],'554c69',5590121], ['nbs-iscc-r:diaminazoblue.229','diaminazoblue','diamin-azo blue',[80,64,77],'50404d',5259341], ['nbs-iscc-r:diaminebrown.46','diaminebrown','diamine brown',[103,76,71],'674c47',6769735], ['nbs-iscc-r:diaminegreen.145','diaminegreen','diamine green',[59,120,97],'3b7861',3897441], ['nbs-iscc-r:diaminegreen.146','diaminegreen','diamine green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-r:divablue.195','divablue','diva blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc-r:divablue.196','divablue','diva blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-r:drab.76','drab','drab',[193,154,107],'c19a6b',12687979], ['nbs-iscc-r:drab.77','drab','drab',[130,102,68],'826644',8545860], ['nbs-iscc-r:drab.79','drab','drab',[174,155,130],'ae9b82',11443074], ['nbs-iscc-r:drab.80','drab','drab',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-r:drabgray.79','drabgray','drab-gray',[174,155,130],'ae9b82',11443074], ['nbs-iscc-r:drabgray.93','drabgray','drab-gray',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-r:dragonsbloodred.38','dragonsbloodred','dragons-blood red',[158,71,50],'9e4732',10372914], ['nbs-iscc-r:dresdenbrown.77','dresdenbrown','dresden brown',[130,102,68],'826644',8545860], ['nbs-iscc-r:duckgreen.151','duckgreen','duck green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-r:dullblackishgreen.151','dullblackishgreen','dull blackish green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-r:dullbluegreenblack.187','dullbluegreenblack','dull blue-green black',[54,69,79],'36454f',3556687], ['nbs-iscc-r:dullbluegreenblack.188','dullbluegreenblack','dull blue-green black',[32,40,48],'202830',2107440], ['nbs-iscc-r:dullbluegreenblack.193','dullbluegreenblack','dull blue-green black',[32,36,40],'202428',2106408], ['nbs-iscc-r:dullblueviolet.196','dullblueviolet','dull blue-violet',[84,90,167],'545aa7',5528231], ['nbs-iscc-r:dullblueviolet.206','dullblueviolet','dull blue-violet',[126,115,184],'7e73b8',8287160], ['nbs-iscc-r:dullblueviolet.207','dullblueviolet','dull blue-violet',[96,78,151],'604e97',6311575], ['nbs-iscc-r:dullblueviolet.211','dullblueviolet','dull blue-violet',[96,78,129],'604e81',6311553], ['nbs-iscc-r:dullbluishviolet.206','dullbluishviolet','dull bluish violet',[126,115,184],'7e73b8',8287160], ['nbs-iscc-r:dullbluishviolet.207','dullbluishviolet','dull bluish violet',[96,78,151],'604e97',6311575], ['nbs-iscc-r:dullbluishviolet.210','dullbluishviolet','dull bluish violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:dullbluishviolet.211','dullbluishviolet','dull bluish violet',[96,78,129],'604e81',6311553], ['nbs-iscc-r:dullbluishviolet.207','dullbluishviolet','dull bluish violet',[96,78,151],'604e97',6311575], ['nbs-iscc-r:dullbluishviolet.211','dullbluishviolet','dull bluish violet',[96,78,129],'604e81',6311553], ['nbs-iscc-r:dullcitrine.106','dullcitrine','dull citrine',[134,126,54],'867e36',8814134], ['nbs-iscc-r:dullcitrine.107','dullcitrine','dull citrine',[102,93,30],'665d1e',6708510], ['nbs-iscc-r:dulldarkpurple.237','dulldarkpurple','dull dark purple',[158,79,136],'9e4f88',10375048], ['nbs-iscc-r:dulldarkpurple.238','dulldarkpurple','dull dark purple',[112,41,99],'702963',7350627], ['nbs-iscc-r:dulldarkpurple.241','dulldarkpurple','dull dark purple',[145,92,131],'915c83',9526403], ['nbs-iscc-r:dullduskypurple.229','dullduskypurple','dull dusky purple',[80,64,77],'50404d',5259341], ['nbs-iscc-r:dullduskypurple.242','dullduskypurple','dull dusky purple',[93,57,84],'5d3954',6109524], ['nbs-iscc-r:dullgreenishblack.156','dullgreenishblack','dull greenish black ',[78,87,85],'4e5755',5134165], ['nbs-iscc-r:dullgreenishblack.266','dullgreenishblack','dull greenish black ',[85,85,85],'555555',5592405], ['nbs-iscc-r:dullgreenishblack.156','dullgreenishblack','dull greenish black ',[78,87,85],'4e5755',5134165], ['nbs-iscc-r:dullgreenishblack.266','dullgreenishblack','dull greenish black ',[85,85,85],'555555',5592405], ['nbs-iscc-r:dullgreenyellow.117','dullgreenyellow','dull green-yellow',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-r:dullindianpurple.262','dullindianpurple','dull indian purple',[145,95,109],'915f6d',9527149], ['nbs-iscc-r:dulllavender.253','dulllavender','dull lavender',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-r:dullmagentapurple.237','dullmagentapurple','dull magenta purple',[158,79,136],'9e4f88',10375048], ['nbs-iscc-r:dullopalinegreen.148','dullopalinegreen','dull opaline green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-r:dullpurplishblack.234','dullpurplishblack','dull purplish black',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:dullviolaceousblue.196','dullviolaceousblue','dull violaceous blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-r:dullvioletblack.234','dullvioletblack','dull violet-black ',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:dullvioletblack.187','dullvioletblack','dull violet-black ',[54,69,79],'36454f',3556687], ['nbs-iscc-r:dullvioletblack.192','dullvioletblack','dull violet-black ',[81,88,94],'51585e',5331038], ['nbs-iscc-r:dullvioletblack.229','dullvioletblack','dull violet-black ',[80,64,77],'50404d',5259341], ['nbs-iscc-r:dullvioletblack.234','dullvioletblack','dull violet-black ',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:dullvioletblack.266','dullvioletblack','dull violet-black ',[85,85,85],'555555',5592405], ['nbs-iscc-r:dullvioletblack.267','dullvioletblack','dull violet-black ',[34,34,34],'222222',2236962], ['nbs-iscc-r:dullvioletblue.196','dullvioletblue','dull violet-blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-r:dullvioletblue.211','dullvioletblue','dull violet-blue',[96,78,129],'604e81',6311553], ['nbs-iscc-r:duskyauriculapurple.242','duskyauriculapurple','dusky auricula purple',[93,57,84],'5d3954',6109524], ['nbs-iscc-r:duskyblue.204','duskyblue','dusky blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:duskybluegreen.151','duskybluegreen','dusky blue-green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-r:duskyblueviolet.215','duskyblueviolet','dusky blue-violet',[85,76,105],'554c69',5590121], ['nbs-iscc-r:duskyblueviolet.212','duskyblueviolet','dusky blue-violet',[47,33,64],'2f2140',3088704], ['nbs-iscc-r:duskyblueviolet.229','duskyblueviolet','dusky blue-violet',[80,64,77],'50404d',5259341], ['nbs-iscc-r:duskybluishgreen.156','duskybluishgreen','dusky bluish green',[78,87,85],'4e5755',5134165], ['nbs-iscc-r:duskybrown.229','duskybrown','dusky brown ',[80,64,77],'50404d',5259341], ['nbs-iscc-r:duskybrown.234','duskybrown','dusky brown ',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:duskydrab.64','duskydrab','dusky drab',[91,80,79],'5b504f',5984335], ['nbs-iscc-r:duskydullbluishgreen.151','duskydullbluishgreen','dusky dull bluish green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-r:duskydullgreen.151','duskydullgreen','dusky dull green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-r:duskydullgreen.156','duskydullgreen','dusky dull green',[78,87,85],'4e5755',5134165], ['nbs-iscc-r:duskydullviolet.224','duskydullviolet','dusky dull violet ',[86,60,92],'563c5c',5651548], ['nbs-iscc-r:duskydullviolet.223','duskydullviolet','dusky dull violet ',[134,96,142],'86608e',8806542], ['nbs-iscc-r:duskydullviolet.224','duskydullviolet','dusky dull violet ',[86,60,92],'563c5c',5651548], ['nbs-iscc-r:duskydullviolet.228','duskydullviolet','dusky dull violet ',[121,104,120],'796878',7956600], ['nbs-iscc-r:duskydullvioletblue.215','duskydullvioletblue','dusky dull violet-blue ',[85,76,105],'554c69',5590121], ['nbs-iscc-r:duskygreen.150','duskygreen','dusky green',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:duskygreen.151','duskygreen','dusky green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-r:duskygreenblue.165','duskygreenblue','dusky green-blue ',[0,75,73],'004b49',19273], ['nbs-iscc-r:duskygreenblue.174','duskygreenblue','dusky green-blue ',[0,73,88],'004958',18776], ['nbs-iscc-r:duskygreenblue.186','duskygreenblue','dusky green-blue ',[83,104,120],'536878',5466232], ['nbs-iscc-r:duskygreenblue.186','duskygreenblue','dusky green-blue ',[83,104,120],'536878',5466232], ['nbs-iscc-r:duskygreenblue.187','duskygreenblue','dusky green-blue ',[54,69,79],'36454f',3556687], ['nbs-iscc-r:duskygreengray.266','duskygreengray','dusky green-gray',[85,85,85],'555555',5592405], ['nbs-iscc-r:duskygreenishblue.179','duskygreenishblue','dusky greenish blue',[0,65,106],'00416a',16746], ['nbs-iscc-r:duskygreenishblue.182','duskygreenishblue','dusky greenish blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:duskygreenishblue.183','duskygreenishblue','dusky greenish blue',[0,48,78],'00304e',12366], ['nbs-iscc-r:duskyneutralgray.266','duskyneutralgray','dusky neutral gray',[85,85,85],'555555',5592405], ['nbs-iscc-r:duskyolivegreen.127','duskyolivegreen','dusky olive-green',[81,87,68],'515744',5330756], ['nbs-iscc-r:duskyorientblue.186','duskyorientblue','dusky orient blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:duskypurplishgray.229','duskypurplishgray','dusky purplish gray',[80,64,77],'50404d',5259341], ['nbs-iscc-r:duskypurplishgray.234','duskypurplishgray','dusky purplish gray',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:duskypurplishgray.266','duskypurplishgray','dusky purplish gray',[85,85,85],'555555',5592405], ['nbs-iscc-r:duskypurplishgray.267','duskypurplishgray','dusky purplish gray',[34,34,34],'222222',2236962], ['nbs-iscc-r:duskyslateblue.187','duskyslateblue','dusky slate-blue',[54,69,79],'36454f',3556687], ['nbs-iscc-r:duskyslateviolet.229','duskyslateviolet','dusky slate-violet',[80,64,77],'50404d',5259341], ['nbs-iscc-r:duskyslateviolet.234','duskyslateviolet','dusky slate-violet',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:duskyviolet.229','duskyviolet','dusky violet',[80,64,77],'50404d',5259341], ['nbs-iscc-r:duskyvioletblue.204','duskyvioletblue','dusky violet-blue ',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:duskyvioletblue.215','duskyvioletblue','dusky violet-blue ',[85,76,105],'554c69',5590121], ['nbs-iscc-r:duskyvioletblue.187','duskyvioletblue','dusky violet-blue ',[54,69,79],'36454f',3556687], ['nbs-iscc-r:duskyyellowishgreen.127','duskyyellowishgreen','dusky yellowish green',[81,87,68],'515744',5330756], ['nbs-iscc-r:dutchblue.185','dutchblue','dutch blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:dutchblue.203','dutchblue','dutch blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-r:ecrudrab.33','ecrudrab','ecru-drab',[194,172,153],'c2ac99',12758169], ['nbs-iscc-r:ecruolive.88','ecruolive','ecru-olive',[171,145,68],'ab9144',11243844], ['nbs-iscc-r:ecruolive.91','ecruolive','ecru-olive',[161,143,96],'a18f60',10588000], ['nbs-iscc-r:elmgreen.125','elmgreen','elm green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-r:elmgreen.127','elmgreen','elm green',[81,87,68],'515744',5330756], ['nbs-iscc-r:emeraldgreen.130','emeraldgreen','emerald green',[131,211,125],'83d37d',8639357], ['nbs-iscc-r:empiregreen.150','empiregreen','empire green',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:empiregreen.151','empiregreen','empire green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-r:empireyellow.83','empireyellow','empire yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-r:endiveblue.199','endiveblue','endive blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:endiveblue.203','endiveblue','endive blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-r:englishred.38','englishred','english red',[158,71,50],'9e4732',10372914], ['nbs-iscc-r:eosinepink.3','eosinepink','eosine pink',[228,113,122],'e4717a',14971258], ['nbs-iscc-r:ethylgreen.160','ethylgreen','ethyl green',[0,122,116],'007a74',31348], ['nbs-iscc-r:ethylgreen.164','ethylgreen','ethyl green',[49,120,115],'317873',3242099], ['nbs-iscc-r:etonblue.182','etonblue','eton blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:etruscanred.19','etruscanred','etruscan red',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:eugeniared.15','eugeniared','eugenia red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-r:eupatoriumpurple.240','eupatoriumpurple','eupatorium purple',[183,132,167],'b784a7',12027047], ['nbs-iscc-r:eupatoriumpurple.241','eupatoriumpurple','eupatorium purple',[145,92,131],'915c83',9526403], ['nbs-iscc-r:fawncolor.45','fawncolor','fawn color',[151,127,115],'977f73',9928563], ['nbs-iscc-r:fawncolor.57','fawncolor','fawn color',[166,123,91],'a67b5b',10910555], ['nbs-iscc-r:fawncolor.60','fawncolor','fawn color',[149,128,112],'958070',9797744], ['nbs-iscc-r:ferruginous.37','ferruginous','ferruginous',[203,109,81],'cb6d51',13331793], ['nbs-iscc-r:ferruginous.38','ferruginous','ferruginous',[158,71,50],'9e4732',10372914], ['nbs-iscc-r:flamescarlet.34','flamescarlet','flame scarlet ',[226,88,34],'e25822',14833698], ['nbs-iscc-r:flaxflowerblue.195','flaxflowerblue','flax-flower blue ',[108,121,184],'6c79b8',7109048], ['nbs-iscc-r:fleshcolor.5','fleshcolor','flesh color',[222,165,164],'dea5a4',14591396], ['nbs-iscc-r:fleshochre.53','fleshochre','flesh-ochre ',[217,144,88],'d99058',14258264], ['nbs-iscc-r:fleshpink.28','fleshpink','flesh pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-r:fleshpink.29','fleshpink','flesh pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:fluoritegreen.136','fluoritegreen','fluorite green',[103,146,103],'679267',6787687], ['nbs-iscc-r:fluoriteviolet.224','fluoriteviolet','fluorite violet',[86,60,92],'563c5c',5651548], ['nbs-iscc-r:forestgreen.120','forestgreen','forest green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:forestgreen.125','forestgreen','forest green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-r:forgetmenotblue.195','forgetmenotblue','forget-me-not blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc-r:frenchgray.185','frenchgray','french gray',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:frenchgray.190','frenchgray','french gray',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-r:frenchgreen.145','frenchgreen','french green',[59,120,97],'3b7861',3897441], ['nbs-iscc-r:fuscous.64','fuscous','fuscous',[91,80,79],'5b504f',5984335], ['nbs-iscc-r:fuscousblack.64','fuscousblack','fuscous-black',[91,80,79],'5b504f',5984335], ['nbs-iscc-r:fuscousblack.266','fuscousblack','fuscous-black',[85,85,85],'555555',5592405], ['nbs-iscc-r:garnetbrown.13','garnetbrown','garnet brown',[132,27,45],'841b2d',8657709], ['nbs-iscc-r:gendarmeblue.182','gendarmeblue','gendarme blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:gentianblue.196','gentianblue','gentian blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-r:geraniumpink.3','geraniumpink','geranium pink',[228,113,122],'e4717a',14971258], ['nbs-iscc-r:geraniumpink.27','geraniumpink','geranium pink',[230,103,97],'e66761',15099745], ['nbs-iscc-r:glassgreen.119','glassgreen','glass green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:glaucous.121','glaucous','glaucous',[218,223,183],'dadfb7',14344119], ['nbs-iscc-r:glaucousblue.172','glaucousblue','glaucous-blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-r:glaucousgray.190','glaucousgray','glaucous-gray',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-r:glaucousgreen.149','glaucousgreen','glaucous-green',[141,163,153],'8da399',9282457], ['nbs-iscc-r:gnaphaliumgreen.148','gnaphaliumgreen','gnaphalium green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-r:gnaphaliumgreen.149','gnaphaliumgreen','gnaphalium green',[141,163,153],'8da399',9282457], ['nbs-iscc-r:grassgreen.120','grassgreen','grass green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:grayishbluegreen.150','grayishbluegreen','grayish blue-green',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:grayishblueviolet.196','grayishblueviolet','grayish blue-violet ',[84,90,167],'545aa7',5528231], ['nbs-iscc-r:grayishblueviolet.200','grayishblueviolet','grayish blue-violet ',[78,81,128],'4e5180',5132672], ['nbs-iscc-r:grayishblueviolet.207','grayishblueviolet','grayish blue-violet ',[96,78,151],'604e97',6311575], ['nbs-iscc-r:grayishblueviolet.211','grayishblueviolet','grayish blue-violet ',[96,78,129],'604e81',6311553], ['nbs-iscc-r:grayishblueviolet.199','grayishblueviolet','grayish blue-violet ',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:grayishlavender.227','grayishlavender','grayish lavender',[170,152,169],'aa98a9',11180201], ['nbs-iscc-r:grayisholive.109','grayisholive','grayish olive',[140,135,103],'8c8767',9209703], ['nbs-iscc-r:grayishviolaceousblue.199','grayishviolaceousblue','grayish violaceous blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:grayishvioletblue.210','grayishvioletblue','grayish violet-blue',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:grayishvioletblue.211','grayishvioletblue','grayish violet-blue',[96,78,129],'604e81',6311553], ['nbs-iscc-r:greenblueslate.186','greenblueslate','green-blue slate',[83,104,120],'536878',5466232], ['nbs-iscc-r:greenishglaucous.148','greenishglaucous','greenish glaucous',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-r:greenishglaucousblue.163','greenishglaucousblue','greenish glaucous-blue',[102,173,164],'66ada4',6729124], ['nbs-iscc-r:greenishslateblack.151','greenishslateblack','greenish slate-black',[58,75,71],'3a4b47',3820359], ['nbs-iscc-r:greenishslateblack.156','greenishslateblack','greenish slate-black',[78,87,85],'4e5755',5134165], ['nbs-iscc-r:greenishslateblack.266','greenishslateblack','greenish slate-black',[85,85,85],'555555',5592405], ['nbs-iscc-r:greenishslateblack.267','greenishslateblack','greenish slate-black',[34,34,34],'222222',2236962], ['nbs-iscc-r:greenishyellow.99','greenishyellow','greenish yellow',[190,183,46],'beb72e',12498734], ['nbs-iscc-r:greenyellow.98','greenyellow','green-yellow',[233,228,80],'e9e450',15328336], ['nbs-iscc-r:grenadine.35','grenadine','grenadine',[217,96,59],'d9603b',14245947], ['nbs-iscc-r:grenadinepink.26','grenadinepink','grenadine pink',[248,131,121],'f88379',16286585], ['nbs-iscc-r:grenadinered.34','grenadinered','grenadine red ',[226,88,34],'e25822',14833698], ['nbs-iscc-r:guineagreen.160','guineagreen','guinea green',[0,122,116],'007a74',31348], ['nbs-iscc-r:gullgray.265','gullgray','gull gray',[132,132,130],'848482',8684674], ['nbs-iscc-r:haematitered.46','haematitered','haematite red',[103,76,71],'674c47',6769735], ['nbs-iscc-r:haematoxylinviolet.223','haematoxylinviolet','haematoxylin violet',[134,96,142],'86608e',8806542], ['nbs-iscc-r:hairbrown.64','hairbrown','hair brown',[91,80,79],'5b504f',5984335], ['nbs-iscc-r:hathigray.154','hathigray','hathi gray',[178,190,181],'b2beb5',11714229], ['nbs-iscc-r:hathigray.155','hathigray','hathi gray',[125,137,132],'7d8984',8227204], ['nbs-iscc-r:hathigray.264','hathigray','hathi gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-r:hathigray.265','hathigray','hathi gray',[132,132,130],'848482',8684674], ['nbs-iscc-r:haysblue.196','haysblue','hay\'s blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-r:haysbrown.19','haysbrown','hay\'s brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:haysbrown.46','haysbrown','hay\'s brown',[103,76,71],'674c47',6769735], ['nbs-iscc-r:haysgreen.136','haysgreen','hay\'s green',[103,146,103],'679267',6787687], ['nbs-iscc-r:haysgreen.137','haysgreen','hay\'s green',[53,94,59],'355e3b',3497531], ['nbs-iscc-r:hayslilac.222','hayslilac','hay\'s lilac',[182,149,192],'b695c0',11965888], ['nbs-iscc-r:haysmaroon.20','haysmaroon','hay\'s maroon',[84,61,63],'543d3f',5520703], ['nbs-iscc-r:haysrusset.43','haysrusset','hay\'s russet',[121,68,59],'79443b',7947323], ['nbs-iscc-r:hazel.55','hazel','hazel',[128,70,27],'80461b',8406555], ['nbs-iscc-r:heliotropegray.227','heliotropegray','heliotrope gray',[170,152,169],'aa98a9',11180201], ['nbs-iscc-r:heliotropegray.228','heliotropegray','heliotrope gray',[121,104,120],'796878',7956600], ['nbs-iscc-r:heliotropeslate.228','heliotropeslate','heliotrope slate',[121,104,120],'796878',7956600], ['nbs-iscc-r:helleborered.258','helleborered','hellebore red',[168,81,110],'a8516e',11030894], ['nbs-iscc-r:helvetiablue.196','helvetiablue','helvetia blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-r:hermosapink.2','hermosapink','hermosa pink',[234,147,153],'ea9399',15373209], ['nbs-iscc-r:hessianbrown.46','hessianbrown','hessian brown',[103,76,71],'674c47',6769735], ['nbs-iscc-r:hessianbrown.47','hessianbrown','hessian brown',[67,48,46],'43302e',4403246], ['nbs-iscc-r:honeyyellow.87','honeyyellow','honey yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-r:honeyyellow.88','honeyyellow','honey yellow',[171,145,68],'ab9144',11243844], ['nbs-iscc-r:hortenseblue.182','hortenseblue','hortense blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:hortenseviolet.217','hortenseviolet','hortense violet',[211,153,230],'d399e6',13867494], ['nbs-iscc-r:hyacinthblue.197','hyacinthblue','hyacinth blue',[39,36,88],'272458',2565208], ['nbs-iscc-r:hyacinthblue.211','hyacinthblue','hyacinth blue',[96,78,129],'604e81',6311553], ['nbs-iscc-r:hyacinthviolet.219','hyacinthviolet','hyacinth violet',[96,47,107],'602f6b',6303595], ['nbs-iscc-r:hydrangeapink.28','hydrangeapink','hydrangea pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-r:hydrangeapink.29','hydrangeapink','hydrangea pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:hydrangeared.19','hydrangeared','hydrangea red',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:hyssopviolet.223','hyssopviolet','hyssop violet',[134,96,142],'86608e',8806542], ['nbs-iscc-r:indianlake.258','indianlake','indian lake',[168,81,110],'a8516e',11030894], ['nbs-iscc-r:indianlake.262','indianlake','indian lake',[145,95,109],'915f6d',9527149], ['nbs-iscc-r:indianpurple.229','indianpurple','indian purple',[80,64,77],'50404d',5259341], ['nbs-iscc-r:indianpurple.259','indianpurple','indian purple',[103,49,71],'673147',6762823], ['nbs-iscc-r:indianred.19','indianred','indian red',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:indigoblue.183','indigoblue','indigo blue',[0,48,78],'00304e',12366], ['nbs-iscc-r:indigoblue.186','indigoblue','indigo blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:indigoblue.187','indigoblue','indigo blue',[54,69,79],'36454f',3556687], ['nbs-iscc-r:indigoblue.204','indigoblue','indigo blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:indulinblue.204','indulinblue','indulin blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:invisiblegreen.151','invisiblegreen','invisible green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-r:invisiblegreen.165','invisiblegreen','invisible green',[0,75,73],'004b49',19273], ['nbs-iscc-r:irongray.113','irongray','iron gray',[87,85,76],'57554c',5723468], ['nbs-iscc-r:isabellacolor.91','isabellacolor','isabella color',[161,143,96],'a18f60',10588000], ['nbs-iscc-r:italianblue.169','italianblue','italian blue',[0,119,145],'007791',30609], ['nbs-iscc-r:ivoryyellow.89','ivoryyellow','ivory yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-r:ivygreen.107','ivygreen','ivy green',[102,93,30],'665d1e',6708510], ['nbs-iscc-r:ivygreen.110','ivygreen','ivy green',[91,88,66],'5b5842',5986370], ['nbs-iscc-r:jadegreen.125','jadegreen','jade green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-r:jadegreen.127','jadegreen','jade green',[81,87,68],'515744',5330756], ['nbs-iscc-r:japanrose.29','japanrose','japan rose',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:jaspergreen.145','jaspergreen','jasper green',[59,120,97],'3b7861',3897441], ['nbs-iscc-r:jasperpink.3','jasperpink','jasper pink',[228,113,122],'e4717a',14971258], ['nbs-iscc-r:jasperpink.26','jasperpink','jasper pink',[248,131,121],'f88379',16286585], ['nbs-iscc-r:jasperpink.27','jasperpink','jasper pink',[230,103,97],'e66761',15099745], ['nbs-iscc-r:jasperred.15','jasperred','jasper red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-r:javelgreen.102','javelgreen','javel green',[185,180,89],'b9b459',12170329], ['nbs-iscc-r:jayblue.182','jayblue','jay blue ',[67,107,149],'436b95',4418453], ['nbs-iscc-r:jayblue.199','jayblue','jay blue ',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:jouvenceblue.164','jouvenceblue','jouvence blue',[49,120,115],'317873',3242099], ['nbs-iscc-r:jouvenceblue.173','jouvenceblue','jouvence blue',[54,117,136],'367588',3569032], ['nbs-iscc-r:kaiserbrown.55','kaiserbrown','kaiser brown',[128,70,27],'80461b',8406555], ['nbs-iscc-r:kildaregreen.120','kildaregreen','kildare green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:killarneygreen.136','killarneygreen','killarney green ',[103,146,103],'679267',6787687], ['nbs-iscc-r:kingsblue.181','kingsblue','king\'s blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:kronbergsgreen.106','kronbergsgreen','kronberg\'s green',[134,126,54],'867e36',8814134], ['nbs-iscc-r:kronbergsgreen.107','kronbergsgreen','kronberg\'s green',[102,93,30],'665d1e',6708510], ['nbs-iscc-r:laeliapink.240','laeliapink','laelia pink',[183,132,167],'b784a7',12027047], ['nbs-iscc-r:laeliapink.248','laeliapink','laelia pink',[222,111,161],'de6fa1',14577569], ['nbs-iscc-r:lafrancepink.1','lafrancepink','la france pink',[255,181,186],'ffb5ba',16758202], ['nbs-iscc-r:lavender.209','lavender','lavender',[220,208,255],'dcd0ff',14471423], ['nbs-iscc-r:lavender.213','lavender','lavender',[196,195,221],'c4c3dd',12895197], ['nbs-iscc-r:lavenderblue.195','lavenderblue','lavender-blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc-r:lavenderblue.199','lavenderblue','lavender-blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:lavendergray.202','lavendergray','lavender-gray',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-r:lavendergray.203','lavendergray','lavender-gray',[140,146,172],'8c92ac',9212588], ['nbs-iscc-r:lavendergray.213','lavendergray','lavender-gray',[196,195,221],'c4c3dd',12895197], ['nbs-iscc-r:lavendergray.214','lavendergray','lavender-gray',[150,144,171],'9690ab',9867435], ['nbs-iscc-r:lavenderviolet.206','lavenderviolet','lavender-violet',[126,115,184],'7e73b8',8287160], ['nbs-iscc-r:leafgreen.127','leafgreen','leaf green',[81,87,68],'515744',5330756], ['nbs-iscc-r:leitchsblue.178','leitchsblue','leitch\'s blue',[0,103,165],'0067a5',26533], ['nbs-iscc-r:lemonchrome.84','lemonchrome','lemon chrome',[212,175,55],'d4af37',13938487], ['nbs-iscc-r:lemonyellow.98','lemonyellow','lemon yellow',[233,228,80],'e9e450',15328336], ['nbs-iscc-r:lemonyellow.99','lemonyellow','lemon yellow',[190,183,46],'beb72e',12498734], ['nbs-iscc-r:lettucegreen.120','lettucegreen','lettuce green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:lichengreen.148','lichengreen','lichen green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-r:lightaliceblue.181','lightaliceblue','light alice blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:lightaliceblue.185','lightaliceblue','light alice blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:lightamparoblue.177','lightamparoblue','light amparo blue',[73,151,208],'4997d0',4822992], ['nbs-iscc-r:lightamparopurple.217','lightamparopurple','light amparo purple',[211,153,230],'d399e6',13867494], ['nbs-iscc-r:lightbicegreen.120','lightbicegreen','light bice green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:lightbluegreen.140','lightbluegreen','light blue-green',[62,180,137],'3eb489',4109449], ['nbs-iscc-r:lightbluegreen.144','lightbluegreen','light blue-green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-r:lightblueviolet.194','lightblueviolet','light blue-violet',[48,38,122],'30267a',3155578], ['nbs-iscc-r:lightbluishviolet.195','lightbluishviolet','light bluish violet',[108,121,184],'6c79b8',7109048], ['nbs-iscc-r:lightbluishviolet.196','lightbluishviolet','light bluish violet',[84,90,167],'545aa7',5528231], ['nbs-iscc-r:lightbluishviolet.206','lightbluishviolet','light bluish violet',[126,115,184],'7e73b8',8287160], ['nbs-iscc-r:lightbrownishdrab.60','lightbrownishdrab','light brownish drab',[149,128,112],'958070',9797744], ['nbs-iscc-r:lightbrownisholive.94','lightbrownisholive','light brownish olive',[150,113,23],'967117',9859351], ['nbs-iscc-r:lightbrownishvinaceous.8','lightbrownishvinaceous','light brownish vinaceous',[196,174,173],'c4aead',12889773], ['nbs-iscc-r:lightbuff.73','lightbuff','light buff',[250,214,165],'fad6a5',16438949], ['nbs-iscc-r:lightbuff.89','lightbuff','light buff',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-r:lightcadetblue.177','lightcadetblue','light cadet blue',[73,151,208],'4997d0',4822992], ['nbs-iscc-r:lightcadmium.82','lightcadmium','light cadmium',[243,195,0],'f3c300',15975168], ['nbs-iscc-r:lightcampanulablue.195','lightcampanulablue','light campanula blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc-r:lightcelandinegreen.154','lightcelandinegreen','light celandine green',[178,190,181],'b2beb5',11714229], ['nbs-iscc-r:lightcelandinegreen.155','lightcelandinegreen','light celandine green',[125,137,132],'7d8984',8227204], ['nbs-iscc-r:lightcendregreen.130','lightcendregreen','light cendre green',[131,211,125],'83d37d',8639357], ['nbs-iscc-r:lightcendregreen.135','lightcendregreen','light cendre green',[147,197,146],'93c592',9684370], ['nbs-iscc-r:lightceruleanblue.181','lightceruleanblue','light cerulean blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:lightchalcedonyyellow.101','lightchalcedonyyellow','light chalcedony yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-r:lightchicoryblue.210','lightchicoryblue','light chicory blue',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:lightcinnamondrab.45','lightcinnamondrab','light cinnamon-drab',[151,127,115],'977f73',9928563], ['nbs-iscc-r:lightcinnamondrab.60','lightcinnamondrab','light cinnamon-drab',[149,128,112],'958070',9797744], ['nbs-iscc-r:lightcolumbiablue.181','lightcolumbiablue','light columbia blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:lightcongopink.28','lightcongopink','light congo pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-r:lightcongopink.29','lightcongopink','light congo pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:lightcoralred.37','lightcoralred','light coral red',[203,109,81],'cb6d51',13331793], ['nbs-iscc-r:lightcorinthianred.6','lightcorinthianred','light corinthian red',[192,128,129],'c08081',12615809], ['nbs-iscc-r:lightcressgreen.120','lightcressgreen','light cress green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:lightdanubegreen.145','lightdanubegreen','light danube green',[59,120,97],'3b7861',3897441], ['nbs-iscc-r:lightdrab.79','lightdrab','light drab',[174,155,130],'ae9b82',11443074], ['nbs-iscc-r:lightdullbluishviolet.210','lightdullbluishviolet','light dull bluish violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:lightdullglaucousblue.172','lightdullglaucousblue','light dull glaucous-blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-r:lightdullglaucousblue.185','lightdullglaucousblue','light dull glaucous-blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:lightdullgreenyellow.119','lightdullgreenyellow','light dull green-yellow',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:lightelmgreen.120','lightelmgreen','light elm green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:lightfluoritegreen.119','lightfluoritegreen','light fluorite green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:lightforgetmenotblue.181','lightforgetmenotblue','light forget-me-not blue ',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:lightglaucousblue.171','lightglaucousblue','light glaucous-blue',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-r:lightgrapegreen.120','lightgrapegreen','light grape green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:lightgrayishblueviolet.181','lightgrayishblueviolet','light grayish blue-violet',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:lightgrayishblueviolet.199','lightgrayishblueviolet','light grayish blue-violet',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:lightgrayisholive.109','lightgrayisholive','light grayish olive',[140,135,103],'8c8767',9209703], ['nbs-iscc-r:lightgrayisholive.112','lightgrayisholive','light grayish olive',[138,135,118],'8a8776',9078646], ['nbs-iscc-r:lightgrayishvinaceous.32','lightgrayishvinaceous','light grayish vinaceous',[199,173,163],'c7ada3',13086115], ['nbs-iscc-r:lightgrayishvioletblue.195','lightgrayishvioletblue','light grayish violet-blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc-r:lightgreenishyellow.98','lightgreenishyellow','light greenish yellow',[233,228,80],'e9e450',15328336], ['nbs-iscc-r:lightgreenishyellow.99','lightgreenishyellow','light greenish yellow',[190,183,46],'beb72e',12498734], ['nbs-iscc-r:lightgreenyellow.101','lightgreenyellow','light green-yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-r:lightgullgray.264','lightgullgray','light gull gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-r:lightheliotropegray.227','lightheliotropegray','light heliotrope gray',[170,152,169],'aa98a9',11180201], ['nbs-iscc-r:lighthelleboregreen.120','lighthelleboregreen','light hellebore green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:lighthelleboregreen.122','lighthelleboregreen','light hellebore green',[143,151,121],'8f9779',9410425], ['nbs-iscc-r:lighthortenseviolet.217','lighthortenseviolet','light hortense violet',[211,153,230],'d399e6',13867494], ['nbs-iscc-r:lighthyssopviolet.210','lighthyssopviolet','light hyssop violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:lightjasperred.3','lightjasperred','light jasper red',[228,113,122],'e4717a',14971258], ['nbs-iscc-r:lightjasperred.15','lightjasperred','light jasper red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-r:lightkingsblue.184','lightkingsblue','light king\'s blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-r:lightkingsblue.185','lightkingsblue','light king\'s blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:lightlavenderblue.199','lightlavenderblue','light lavender-blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:lightlavenderviolet.210','lightlavenderviolet','light lavender-violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:lightlobeliaviolet.222','lightlobeliaviolet','light lobelia violet',[182,149,192],'b695c0',11965888], ['nbs-iscc-r:lightlumieregreen.119','lightlumieregreen','light lumiere green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:lightmallowpurple.248','lightmallowpurple','light mallow purple',[222,111,161],'de6fa1',14577569], ['nbs-iscc-r:lightmauve.210','lightmauve','light mauve',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:lightmediciblue.186','lightmediciblue','light medici blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:lightmethylblue.177','lightmethylblue','light methyl blue ',[73,151,208],'4997d0',4822992], ['nbs-iscc-r:lightmethylblue.178','lightmethylblue','light methyl blue ',[0,103,165],'0067a5',26533], ['nbs-iscc-r:lightmineralgray.154','lightmineralgray','light mineral gray ',[178,190,181],'b2beb5',11714229], ['nbs-iscc-r:lightmousegray.63','lightmousegray','light mouse gray ',[142,130,121],'8e8279',9339513], ['nbs-iscc-r:lightneropalinblue.185','lightneropalinblue','light neropalin blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:lightneutralgray.265','lightneutralgray','light neutral gray',[132,132,130],'848482',8684674], ['nbs-iscc-r:lightniagaragreen.163','lightniagaragreen','light niagara green',[102,173,164],'66ada4',6729124], ['nbs-iscc-r:lightochraceousbuff.71','lightochraceousbuff','light ochraceous-buff',[227,168,87],'e3a857',14919767], ['nbs-iscc-r:lightochraceoussalmon.73','lightochraceoussalmon','light ochraceous-salmon',[250,214,165],'fad6a5',16438949], ['nbs-iscc-r:lightolivegray.93','lightolivegray','light olive-gray',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-r:lightorangeyellow.71','lightorangeyellow','light orange-yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-r:lightorangeyellow.84','lightorangeyellow','light orange-yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-r:lightorientalgreen.135','lightorientalgreen','light oriental green',[147,197,146],'93c592',9684370], ['nbs-iscc-r:lightparisgreen.135','lightparisgreen','light paris green',[147,197,146],'93c592',9684370], ['nbs-iscc-r:lightpaynesgray.185','lightpaynesgray','light payne\'s gray',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:lightpaynesgray.191','lightpaynesgray','light payne\'s gray',[129,135,139],'81878b',8488843], ['nbs-iscc-r:lightperillapurple.241','lightperillapurple','light perilla purple',[145,92,131],'915c83',9526403], ['nbs-iscc-r:lightperillapurple.245','lightperillapurple','light perilla purple',[131,100,121],'836479',8610937], ['nbs-iscc-r:lightphloxpurple.248','lightphloxpurple','light phlox purple',[222,111,161],'de6fa1',14577569], ['nbs-iscc-r:lightpinkishcinnamon.28','lightpinkishcinnamon','light pinkish cinnamon',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-r:lightpinkishcinnamon.29','lightpinkishcinnamon','light pinkish cinnamon',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:lightpinkishlilac.249','lightpinkishlilac','light pinkish lilac',[239,187,204],'efbbcc',15711180], ['nbs-iscc-r:lightplumbagogray.233','lightplumbagogray','light plumbago gray',[139,133,137],'8b8589',9143689], ['nbs-iscc-r:lightporcelaingreen.163','lightporcelaingreen','light porcelain green',[102,173,164],'66ada4',6729124], ['nbs-iscc-r:lightporcelaingreen.164','lightporcelaingreen','light porcelain green',[49,120,115],'317873',3242099], ['nbs-iscc-r:lightpurpledrab.228','lightpurpledrab','light purple-drab',[121,104,120],'796878',7956600], ['nbs-iscc-r:lightpurplishgray.233','lightpurplishgray','light purplish gray',[139,133,137],'8b8589',9143689], ['nbs-iscc-r:lightpurplishgray.265','lightpurplishgray','light purplish gray',[132,132,130],'848482',8684674], ['nbs-iscc-r:lightpurplishvinaceous.5','lightpurplishvinaceous','light purplish vinaceous',[222,165,164],'dea5a4',14591396], ['nbs-iscc-r:lightquakerdrab.233','lightquakerdrab','light quaker drab ',[139,133,137],'8b8589',9143689], ['nbs-iscc-r:lightrosolanepurple.248','lightrosolanepurple','light rosolane purple',[222,111,161],'de6fa1',14577569], ['nbs-iscc-r:lightrussetvinaceous.42','lightrussetvinaceous','light russet-vinaceous',[168,124,109],'a87c6d',11041901], ['nbs-iscc-r:lightsalmonorange.53','lightsalmonorange','light salmon-orange',[217,144,88],'d99058',14258264], ['nbs-iscc-r:lightsealbrown.23','lightsealbrown','light seal brown',[92,80,79],'5c504f',6049871], ['nbs-iscc-r:lightskyblue.185','lightskyblue','light sky blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:lightsoftblueviolet.195','lightsoftblueviolet','light soft blue-violet',[108,121,184],'6c79b8',7109048], ['nbs-iscc-r:lightsoftblueviolet.206','lightsoftblueviolet','light soft blue-violet',[126,115,184],'7e73b8',8287160], ['nbs-iscc-r:lightsquillblue.181','lightsquillblue','light squill blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:lightsulphategreen.163','lightsulphategreen','light sulphate green',[102,173,164],'66ada4',6729124], ['nbs-iscc-r:lightterreverte.164','lightterreverte','light terre verte',[49,120,115],'317873',3242099], ['nbs-iscc-r:lightturtlegreen.119','lightturtlegreen','light turtle green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:lighttyrianblue.186','lighttyrianblue','light tyrian blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:lighttyrianblue.203','lighttyrianblue','light tyrian blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-r:lighttyrianblue.204','lighttyrianblue','light tyrian blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:lightvarleysgray.227','lightvarleysgray','light varley\'s gray',[170,152,169],'aa98a9',11180201], ['nbs-iscc-r:lightvinaceouscinnamon.73','lightvinaceouscinnamon','light vinaceous-cinnamon',[250,214,165],'fad6a5',16438949], ['nbs-iscc-r:lightvinaceousdrab.19','lightvinaceousdrab','light vinaceous-drab',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:lightvinaceousfawn.32','lightvinaceousfawn','light vinaceous-fawn',[199,173,163],'c7ada3',13086115], ['nbs-iscc-r:lightvinaceousfawn.33','lightvinaceousfawn','light vinaceous-fawn',[194,172,153],'c2ac99',12758169], ['nbs-iscc-r:lightvinaceousgray.227','lightvinaceousgray','light vinaceous-gray',[170,152,169],'aa98a9',11180201], ['nbs-iscc-r:lightvinaceousgray.232','lightvinaceousgray','light vinaceous-gray',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-r:lightvinaceousgray.233','lightvinaceousgray','light vinaceous-gray',[139,133,137],'8b8589',9143689], ['nbs-iscc-r:lightvinaceousgray.253','lightvinaceousgray','light vinaceous-gray',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-r:lightvinaceouslilac.240','lightvinaceouslilac','light vinaceous-lilac',[183,132,167],'b784a7',12027047], ['nbs-iscc-r:lightvinaceouslilac.244','lightvinaceouslilac','light vinaceous-lilac',[170,138,158],'aa8a9e',11176606], ['nbs-iscc-r:lightvinaceouslilac.250','lightvinaceouslilac','light vinaceous-lilac',[213,151,174],'d597ae',13997998], ['nbs-iscc-r:lightvinaceouslilac.253','lightvinaceouslilac','light vinaceous-lilac',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-r:lightvinaceouspurple.245','lightvinaceouspurple','light vinaceous-purple',[131,100,121],'836479',8610937], ['nbs-iscc-r:lightviolet.195','lightviolet','light violet',[108,121,184],'6c79b8',7109048], ['nbs-iscc-r:lightviolet.206','lightviolet','light violet',[126,115,184],'7e73b8',8287160], ['nbs-iscc-r:lightvioletblue.196','lightvioletblue','light violet-blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-r:lightvioletgray.233','lightvioletgray','light violet-gray',[139,133,137],'8b8589',9143689], ['nbs-iscc-r:lightvioletgray.265','lightvioletgray','light violet-gray',[132,132,130],'848482',8684674], ['nbs-iscc-r:lightvioletplumbeous.185','lightvioletplumbeous','light violet-plumbeous ',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:lightvioletplumbeous.186','lightvioletplumbeous','light violet-plumbeous ',[83,104,120],'536878',5466232], ['nbs-iscc-r:lightvioletplumbeous.203','lightvioletplumbeous','light violet-plumbeous ',[140,146,172],'8c92ac',9212588], ['nbs-iscc-r:lightviridinegreen.119','lightviridinegreen','light viridine green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:lightviridineyellow.101','lightviridineyellow','light viridine yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-r:lightwindsorblue.199','lightwindsorblue','light windsor blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:lightwistariablue.199','lightwistariablue','light wistaria blue ',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:lightwistariablue.210','lightwistariablue','light wistaria blue ',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:lightwistariaviolet.210','lightwistariaviolet','light wistaria violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:lightyellowgreen.116','lightyellowgreen','light yellow-green',[189,218,87],'bdda57',12442199], ['nbs-iscc-r:lightyellowgreen.119','lightyellowgreen','light yellow-green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:lightyellowisholive.103','lightyellowisholive','light yellowish olive',[152,148,62],'98943e',9999422], ['nbs-iscc-r:lilac.222','lilac','lilac',[182,149,192],'b695c0',11965888], ['nbs-iscc-r:lilac.227','lilac','lilac',[170,152,169],'aa98a9',11180201], ['nbs-iscc-r:lilacgray.232','lilacgray','lilac gray',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-r:lilygreen.155','lilygreen','lily green',[125,137,132],'7d8984',8227204], ['nbs-iscc-r:limegreen.102','limegreen','lime green',[185,180,89],'b9b459',12170329], ['nbs-iscc-r:limegreen.103','limegreen','lime green',[152,148,62],'98943e',9999422], ['nbs-iscc-r:limegreen.106','limegreen','lime green',[134,126,54],'867e36',8814134], ['nbs-iscc-r:lincolngreen.127','lincolngreen','lincoln green',[81,87,68],'515744',5330756], ['nbs-iscc-r:liseranpurple.237','liseranpurple','liseran purple',[158,79,136],'9e4f88',10375048], ['nbs-iscc-r:liseranpurple.240','liseranpurple','liseran purple',[183,132,167],'b784a7',12027047], ['nbs-iscc-r:liseranpurple.241','liseranpurple','liseran purple',[145,92,131],'915c83',9526403], ['nbs-iscc-r:liseranpurple.248','liseranpurple','liseran purple',[222,111,161],'de6fa1',14577569], ['nbs-iscc-r:lithopurple.218','lithopurple','litho purple',[135,86,146],'875692',8869522], ['nbs-iscc-r:lithopurple.219','lithopurple','litho purple',[96,47,107],'602f6b',6303595], ['nbs-iscc-r:lithopurple.223','lithopurple','litho purple',[134,96,142],'86608e',8806542], ['nbs-iscc-r:liverbrown.43','liverbrown','liver brown',[121,68,59],'79443b',7947323], ['nbs-iscc-r:lividbrown.19','lividbrown','livid brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:lividpink.4','lividpink','livid pink',[249,204,202],'f9ccca',16370890], ['nbs-iscc-r:lividpink.5','lividpink','livid pink',[222,165,164],'dea5a4',14591396], ['nbs-iscc-r:lividpink.7','lividpink','livid pink',[234,216,215],'ead8d7',15390935], ['nbs-iscc-r:lividpink.8','lividpink','livid pink',[196,174,173],'c4aead',12889773], ['nbs-iscc-r:lividpurple.241','lividpurple','livid purple',[145,92,131],'915c83',9526403], ['nbs-iscc-r:lividviolet.223','lividviolet','livid violet',[134,96,142],'86608e',8806542], ['nbs-iscc-r:lividviolet.228','lividviolet','livid violet',[121,104,120],'796878',7956600], ['nbs-iscc-r:lobeliaviolet.222','lobeliaviolet','lobelia violet',[182,149,192],'b695c0',11965888], ['nbs-iscc-r:lumiereblue.163','lumiereblue','lumiere blue',[102,173,164],'66ada4',6729124], ['nbs-iscc-r:lumiereblue.172','lumiereblue','lumiere blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-r:lumieregreen.119','lumieregreen','lumiere green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:lumieregreen.120','lumieregreen','lumiere green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:lyonsblue.178','lyonsblue','lyons blue',[0,103,165],'0067a5',26533], ['nbs-iscc-r:madderblue.214','madderblue','madder blue',[150,144,171],'9690ab',9867435], ['nbs-iscc-r:madderblue.228','madderblue','madder blue',[121,104,120],'796878',7956600], ['nbs-iscc-r:madderbrown.19','madderbrown','madder brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:madderviolet.224','madderviolet','madder violet',[86,60,92],'563c5c',5651548], ['nbs-iscc-r:magenta.237','magenta','magenta',[158,79,136],'9e4f88',10375048], ['nbs-iscc-r:mahoganyred.43','mahoganyred','mahogany red',[121,68,59],'79443b',7947323], ['nbs-iscc-r:maizeyellow.86','maizeyellow','maize yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-r:malachitegreen.135','malachitegreen','malachite green',[147,197,146],'93c592',9684370], ['nbs-iscc-r:mallowpink.247','mallowpink','mallow pink',[230,143,172],'e68fac',15110060], ['nbs-iscc-r:mallowpurple.236','mallowpurple','mallow purple',[135,0,116],'870074',8847476], ['nbs-iscc-r:mallowpurple.248','mallowpurple','mallow purple',[222,111,161],'de6fa1',14577569], ['nbs-iscc-r:manganeseviolet.218','manganeseviolet','manganese violet',[135,86,146],'875692',8869522], ['nbs-iscc-r:margueriteyellow.89','margueriteyellow','marguerite yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-r:marineblue.182','marineblue','marine blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:maroon.44','maroon','maroon',[62,29,30],'3e1d1e',4070686], ['nbs-iscc-r:marsbrown.58','marsbrown','mars brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-r:marsorange.37','marsorange','mars orange',[203,109,81],'cb6d51',13331793], ['nbs-iscc-r:marsorange.38','marsorange','mars orange',[158,71,50],'9e4732',10372914], ['nbs-iscc-r:marsviolet.229','marsviolet','mars violet',[80,64,77],'50404d',5259341], ['nbs-iscc-r:marsyellow.69','marsyellow','mars yellow',[201,133,0],'c98500',13206784], ['nbs-iscc-r:marsyellow.72','marsyellow','mars yellow',[190,138,61],'be8a3d',12487229], ['nbs-iscc-r:martiusyellow.101','martiusyellow','martius yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-r:massicotyellow.86','massicotyellow','massicot yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-r:massicotyellow.89','massicotyellow','massicot yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-r:mathewsblue.178','mathewsblue','mathew\'s blue',[0,103,165],'0067a5',26533], ['nbs-iscc-r:mathewspurple.218','mathewspurple','mathew\'s purple',[135,86,146],'875692',8869522], ['nbs-iscc-r:mathewspurple.223','mathewspurple','mathew\'s purple',[134,96,142],'86608e',8806542], ['nbs-iscc-r:mauve.206','mauve','mauve',[126,115,184],'7e73b8',8287160], ['nbs-iscc-r:mauvette.249','mauvette','mauvette',[239,187,204],'efbbcc',15711180], ['nbs-iscc-r:mazarineblue.177','mazarineblue','mazarine blue',[73,151,208],'4997d0',4822992], ['nbs-iscc-r:mazarineblue.181','mazarineblue','mazarine blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:meadowgreen.136','meadowgreen','meadow green',[103,146,103],'679267',6787687], ['nbs-iscc-r:medalbronze.95','medalbronze','medal bronze',[108,84,30],'6c541e',7099422], ['nbs-iscc-r:mediciblue.191','mediciblue','medici blue',[129,135,139],'81878b',8488843], ['nbs-iscc-r:methylblue.176','methylblue','methyl blue ',[0,161,194],'00a1c2',41410], ['nbs-iscc-r:methylgreen.160','methylgreen','methyl green ',[0,122,116],'007a74',31348], ['nbs-iscc-r:methylgreen.164','methylgreen','methyl green ',[49,120,115],'317873',3242099], ['nbs-iscc-r:microclinegreen.162','microclinegreen','microcline green ',[150,222,209],'96ded1',9887441], ['nbs-iscc-r:mignonettegreen.106','mignonettegreen','mignonette green ',[134,126,54],'867e36',8814134], ['nbs-iscc-r:mikadobrown.57','mikadobrown','mikado brown ',[166,123,91],'a67b5b',10910555], ['nbs-iscc-r:mikadoorange.50','mikadoorange','mikado orange ',[237,135,45],'ed872d',15566637], ['nbs-iscc-r:mineralgray.122','mineralgray','mineral gray ',[143,151,121],'8f9779',9410425], ['nbs-iscc-r:mineralgreen.117','mineralgreen','mineral green ',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-r:mineralred.19','mineralred','mineral red ',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:montpelliergreen.144','montpelliergreen','montpellier green ',[106,171,142],'6aab8e',6990734], ['nbs-iscc-r:montpelliergreen.145','montpelliergreen','montpellier green ',[59,120,97],'3b7861',3897441], ['nbs-iscc-r:moroccored.43','moroccored','morocco red ',[121,68,59],'79443b',7947323], ['nbs-iscc-r:motmotblue.173','motmotblue','motmot blue ',[54,117,136],'367588',3569032], ['nbs-iscc-r:motmotgreen.131','motmotgreen','motmot green ',[68,148,74],'44944a',4494410], ['nbs-iscc-r:motmotgreen.136','motmotgreen','motmot green ',[103,146,103],'679267',6787687], ['nbs-iscc-r:mousegray.63','mousegray','mouse gray ',[142,130,121],'8e8279',9339513], ['nbs-iscc-r:mulberrypurple.219','mulberrypurple','mulberry purple ',[96,47,107],'602f6b',6303595], ['nbs-iscc-r:mulberrypurple.224','mulberrypurple','mulberry purple ',[86,60,92],'563c5c',5651548], ['nbs-iscc-r:mummybrown.78','mummybrown','mummy brown ',[75,54,33],'4b3621',4929057], ['nbs-iscc-r:munichlake.11','munichlake','munich lake ',[190,0,50],'be0032',12451890], ['nbs-iscc-r:munichlake.12','munichlake','munich lake ',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-r:mustardyellow.84','mustardyellow','mustard yellow ',[212,175,55],'d4af37',13938487], ['nbs-iscc-r:myrtlegreen.165','myrtlegreen','myrtle green ',[0,75,73],'004b49',19273], ['nbs-iscc-r:mythogreen.120','mythogreen','mytho green ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:mythogreen.122','mythogreen','mytho green ',[143,151,121],'8f9779',9410425], ['nbs-iscc-r:naphthaleneviolet.242','naphthaleneviolet','naphthalene violet ',[93,57,84],'5d3954',6109524], ['nbs-iscc-r:naphthaleneyellow.101','naphthaleneyellow','naphthalene yellow ',[234,230,121],'eae679',15394425], ['nbs-iscc-r:naphthaleneyellow.104','naphthaleneyellow','naphthalene yellow ',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-r:naplesyellow.86','naplesyellow','naples yellow ',[248,222,126],'f8de7e',16309886], ['nbs-iscc-r:natalbrown.61','natalbrown','natal brown',[99,81,71],'635147',6508871], ['nbs-iscc-r:navyblue.200','navyblue','navy blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-r:navyblue.204','navyblue','navy blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:neropalinblue.181','neropalinblue','neropalin blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:neutralgray.265','neutralgray','neutral gray',[132,132,130],'848482',8684674], ['nbs-iscc-r:neutralred.259','neutralred','neutral red',[103,49,71],'673147',6762823], ['nbs-iscc-r:neutralred.262','neutralred','neutral red',[145,95,109],'915f6d',9527149], ['nbs-iscc-r:neuvidergreen.135','neuvidergreen','neuvider green',[147,197,146],'93c592',9684370], ['nbs-iscc-r:nevagreen.116','nevagreen','neva green',[189,218,87],'bdda57',12442199], ['nbs-iscc-r:niagaragreen.149','niagaragreen','niagara green',[141,163,153],'8da399',9282457], ['nbs-iscc-r:niagaragreen.163','niagaragreen','niagara green',[102,173,164],'66ada4',6729124], ['nbs-iscc-r:nickelgreen.145','nickelgreen','nickel green',[59,120,97],'3b7861',3897441], ['nbs-iscc-r:nickelgreen.150','nickelgreen','nickel green',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:nightgreen.115','nightgreen','night green',[141,182,0],'8db600',9287168], ['nbs-iscc-r:nigrosinblue.204','nigrosinblue','nigrosin blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:nigrosinviolet.224','nigrosinviolet','nigrosin violet ',[86,60,92],'563c5c',5651548], ['nbs-iscc-r:nileblue.163','nileblue','nile blue',[102,173,164],'66ada4',6729124], ['nbs-iscc-r:nopalred.12','nopalred','nopal red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-r:ocherred.19','ocherred','ocher red',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:ochraceousbuff.28','ochraceousbuff','ochraceous-buff',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-r:ochraceousbuff.29','ochraceousbuff','ochraceous-buff',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:ochraceousorange.68','ochraceousorange','ochraceous-orange',[234,162,33],'eaa221',15376929], ['nbs-iscc-r:ochraceousorange.69','ochraceousorange','ochraceous-orange',[201,133,0],'c98500',13206784], ['nbs-iscc-r:ochraceoussalmon.53','ochraceoussalmon','ochraceous-salmon',[217,144,88],'d99058',14258264], ['nbs-iscc-r:ochraceoustawny.72','ochraceoustawny','ochraceous-tawny',[190,138,61],'be8a3d',12487229], ['nbs-iscc-r:ochraceoustawny.74','ochraceoustawny','ochraceous-tawny',[153,101,21],'996515',10052885], ['nbs-iscc-r:oilgreen.120','oilgreen','oil green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:oldburgundy.21','oldburgundy','old burgundy',[46,29,33],'2e1d21',3022113], ['nbs-iscc-r:oldgold.88','oldgold','old gold',[171,145,68],'ab9144',11243844], ['nbs-iscc-r:oldgold.94','oldgold','old gold',[150,113,23],'967117',9859351], ['nbs-iscc-r:oldrose.15','oldrose','old rose',[171,78,82],'ab4e52',11226706], ['nbs-iscc-r:olive.107','olive','olive',[102,93,30],'665d1e',6708510], ['nbs-iscc-r:olive.110','olive','olive',[91,88,66],'5b5842',5986370], ['nbs-iscc-r:olivebrown.80','olivebrown','olive-brown ',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-r:olivebuff.89','olivebuff','olive-buff',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-r:olivebuff.90','olivebuff','olive-buff',[194,178,128],'c2b280',12759680], ['nbs-iscc-r:olivecitrine.107','olivecitrine','olive-citrine',[102,93,30],'665d1e',6708510], ['nbs-iscc-r:olivegray.109','olivegray','olive-gray ',[140,135,103],'8c8767',9209703], ['nbs-iscc-r:olivegray.112','olivegray','olive-gray ',[138,135,118],'8a8776',9078646], ['nbs-iscc-r:olivegreen.107','olivegreen','olive green',[102,93,30],'665d1e',6708510], ['nbs-iscc-r:olivelake.91','olivelake','olive lake',[161,143,96],'a18f60',10588000], ['nbs-iscc-r:olivelake.106','olivelake','olive lake',[134,126,54],'867e36',8814134], ['nbs-iscc-r:oliveocher.87','oliveocher','olive-ocher',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-r:oliveocher.88','oliveocher','olive-ocher',[171,145,68],'ab9144',11243844], ['nbs-iscc-r:oliveyellow.102','oliveyellow','olive-yellow ',[185,180,89],'b9b459',12170329], ['nbs-iscc-r:olivine.135','olivine','olivine',[147,197,146],'93c592',9684370], ['nbs-iscc-r:olympicblue.178','olympicblue','olympic blue',[0,103,165],'0067a5',26533], ['nbs-iscc-r:onionskinpink.29','onionskinpink','onion-skin pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:onionskinpink.53','onionskinpink','onion-skin pink',[217,144,88],'d99058',14258264], ['nbs-iscc-r:ontarioviolet.210','ontarioviolet','ontario violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:opalinegreen.119','opalinegreen','opaline green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:opalinegreen.121','opalinegreen','opaline green',[218,223,183],'dadfb7',14344119], ['nbs-iscc-r:orange.50','orange','orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-r:orangebuff.71','orangebuff','orange-buff ',[227,168,87],'e3a857',14919767], ['nbs-iscc-r:orangechrome.48','orangechrome','orange chrome',[243,132,0],'f38400',15959040], ['nbs-iscc-r:orangecinnamon.53','orangecinnamon','orange-cinnamon',[217,144,88],'d99058',14258264], ['nbs-iscc-r:orangecitrine.94','orangecitrine','orange-citrine',[150,113,23],'967117',9859351], ['nbs-iscc-r:orangepink.49','orangepink','orange-pink',[253,148,63],'fd943f',16618559], ['nbs-iscc-r:orangepink.52','orangepink','orange-pink',[250,181,127],'fab57f',16430463], ['nbs-iscc-r:orangerufous.51','orangerufous','orange-rufous ',[190,101,22],'be6516',12477718], ['nbs-iscc-r:orangevinaceous.3','orangevinaceous','orange-vinaceous ',[228,113,122],'e4717a',14971258], ['nbs-iscc-r:orangevinaceous.26','orangevinaceous','orange-vinaceous ',[248,131,121],'f88379',16286585], ['nbs-iscc-r:orientalgreen.136','orientalgreen','oriental green',[103,146,103],'679267',6787687], ['nbs-iscc-r:orientblue.182','orientblue','orient blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:orientblue.186','orientblue','orient blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:orientpink.26','orientpink','orient pink',[248,131,121],'f88379',16286585], ['nbs-iscc-r:ouralgreen.134','ouralgreen','oural green',[182,229,175],'b6e5af',11986351], ['nbs-iscc-r:ouralgreen.135','ouralgreen','oural green',[147,197,146],'93c592',9684370], ['nbs-iscc-r:oxbloodred.13','oxbloodred','ox-blood red ',[132,27,45],'841b2d',8657709], ['nbs-iscc-r:oxideblue.178','oxideblue','oxide blue',[0,103,165],'0067a5',26533], ['nbs-iscc-r:oxideblue.182','oxideblue','oxide blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:paleamaranthpink.247','paleamaranthpink','pale amaranth pink',[230,143,172],'e68fac',15110060], ['nbs-iscc-r:paleamparoblue.184','paleamparoblue','pale amparo blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-r:paleamparoblue.185','paleamparoblue','pale amparo blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:paleamparopurple.222','paleamparopurple','pale amparo purple',[182,149,192],'b695c0',11965888], ['nbs-iscc-r:paleanilinelilac.180','paleanilinelilac','pale aniline lilac',[161,202,241],'a1caf1',10603249], ['nbs-iscc-r:paleanilinelilac.181','paleanilinelilac','pale aniline lilac',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:paleblue.171','paleblue','pale blue',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-r:paleblue.184','paleblue','pale blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-r:palebluegreen.148','palebluegreen','pale blue-green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-r:paleblueviolet.195','paleblueviolet','pale blue-violet',[108,121,184],'6c79b8',7109048], ['nbs-iscc-r:palebluishlavender.213','palebluishlavender','pale bluish lavender ',[196,195,221],'c4c3dd',12895197], ['nbs-iscc-r:palebluishlavender.226','palebluishlavender','pale bluish lavender ',[214,202,221],'d6cadd',14076637], ['nbs-iscc-r:palebluishviolet.195','palebluishviolet','pale bluish violet',[108,121,184],'6c79b8',7109048], ['nbs-iscc-r:palebrownishdrab.10','palebrownishdrab','pale brownish drab',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-r:palebrownishvinaceous.7','palebrownishvinaceous','pale brownish vinaceous',[234,216,215],'ead8d7',15390935], ['nbs-iscc-r:palebrownishvinaceous.8','palebrownishvinaceous','pale brownish vinaceous',[196,174,173],'c4aead',12889773], ['nbs-iscc-r:palecadetblue.181','palecadetblue','pale cadet blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:palecadetblue.185','palecadetblue','pale cadet blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:palecadetblue.199','palecadetblue','pale cadet blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:palecadetblue.203','palecadetblue','pale cadet blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-r:palecampanulablue.198','palecampanulablue','pale campanula blue',[179,188,226],'b3bce2',11779298], ['nbs-iscc-r:palecampanulablue.199','palecampanulablue','pale campanula blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:palecendregreen.119','palecendregreen','pale cendre green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:palecendregreen.121','palecendregreen','pale cendre green',[218,223,183],'dadfb7',14344119], ['nbs-iscc-r:paleceruleanblue.180','paleceruleanblue','pale cerulean blue',[161,202,241],'a1caf1',10603249], ['nbs-iscc-r:paleceruleanblue.181','paleceruleanblue','pale cerulean blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:palechalcedonyyellow.104','palechalcedonyyellow','pale chalcedony yellow',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-r:palecinnamonpink.28','palecinnamonpink','pale cinnamon-pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-r:palecinnamonpink.29','palecinnamonpink','pale cinnamon-pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:palecinnamonpink.31','palecinnamonpink','pale cinnamon-pink',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-r:palecinnamonpink.33','palecinnamonpink','pale cinnamon-pink',[194,172,153],'c2ac99',12758169], ['nbs-iscc-r:palecongopink.28','palecongopink','pale congo pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-r:palecongopink.29','palecongopink','pale congo pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:palecongopink.31','palecongopink','pale congo pink',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-r:palecongopink.32','palecongopink','pale congo pink',[199,173,163],'c7ada3',13086115], ['nbs-iscc-r:paledrabgray.263','paledrabgray','pale drab-gray',[242,243,244],'f2f3f4',15922164], ['nbs-iscc-r:paledrabgray.264','paledrabgray','pale drab-gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-r:paledullglaucousblue.184','paledullglaucousblue','pale dull glaucous-blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-r:paledullglaucousblue.185','paledullglaucousblue','pale dull glaucous-blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:paledullgreenyellow.119','paledullgreenyellow','pale dull green-yellow',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:paleecrudrab.10','paleecrudrab','pale ecru-drab',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-r:palefleshcolor.28','palefleshcolor','pale flesh color',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-r:palefleshcolor.29','palefleshcolor','pale flesh color',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:palefluoritegreen.148','palefluoritegreen','pale fluorite green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-r:paleglassgreen.119','paleglassgreen','pale glass green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:paleglassgreen.121','paleglassgreen','pale glass green',[218,223,183],'dadfb7',14344119], ['nbs-iscc-r:paleglaucousblue.171','paleglaucousblue','pale glaucous-blue',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-r:paleglaucousblue.184','paleglaucousblue','pale glaucous-blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-r:paleglaucousgreen.148','paleglaucousgreen','pale glaucous-green ',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-r:palegrayishblue.184','palegrayishblue','pale grayish blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-r:palegrayishblue.202','palegrayishblue','pale grayish blue',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-r:palegrayishblueviolet.202','palegrayishblueviolet','pale grayish blue-violet',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-r:palegrayishvinaceous.10','palegrayishvinaceous','pale grayish vinaceous',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-r:palegrayishvinaceous.31','palegrayishvinaceous','pale grayish vinaceous',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-r:palegrayishvinaceous.32','palegrayishvinaceous','pale grayish vinaceous',[199,173,163],'c7ada3',13086115], ['nbs-iscc-r:palegrayishvioletblue.199','palegrayishvioletblue','pale grayish violet-blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:palegreenbluegray.185','palegreenbluegray','pale green-blue gray',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:palegreenishyellow.101','palegreenishyellow','pale greenish yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-r:palegreenishyellow.102','palegreenishyellow','pale greenish yellow',[185,180,89],'b9b459',12170329], ['nbs-iscc-r:palegreenyellow.101','palegreenyellow','pale green-yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-r:palegreenyellow.104','palegreenyellow','pale green-yellow',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-r:palegullgray.264','palegullgray','pale gull gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-r:palehortenseviolet.221','palehortenseviolet','pale hortense violet',[213,186,219],'d5badb',14007003], ['nbs-iscc-r:palehortenseviolet.222','palehortenseviolet','pale hortense violet',[182,149,192],'b695c0',11965888], ['nbs-iscc-r:palekingsblue.213','palekingsblue','pale king\'s blue',[196,195,221],'c4c3dd',12895197], ['nbs-iscc-r:palelaeliapink.249','palelaeliapink','pale laelia pink ',[239,187,204],'efbbcc',15711180], ['nbs-iscc-r:palelaeliapink.250','palelaeliapink','pale laelia pink ',[213,151,174],'d597ae',13997998], ['nbs-iscc-r:palelavenderviolet.222','palelavenderviolet','pale lavender-violet',[182,149,192],'b695c0',11965888], ['nbs-iscc-r:palelavenderviolet.227','palelavenderviolet','pale lavender-violet',[170,152,169],'aa98a9',11180201], ['nbs-iscc-r:palelemonyellow.98','palelemonyellow','pale lemon yellow',[233,228,80],'e9e450',15328336], ['nbs-iscc-r:palelilac.252','palelilac','pale lilac',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-r:palelobeliaviolet.226','palelobeliaviolet','pale lobelia violet',[214,202,221],'d6cadd',14076637], ['nbs-iscc-r:palelobeliaviolet.227','palelobeliaviolet','pale lobelia violet',[170,152,169],'aa98a9',11180201], ['nbs-iscc-r:palelumieregreen.119','palelumieregreen','pale lumiere green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:palemauve.226','palemauve','pale mauve',[214,202,221],'d6cadd',14076637], ['nbs-iscc-r:palemazarineblue.184','palemazarineblue','pale mazarine blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-r:palemazarineblue.185','palemazarineblue','pale mazarine blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:palemazarineblue.202','palemazarineblue','pale mazarine blue',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-r:palemazarineblue.203','palemazarineblue','pale mazarine blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-r:palemediciblue.185','palemediciblue','pale medici blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:palemediciblue.190','palemediciblue','pale medici blue',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-r:palemediciblue.191','palemediciblue','pale medici blue',[129,135,139],'81878b',8488843], ['nbs-iscc-r:palemethylblue.181','palemethylblue','pale methyl blue ',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:palemousegray.63','palemousegray','pale mouse gray ',[142,130,121],'8e8279',9339513], ['nbs-iscc-r:palemousegray.93','palemousegray','pale mouse gray ',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-r:paleneropalinblue.184','paleneropalinblue','pale neropalin blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-r:paleneutralgray.265','paleneutralgray','pale neutral gray',[132,132,130],'848482',8684674], ['nbs-iscc-r:paleniagaragreen.148','paleniagaragreen','pale niagara green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-r:palenileblue.162','palenileblue','pale nile blue',[150,222,209],'96ded1',9887441], ['nbs-iscc-r:paleochraceousbuff.28','paleochraceousbuff','pale ochraceous-buff',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-r:paleochraceoussalmon.73','paleochraceoussalmon','pale ochraceous-salmon',[250,214,165],'fad6a5',16438949], ['nbs-iscc-r:paleochraceoussalmon.89','paleochraceoussalmon','pale ochraceous-salmon',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-r:paleolivebuff.89','paleolivebuff','pale olive-buff',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-r:paleolivegray.92','paleolivegray','pale olive-gray',[240,234,214],'f0ead6',15788758], ['nbs-iscc-r:paleolivegray.93','paleolivegray','pale olive-gray',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-r:paleolivine.148','paleolivine','pale olivine',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-r:paleorangeyellow.70','paleorangeyellow','pale orange-yellow',[251,201,127],'fbc97f',16501119], ['nbs-iscc-r:paleorangeyellow.71','paleorangeyellow','pale orange-yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-r:paleorangeyellow.83','paleorangeyellow','pale orange-yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-r:paleorangeyellow.84','paleorangeyellow','pale orange-yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-r:paleorangeyellow.86','paleorangeyellow','pale orange-yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-r:paleorangeyellow.87','paleorangeyellow','pale orange-yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-r:palepaynesgray.185','palepaynesgray','pale payne\'s gray',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:palepersianlilac.250','palepersianlilac','pale persian lilac',[213,151,174],'d597ae',13997998], ['nbs-iscc-r:palepinkishbuff.73','palepinkishbuff','pale pinkish buff',[250,214,165],'fad6a5',16438949], ['nbs-iscc-r:palepinkishcinnamon.73','palepinkishcinnamon','pale pinkish cinnamon',[250,214,165],'fad6a5',16438949], ['nbs-iscc-r:palepurpledrab.253','palepurpledrab','pale purple-drab',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-r:palepurplishgray.233','palepurplishgray','pale purplish gray',[139,133,137],'8b8589',9143689], ['nbs-iscc-r:palepurplishvinaceous.4','palepurplishvinaceous','pale purplish vinaceous',[249,204,202],'f9ccca',16370890], ['nbs-iscc-r:palepurplishvinaceous.5','palepurplishvinaceous','pale purplish vinaceous',[222,165,164],'dea5a4',14591396], ['nbs-iscc-r:palequakerdrab.232','palequakerdrab','pale quaker drab',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-r:palequakerdrab.233','palequakerdrab','pale quaker drab',[139,133,137],'8b8589',9143689], ['nbs-iscc-r:palerhodonitepink.249','palerhodonitepink','pale rhodonite pink',[239,187,204],'efbbcc',15711180], ['nbs-iscc-r:palerosepurple.222','palerosepurple','pale rose-purple ',[182,149,192],'b695c0',11965888], ['nbs-iscc-r:palerosolanepurple.248','palerosolanepurple','pale rosolane purple',[222,111,161],'de6fa1',14577569], ['nbs-iscc-r:palerussianblue.184','palerussianblue','pale russian blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-r:palesalmoncolor.73','palesalmoncolor','pale salmon color',[250,214,165],'fad6a5',16438949], ['nbs-iscc-r:palesmokegray.93','palesmokegray','pale smoke gray',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-r:palesoftblueviolet.199','palesoftblueviolet','pale soft blue-violet',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:palesoftblueviolet.210','palesoftblueviolet','pale soft blue-violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:palesulphategreen.163','palesulphategreen','pale sulphate green',[102,173,164],'66ada4',6729124], ['nbs-iscc-r:paletibergreen.119','paletibergreen','pale tiber green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:paleturquoisegreen.162','paleturquoisegreen','pale turquoise green',[150,222,209],'96ded1',9887441], ['nbs-iscc-r:paleturtlegreen.119','paleturtlegreen','pale turtle green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:paleturtlegreen.121','paleturtlegreen','pale turtle green',[218,223,183],'dadfb7',14344119], ['nbs-iscc-r:palevarleysgray.214','palevarleysgray','pale varley\'s gray ',[150,144,171],'9690ab',9867435], ['nbs-iscc-r:palevarleysgray.227','palevarleysgray','pale varley\'s gray ',[170,152,169],'aa98a9',11180201], ['nbs-iscc-r:paleverbenaviolet.209','paleverbenaviolet','pale verbena violet',[220,208,255],'dcd0ff',14471423], ['nbs-iscc-r:paleveronesegreen.119','paleveronesegreen','pale veronese green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:paleveronesegreen.121','paleveronesegreen','pale veronese green',[218,223,183],'dadfb7',14344119], ['nbs-iscc-r:palevinaceous.5','palevinaceous','pale vinaceous',[222,165,164],'dea5a4',14591396], ['nbs-iscc-r:palevinaceousdrab.8','palevinaceousdrab','pale vinaceous-drab',[196,174,173],'c4aead',12889773], ['nbs-iscc-r:palevinaceousdrab.10','palevinaceousdrab','pale vinaceous-drab',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-r:palevinaceousdrab.18','palevinaceousdrab','pale vinaceous-drab',[173,136,132],'ad8884',11372676], ['nbs-iscc-r:palevinaceousdrab.22','palevinaceousdrab','pale vinaceous-drab',[143,129,127],'8f817f',9404799], ['nbs-iscc-r:palevinaceousfawn.10','palevinaceousfawn','pale vinaceous-fawn',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-r:palevinaceousfawn.31','palevinaceousfawn','pale vinaceous-fawn',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-r:palevinaceousfawn.32','palevinaceousfawn','pale vinaceous-fawn',[199,173,163],'c7ada3',13086115], ['nbs-iscc-r:palevinaceousfawn.33','palevinaceousfawn','pale vinaceous-fawn',[194,172,153],'c2ac99',12758169], ['nbs-iscc-r:palevinaceouslilac.249','palevinaceouslilac','pale vinaceous-lilac',[239,187,204],'efbbcc',15711180], ['nbs-iscc-r:palevinaceouslilac.252','palevinaceouslilac','pale vinaceous-lilac',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-r:palevinaceouspink.31','palevinaceouspink','pale vinaceous-pink',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-r:palevinaceouspink.32','palevinaceouspink','pale vinaceous-pink',[199,173,163],'c7ada3',13086115], ['nbs-iscc-r:paleviolet.199','paleviolet','pale violet',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:paleviolet.210','paleviolet','pale violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:palevioletblue.177','palevioletblue','pale violet-blue',[73,151,208],'4997d0',4822992], ['nbs-iscc-r:palevioletgray.233','palevioletgray','pale violet-gray',[139,133,137],'8b8589',9143689], ['nbs-iscc-r:palevioletgray.265','palevioletgray','pale violet-gray',[132,132,130],'848482',8684674], ['nbs-iscc-r:palevioletplumbeous.185','palevioletplumbeous','pale violet-plumbeous ',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:palevioletplumbeous.203','palevioletplumbeous','pale violet-plumbeous ',[140,146,172],'8c92ac',9212588], ['nbs-iscc-r:paleviridineyellow.101','paleviridineyellow','pale viridine yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-r:paleviridineyellow.104','paleviridineyellow','pale viridine yellow',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-r:palewindsorblue.181','palewindsorblue','pale windsor blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:palewindsorblue.199','palewindsorblue','pale windsor blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:palewistariablue.209','palewistariablue','pale wistaria blue',[220,208,255],'dcd0ff',14471423], ['nbs-iscc-r:palewistariablue.210','palewistariablue','pale wistaria blue',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:palewistariaviolet.210','palewistariaviolet','pale wistaria violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:palewistariaviolet.214','palewistariaviolet','pale wistaria violet',[150,144,171],'9690ab',9867435], ['nbs-iscc-r:paleyellowgreen.119','paleyellowgreen','pale yellow-green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:paleyelloworange.28','paleyelloworange','pale yellow-orange',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-r:pallidblueviolet.198','pallidblueviolet','pallid blue-violet',[179,188,226],'b3bce2',11779298], ['nbs-iscc-r:pallidblueviolet.199','pallidblueviolet','pallid blue-violet',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:pallidbluishviolet.198','pallidbluishviolet','pallid bluish violet',[179,188,226],'b3bce2',11779298], ['nbs-iscc-r:pallidbluishviolet.199','pallidbluishviolet','pallid bluish violet',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:pallidbluishviolet.209','pallidbluishviolet','pallid bluish violet',[220,208,255],'dcd0ff',14471423], ['nbs-iscc-r:pallidbluishviolet.210','pallidbluishviolet','pallid bluish violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:pallidbrownishdrab.10','pallidbrownishdrab','pallid brownish drab',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-r:pallidgrayishvioletblue.199','pallidgrayishvioletblue','pallid grayish violet-blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:pallidgrayishvioletblue.203','pallidgrayishvioletblue','pallid grayish violet-blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-r:pallidmethylblue.180','pallidmethylblue','pallid methyl blue ',[161,202,241],'a1caf1',10603249], ['nbs-iscc-r:pallidmousegray.10','pallidmousegray','pallid mouse gray ',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-r:pallidmousegray.264','pallidmousegray','pallid mouse gray ',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-r:pallidneutralgray.264','pallidneutralgray','pallid neutral gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-r:pallidpurpledrab.232','pallidpurpledrab','pallid purple-drab',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-r:pallidpurpledrab.253','pallidpurpledrab','pallid purple-drab',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-r:pallidpurplishgray.232','pallidpurplishgray','pallid purplish gray ',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-r:pallidquakerdrab.232','pallidquakerdrab','pallid quaker drab',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-r:pallidsoftblueviolet.198','pallidsoftblueviolet','pallid soft blue-violet ',[179,188,226],'b3bce2',11779298], ['nbs-iscc-r:pallidsoftblueviolet.199','pallidsoftblueviolet','pallid soft blue-violet ',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:pallidsoftblueviolet.209','pallidsoftblueviolet','pallid soft blue-violet ',[220,208,255],'dcd0ff',14471423], ['nbs-iscc-r:pallidsoftblueviolet.210','pallidsoftblueviolet','pallid soft blue-violet ',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:pallidvinaceousdrab.232','pallidvinaceousdrab','pallid vinaceous-drab',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-r:pallidvinaceousdrab.252','pallidvinaceousdrab','pallid vinaceous-drab',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-r:pallidviolet.198','pallidviolet','pallid violet',[179,188,226],'b3bce2',11779298], ['nbs-iscc-r:pallidviolet.199','pallidviolet','pallid violet',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:pallidviolet.202','pallidviolet','pallid violet',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-r:pallidviolet.203','pallidviolet','pallid violet',[140,146,172],'8c92ac',9212588], ['nbs-iscc-r:pallidviolet.209','pallidviolet','pallid violet',[220,208,255],'dcd0ff',14471423], ['nbs-iscc-r:pallidviolet.210','pallidviolet','pallid violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:pallidviolet.213','pallidviolet','pallid violet',[196,195,221],'c4c3dd',12895197], ['nbs-iscc-r:pallidviolet.214','pallidviolet','pallid violet',[150,144,171],'9690ab',9867435], ['nbs-iscc-r:pallidvioletblue.198','pallidvioletblue','pallid violet-blue',[179,188,226],'b3bce2',11779298], ['nbs-iscc-r:pallidvioletblue.199','pallidvioletblue','pallid violet-blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:pansypurple.259','pansypurple','pansy purple',[103,49,71],'673147',6762823], ['nbs-iscc-r:pansyviolet.218','pansyviolet','pansy violet',[135,86,146],'875692',8869522], ['nbs-iscc-r:parisblue.178','parisblue','paris blue',[0,103,165],'0067a5',26533], ['nbs-iscc-r:parisblue.179','parisblue','paris blue',[0,65,106],'00416a',16746], ['nbs-iscc-r:parisgreen.135','parisgreen','paris green',[147,197,146],'93c592',9684370], ['nbs-iscc-r:parrotgreen.120','parrotgreen','parrot green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:parulablue.185','parulablue','parula blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:parulablue.186','parulablue','parula blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:patentblue.174','patentblue','patent blue',[0,73,88],'004958',18776], ['nbs-iscc-r:paynesgray.186','paynesgray','payne\'s gray',[83,104,120],'536878',5466232], ['nbs-iscc-r:peachred.37','peachred','peach red',[203,109,81],'cb6d51',13331793], ['nbs-iscc-r:peacockblue.169','peacockblue','peacock blue',[0,119,145],'007791',30609], ['nbs-iscc-r:peacockgreen.120','peacockgreen','peacock green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:peagreen.155','peagreen','pea green',[125,137,132],'7d8984',8227204], ['nbs-iscc-r:pearlblue.202','pearlblue','pearl blue',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-r:pearlblue.203','pearlblue','pearl blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-r:pearlgray.264','pearlgray','pearl gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-r:pecanbrown.57','pecanbrown','pecan brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-r:perillapurple.259','perillapurple','perilla purple',[103,49,71],'673147',6762823], ['nbs-iscc-r:persianblue.184','persianblue','persian blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-r:persianblue.185','persianblue','persian blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:persianlilac.251','persianlilac','persian lilac',[193,126,145],'c17e91',12680849], ['nbs-iscc-r:petuniaviolet.219','petuniaviolet','petunia violet',[96,47,107],'602f6b',6303595], ['nbs-iscc-r:phenylblue.194','phenylblue','phenyl blue',[48,38,122],'30267a',3155578], ['nbs-iscc-r:phloxpink.222','phloxpink','phlox pink',[182,149,192],'b695c0',11965888], ['nbs-iscc-r:phloxpurple.237','phloxpurple','phlox purple',[158,79,136],'9e4f88',10375048], ['nbs-iscc-r:picricyellow.98','picricyellow','picric yellow',[233,228,80],'e9e450',15328336], ['nbs-iscc-r:pinardyellow.83','pinardyellow','pinard yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-r:pinardyellow.86','pinardyellow','pinard yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-r:pinkishbuff.28','pinkishbuff','pinkish buff',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-r:pinkishbuff.29','pinkishbuff','pinkish buff',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:pinkishcinnamon.71','pinkishcinnamon','pinkish cinnamon',[227,168,87],'e3a857',14919767], ['nbs-iscc-r:pinkishcinnamon.76','pinkishcinnamon','pinkish cinnamon',[193,154,107],'c19a6b',12687979], ['nbs-iscc-r:pinkishvinaceous.29','pinkishvinaceous','pinkish vinaceous',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:pistachiogreen.136','pistachiogreen','pistachio green',[103,146,103],'679267',6787687], ['nbs-iscc-r:pleromaviolet.206','pleromaviolet','pleroma violet',[126,115,184],'7e73b8',8287160], ['nbs-iscc-r:pleromaviolet.207','pleromaviolet','pleroma violet',[96,78,151],'604e97',6311575], ['nbs-iscc-r:plumbagoblue.214','plumbagoblue','plumbago blue',[150,144,171],'9690ab',9867435], ['nbs-iscc-r:plumbagoblue.227','plumbagoblue','plumbago blue',[170,152,169],'aa98a9',11180201], ['nbs-iscc-r:plumbagogray.233','plumbagogray','plumbago gray',[139,133,137],'8b8589',9143689], ['nbs-iscc-r:plumbeous.185','plumbeous','plumbeous',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:plumbeous.191','plumbeous','plumbeous',[129,135,139],'81878b',8488843], ['nbs-iscc-r:plumbeousblack.187','plumbeousblack','plumbeous black ',[54,69,79],'36454f',3556687], ['nbs-iscc-r:plumbeousblack.267','plumbeousblack','plumbeous black ',[34,34,34],'222222',2236962], ['nbs-iscc-r:plumpurple.212','plumpurple','plum purple',[47,33,64],'2f2140',3088704], ['nbs-iscc-r:poisgreen.122','poisgreen','pois green',[143,151,121],'8f9779',9410425], ['nbs-iscc-r:pompeianred.15','pompeianred','pompeian red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-r:porcelainblue.172','porcelainblue','porcelain blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-r:porcelaingreen.164','porcelaingreen','porcelain green',[49,120,115],'317873',3242099], ['nbs-iscc-r:primroseyellow.101','primroseyellow','primrose yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-r:primulineyellow.84','primulineyellow','primuline yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-r:proutsbrown.58','proutsbrown','prout\'s brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-r:prunepurple.224','prunepurple','prune purple',[86,60,92],'563c5c',5651548], ['nbs-iscc-r:prussianblue.178','prussianblue','prussian blue',[0,103,165],'0067a5',26533], ['nbs-iscc-r:prussianblue.182','prussianblue','prussian blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:prussiangreen.165','prussiangreen','prussian green',[0,75,73],'004b49',19273], ['nbs-iscc-r:prussianred.19','prussianred','prussian red',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:puritangray.191','puritangray','puritan gray',[129,135,139],'81878b',8488843], ['nbs-iscc-r:purple.236','purple','purple',[135,0,116],'870074',8847476], ['nbs-iscc-r:purpledrab.228','purpledrab','purple-drab',[121,104,120],'796878',7956600], ['nbs-iscc-r:purplishgray.228','purplishgray','purplish gray',[121,104,120],'796878',7956600], ['nbs-iscc-r:purplishgray.234','purplishgray','purplish gray',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:purplishlilac.240','purplishlilac','purplish lilac',[183,132,167],'b784a7',12027047], ['nbs-iscc-r:purplishlilac.250','purplishlilac','purplish lilac',[213,151,174],'d597ae',13997998], ['nbs-iscc-r:purplishvinaceous.18','purplishvinaceous','purplish vinaceous',[173,136,132],'ad8884',11372676], ['nbs-iscc-r:pyriteyellow.103','pyriteyellow','pyrite yellow',[152,148,62],'98943e',9999422], ['nbs-iscc-r:quakerdrab.233','quakerdrab','quaker drab',[139,133,137],'8b8589',9143689], ['nbs-iscc-r:quakerdrab.265','quakerdrab','quaker drab',[132,132,130],'848482',8684674], ['nbs-iscc-r:rainettegreen.120','rainettegreen','rainette green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:raisinblack.229','raisinblack','raisin black',[80,64,77],'50404d',5259341], ['nbs-iscc-r:raisinpurple.242','raisinpurple','raisin purple',[93,57,84],'5d3954',6109524], ['nbs-iscc-r:ramierblue.214','ramierblue','ramier blue',[150,144,171],'9690ab',9867435], ['nbs-iscc-r:ramierblue.215','ramierblue','ramier blue',[85,76,105],'554c69',5590121], ['nbs-iscc-r:ramierblue.228','ramierblue','ramier blue',[121,104,120],'796878',7956600], ['nbs-iscc-r:rawsienna.72','rawsienna','raw sienna',[190,138,61],'be8a3d',12487229], ['nbs-iscc-r:rawsienna.74','rawsienna','raw sienna',[153,101,21],'996515',10052885], ['nbs-iscc-r:reedyellow.102','reedyellow','reed yellow',[185,180,89],'b9b459',12170329], ['nbs-iscc-r:rejanegreen.135','rejanegreen','rejane green',[147,197,146],'93c592',9684370], ['nbs-iscc-r:rejanegreen.136','rejanegreen','rejane green',[103,146,103],'679267',6787687], ['nbs-iscc-r:rhodaminepurple.254','rhodaminepurple','rhodamine purple',[206,70,118],'ce4676',13518454], ['nbs-iscc-r:rhodonitepink.251','rhodonitepink','rhodonite pink',[193,126,145],'c17e91',12680849], ['nbs-iscc-r:rinnemannsgreen.120','rinnemannsgreen','rinnemann\'s green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:rivagegreen.119','rivagegreen','rivage green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:rivagegreen.120','rivagegreen','rivage green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:rocellinpurple.248','rocellinpurple','rocellin purple',[222,111,161],'de6fa1',14577569], ['nbs-iscc-r:rocellinpurple.251','rocellinpurple','rocellin purple',[193,126,145],'c17e91',12680849], ['nbs-iscc-r:romangreen.107','romangreen','roman green',[102,93,30],'665d1e',6708510], ['nbs-iscc-r:roodsblue.176','roodsblue','rood\'s blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-r:roodsbrown.45','roodsbrown','rood\'s brown',[151,127,115],'977f73',9928563], ['nbs-iscc-r:roodsbrown.57','roodsbrown','rood\'s brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-r:roodsbrown.58','roodsbrown','rood\'s brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-r:roodslavender.227','roodslavender','rood\'s lavender',[170,152,169],'aa98a9',11180201], ['nbs-iscc-r:roodsviolet.238','roodsviolet','rood\'s violet',[112,41,99],'702963',7350627], ['nbs-iscc-r:rosecolor.248','rosecolor','rose color',[222,111,161],'de6fa1',14577569], ['nbs-iscc-r:rosecolor.254','rosecolor','rose color',[206,70,118],'ce4676',13518454], ['nbs-iscc-r:rosedoree.27','rosedoree','rose doree ',[230,103,97],'e66761',15099745], ['nbs-iscc-r:rosepink.249','rosepink','rose pink',[239,187,204],'efbbcc',15711180], ['nbs-iscc-r:rosepurple.217','rosepurple','rose-purple ',[211,153,230],'d399e6',13867494], ['nbs-iscc-r:rosered.11','rosered','rose red',[190,0,50],'be0032',12451890], ['nbs-iscc-r:roslynblue.197','roslynblue','roslyn blue',[39,36,88],'272458',2565208], ['nbs-iscc-r:roslynblue.200','roslynblue','roslyn blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-r:roslynblue.211','roslynblue','roslyn blue',[96,78,129],'604e81',6311553], ['nbs-iscc-r:rosolanepink.246','rosolanepink','rosolane pink',[255,200,214],'ffc8d6',16763094], ['nbs-iscc-r:rosolanepink.249','rosolanepink','rosolane pink',[239,187,204],'efbbcc',15711180], ['nbs-iscc-r:rosolanepurple.255','rosolanepurple','rosolane purple',[179,68,108],'b3446c',11748460], ['nbs-iscc-r:royalpurple.211','royalpurple','royal purple',[96,78,129],'604e81',6311553], ['nbs-iscc-r:rufous.37','rufous','rufous',[203,109,81],'cb6d51',13331793], ['nbs-iscc-r:russet.58','russet','russet',[111,78,55],'6f4e37',7294519], ['nbs-iscc-r:russetvinaceous.19','russetvinaceous','russet-vinaceous',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:russetvinaceous.42','russetvinaceous','russet-vinaceous',[168,124,109],'a87c6d',11041901], ['nbs-iscc-r:russianblue.184','russianblue','russian blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-r:russianblue.185','russianblue','russian blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-r:russiangreen.150','russiangreen','russian green',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:saccardosolive.94','saccardosolive','saccardo\'s olive',[150,113,23],'967117',9859351], ['nbs-iscc-r:saccardosolive.95','saccardosolive','saccardo\'s olive',[108,84,30],'6c541e',7099422], ['nbs-iscc-r:saccardosslate.192','saccardosslate','saccardo\'s slate',[81,88,94],'51585e',5331038], ['nbs-iscc-r:saccardosumber.80','saccardosumber','saccardo\'s umber',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-r:saccardosumber.95','saccardosumber','saccardo\'s umber',[108,84,30],'6c541e',7099422], ['nbs-iscc-r:saccardosviolet.218','saccardosviolet','saccardo\'s violet',[135,86,146],'875692',8869522], ['nbs-iscc-r:saccardosviolet.223','saccardosviolet','saccardo\'s violet',[134,96,142],'86608e',8806542], ['nbs-iscc-r:safranopink.26','safranopink','safrano pink',[248,131,121],'f88379',16286585], ['nbs-iscc-r:sagegreen.149','sagegreen','sage green',[141,163,153],'8da399',9282457], ['nbs-iscc-r:sailorblue.196','sailorblue','sailor blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-r:salmonbuff.71','salmonbuff','salmon-buff ',[227,168,87],'e3a857',14919767], ['nbs-iscc-r:salmonbuff.73','salmonbuff','salmon-buff ',[250,214,165],'fad6a5',16438949], ['nbs-iscc-r:salmoncolor.29','salmoncolor','salmon color',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:salmoncolor.52','salmoncolor','salmon color',[250,181,127],'fab57f',16430463], ['nbs-iscc-r:salmoncolor.53','salmoncolor','salmon color',[217,144,88],'d99058',14258264], ['nbs-iscc-r:salmonorange.50','salmonorange','salmon-orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-r:salviablue.194','salviablue','salvia blue',[48,38,122],'30267a',3155578], ['nbs-iscc-r:sanfordsbrown.54','sanfordsbrown','sanford\'s brown',[174,105,56],'ae6938',11430200], ['nbs-iscc-r:sanfordsbrown.55','sanfordsbrown','sanford\'s brown',[128,70,27],'80461b',8406555], ['nbs-iscc-r:sayalbrown.74','sayalbrown','sayal brown',[153,101,21],'996515',10052885], ['nbs-iscc-r:sayalbrown.77','sayalbrown','sayal brown',[130,102,68],'826644',8545860], ['nbs-iscc-r:scarlet.35','scarlet','scarlet',[217,96,59],'d9603b',14245947], ['nbs-iscc-r:scarletred.11','scarletred','scarlet-red ',[190,0,50],'be0032',12451890], ['nbs-iscc-r:scheelesgreen.117','scheelesgreen','scheele\'s green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-r:scheelesgreen.120','scheelesgreen','scheele\'s green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:schoenfeldspurple.256','schoenfeldspurple','schoenfeld\'s purple',[120,24,74],'78184a',7870538], ['nbs-iscc-r:seafoamgreen.104','seafoamgreen','sea-foam green ',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-r:seafoamyellow.101','seafoamyellow','sea-foam yellow ',[234,230,121],'eae679',15394425], ['nbs-iscc-r:seafoamyellow.104','seafoamyellow','sea-foam yellow ',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-r:seagreen.164','seagreen','sea green',[49,120,115],'317873',3242099], ['nbs-iscc-r:sealbrown.23','sealbrown','seal brown',[92,80,79],'5c504f',6049871], ['nbs-iscc-r:sealbrown.46','sealbrown','seal brown',[103,76,71],'674c47',6769735], ['nbs-iscc-r:seashellpink.31','seashellpink','seashell pink',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-r:seashellpink.33','seashellpink','seashell pink',[194,172,153],'c2ac99',12758169], ['nbs-iscc-r:seashellpink.73','seashellpink','seashell pink',[250,214,165],'fad6a5',16438949], ['nbs-iscc-r:sepia.81','sepia','sepia',[72,60,50],'483c32',4734002], ['nbs-iscc-r:sepia.95','sepia','sepia',[108,84,30],'6c541e',7099422], ['nbs-iscc-r:serpentinegreen.106','serpentinegreen','serpentine green',[134,126,54],'867e36',8814134], ['nbs-iscc-r:shamrockgreen.136','shamrockgreen','shamrock green',[103,146,103],'679267',6787687], ['nbs-iscc-r:shellpink.31','shellpink','shell pink',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-r:shellpink.32','shellpink','shell pink',[199,173,163],'c7ada3',13086115], ['nbs-iscc-r:shrimppink.28','shrimppink','shrimp pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-r:shrimppink.29','shrimppink','shrimp pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:skobeloffgreen.160','skobeloffgreen','skobeloff green',[0,122,116],'007a74',31348], ['nbs-iscc-r:skyblue.181','skyblue','sky blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:skygray.184','skygray','sky gray',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-r:slateblack.267','slateblack','slate-black',[34,34,34],'222222',2236962], ['nbs-iscc-r:slateblue.204','slateblue','slate-blue ',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:slatecolor.266','slatecolor','slate color',[85,85,85],'555555',5592405], ['nbs-iscc-r:slategray.266','slategray','slate-gray',[85,85,85],'555555',5592405], ['nbs-iscc-r:slateolive.155','slateolive','slate-olive',[125,137,132],'7d8984',8227204], ['nbs-iscc-r:slatepurple.228','slatepurple','slate-purple',[121,104,120],'796878',7956600], ['nbs-iscc-r:slatepurple.245','slatepurple','slate-purple',[131,100,121],'836479',8610937], ['nbs-iscc-r:slateviolet.229','slateviolet','slate-violet ',[80,64,77],'50404d',5259341], ['nbs-iscc-r:slateviolet.234','slateviolet','slate-violet ',[93,85,91],'5d555b',6116699], ['nbs-iscc-r:slateviolet.228','slateviolet','slate-violet ',[121,104,120],'796878',7956600], ['nbs-iscc-r:smaltblue.194','smaltblue','smalt blue',[48,38,122],'30267a',3155578], ['nbs-iscc-r:smokegray.90','smokegray','smoke gray',[194,178,128],'c2b280',12759680], ['nbs-iscc-r:smokegray.93','smokegray','smoke gray',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-r:snuffbrown.77','snuffbrown','snuff brown',[130,102,68],'826644',8545860], ['nbs-iscc-r:snuffbrown.80','snuffbrown','snuff brown',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-r:softblueviolet.206','softblueviolet','soft blue-violet',[126,115,184],'7e73b8',8287160], ['nbs-iscc-r:softbluishviolet.207','softbluishviolet','soft bluish violet',[96,78,151],'604e97',6311575], ['nbs-iscc-r:sootyblack.266','sootyblack','sooty black',[85,85,85],'555555',5592405], ['nbs-iscc-r:sorghumbrown.46','sorghumbrown','sorghum brown',[103,76,71],'674c47',6769735], ['nbs-iscc-r:sorrentogreen.164','sorrentogreen','sorrento green',[49,120,115],'317873',3242099], ['nbs-iscc-r:spectrumblue.176','spectrumblue','spectrum blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-r:spectrumred.11','spectrumred','spectrum red',[190,0,50],'be0032',12451890], ['nbs-iscc-r:spectrumviolet.207','spectrumviolet','spectrum violet',[96,78,151],'604e97',6311575], ['nbs-iscc-r:spinachgreen.120','spinachgreen','spinach green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:spinelpink.255','spinelpink','spinel pink',[179,68,108],'b3446c',11748460], ['nbs-iscc-r:spinelred.255','spinelred','spinel red',[179,68,108],'b3446c',11748460], ['nbs-iscc-r:squillblue.181','squillblue','squill blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:stonegreen.136','stonegreen','stone green',[103,146,103],'679267',6787687], ['nbs-iscc-r:stormgray.155','stormgray','storm gray',[125,137,132],'7d8984',8227204], ['nbs-iscc-r:strawberrypink.37','strawberrypink','strawberry pink',[203,109,81],'cb6d51',13331793], ['nbs-iscc-r:strawyellow.86','strawyellow','straw yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-r:strontianyellow.99','strontianyellow','strontian yellow ',[190,183,46],'beb72e',12498734], ['nbs-iscc-r:sudanbrown.55','sudanbrown','sudan brown',[128,70,27],'80461b',8406555], ['nbs-iscc-r:sudanbrown.57','sudanbrown','sudan brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-r:sudanbrown.74','sudanbrown','sudan brown',[153,101,21],'996515',10052885], ['nbs-iscc-r:sulphategreen.163','sulphategreen','sulphate green',[102,173,164],'66ada4',6729124], ['nbs-iscc-r:sulphategreen.164','sulphategreen','sulphate green',[49,120,115],'317873',3242099], ['nbs-iscc-r:sulphineyellow.88','sulphineyellow','sulphine yellow',[171,145,68],'ab9144',11243844], ['nbs-iscc-r:sulphuryellow.101','sulphuryellow','sulphur yellow',[234,230,121],'eae679',15394425], ['nbs-iscc-r:sulphuryellow.104','sulphuryellow','sulphur yellow',[235,232,164],'ebe8a4',15460516], ['nbs-iscc-r:taupebrown.229','taupebrown','taupe brown',[80,64,77],'50404d',5259341], ['nbs-iscc-r:tawny.54','tawny','tawny',[174,105,56],'ae6938',11430200], ['nbs-iscc-r:tawnyolive.77','tawnyolive','tawny-olive',[130,102,68],'826644',8545860], ['nbs-iscc-r:tawnyolive.94','tawnyolive','tawny-olive',[150,113,23],'967117',9859351], ['nbs-iscc-r:teagreen.122','teagreen','tea green',[143,151,121],'8f9779',9410425], ['nbs-iscc-r:terracotta.39','terracotta','terra cotta',[180,116,94],'b4745e',11826270], ['nbs-iscc-r:terreverte.150','terreverte','terre verte',[94,113,106],'5e716a',6189418], ['nbs-iscc-r:testaceous.39','testaceous','testaceous',[180,116,94],'b4745e',11826270], ['nbs-iscc-r:testaceous.42','testaceous','testaceous',[168,124,109],'a87c6d',11041901], ['nbs-iscc-r:thulitepink.247','thulitepink','thulite pink',[230,143,172],'e68fac',15110060], ['nbs-iscc-r:tibergreen.135','tibergreen','tiber green',[147,197,146],'93c592',9684370], ['nbs-iscc-r:tilleulbuff.31','tilleulbuff','tilleul-buff',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-r:tourmalinepink.237','tourmalinepink','tourmaline pink',[158,79,136],'9e4f88',10375048], ['nbs-iscc-r:tourmalinepink.248','tourmalinepink','tourmaline pink',[222,111,161],'de6fa1',14577569], ['nbs-iscc-r:turquoisegreen.163','turquoisegreen','turquoise green',[102,173,164],'66ada4',6729124], ['nbs-iscc-r:turtlegreen.120','turtlegreen','turtle green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:tyrianblue.186','tyrianblue','tyrian blue',[83,104,120],'536878',5466232], ['nbs-iscc-r:tyrianblue.204','tyrianblue','tyrian blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-r:tyrianpink.237','tyrianpink','tyrian pink',[158,79,136],'9e4f88',10375048], ['nbs-iscc-r:tyrianrose.254','tyrianrose','tyrian rose',[206,70,118],'ce4676',13518454], ['nbs-iscc-r:tyrolitegreen.163','tyrolitegreen','tyrolite green',[102,173,164],'66ada4',6729124], ['nbs-iscc-r:ultramarineash.178','ultramarineash','ultramarine ash',[0,103,165],'0067a5',26533], ['nbs-iscc-r:ultramarineblue.176','ultramarineblue','ultramarine blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-r:uraniablue.212','uraniablue','urania blue',[47,33,64],'2f2140',3088704], ['nbs-iscc-r:uraniablue.215','uraniablue','urania blue',[85,76,105],'554c69',5590121], ['nbs-iscc-r:uraniablue.229','uraniablue','urania blue',[80,64,77],'50404d',5259341], ['nbs-iscc-r:vanderpoelsblue.178','vanderpoelsblue','vanderpoel\'s blue',[0,103,165],'0067a5',26533], ['nbs-iscc-r:vanderpoelsblue.182','vanderpoelsblue','vanderpoel\'s blue',[67,107,149],'436b95',4418453], ['nbs-iscc-r:vanderpoelsgreen.116','vanderpoelsgreen','vanderpoel\'s green',[189,218,87],'bdda57',12442199], ['nbs-iscc-r:vanderpoelsgreen.117','vanderpoelsgreen','vanderpoel\'s green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-r:vanderpoelsviolet.210','vanderpoelsviolet','vanderpoel\'s violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc-r:vandykebrown.58','vandykebrown','vandyke brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-r:vandykebrown.61','vandykebrown','vandyke brown',[99,81,71],'635147',6508871], ['nbs-iscc-r:vandykered.19','vandykered','vandyke red',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:variscitegreen.143','variscitegreen','variscite green',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-r:varleysgray.228','varleysgray','varley\'s gray',[121,104,120],'796878',7956600], ['nbs-iscc-r:varleysgreen.137','varleysgreen','varley\'s green',[53,94,59],'355e3b',3497531], ['nbs-iscc-r:venetianblue.178','venetianblue','venetian blue',[0,103,165],'0067a5',26533], ['nbs-iscc-r:venetianpink.26','venetianpink','venetian pink',[248,131,121],'f88379',16286585], ['nbs-iscc-r:venicegreen.159','venicegreen','venice green',[0,166,147],'00a693',42643], ['nbs-iscc-r:verbenaviolet.214','verbenaviolet','verbena violet',[150,144,171],'9690ab',9867435], ['nbs-iscc-r:verdigrisgreen.144','verdigrisgreen','verdigris green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-r:vernoniapurple.262','vernoniapurple','vernonia purple',[145,95,109],'915f6d',9527149], ['nbs-iscc-r:veronabrown.58','veronabrown','verona brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-r:veronesegreen.119','veronesegreen','veronese green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-r:veronesegreen.120','veronesegreen','veronese green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:vetivergreen.120','vetivergreen','vetiver green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-r:vetivergreen.122','vetivergreen','vetiver green',[143,151,121],'8f9779',9410425], ['nbs-iscc-r:victorialake.16','victorialake','victoria lake',[114,47,55],'722f37',7483191], ['nbs-iscc-r:victorialake.17','victorialake','victoria lake',[63,23,40],'3f1728',4134696], ['nbs-iscc-r:vinaceous.2','vinaceous','vinaceous',[234,147,153],'ea9399',15373209], ['nbs-iscc-r:vinaceous.3','vinaceous','vinaceous',[228,113,122],'e4717a',14971258], ['nbs-iscc-r:vinaceous.5','vinaceous','vinaceous',[222,165,164],'dea5a4',14591396], ['nbs-iscc-r:vinaceous.6','vinaceous','vinaceous',[192,128,129],'c08081',12615809], ['nbs-iscc-r:vinaceousbrown.19','vinaceousbrown','vinaceous-brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:vinaceousbuff.28','vinaceousbuff','vinaceous-buff',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-r:vinaceousbuff.29','vinaceousbuff','vinaceous-buff',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:vinaceousbuff.31','vinaceousbuff','vinaceous-buff',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-r:vinaceousbuff.33','vinaceousbuff','vinaceous-buff',[194,172,153],'c2ac99',12758169], ['nbs-iscc-r:vinaceouscinnamon.29','vinaceouscinnamon','vinaceous-cinnamon',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:vinaceouscinnamon.76','vinaceouscinnamon','vinaceous-cinnamon',[193,154,107],'c19a6b',12687979], ['nbs-iscc-r:vinaceousdrab.19','vinaceousdrab','vinaceous-drab',[144,93,93],'905d5d',9461085], ['nbs-iscc-r:vinaceousfawn.29','vinaceousfawn','vinaceous-fawn',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-r:vinaceousfawn.32','vinaceousfawn','vinaceous-fawn',[199,173,163],'c7ada3',13086115], ['nbs-iscc-r:vinaceousgray.227','vinaceousgray','vinaceous-gray',[170,152,169],'aa98a9',11180201], ['nbs-iscc-r:vinaceousgray.228','vinaceousgray','vinaceous-gray',[121,104,120],'796878',7956600], ['nbs-iscc-r:vinaceouslavender.5','vinaceouslavender','vinaceous-lavender',[222,165,164],'dea5a4',14591396], ['nbs-iscc-r:vinaceouslilac.251','vinaceouslilac','vinaceous-lilac',[193,126,145],'c17e91',12680849], ['nbs-iscc-r:vinaceouslilac.262','vinaceouslilac','vinaceous-lilac',[145,95,109],'915f6d',9527149], ['nbs-iscc-r:vinaceouspink.39','vinaceouspink','vinaceous-pink',[180,116,94],'b4745e',11826270], ['nbs-iscc-r:vinaceouspink.42','vinaceouspink','vinaceous-pink',[168,124,109],'a87c6d',11041901], ['nbs-iscc-r:vinaceouspurple.258','vinaceouspurple','vinaceous-purple ',[168,81,110],'a8516e',11030894], ['nbs-iscc-r:vinaceouspurple.262','vinaceouspurple','vinaceous-purple ',[145,95,109],'915f6d',9527149], ['nbs-iscc-r:vinaceouspurple.245','vinaceouspurple','vinaceous-purple ',[131,100,121],'836479',8610937], ['nbs-iscc-r:vinaceousrufous.38','vinaceousrufous','vinaceous-rufous',[158,71,50],'9e4732',10372914], ['nbs-iscc-r:vinaceousrusset.42','vinaceousrusset','vinaceous-russet',[168,124,109],'a87c6d',11041901], ['nbs-iscc-r:vinaceousrusset.43','vinaceousrusset','vinaceous-russet',[121,68,59],'79443b',7947323], ['nbs-iscc-r:vinaceousslate.228','vinaceousslate','vinaceous-slate',[121,104,120],'796878',7956600], ['nbs-iscc-r:vinaceoustawny.39','vinaceoustawny','vinaceous-tawny',[180,116,94],'b4745e',11826270], ['nbs-iscc-r:violetcarmine.259','violetcarmine','violet carmine ',[103,49,71],'673147',6762823], ['nbs-iscc-r:violetgray.233','violetgray','violet-gray',[139,133,137],'8b8589',9143689], ['nbs-iscc-r:violetplumbeous.203','violetplumbeous','violet-plumbeous',[140,146,172],'8c92ac',9212588], ['nbs-iscc-r:violetpurple.216','violetpurple','violet-purple ',[154,78,174],'9a4eae',10112686], ['nbs-iscc-r:violetslate.186','violetslate','violet-slate',[83,104,120],'536878',5466232], ['nbs-iscc-r:violetultramarine.196','violetultramarine','violet ultramarine',[84,90,167],'545aa7',5528231], ['nbs-iscc-r:violetultramarine.207','violetultramarine','violet ultramarine',[96,78,151],'604e97',6311575], ['nbs-iscc-r:viridiangreen.140','viridiangreen','viridian green',[62,180,137],'3eb489',4109449], ['nbs-iscc-r:viridiangreen.141','viridiangreen','viridian green',[0,121,89],'007959',31065], ['nbs-iscc-r:viridinegreen.116','viridinegreen','viridine green',[189,218,87],'bdda57',12442199], ['nbs-iscc-r:viridineyellow.99','viridineyellow','viridine yellow',[190,183,46],'beb72e',12498734], ['nbs-iscc-r:viridineyellow.102','viridineyellow','viridine yellow',[185,180,89],'b9b459',12170329], ['nbs-iscc-r:vividgreen.140','vividgreen','vivid green',[62,180,137],'3eb489',4109449], ['nbs-iscc-r:wallgreen.164','wallgreen','wall green',[49,120,115],'317873',3242099], ['nbs-iscc-r:walnutbrown.43','walnutbrown','walnut brown',[121,68,59],'79443b',7947323], ['nbs-iscc-r:walnutbrown.46','walnutbrown','walnut brown',[103,76,71],'674c47',6769735], ['nbs-iscc-r:warblergreen.106','warblergreen','warbler green',[134,126,54],'867e36',8814134], ['nbs-iscc-r:warmblackishbrown.20','warmblackishbrown','warm blackish brown ',[84,61,63],'543d3f',5520703], ['nbs-iscc-r:warmblackishbrown.23','warmblackishbrown','warm blackish brown ',[92,80,79],'5c504f',6049871], ['nbs-iscc-r:warmbuff.71','warmbuff','warm buff ',[227,168,87],'e3a857',14919767], ['nbs-iscc-r:warmbuff.73','warmbuff','warm buff ',[250,214,165],'fad6a5',16438949], ['nbs-iscc-r:warmbuff.87','warmbuff','warm buff ',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-r:warmsepia.61','warmsepia','warm sepia ',[99,81,71],'635147',6508871], ['nbs-iscc-r:watergreen.121','watergreen','water green',[218,223,183],'dadfb7',14344119], ['nbs-iscc-r:waxyellow.84','waxyellow','wax yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-r:wedgewoodblue.180','wedgewoodblue','wedgewood blue',[161,202,241],'a1caf1',10603249], ['nbs-iscc-r:wedgewoodblue.181','wedgewoodblue','wedgewood blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:wedgewoodblue.198','wedgewoodblue','wedgewood blue',[179,188,226],'b3bce2',11779298], ['nbs-iscc-r:wedgewoodblue.199','wedgewoodblue','wedgewood blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-r:white.263','white','white',[242,243,244],'f2f3f4',15922164], ['nbs-iscc-r:windsorblue.200','windsorblue','windsor blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-r:wintergreen.136','wintergreen','winter green',[103,146,103],'679267',6787687], ['nbs-iscc-r:wistariablue.195','wistariablue','wistaria blue',[108,121,184],'6c79b8',7109048], ['nbs-iscc-r:wistariablue.206','wistariablue','wistaria blue',[126,115,184],'7e73b8',8287160], ['nbs-iscc-r:wistariaviolet.206','wistariaviolet','wistaria violet',[126,115,184],'7e73b8',8287160], ['nbs-iscc-r:woodbrown.76','woodbrown','wood brown',[193,154,107],'c19a6b',12687979], ['nbs-iscc-r:woodbrown.79','woodbrown','wood brown',[174,155,130],'ae9b82',11443074], ['nbs-iscc-r:xanthineorange.51','xanthineorange','xanthine orange',[190,101,22],'be6516',12477718], ['nbs-iscc-r:yaleblue.181','yaleblue','yale blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-r:yellowgreen.116','yellowgreen','yellow green',[189,218,87],'bdda57',12442199], ['nbs-iscc-r:yellowishcitrine.103','yellowishcitrine','yellowish citrine',[152,148,62],'98943e',9999422], ['nbs-iscc-r:yellowishglaucous.121','yellowishglaucous','yellowish glaucous',[218,223,183],'dadfb7',14344119], ['nbs-iscc-r:yellowishoilgreen.106','yellowishoilgreen','yellowish oil green',[134,126,54],'867e36',8814134], ['nbs-iscc-r:yellowisholive.106','yellowisholive','yellowish olive',[134,126,54],'867e36',8814134], ['nbs-iscc-r:yellowisholive.107','yellowisholive','yellowish olive',[102,93,30],'665d1e',6708510], ['nbs-iscc-r:yellowochre.72','yellowochre','yellow ochre',[190,138,61],'be8a3d',12487229], ['nbs-iscc-r:yewgreen.125','yewgreen','yew green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-r:yvetteviolet.215','yvetteviolet','yvette violet',[85,76,105],'554c69',5590121], ['nbs-iscc-r:zincgreen.145','zincgreen','zinc green',[59,120,97],'3b7861',3897441], ['nbs-iscc-r:zincorange.50','zincorange','zinc orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-r:zincorange.53','zincorange','zinc orange',[217,144,88],'d99058',14258264] ]; } sub _description { return { 'subtitle' => 'Color Standards and Color Nomenclature', 'title' => 'NBS/ISCC R', 'description' => ' Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (R) Color Standards and Color Nomenclature Ridgway, Color Standards and Color Nomenclature While using some modifiers, this primarily idiosyncratic dictionary was intended for biology and botany. It maps 1096 names to 1602 colors, using 214 of the 267 centroids. [http://swissnet.ai.mit.edu/~jaffer/Color/Dictionaries#R] ' } } 1; S.pm100644000765000024 36745611667760546 22752 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionary/NBS_ISCCpackage Color::Library::Dictionary::NBS_ISCC::S; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::NBS_ISCC::S; =pod =head1 NAME Color::Library::Dictionary::NBS_ISCC::S - (NBS/ISCC S) Postage-Stamp Color Names =head1 DESCRIPTION Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (S) Postage-Stamp Color Names Postage-Stamp Color Names, William H. Beck This dictionary is a hybrid of combinatorial and idiosyncratic styles. 178 names map to 905 colors, using 223 of 267 centroids. Despite covering 84% of the centroids, averaging over 5 colors per name makes this dictionary uselessly unspecific. L =head1 COLORS apple green applegreen #8db600 apple green applegreen #7e9f2e apple green applegreen #44944a bistre bistre #a67b5b bistre bistre #8e8279 bistre bistre #e3a857 bistre bistre #be8a3d bistre bistre #996515 bistre bistre #c19a6b bistre bistre #826644 bistre bistre #ae9b82 bistre bistre #7e6d5a bistre bistre #af8d13 bistre bistre #c9ae5d bistre bistre #ab9144 bistre bistre #f3e5ab bistre bistre #c2b280 bistre bistre #a18f60 bistre bistre #bfb8a5 bistre bistre #967117 bistre bistre #6c541e bistre bistre #b9b459 bistre bistre #8c8767 bistre bistre #8a8776 bistre brown bistrebrown #d9a6a9 bistre brown bistrebrown #a67b5b bistre brown bistrebrown #8e8279 bistre brown bistrebrown #c19a6b bistre brown bistrebrown #826644 bistre brown bistrebrown #967117 bistre brown bistrebrown #867e36 black black #57554c black black #b9b8b5 black black #848482 black black #555555 black black #222222 black brown blackbrown #635147 black brown blackbrown #3e322c black brown blackbrown #8e8279 black brown blackbrown #5b504f black brown blackbrown #5b5842 black brown blackbrown #57554c black violet blackviolet #50404d black violet blackviolet #291e29 black violet blackviolet #673147 black violet blackviolet #38152c blue blue #66ada4 blue blue #317873 blue blue #239eba blue blue #007791 blue blue #2e8495 blue blue #9cd1dc blue blue #66aabc blue blue #367588 blue blue #004958 blue blue #4997d0 blue blue #0067a5 blue blue #00416a blue blue #70a3cc blue blue #436b95 blue blue #00304e blue blue #bcd4e6 blue blue #536878 blue black blueblack #81878b blue black blueblack #51585e blue gray bluegray #b2beb5 blue gray bluegray #81878b blue green bluegreen #3eb489 blue green bluegreen #007959 blue green bluegreen #8ed1b2 blue green bluegreen #6aab8e blue green bluegreen #3b7861 blue green bluegreen #008882 blue green bluegreen #00a693 blue green bluegreen #007a74 blue green bluegreen #66ada4 blue green bluegreen #317873 blue green bluegreen #367588 blue violet blueviolet #8791bf brick red brickred #905d5d brick red brickred #674c47 bright blue brightblue #007a74 bright blue brightblue #007791 bright blue brightblue #0067a5 bright blue brightblue #436b95 bright blue green brightbluegreen #008856 bright blue green brightbluegreen #3eb489 bright blue green brightbluegreen #007959 bright green brightgreen #27a64c bright green brightgreen #008856 bright green brightgreen #007959 bright green brightgreen #00543d bright red violet brightredviolet #9a4eae bright red violet brightredviolet #875692 bright red violet brightredviolet #870074 bright red violet brightredviolet #9e4f88 bright rose brightrose #de6fa1 bright rose brightrose #ce4676 bright rose brightrose #915f6d bright rose violet brightroseviolet #de6fa1 bright ultramarine brightultramarine #00a1c2 bright ultramarine brightultramarine #0067a5 bright ultramarine brightultramarine #30267a bright ultramarine brightultramarine #545aa7 bright violet brightviolet #9065ca bright violet brightviolet #604e81 bright violet brightviolet #9a4eae bright violet brightviolet #875692 bright violet brightviolet #b695c0 bright violet brightviolet #86608e bright yellow brightyellow #ffc14f bright yellow brightyellow #eaa221 bright yellow brightyellow #fbc97f bright yellow brightyellow #e3a857 bright yellow brightyellow #fada5e bright yellow brightyellow #d4af37 bright yellow brightyellow #f8de7e bright yellow brightyellow #c9ae5d brown brown #c1b6b3 brown brown #905d5d brown brown #5c504f brown brown #cb6d51 brown brown #a87c6d brown brown #79443b brown brown #977f73 brown brown #674c47 brown brown #ae6938 brown brown #80461b brown brown #a67b5b brown brown #6f4e37 brown brown #958070 brown brown #635147 brown brown #8e8279 brown brown #5b504f brown brown #ae9b82 brown brown #7e6d5a brown bistre brownbistre #c19a6b brown bistre brownbistre #ae9b82 brown bistre brownbistre #c9ae5d brown bistre brownbistre #967117 brown-black brownblack #5b504f brown carmine browncarmine #bc3f4a brown carmine browncarmine #5c0923 brown carmine browncarmine #722f37 brown lake brownlake #ab4e52 brown lake brownlake #905d5d brown olive brownolive #996515 brown olive brownolive #967117 brown orange brownorange #d9a6a9 brown orange brownorange #cb6d51 brown orange brownorange #b4745e brown orange brownorange #ed872d brown orange brownorange #be6516 brown orange brownorange #d99058 brown orange brownorange #ae6938 brown orange brownorange #a67b5b brown orange brownorange #eaa221 brown orange brownorange #e3a857 brown orange brownorange #c19a6b brown orange brownorange #c9ae5d brown purple brownpurple #796878 brown red brownred #be0032 brown red brownred #ad8884 brown red brownred #905d5d brown red brownred #674c47 brown violet brownviolet #673147 brown violet brownviolet #915f6d buff buff #f4c2c2 buff buff #d9a6a9 buff buff #ecd5c5 buff buff #c2ac99 buff buff #fab57f buff buff #d99058 buff buff #e3a857 buff buff #fad6a5 buff buff #c19a6b buff buff #ae9b82 buff buff #f3e5ab buff buff #f0ead6 buff buff #bfb8a5 burnt orange burntorange #d9603b burnt orange burntorange #be6516 burnt orange burntorange #d99058 burnt orange burntorange #ae6938 carmine carmine #ffb5ba carmine carmine #ea9399 carmine carmine #e4717a carmine carmine #c08081 carmine carmine #be0032 carmine carmine #bc3f4a carmine carmine #841b2d carmine carmine #ab4e52 carmine carmine #905d5d carmine carmine #ce4676 carmine carmine #b3446c carmine carmine #78184a carmine carmine #a8516e carmine lake carminelake #be0032 carmine lake carminelake #bc3f4a carmine lake carminelake #ab4e52 carmine lake carminelake #b3446c carmine lake carminelake #a8516e carmine rose carminerose #ffb5ba carmine rose carminerose #ea9399 carmine rose carminerose #e4717a carmine rose carminerose #be0032 carmine rose carminerose #bc3f4a carmine rose carminerose #ab4e52 carmine rose carminerose #905d5d carmine rose carminerose #e66761 carmine rose carminerose #de6fa1 carmine rose carminerose #b3446c carmine rose carminerose #a8516e cerise cerise #ce4676 cerise cerise #78184a chalky blue chalkyblue #91a3b0 chestnut brown chestnutbrown #9e4732 chocolate chocolate #905d5d chocolate chocolate #8f817f chocolate chocolate #5c504f chocolate chocolate #56070c chocolate chocolate #674c47 claret claret #c17e91 claret claret #915f6d claret brown claretbrown #841b2d claret brown claretbrown #722f37 claret brown claretbrown #796878 crimson crimson #be0032 crimson crimson #bc3f4a dark blue darkblue #2e8495 dark blue darkblue #367588 dark blue darkblue #004958 dark blue darkblue #0067a5 dark blue darkblue #00416a dark blue darkblue #436b95 dark blue darkblue #00304e dark blue darkblue #536878 dark blue darkblue #36454f dark blue darkblue #202830 dark blue darkblue #272458 dark blue darkblue #8791bf dark blue green darkbluegreen #007959 dark blue green darkbluegreen #1b4d3e dark blue green darkbluegreen #1c352d dark blue green darkbluegreen #3a4b47 dark blue green darkbluegreen #1a2421 dark blue green darkbluegreen #007a74 dark blue green darkbluegreen #66ada4 dark blue green darkbluegreen #317873 dark blue green darkbluegreen #367588 dark brown darkbrown #543d3f dark brown darkbrown #8f817f dark brown darkbrown #5c504f dark brown darkbrown #79443b dark brown darkbrown #977f73 dark brown darkbrown #6f4e37 dark brown darkbrown #635147 dark brown darkbrown #8e8279 dark brown darkbrown #5b504f dark brown darkbrown #7e6d5a dark brown darkbrown #bfb8a5 dark carmine darkcarmine #be0032 dark carmine darkcarmine #ab4e52 dark gray darkgray #51585e dark green darkgreen #00622d dark green darkgreen #355e3b dark green darkgreen #007959 dark green darkgreen #00543d dark green darkgreen #3b7861 dark green darkgreen #1b4d3e dark green darkgreen #5e716a dark green darkgreen #3a4b47 dark green darkgreen #7d8984 dark green darkgreen #317873 dark ochre darkochre #967117 dark olive darkolive #5b5842 dark olive darkolive #57554c dark olive darkolive #515744 dark olive green darkolivegreen #4a5d23 dark red brown darkredbrown #674c47 dark rose darkrose #ab4e52 dark slate green darkslategreen #1b4d3e dark slate green darkslategreen #1c352d dark slate green darkslategreen #3a4b47 dark slate green darkslategreen #1a2421 dark violet darkviolet #563c5c dark violet darkviolet #aa98a9 dark violet darkviolet #796878 dark violet darkviolet #8b8589 dark violet darkviolet #915f6d dark violet brown darkvioletbrown #50404d dark violet brown darkvioletbrown #291e29 dark violet brown darkvioletbrown #673147 dark violet brown darkvioletbrown #38152c deep bistre deepbistre #967117 deep blue deepblue #2e8495 deep blue deepblue #367588 deep blue deepblue #00a1c2 deep blue deepblue #0067a5 deep blue deepblue #00416a deep blue deepblue #70a3cc deep blue deepblue #436b95 deep blue deepblue #536878 deep brown deepbrown #79443b deep brown deepbrown #80461b deep brown deepbrown #6f4e37 deep claret deepclaret #722f37 deep green deepgreen #7e9f2e deep green deepgreen #8a9a5b deep green deepgreen #27a64c deep green deepgreen #83d37d deep green deepgreen #44944a deep green deepgreen #00622d deep green deepgreen #003118 deep green deepgreen #93c592 deep green deepgreen #007959 deep green deepgreen #00543d deep green deepgreen #3b7861 deep green deepgreen #7d8984 deep green deepgreen #007a74 deep green deepgreen #66ada4 deep green deepgreen #317873 deep green deepgreen #004b49 deep lake deeplake #673147 deep magenta deepmagenta #ce4676 deep olive green deepolivegreen #4a5d23 deep orange deeporange #f88379 deep orange deeporange #d99058 deep plum deepplum #a8516e deep ultramarine deepultramarine #00a1c2 deep ultramarine deepultramarine #436b95 deep ultramarine deepultramarine #30267a deep violet deepviolet #7e73b8 deep violet deepviolet #875692 deep violet deepviolet #86608e deep violet deepviolet #702963 dull blue dullblue #0067a5 dull blue dullblue #00416a dull blue dullblue #70a3cc dull blue dullblue #436b95 dull blue dullblue #536878 dull blue dullblue #51585e dull blue dullblue #4c516d dull buff dullbuff #ecd5c5 dull buff dullbuff #c7ada3 dull buff dullbuff #fbc97f dull buff dullbuff #e3a857 dull buff dullbuff #fad6a5 dull green dullgreen #515744 dull green dullgreen #93c592 dull green dullgreen #355e3b dull green dullgreen #6aab8e dull green dullgreen #3b7861 dull green dullgreen #3a4b47 dull green dullgreen #66ada4 dull lilac dulllilac #604e81 dull lilac dulllilac #aa98a9 dull lilac dulllilac #915f6d dull orange dullorange #c1b6b3 dull red dullred #d9603b dull rose dullrose #ea9399 dull rose dullrose #ad8884 dull rose dullrose #d597ae dull vermilion dullvermilion #cb6d51 dull violet dullviolet #796878 dull violet dullviolet #836479 dull violet dullviolet #673147 dull violet dullviolet #af868e dull violet dullviolet #915f6d dull yellow dullyellow #fbc97f dull yellow dullyellow #e3a857 emerald emerald #27a64c emerald emerald #83d37d emerald emerald #44944a emerald emerald #00622d emerald emerald #008856 emerald emerald #3eb489 emerald emerald #6aab8e fawn fawn #d9a6a9 fawn fawn #79443b gray gray #bfb8a5 gray gray #8a8776 gray gray #8da399 gray gray #b2beb5 gray gray #7d8984 gray gray #4e5755 gray gray #e9e9ed gray gray #51585e gray gray #bfb9bd gray gray #b9b8b5 gray gray #848482 gray bistre graybistre #c19a6b gray bistre graybistre #ae9b82 gray bistre graybistre #967117 gray black grayblack #8e8279 gray black grayblack #8a8776 gray black grayblack #57554c gray black grayblack #7d8984 gray black grayblack #848482 gray blue grayblue #436b95 gray blue grayblue #91a3b0 gray blue grayblue #b4bcc0 gray blue grayblue #8c92ac gray blue grayblue #9690ab gray blue grayblue #bfb9bd gray brown graybrown #977f73 gray brown graybrown #8e8279 gray brown graybrown #967117 gray brown graybrown #8a8776 gray green graygreen #8a8776 gray green graygreen #8a9a5b gray green graygreen #8f9779 gray green graygreen #679267 gray green graygreen #6aab8e gray green graygreen #3b7861 gray green graygreen #66ada4 gray lilac graylilac #8f817f gray lilac graylilac #8e8279 gray lilac graylilac #d6cadd gray lilac graylilac #bfb9bd gray lilac graylilac #efbbcc gray violet grayviolet #8b8589 green green #7e9f2e green green #8a9a5b green green #27a64c green green #83d37d green green #44944a green green #00622d green green #93c592 green green #679267 green green #008856 green green #3eb489 green green #007959 green green #00543d green green #8ed1b2 green green #6aab8e green green #3b7861 green green #c7e6d7 green green #8da399 green green #5e716a green green #b2beb5 green green #00a693 green green #66ada4 green green #317873 greenish black greenishblack #8da399 greenish blue greenishblue #317873 greenish blue greenishblue #007791 greenish blue greenishblue #367588 henna brown hennabrown #841b2d indigo indigo #00416a indigo indigo #4c516d lake lake #ab4e52 lake lake #722f37 lake lake #905d5d lake lake #b4745e lake lake #a8516e lemon lemon #f3c300 lemon lemon #fada5e lemon lemon #d4af37 lemon lemon #af8d13 lemon lemon #dcd300 lemon yellow lemonyellow #af8d13 lemon yellow lemonyellow #9b9400 light blue lightblue #96ded1 light blue lightblue #66ada4 light blue lightblue #317873 light blue lightblue #239eba light blue lightblue #66aabc light blue lightblue #367588 light blue lightblue #0067a5 light blue lightblue #70a3cc light blue lightblue #bcd4e6 light brown lightbrown #c7ada3 light green lightgreen #44944a light green lightgreen #93c592 light green lightgreen #3eb489 light olive green lightolivegreen #867e36 light olive green lightolivegreen #7e9f2e light olive green lightolivegreen #c9dc89 light red brown lightredbrown #a87c6d lilac lilac #c1b6b3 lilac lilac #dcd0ff lilac lilac #8c82b6 lilac lilac #d5badb lilac lilac #d6cadd lilac lilac #aa98a9 lilac lilac #796878 lilac lilac #e8e3e5 lilac lilac #bfb9bd lilac lilac #8b8589 lilac lilac #915c83 lilac lilac #aa8a9e lilac lilac #e8ccd7 lilac lilac #c3a6b1 lilac lilac #af868e lilac lilac #915f6d lilac brown lilacbrown #c1b6b3 lilac brown lilacbrown #8f817f lilac brown lilacbrown #8e8279 lilac gray lilacgray #bfb9bd lilac rose lilacrose #e4717a lilac rose lilacrose #ad8884 lilac rose lilacrose #9e4f88 lilac rose lilacrose #de6fa1 lilac rose lilacrose #efbbcc lilac rose lilacrose #a8516e magenta magenta #9065ca magenta magenta #875692 magenta magenta #9e4f88 magenta magenta #5d3954 magenta magenta #b3446c magenta magenta #a8516e magenta magenta #673147 magenta magenta #915f6d maroon maroon #722f37 maroon maroon #673147 mauve mauve #915c83 milky blue milkyblue #66aabc myrtle green myrtlegreen #317873 myrtle green myrtlegreen #004b49 ochre ochre #be6516 ochre ochre #d99058 ochre ochre #a67b5b ochre ochre #ffc14f ochre ochre #e3a857 ochre ochre #fad6a5 ochre ochre #996515 ochre ochre #fada5e ochre ochre #d4af37 ochre ochre #f8de7e ochre ochre #c9ae5d olive olive #6c541e olive olive #5b5842 olive olive #8f9779 olive bistre olivebistre #c98500 olive bistre olivebistre #be8a3d olive bistre olivebistre #996515 olive bistre olivebistre #826644 olive bistre olivebistre #af8d13 olive bistre olivebistre #c9ae5d olive bistre olivebistre #ab9144 olive bistre olivebistre #f3e5ab olive bistre olivebistre #c2b280 olive bistre olivebistre #a18f60 olive bistre olivebistre #bfb8a5 olive bistre olivebistre #967117 olive bistre olivebistre #867e36 olive bistre olivebistre #8a8776 olive bistre olivebistre #8f9779 olive bistre olivebistre #b9b8b5 olive black oliveblack #5b5842 olive black oliveblack #57554c olive brown olivebrown #6f4e37 olive brown olivebrown #8e8279 olive brown olivebrown #4b3621 olive brown olivebrown #7e6d5a olive brown olivebrown #483c32 olive brown olivebrown #6c541e olive brown olivebrown #5b5842 olive brown olivebrown #57554c olive gray olivegray #665d1e olive gray olivegray #8a8776 olive gray olivegray #57554c olive gray olivegray #8f9779 olive gray olivegray #7d8984 olive gray olivegray #4e5755 olive green olivegreen #ab9144 olive green olivegreen #f3e5ab olive green olivegreen #c2b280 olive green olivegreen #a18f60 olive green olivegreen #bfb8a5 olive green olivegreen #9b9400 olive green olivegreen #867e36 olive green olivegreen #665d1e olive green olivegreen #8c8767 olive green olivegreen #5b5842 olive green olivegreen #8a8776 olive green olivegreen #57554c olive green olivegreen #7e9f2e olive green olivegreen #8a9a5b olive green olivegreen #8f9779 olive green olivegreen #404f00 olive green olivegreen #4a5d23 olive green olivegreen #515744 olive green olivegreen #5e716a olive green olivegreen #3a4b47 olive green olivegreen #7d8984 olive green olivegreen #4e5755 olive yellow oliveyellow #ecd5c5 olive yellow oliveyellow #c2ac99 olive yellow oliveyellow #fad6a5 olive yellow oliveyellow #f8de7e olive yellow oliveyellow #c9ae5d olive yellow oliveyellow #f3e5ab olive yellow oliveyellow #bfb8a5 orange orange #ffb7a5 orange orange #f88379 orange orange #f4c2c2 orange orange #d9a6a9 orange orange #e25822 orange orange #d9603b orange orange #cb6d51 orange orange #f38400 orange orange #fd943f orange orange #ed872d orange orange #be6516 orange orange #fab57f orange orange #d99058 orange orange #f6a600 orange orange #ffc14f orange orange #eaa221 orange orange #c98500 orange orange #fbc97f orange orange #e3a857 orange orange #be8a3d orange orange #fad6a5 orange orange #c19a6b orange orange #fada5e orange orange #d4af37 orange orange #f8de7e orange orange #c9ae5d orange orange #f3e5ab orange brown orangebrown #722f37 orange brown orangebrown #cb6d51 orange brown orangebrown #b4745e orange brown orangebrown #882d17 orange brown orangebrown #be6516 orange brown orangebrown #d99058 orange brown orangebrown #ae6938 orange brown orangebrown #80461b orange brown orangebrown #a67b5b orange brown orangebrown #6f4e37 orange brown orangebrown #958070 orange brown orangebrown #ae9b82 orange buff orangebuff #d9a6a9 orange red orangered #c08081 orange red orangered #d9603b orange red orangered #cb6d51 orange vermilion orangevermilion #cb6d51 orange vermilion orangevermilion #be6516 orange yellow orangeyellow #f38400 orange yellow orangeyellow #fd943f orange yellow orangeyellow #ed872d orange yellow orangeyellow #fab57f orange yellow orangeyellow #ffc14f orange yellow orangeyellow #eaa221 orange yellow orangeyellow #c98500 orange yellow orangeyellow #fbc97f orange yellow orangeyellow #e3a857 pale blue paleblue #536878 pale blue paleblue #bfb9bd pale brown palebrown #d99058 pale brown palebrown #a67b5b pale gray green palegraygreen #dadfb7 pale green palegreen #c9dc89 pale green palegreen #8a9a5b pale green palegreen #8ed1b2 pale lilac palelilac #e8ccd7 pale olive green paleolivegreen #8a9a5b pale yellow-green paleyellowgreen #bdda57 pale yellow-green paleyellowgreen #c9dc89 pale yellow-green paleyellowgreen #83d37d peacock blue peacockblue #007791 pink pink #ea9399 pink pink #e4717a pink pink #f88379 pink pink #ffc8d6 pink pink #e68fac pink pink #de6fa1 pink pink #a8516e plum plum #870074 plum plum #702963 plum plum #78184a prussian blue prussianblue #2e8495 prussian blue prussianblue #004958 prussian green prussiangreen #007a74 prussian green prussiangreen #00443f prussian green prussiangreen #317873 prussian green prussiangreen #2e8495 purple purple #272458 purple purple #4e5180 purple purple #604e97 purple purple #604e81 purple purple #554c69 purple purple #9a4eae purple purple #875692 purple purple #602f6b purple purple #86608e purple purple #915c83 purple purple #5d3954 purple purple #836479 purple brown purplebrown #796878 purplish bistre purplishbistre #c2ac99 red red #e4717a red red #dea5a4 red red #c4aead red red #bc3f4a red red #905d5d red red #f88379 red red #e66761 red red #f4c2c2 red red #d9a6a9 red red #d9603b red red #aa381e red red #cb6d51 red brown redbrown #c4aead red brown redbrown #722f37 red brown redbrown #ad8884 red brown redbrown #905d5d red brown redbrown #8f817f red brown redbrown #ecd5c5 red brown redbrown #c7ada3 red brown redbrown #cb6d51 red brown redbrown #9e4732 red brown redbrown #a87c6d red brown redbrown #79443b red brown redbrown #be6516 red brown redbrown #d99058 red brown redbrown #ae6938 red brown redbrown #a67b5b red brown redbrown #6f4e37 red brown redbrown #996515 red brown redbrown #826644 red brown redbrown #6c541e reddish brown reddishbrown #674c47 red lilac redlilac #c4aead red lilac redlilac #a8516e red lilac redlilac #915f6d red orange redorange #be0032 red orange redorange #ffb7a5 red orange redorange #e25822 red orange redorange #d9603b red orange redorange #ed872d red purple redpurple #702963 red purple redpurple #673147 red violet redviolet #9a4eae red violet redviolet #875692 red violet redviolet #602f6b red violet redviolet #b695c0 red violet redviolet #86608e red violet redviolet #9e4f88 red violet redviolet #702963 red violet redviolet #b784a7 red violet redviolet #915c83 red violet redviolet #efbbcc red violet redviolet #d597ae red violet redviolet #c3a6b1 red violet redviolet #915f6d rose rose #ffb5ba rose rose #ea9399 rose rose #e4717a rose rose #f9ccca rose rose #dea5a4 rose rose #c08081 rose rose #bc3f4a rose rose #841b2d rose rose #ab4e52 rose rose #905d5d rose rose #ffb7a5 rose rose #f88379 rose rose #e66761 rose rose #f4c2c2 rose rose #d9a6a9 rose rose #c48379 rose rose #ecd5c5 rose rose #c7ada3 rose rose #cb6d51 rose rose #aa98a9 rose rose #e68fac rose rose #de6fa1 rose rose #efbbcc rose rose #d597ae rose rose #c17e91 rose rose #ce4676 rose rose #b3446c rose rose #a8516e rose rose #915f6d rose brown rosebrown #be0032 rose brown rosebrown #841b2d rose brown rosebrown #5c0923 rose brown rosebrown #78184a rose brown rosebrown #54133b rose carmine rosecarmine #e4717a rose carmine rosecarmine #ce4676 rose carmine rosecarmine #b3446c rose carmine rosecarmine #a8516e rose lake roselake #dea5a4 rose lake roselake #673147 rose lake roselake #915f6d rose lilac roselilac #9e4f88 rose lilac roselilac #b784a7 rose lilac roselilac #d597ae rose lilac roselilac #c17e91 rose lilac roselilac #a8516e rose lilac roselilac #915f6d rose pink rosepink #ce4676 rose red rosered #e4717a rose red rosered #ab4e52 rose red rosered #722f37 rose violet roseviolet #9e4f88 rose violet roseviolet #702963 rose violet roseviolet #915c83 rose violet roseviolet #78184a rose violet roseviolet #a8516e royal blue royalblue #00416a salmon salmon #f88379 salmon salmon #f4c2c2 salmon salmon #d9a6a9 salmon rose salmonrose #ea9399 salmon rose salmonrose #f9ccca salmon rose salmonrose #f88379 salmon rose salmonrose #f4c2c2 salmon rose salmonrose #d9a6a9 scarlet scarlet #e4717a scarlet scarlet #be0032 scarlet scarlet #bc3f4a scarlet scarlet #ab4e52 scarlet scarlet #e25822 sepia sepia #8e8279 slate slate #8da399 slate slate #3a4b47 slate slate #7d8984 slate slate #4e5755 slate slate #36454f slate slate #202830 slate slate #81878b slate slate #51585e slate slate #252440 slate slate #4c516d slate slate #555555 slate blue slateblue #317873 slate blue slateblue #536878 slate green slategreen #8c8767 slate green slategreen #8a8776 slate green slategreen #404f00 slate green slategreen #4a5d23 slate green slategreen #3b7861 slate green slategreen #3a4b47 slate green slategreen #7d8984 straw straw #c9ae5d turquoise blue turquoiseblue #66aabc turquoise green turquoisegreen #008882 turquoise green turquoisegreen #00a693 ultramarine ultramarine #00a1c2 ultramarine ultramarine #4997d0 ultramarine ultramarine #0067a5 ultramarine ultramarine #00416a ultramarine ultramarine #70a3cc ultramarine ultramarine #436b95 ultramarine ultramarine #91a3b0 ultramarine ultramarine #536878 ultramarine ultramarine #30267a ultramarine ultramarine #6c79b8 ultramarine ultramarine #545aa7 ultramarine ultramarine #b3bce2 ultramarine ultramarine #8791bf ultramarine ultramarine #4e5180 ultramarine ultramarine #c0c8e1 ultramarine ultramarine #8c92ac ultramarine ultramarine #4c516d ultramarine ultramarine #8c82b6 umber brown umberbrown #635147 vermilion vermilion #c08081 vermilion vermilion #bc3f4a vermilion vermilion #ab4e52 vermilion vermilion #ad8884 vermilion vermilion #905d5d vermilion vermilion #f88379 vermilion vermilion #e66761 vermilion vermilion #c48379 vermilion vermilion #d9603b vermilion vermilion #aa381e vermilion vermilion #cb6d51 vermilion vermilion #9e4732 violet violet #722f37 violet violet #4e5180 violet violet #7e73b8 violet violet #8c82b6 violet violet #604e81 violet violet #9690ab violet violet #d399e6 violet violet #875692 violet violet #b695c0 violet violet #86608e violet violet #d6cadd violet violet #aa98a9 violet violet #796878 violet violet #50404d violet violet #702963 violet violet #b784a7 violet violet #aa8a9e violet violet #836479 violet violet #d597ae violet violet #e8ccd7 violet violet #c3a6b1 violet violet #af868e violet black violetblack #543d3f violet black violetblack #5d555b violet blue violetblue #545aa7 violet brown violetbrown #905d5d violet brown violetbrown #796878 violet brown violetbrown #673147 yellow yellow #f4c2c2 yellow yellow #d9a6a9 yellow yellow #f38400 yellow yellow #fd943f yellow yellow #ed872d yellow yellow #fab57f yellow yellow #d99058 yellow yellow #a67b5b yellow yellow #f6a600 yellow yellow #ffc14f yellow yellow #eaa221 yellow yellow #c98500 yellow yellow #fbc97f yellow yellow #e3a857 yellow yellow #be8a3d yellow yellow #fad6a5 yellow yellow #c19a6b yellow yellow #f3c300 yellow yellow #fada5e yellow yellow #d4af37 yellow yellow #af8d13 yellow yellow #f8de7e yellow yellow #c9ae5d yellow yellow #ab9144 yellow yellow #f3e5ab yellow yellow #c2b280 yellow yellow #f0ead6 yellow brown yellowbrown #c2ac99 yellow brown yellowbrown #9e4732 yellow brown yellowbrown #a87c6d yellow brown yellowbrown #977f73 yellow brown yellowbrown #d99058 yellow brown yellowbrown #ae6938 yellow brown yellowbrown #80461b yellow brown yellowbrown #a67b5b yellow brown yellowbrown #be8a3d yellow brown yellowbrown #996515 yellow brown yellowbrown #867e36 yellow buff yellowbuff #d9a6a9 yellow buff yellowbuff #d99058 yellow buff yellowbuff #e3a857 yellow buff yellowbuff #fad6a5 yellow buff yellowbuff #c19a6b yellow buff yellowbuff #f3e5ab yellow buff yellowbuff #c2b280 yellow green yellowgreen #7e9f2e yellow green yellowgreen #8a9a5b yellow green yellowgreen #27a64c yellow green yellowgreen #83d37d yellow green yellowgreen #44944a yellow green yellowgreen #00622d yellow green yellowgreen #b6e5af yellow green yellowgreen #93c592 yellow green yellowgreen #679267 yellow green yellowgreen #355e3b yellow green yellowgreen #008856 yellow green yellowgreen #3eb489 yellow green yellowgreen #007959 yellow green yellowgreen #8ed1b2 yellow green yellowgreen #6aab8e yellow green yellowgreen #3b7861 yellow orange yelloworange #ed872d yellow orange yelloworange #d99058 =cut sub _load_color_list() { return [ ['nbs-iscc-s:applegreen.115','applegreen','apple green',[141,182,0],'8db600',9287168], ['nbs-iscc-s:applegreen.117','applegreen','apple green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-s:applegreen.131','applegreen','apple green',[68,148,74],'44944a',4494410], ['nbs-iscc-s:bistre.57','bistre','bistre',[166,123,91],'a67b5b',10910555], ['nbs-iscc-s:bistre.63','bistre','bistre',[142,130,121],'8e8279',9339513], ['nbs-iscc-s:bistre.71','bistre','bistre',[227,168,87],'e3a857',14919767], ['nbs-iscc-s:bistre.72','bistre','bistre',[190,138,61],'be8a3d',12487229], ['nbs-iscc-s:bistre.74','bistre','bistre',[153,101,21],'996515',10052885], ['nbs-iscc-s:bistre.76','bistre','bistre',[193,154,107],'c19a6b',12687979], ['nbs-iscc-s:bistre.77','bistre','bistre',[130,102,68],'826644',8545860], ['nbs-iscc-s:bistre.79','bistre','bistre',[174,155,130],'ae9b82',11443074], ['nbs-iscc-s:bistre.80','bistre','bistre',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-s:bistre.85','bistre','bistre',[175,141,19],'af8d13',11504915], ['nbs-iscc-s:bistre.87','bistre','bistre',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-s:bistre.88','bistre','bistre',[171,145,68],'ab9144',11243844], ['nbs-iscc-s:bistre.89','bistre','bistre',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-s:bistre.90','bistre','bistre',[194,178,128],'c2b280',12759680], ['nbs-iscc-s:bistre.91','bistre','bistre',[161,143,96],'a18f60',10588000], ['nbs-iscc-s:bistre.93','bistre','bistre',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-s:bistre.94','bistre','bistre',[150,113,23],'967117',9859351], ['nbs-iscc-s:bistre.95','bistre','bistre',[108,84,30],'6c541e',7099422], ['nbs-iscc-s:bistre.102','bistre','bistre',[185,180,89],'b9b459',12170329], ['nbs-iscc-s:bistre.109','bistre','bistre',[140,135,103],'8c8767',9209703], ['nbs-iscc-s:bistre.112','bistre','bistre',[138,135,118],'8a8776',9078646], ['nbs-iscc-s:bistrebrown.29','bistrebrown','bistre brown',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-s:bistrebrown.57','bistrebrown','bistre brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-s:bistrebrown.63','bistrebrown','bistre brown',[142,130,121],'8e8279',9339513], ['nbs-iscc-s:bistrebrown.76','bistrebrown','bistre brown',[193,154,107],'c19a6b',12687979], ['nbs-iscc-s:bistrebrown.77','bistrebrown','bistre brown',[130,102,68],'826644',8545860], ['nbs-iscc-s:bistrebrown.94','bistrebrown','bistre brown',[150,113,23],'967117',9859351], ['nbs-iscc-s:bistrebrown.106','bistrebrown','bistre brown',[134,126,54],'867e36',8814134], ['nbs-iscc-s:black.113','black','black',[87,85,76],'57554c',5723468], ['nbs-iscc-s:black.264','black','black',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-s:black.265','black','black',[132,132,130],'848482',8684674], ['nbs-iscc-s:black.266','black','black',[85,85,85],'555555',5592405], ['nbs-iscc-s:black.267','black','black',[34,34,34],'222222',2236962], ['nbs-iscc-s:blackbrown.61','blackbrown','black brown',[99,81,71],'635147',6508871], ['nbs-iscc-s:blackbrown.62','blackbrown','black brown',[62,50,44],'3e322c',4076076], ['nbs-iscc-s:blackbrown.63','blackbrown','black brown',[142,130,121],'8e8279',9339513], ['nbs-iscc-s:blackbrown.64','blackbrown','black brown',[91,80,79],'5b504f',5984335], ['nbs-iscc-s:blackbrown.110','blackbrown','black brown',[91,88,66],'5b5842',5986370], ['nbs-iscc-s:blackbrown.113','blackbrown','black brown',[87,85,76],'57554c',5723468], ['nbs-iscc-s:blackviolet.229','blackviolet','black violet',[80,64,77],'50404d',5259341], ['nbs-iscc-s:blackviolet.230','blackviolet','black violet',[41,30,41],'291e29',2694697], ['nbs-iscc-s:blackviolet.259','blackviolet','black violet',[103,49,71],'673147',6762823], ['nbs-iscc-s:blackviolet.260','blackviolet','black violet',[56,21,44],'38152c',3675436], ['nbs-iscc-s:blue.163','blue','blue',[102,173,164],'66ada4',6729124], ['nbs-iscc-s:blue.164','blue','blue',[49,120,115],'317873',3242099], ['nbs-iscc-s:blue.168','blue','blue',[35,158,186],'239eba',2334394], ['nbs-iscc-s:blue.169','blue','blue',[0,119,145],'007791',30609], ['nbs-iscc-s:blue.170','blue','blue',[46,132,149],'2e8495',3048597], ['nbs-iscc-s:blue.171','blue','blue',[156,209,220],'9cd1dc',10277340], ['nbs-iscc-s:blue.172','blue','blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-s:blue.173','blue','blue',[54,117,136],'367588',3569032], ['nbs-iscc-s:blue.174','blue','blue',[0,73,88],'004958',18776], ['nbs-iscc-s:blue.177','blue','blue',[73,151,208],'4997d0',4822992], ['nbs-iscc-s:blue.178','blue','blue',[0,103,165],'0067a5',26533], ['nbs-iscc-s:blue.179','blue','blue',[0,65,106],'00416a',16746], ['nbs-iscc-s:blue.181','blue','blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-s:blue.182','blue','blue',[67,107,149],'436b95',4418453], ['nbs-iscc-s:blue.183','blue','blue',[0,48,78],'00304e',12366], ['nbs-iscc-s:blue.184','blue','blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-s:blue.186','blue','blue',[83,104,120],'536878',5466232], ['nbs-iscc-s:blueblack.191','blueblack','blue black',[129,135,139],'81878b',8488843], ['nbs-iscc-s:blueblack.192','blueblack','blue black',[81,88,94],'51585e',5331038], ['nbs-iscc-s:bluegray.154','bluegray','blue gray',[178,190,181],'b2beb5',11714229], ['nbs-iscc-s:bluegray.191','bluegray','blue gray',[129,135,139],'81878b',8488843], ['nbs-iscc-s:bluegreen.140','bluegreen','blue green',[62,180,137],'3eb489',4109449], ['nbs-iscc-s:bluegreen.141','bluegreen','blue green',[0,121,89],'007959',31065], ['nbs-iscc-s:bluegreen.143','bluegreen','blue green',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-s:bluegreen.144','bluegreen','blue green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-s:bluegreen.145','bluegreen','blue green',[59,120,97],'3b7861',3897441], ['nbs-iscc-s:bluegreen.158','bluegreen','blue green',[0,136,130],'008882',34946], ['nbs-iscc-s:bluegreen.159','bluegreen','blue green',[0,166,147],'00a693',42643], ['nbs-iscc-s:bluegreen.160','bluegreen','blue green',[0,122,116],'007a74',31348], ['nbs-iscc-s:bluegreen.163','bluegreen','blue green',[102,173,164],'66ada4',6729124], ['nbs-iscc-s:bluegreen.164','bluegreen','blue green',[49,120,115],'317873',3242099], ['nbs-iscc-s:bluegreen.173','bluegreen','blue green',[54,117,136],'367588',3569032], ['nbs-iscc-s:blueviolet.199','blueviolet','blue violet',[135,145,191],'8791bf',8884671], ['nbs-iscc-s:brickred.19','brickred','brick red',[144,93,93],'905d5d',9461085], ['nbs-iscc-s:brickred.46','brickred','brick red',[103,76,71],'674c47',6769735], ['nbs-iscc-s:brightblue.160','brightblue','bright blue',[0,122,116],'007a74',31348], ['nbs-iscc-s:brightblue.169','brightblue','bright blue',[0,119,145],'007791',30609], ['nbs-iscc-s:brightblue.178','brightblue','bright blue',[0,103,165],'0067a5',26533], ['nbs-iscc-s:brightblue.182','brightblue','bright blue',[67,107,149],'436b95',4418453], ['nbs-iscc-s:brightbluegreen.139','brightbluegreen','bright blue green',[0,136,86],'008856',34902], ['nbs-iscc-s:brightbluegreen.140','brightbluegreen','bright blue green',[62,180,137],'3eb489',4109449], ['nbs-iscc-s:brightbluegreen.141','brightbluegreen','bright blue green',[0,121,89],'007959',31065], ['nbs-iscc-s:brightgreen.129','brightgreen','bright green',[39,166,76],'27a64c',2598476], ['nbs-iscc-s:brightgreen.139','brightgreen','bright green',[0,136,86],'008856',34902], ['nbs-iscc-s:brightgreen.141','brightgreen','bright green',[0,121,89],'007959',31065], ['nbs-iscc-s:brightgreen.142','brightgreen','bright green',[0,84,61],'00543d',21565], ['nbs-iscc-s:brightredviolet.216','brightredviolet','bright red violet',[154,78,174],'9a4eae',10112686], ['nbs-iscc-s:brightredviolet.218','brightredviolet','bright red violet',[135,86,146],'875692',8869522], ['nbs-iscc-s:brightredviolet.236','brightredviolet','bright red violet',[135,0,116],'870074',8847476], ['nbs-iscc-s:brightredviolet.237','brightredviolet','bright red violet',[158,79,136],'9e4f88',10375048], ['nbs-iscc-s:brightrose.248','brightrose','bright rose',[222,111,161],'de6fa1',14577569], ['nbs-iscc-s:brightrose.254','brightrose','bright rose',[206,70,118],'ce4676',13518454], ['nbs-iscc-s:brightrose.262','brightrose','bright rose',[145,95,109],'915f6d',9527149], ['nbs-iscc-s:brightroseviolet.248','brightroseviolet','bright rose violet',[222,111,161],'de6fa1',14577569], ['nbs-iscc-s:brightultramarine.176','brightultramarine','bright ultramarine',[0,161,194],'00a1c2',41410], ['nbs-iscc-s:brightultramarine.178','brightultramarine','bright ultramarine',[0,103,165],'0067a5',26533], ['nbs-iscc-s:brightultramarine.194','brightultramarine','bright ultramarine',[48,38,122],'30267a',3155578], ['nbs-iscc-s:brightultramarine.196','brightultramarine','bright ultramarine',[84,90,167],'545aa7',5528231], ['nbs-iscc-s:brightviolet.205','brightviolet','bright violet',[144,101,202],'9065ca',9463242], ['nbs-iscc-s:brightviolet.211','brightviolet','bright violet',[96,78,129],'604e81',6311553], ['nbs-iscc-s:brightviolet.216','brightviolet','bright violet',[154,78,174],'9a4eae',10112686], ['nbs-iscc-s:brightviolet.218','brightviolet','bright violet',[135,86,146],'875692',8869522], ['nbs-iscc-s:brightviolet.222','brightviolet','bright violet',[182,149,192],'b695c0',11965888], ['nbs-iscc-s:brightviolet.223','brightviolet','bright violet',[134,96,142],'86608e',8806542], ['nbs-iscc-s:brightyellow.67','brightyellow','bright yellow',[255,193,79],'ffc14f',16761167], ['nbs-iscc-s:brightyellow.68','brightyellow','bright yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-s:brightyellow.70','brightyellow','bright yellow',[251,201,127],'fbc97f',16501119], ['nbs-iscc-s:brightyellow.71','brightyellow','bright yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-s:brightyellow.83','brightyellow','bright yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-s:brightyellow.84','brightyellow','bright yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-s:brightyellow.86','brightyellow','bright yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-s:brightyellow.87','brightyellow','bright yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-s:brown.10','brown','brown',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-s:brown.19','brown','brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-s:brown.23','brown','brown',[92,80,79],'5c504f',6049871], ['nbs-iscc-s:brown.37','brown','brown',[203,109,81],'cb6d51',13331793], ['nbs-iscc-s:brown.42','brown','brown',[168,124,109],'a87c6d',11041901], ['nbs-iscc-s:brown.43','brown','brown',[121,68,59],'79443b',7947323], ['nbs-iscc-s:brown.45','brown','brown',[151,127,115],'977f73',9928563], ['nbs-iscc-s:brown.46','brown','brown',[103,76,71],'674c47',6769735], ['nbs-iscc-s:brown.54','brown','brown',[174,105,56],'ae6938',11430200], ['nbs-iscc-s:brown.55','brown','brown',[128,70,27],'80461b',8406555], ['nbs-iscc-s:brown.57','brown','brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-s:brown.58','brown','brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-s:brown.60','brown','brown',[149,128,112],'958070',9797744], ['nbs-iscc-s:brown.61','brown','brown',[99,81,71],'635147',6508871], ['nbs-iscc-s:brown.63','brown','brown',[142,130,121],'8e8279',9339513], ['nbs-iscc-s:brown.64','brown','brown',[91,80,79],'5b504f',5984335], ['nbs-iscc-s:brown.79','brown','brown',[174,155,130],'ae9b82',11443074], ['nbs-iscc-s:brown.80','brown','brown',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-s:brownbistre.76','brownbistre','brown bistre',[193,154,107],'c19a6b',12687979], ['nbs-iscc-s:brownbistre.79','brownbistre','brown bistre',[174,155,130],'ae9b82',11443074], ['nbs-iscc-s:brownbistre.87','brownbistre','brown bistre',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-s:brownbistre.94','brownbistre','brown bistre',[150,113,23],'967117',9859351], ['nbs-iscc-s:brownblack.64','brownblack','brown-black',[91,80,79],'5b504f',5984335], ['nbs-iscc-s:browncarmine.12','browncarmine','brown carmine',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-s:browncarmine.14','browncarmine','brown carmine',[92,9,35],'5c0923',6031651], ['nbs-iscc-s:browncarmine.16','browncarmine','brown carmine',[114,47,55],'722f37',7483191], ['nbs-iscc-s:brownlake.15','brownlake','brown lake',[171,78,82],'ab4e52',11226706], ['nbs-iscc-s:brownlake.19','brownlake','brown lake',[144,93,93],'905d5d',9461085], ['nbs-iscc-s:brownolive.74','brownolive','brown olive',[153,101,21],'996515',10052885], ['nbs-iscc-s:brownolive.94','brownolive','brown olive',[150,113,23],'967117',9859351], ['nbs-iscc-s:brownorange.29','brownorange','brown orange',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-s:brownorange.37','brownorange','brown orange',[203,109,81],'cb6d51',13331793], ['nbs-iscc-s:brownorange.39','brownorange','brown orange',[180,116,94],'b4745e',11826270], ['nbs-iscc-s:brownorange.50','brownorange','brown orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-s:brownorange.51','brownorange','brown orange',[190,101,22],'be6516',12477718], ['nbs-iscc-s:brownorange.53','brownorange','brown orange',[217,144,88],'d99058',14258264], ['nbs-iscc-s:brownorange.54','brownorange','brown orange',[174,105,56],'ae6938',11430200], ['nbs-iscc-s:brownorange.57','brownorange','brown orange',[166,123,91],'a67b5b',10910555], ['nbs-iscc-s:brownorange.68','brownorange','brown orange',[234,162,33],'eaa221',15376929], ['nbs-iscc-s:brownorange.71','brownorange','brown orange',[227,168,87],'e3a857',14919767], ['nbs-iscc-s:brownorange.76','brownorange','brown orange',[193,154,107],'c19a6b',12687979], ['nbs-iscc-s:brownorange.87','brownorange','brown orange',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-s:brownpurple.228','brownpurple','brown purple',[121,104,120],'796878',7956600], ['nbs-iscc-s:brownred.11','brownred','brown red',[190,0,50],'be0032',12451890], ['nbs-iscc-s:brownred.18','brownred','brown red',[173,136,132],'ad8884',11372676], ['nbs-iscc-s:brownred.19','brownred','brown red',[144,93,93],'905d5d',9461085], ['nbs-iscc-s:brownred.46','brownred','brown red',[103,76,71],'674c47',6769735], ['nbs-iscc-s:brownviolet.259','brownviolet','brown violet',[103,49,71],'673147',6762823], ['nbs-iscc-s:brownviolet.262','brownviolet','brown violet',[145,95,109],'915f6d',9527149], ['nbs-iscc-s:buff.28','buff','buff',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-s:buff.29','buff','buff',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-s:buff.31','buff','buff',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-s:buff.33','buff','buff',[194,172,153],'c2ac99',12758169], ['nbs-iscc-s:buff.52','buff','buff',[250,181,127],'fab57f',16430463], ['nbs-iscc-s:buff.53','buff','buff',[217,144,88],'d99058',14258264], ['nbs-iscc-s:buff.71','buff','buff',[227,168,87],'e3a857',14919767], ['nbs-iscc-s:buff.73','buff','buff',[250,214,165],'fad6a5',16438949], ['nbs-iscc-s:buff.76','buff','buff',[193,154,107],'c19a6b',12687979], ['nbs-iscc-s:buff.79','buff','buff',[174,155,130],'ae9b82',11443074], ['nbs-iscc-s:buff.89','buff','buff',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-s:buff.92','buff','buff',[240,234,214],'f0ead6',15788758], ['nbs-iscc-s:buff.93','buff','buff',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-s:burntorange.35','burntorange','burnt orange',[217,96,59],'d9603b',14245947], ['nbs-iscc-s:burntorange.51','burntorange','burnt orange',[190,101,22],'be6516',12477718], ['nbs-iscc-s:burntorange.53','burntorange','burnt orange',[217,144,88],'d99058',14258264], ['nbs-iscc-s:burntorange.54','burntorange','burnt orange',[174,105,56],'ae6938',11430200], ['nbs-iscc-s:carmine.1','carmine','carmine',[255,181,186],'ffb5ba',16758202], ['nbs-iscc-s:carmine.2','carmine','carmine',[234,147,153],'ea9399',15373209], ['nbs-iscc-s:carmine.3','carmine','carmine',[228,113,122],'e4717a',14971258], ['nbs-iscc-s:carmine.6','carmine','carmine',[192,128,129],'c08081',12615809], ['nbs-iscc-s:carmine.11','carmine','carmine',[190,0,50],'be0032',12451890], ['nbs-iscc-s:carmine.12','carmine','carmine',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-s:carmine.13','carmine','carmine',[132,27,45],'841b2d',8657709], ['nbs-iscc-s:carmine.15','carmine','carmine',[171,78,82],'ab4e52',11226706], ['nbs-iscc-s:carmine.19','carmine','carmine',[144,93,93],'905d5d',9461085], ['nbs-iscc-s:carmine.254','carmine','carmine',[206,70,118],'ce4676',13518454], ['nbs-iscc-s:carmine.255','carmine','carmine',[179,68,108],'b3446c',11748460], ['nbs-iscc-s:carmine.256','carmine','carmine',[120,24,74],'78184a',7870538], ['nbs-iscc-s:carmine.258','carmine','carmine',[168,81,110],'a8516e',11030894], ['nbs-iscc-s:carminelake.11','carminelake','carmine lake',[190,0,50],'be0032',12451890], ['nbs-iscc-s:carminelake.12','carminelake','carmine lake',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-s:carminelake.15','carminelake','carmine lake',[171,78,82],'ab4e52',11226706], ['nbs-iscc-s:carminelake.255','carminelake','carmine lake',[179,68,108],'b3446c',11748460], ['nbs-iscc-s:carminelake.258','carminelake','carmine lake',[168,81,110],'a8516e',11030894], ['nbs-iscc-s:carminerose.1','carminerose','carmine rose',[255,181,186],'ffb5ba',16758202], ['nbs-iscc-s:carminerose.2','carminerose','carmine rose',[234,147,153],'ea9399',15373209], ['nbs-iscc-s:carminerose.3','carminerose','carmine rose',[228,113,122],'e4717a',14971258], ['nbs-iscc-s:carminerose.11','carminerose','carmine rose',[190,0,50],'be0032',12451890], ['nbs-iscc-s:carminerose.12','carminerose','carmine rose',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-s:carminerose.15','carminerose','carmine rose',[171,78,82],'ab4e52',11226706], ['nbs-iscc-s:carminerose.19','carminerose','carmine rose',[144,93,93],'905d5d',9461085], ['nbs-iscc-s:carminerose.27','carminerose','carmine rose',[230,103,97],'e66761',15099745], ['nbs-iscc-s:carminerose.248','carminerose','carmine rose',[222,111,161],'de6fa1',14577569], ['nbs-iscc-s:carminerose.255','carminerose','carmine rose',[179,68,108],'b3446c',11748460], ['nbs-iscc-s:carminerose.258','carminerose','carmine rose',[168,81,110],'a8516e',11030894], ['nbs-iscc-s:cerise.254','cerise','cerise',[206,70,118],'ce4676',13518454], ['nbs-iscc-s:cerise.256','cerise','cerise',[120,24,74],'78184a',7870538], ['nbs-iscc-s:chalkyblue.185','chalkyblue','chalky blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-s:chestnutbrown.38','chestnutbrown','chestnut brown',[158,71,50],'9e4732',10372914], ['nbs-iscc-s:chocolate.19','chocolate','chocolate',[144,93,93],'905d5d',9461085], ['nbs-iscc-s:chocolate.22','chocolate','chocolate',[143,129,127],'8f817f',9404799], ['nbs-iscc-s:chocolate.23','chocolate','chocolate',[92,80,79],'5c504f',6049871], ['nbs-iscc-s:chocolate.41','chocolate','chocolate',[86,7,12],'56070c',5637900], ['nbs-iscc-s:chocolate.46','chocolate','chocolate',[103,76,71],'674c47',6769735], ['nbs-iscc-s:claret.251','claret','claret',[193,126,145],'c17e91',12680849], ['nbs-iscc-s:claret.262','claret','claret',[145,95,109],'915f6d',9527149], ['nbs-iscc-s:claretbrown.13','claretbrown','claret brown',[132,27,45],'841b2d',8657709], ['nbs-iscc-s:claretbrown.16','claretbrown','claret brown',[114,47,55],'722f37',7483191], ['nbs-iscc-s:claretbrown.228','claretbrown','claret brown',[121,104,120],'796878',7956600], ['nbs-iscc-s:crimson.11','crimson','crimson',[190,0,50],'be0032',12451890], ['nbs-iscc-s:crimson.12','crimson','crimson',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-s:darkblue.170','darkblue','dark blue',[46,132,149],'2e8495',3048597], ['nbs-iscc-s:darkblue.173','darkblue','dark blue',[54,117,136],'367588',3569032], ['nbs-iscc-s:darkblue.174','darkblue','dark blue',[0,73,88],'004958',18776], ['nbs-iscc-s:darkblue.178','darkblue','dark blue',[0,103,165],'0067a5',26533], ['nbs-iscc-s:darkblue.179','darkblue','dark blue',[0,65,106],'00416a',16746], ['nbs-iscc-s:darkblue.182','darkblue','dark blue',[67,107,149],'436b95',4418453], ['nbs-iscc-s:darkblue.183','darkblue','dark blue',[0,48,78],'00304e',12366], ['nbs-iscc-s:darkblue.186','darkblue','dark blue',[83,104,120],'536878',5466232], ['nbs-iscc-s:darkblue.187','darkblue','dark blue',[54,69,79],'36454f',3556687], ['nbs-iscc-s:darkblue.188','darkblue','dark blue',[32,40,48],'202830',2107440], ['nbs-iscc-s:darkblue.197','darkblue','dark blue',[39,36,88],'272458',2565208], ['nbs-iscc-s:darkblue.199','darkblue','dark blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-s:darkbluegreen.141','darkbluegreen','dark blue green',[0,121,89],'007959',31065], ['nbs-iscc-s:darkbluegreen.146','darkbluegreen','dark blue green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-s:darkbluegreen.147','darkbluegreen','dark blue green',[28,53,45],'1c352d',1848621], ['nbs-iscc-s:darkbluegreen.151','darkbluegreen','dark blue green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-s:darkbluegreen.152','darkbluegreen','dark blue green',[26,36,33],'1a2421',1713185], ['nbs-iscc-s:darkbluegreen.160','darkbluegreen','dark blue green',[0,122,116],'007a74',31348], ['nbs-iscc-s:darkbluegreen.163','darkbluegreen','dark blue green',[102,173,164],'66ada4',6729124], ['nbs-iscc-s:darkbluegreen.164','darkbluegreen','dark blue green',[49,120,115],'317873',3242099], ['nbs-iscc-s:darkbluegreen.173','darkbluegreen','dark blue green',[54,117,136],'367588',3569032], ['nbs-iscc-s:darkbrown.20','darkbrown','dark brown',[84,61,63],'543d3f',5520703], ['nbs-iscc-s:darkbrown.22','darkbrown','dark brown',[143,129,127],'8f817f',9404799], ['nbs-iscc-s:darkbrown.23','darkbrown','dark brown',[92,80,79],'5c504f',6049871], ['nbs-iscc-s:darkbrown.43','darkbrown','dark brown',[121,68,59],'79443b',7947323], ['nbs-iscc-s:darkbrown.45','darkbrown','dark brown',[151,127,115],'977f73',9928563], ['nbs-iscc-s:darkbrown.58','darkbrown','dark brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-s:darkbrown.61','darkbrown','dark brown',[99,81,71],'635147',6508871], ['nbs-iscc-s:darkbrown.63','darkbrown','dark brown',[142,130,121],'8e8279',9339513], ['nbs-iscc-s:darkbrown.64','darkbrown','dark brown',[91,80,79],'5b504f',5984335], ['nbs-iscc-s:darkbrown.80','darkbrown','dark brown',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-s:darkbrown.93','darkbrown','dark brown',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-s:darkcarmine.11','darkcarmine','dark carmine',[190,0,50],'be0032',12451890], ['nbs-iscc-s:darkcarmine.15','darkcarmine','dark carmine',[171,78,82],'ab4e52',11226706], ['nbs-iscc-s:darkgray.192','darkgray','dark gray',[81,88,94],'51585e',5331038], ['nbs-iscc-s:darkgreen.132','darkgreen','dark green',[0,98,45],'00622d',25133], ['nbs-iscc-s:darkgreen.137','darkgreen','dark green',[53,94,59],'355e3b',3497531], ['nbs-iscc-s:darkgreen.141','darkgreen','dark green',[0,121,89],'007959',31065], ['nbs-iscc-s:darkgreen.142','darkgreen','dark green',[0,84,61],'00543d',21565], ['nbs-iscc-s:darkgreen.145','darkgreen','dark green',[59,120,97],'3b7861',3897441], ['nbs-iscc-s:darkgreen.146','darkgreen','dark green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-s:darkgreen.150','darkgreen','dark green',[94,113,106],'5e716a',6189418], ['nbs-iscc-s:darkgreen.151','darkgreen','dark green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-s:darkgreen.155','darkgreen','dark green',[125,137,132],'7d8984',8227204], ['nbs-iscc-s:darkgreen.164','darkgreen','dark green',[49,120,115],'317873',3242099], ['nbs-iscc-s:darkochre.94','darkochre','dark ochre',[150,113,23],'967117',9859351], ['nbs-iscc-s:darkolive.110','darkolive','dark olive',[91,88,66],'5b5842',5986370], ['nbs-iscc-s:darkolive.113','darkolive','dark olive',[87,85,76],'57554c',5723468], ['nbs-iscc-s:darkolive.127','darkolive','dark olive',[81,87,68],'515744',5330756], ['nbs-iscc-s:darkolivegreen.125','darkolivegreen','dark olive green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-s:darkredbrown.46','darkredbrown','dark red brown',[103,76,71],'674c47',6769735], ['nbs-iscc-s:darkrose.15','darkrose','dark rose',[171,78,82],'ab4e52',11226706], ['nbs-iscc-s:darkslategreen.146','darkslategreen','dark slate green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-s:darkslategreen.147','darkslategreen','dark slate green',[28,53,45],'1c352d',1848621], ['nbs-iscc-s:darkslategreen.151','darkslategreen','dark slate green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-s:darkslategreen.152','darkslategreen','dark slate green',[26,36,33],'1a2421',1713185], ['nbs-iscc-s:darkviolet.224','darkviolet','dark violet',[86,60,92],'563c5c',5651548], ['nbs-iscc-s:darkviolet.227','darkviolet','dark violet',[170,152,169],'aa98a9',11180201], ['nbs-iscc-s:darkviolet.228','darkviolet','dark violet',[121,104,120],'796878',7956600], ['nbs-iscc-s:darkviolet.233','darkviolet','dark violet',[139,133,137],'8b8589',9143689], ['nbs-iscc-s:darkviolet.262','darkviolet','dark violet',[145,95,109],'915f6d',9527149], ['nbs-iscc-s:darkvioletbrown.229','darkvioletbrown','dark violet brown',[80,64,77],'50404d',5259341], ['nbs-iscc-s:darkvioletbrown.230','darkvioletbrown','dark violet brown',[41,30,41],'291e29',2694697], ['nbs-iscc-s:darkvioletbrown.259','darkvioletbrown','dark violet brown',[103,49,71],'673147',6762823], ['nbs-iscc-s:darkvioletbrown.260','darkvioletbrown','dark violet brown',[56,21,44],'38152c',3675436], ['nbs-iscc-s:deepbistre.94','deepbistre','deep bistre',[150,113,23],'967117',9859351], ['nbs-iscc-s:deepblue.170','deepblue','deep blue',[46,132,149],'2e8495',3048597], ['nbs-iscc-s:deepblue.173','deepblue','deep blue',[54,117,136],'367588',3569032], ['nbs-iscc-s:deepblue.176','deepblue','deep blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-s:deepblue.178','deepblue','deep blue',[0,103,165],'0067a5',26533], ['nbs-iscc-s:deepblue.179','deepblue','deep blue',[0,65,106],'00416a',16746], ['nbs-iscc-s:deepblue.181','deepblue','deep blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-s:deepblue.182','deepblue','deep blue',[67,107,149],'436b95',4418453], ['nbs-iscc-s:deepblue.186','deepblue','deep blue',[83,104,120],'536878',5466232], ['nbs-iscc-s:deepbrown.43','deepbrown','deep brown',[121,68,59],'79443b',7947323], ['nbs-iscc-s:deepbrown.55','deepbrown','deep brown',[128,70,27],'80461b',8406555], ['nbs-iscc-s:deepbrown.58','deepbrown','deep brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-s:deepclaret.16','deepclaret','deep claret',[114,47,55],'722f37',7483191], ['nbs-iscc-s:deepgreen.117','deepgreen','deep green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-s:deepgreen.120','deepgreen','deep green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-s:deepgreen.129','deepgreen','deep green',[39,166,76],'27a64c',2598476], ['nbs-iscc-s:deepgreen.130','deepgreen','deep green',[131,211,125],'83d37d',8639357], ['nbs-iscc-s:deepgreen.131','deepgreen','deep green',[68,148,74],'44944a',4494410], ['nbs-iscc-s:deepgreen.132','deepgreen','deep green',[0,98,45],'00622d',25133], ['nbs-iscc-s:deepgreen.133','deepgreen','deep green',[0,49,24],'003118',12568], ['nbs-iscc-s:deepgreen.135','deepgreen','deep green',[147,197,146],'93c592',9684370], ['nbs-iscc-s:deepgreen.141','deepgreen','deep green',[0,121,89],'007959',31065], ['nbs-iscc-s:deepgreen.142','deepgreen','deep green',[0,84,61],'00543d',21565], ['nbs-iscc-s:deepgreen.145','deepgreen','deep green',[59,120,97],'3b7861',3897441], ['nbs-iscc-s:deepgreen.155','deepgreen','deep green',[125,137,132],'7d8984',8227204], ['nbs-iscc-s:deepgreen.160','deepgreen','deep green',[0,122,116],'007a74',31348], ['nbs-iscc-s:deepgreen.163','deepgreen','deep green',[102,173,164],'66ada4',6729124], ['nbs-iscc-s:deepgreen.164','deepgreen','deep green',[49,120,115],'317873',3242099], ['nbs-iscc-s:deepgreen.165','deepgreen','deep green',[0,75,73],'004b49',19273], ['nbs-iscc-s:deeplake.259','deeplake','deep lake',[103,49,71],'673147',6762823], ['nbs-iscc-s:deepmagenta.254','deepmagenta','deep magenta',[206,70,118],'ce4676',13518454], ['nbs-iscc-s:deepolivegreen.125','deepolivegreen','deep olive green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-s:deeporange.26','deeporange','deep orange',[248,131,121],'f88379',16286585], ['nbs-iscc-s:deeporange.53','deeporange','deep orange',[217,144,88],'d99058',14258264], ['nbs-iscc-s:deepplum.258','deepplum','deep plum',[168,81,110],'a8516e',11030894], ['nbs-iscc-s:deepultramarine.176','deepultramarine','deep ultramarine',[0,161,194],'00a1c2',41410], ['nbs-iscc-s:deepultramarine.182','deepultramarine','deep ultramarine',[67,107,149],'436b95',4418453], ['nbs-iscc-s:deepultramarine.194','deepultramarine','deep ultramarine',[48,38,122],'30267a',3155578], ['nbs-iscc-s:deepviolet.206','deepviolet','deep violet',[126,115,184],'7e73b8',8287160], ['nbs-iscc-s:deepviolet.218','deepviolet','deep violet',[135,86,146],'875692',8869522], ['nbs-iscc-s:deepviolet.223','deepviolet','deep violet',[134,96,142],'86608e',8806542], ['nbs-iscc-s:deepviolet.238','deepviolet','deep violet',[112,41,99],'702963',7350627], ['nbs-iscc-s:dullblue.178','dullblue','dull blue',[0,103,165],'0067a5',26533], ['nbs-iscc-s:dullblue.179','dullblue','dull blue',[0,65,106],'00416a',16746], ['nbs-iscc-s:dullblue.181','dullblue','dull blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-s:dullblue.182','dullblue','dull blue',[67,107,149],'436b95',4418453], ['nbs-iscc-s:dullblue.186','dullblue','dull blue',[83,104,120],'536878',5466232], ['nbs-iscc-s:dullblue.192','dullblue','dull blue',[81,88,94],'51585e',5331038], ['nbs-iscc-s:dullblue.204','dullblue','dull blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-s:dullbuff.31','dullbuff','dull buff',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-s:dullbuff.32','dullbuff','dull buff',[199,173,163],'c7ada3',13086115], ['nbs-iscc-s:dullbuff.70','dullbuff','dull buff',[251,201,127],'fbc97f',16501119], ['nbs-iscc-s:dullbuff.71','dullbuff','dull buff',[227,168,87],'e3a857',14919767], ['nbs-iscc-s:dullbuff.73','dullbuff','dull buff',[250,214,165],'fad6a5',16438949], ['nbs-iscc-s:dullgreen.127','dullgreen','dull green',[81,87,68],'515744',5330756], ['nbs-iscc-s:dullgreen.135','dullgreen','dull green',[147,197,146],'93c592',9684370], ['nbs-iscc-s:dullgreen.137','dullgreen','dull green',[53,94,59],'355e3b',3497531], ['nbs-iscc-s:dullgreen.144','dullgreen','dull green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-s:dullgreen.145','dullgreen','dull green',[59,120,97],'3b7861',3897441], ['nbs-iscc-s:dullgreen.151','dullgreen','dull green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-s:dullgreen.163','dullgreen','dull green',[102,173,164],'66ada4',6729124], ['nbs-iscc-s:dulllilac.211','dulllilac','dull lilac',[96,78,129],'604e81',6311553], ['nbs-iscc-s:dulllilac.227','dulllilac','dull lilac',[170,152,169],'aa98a9',11180201], ['nbs-iscc-s:dulllilac.262','dulllilac','dull lilac',[145,95,109],'915f6d',9527149], ['nbs-iscc-s:dullorange.10','dullorange','dull orange',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-s:dullred.35','dullred','dull red',[217,96,59],'d9603b',14245947], ['nbs-iscc-s:dullrose.2','dullrose','dull rose',[234,147,153],'ea9399',15373209], ['nbs-iscc-s:dullrose.18','dullrose','dull rose',[173,136,132],'ad8884',11372676], ['nbs-iscc-s:dullrose.250','dullrose','dull rose',[213,151,174],'d597ae',13997998], ['nbs-iscc-s:dullvermilion.37','dullvermilion','dull vermilion',[203,109,81],'cb6d51',13331793], ['nbs-iscc-s:dullviolet.228','dullviolet','dull violet',[121,104,120],'796878',7956600], ['nbs-iscc-s:dullviolet.245','dullviolet','dull violet',[131,100,121],'836479',8610937], ['nbs-iscc-s:dullviolet.259','dullviolet','dull violet',[103,49,71],'673147',6762823], ['nbs-iscc-s:dullviolet.261','dullviolet','dull violet',[175,134,142],'af868e',11503246], ['nbs-iscc-s:dullviolet.262','dullviolet','dull violet',[145,95,109],'915f6d',9527149], ['nbs-iscc-s:dullyellow.70','dullyellow','dull yellow',[251,201,127],'fbc97f',16501119], ['nbs-iscc-s:dullyellow.71','dullyellow','dull yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-s:emerald.129','emerald','emerald',[39,166,76],'27a64c',2598476], ['nbs-iscc-s:emerald.130','emerald','emerald',[131,211,125],'83d37d',8639357], ['nbs-iscc-s:emerald.131','emerald','emerald',[68,148,74],'44944a',4494410], ['nbs-iscc-s:emerald.132','emerald','emerald',[0,98,45],'00622d',25133], ['nbs-iscc-s:emerald.139','emerald','emerald',[0,136,86],'008856',34902], ['nbs-iscc-s:emerald.140','emerald','emerald',[62,180,137],'3eb489',4109449], ['nbs-iscc-s:emerald.144','emerald','emerald',[106,171,142],'6aab8e',6990734], ['nbs-iscc-s:fawn.29','fawn','fawn',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-s:fawn.43','fawn','fawn',[121,68,59],'79443b',7947323], ['nbs-iscc-s:gray.93','gray','gray',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-s:gray.112','gray','gray',[138,135,118],'8a8776',9078646], ['nbs-iscc-s:gray.149','gray','gray',[141,163,153],'8da399',9282457], ['nbs-iscc-s:gray.154','gray','gray',[178,190,181],'b2beb5',11714229], ['nbs-iscc-s:gray.155','gray','gray',[125,137,132],'7d8984',8227204], ['nbs-iscc-s:gray.156','gray','gray',[78,87,85],'4e5755',5134165], ['nbs-iscc-s:gray.189','gray','gray',[233,233,237],'e9e9ed',15329773], ['nbs-iscc-s:gray.192','gray','gray',[81,88,94],'51585e',5331038], ['nbs-iscc-s:gray.232','gray','gray',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-s:gray.264','gray','gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-s:gray.265','gray','gray',[132,132,130],'848482',8684674], ['nbs-iscc-s:graybistre.76','graybistre','gray bistre',[193,154,107],'c19a6b',12687979], ['nbs-iscc-s:graybistre.79','graybistre','gray bistre',[174,155,130],'ae9b82',11443074], ['nbs-iscc-s:graybistre.94','graybistre','gray bistre',[150,113,23],'967117',9859351], ['nbs-iscc-s:grayblack.63','grayblack','gray black',[142,130,121],'8e8279',9339513], ['nbs-iscc-s:grayblack.112','grayblack','gray black',[138,135,118],'8a8776',9078646], ['nbs-iscc-s:grayblack.113','grayblack','gray black',[87,85,76],'57554c',5723468], ['nbs-iscc-s:grayblack.155','grayblack','gray black',[125,137,132],'7d8984',8227204], ['nbs-iscc-s:grayblack.265','grayblack','gray black',[132,132,130],'848482',8684674], ['nbs-iscc-s:grayblue.182','grayblue','gray blue',[67,107,149],'436b95',4418453], ['nbs-iscc-s:grayblue.185','grayblue','gray blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-s:grayblue.190','grayblue','gray blue',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-s:grayblue.203','grayblue','gray blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-s:grayblue.214','grayblue','gray blue',[150,144,171],'9690ab',9867435], ['nbs-iscc-s:grayblue.232','grayblue','gray blue',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-s:graybrown.45','graybrown','gray brown',[151,127,115],'977f73',9928563], ['nbs-iscc-s:graybrown.63','graybrown','gray brown',[142,130,121],'8e8279',9339513], ['nbs-iscc-s:graybrown.94','graybrown','gray brown',[150,113,23],'967117',9859351], ['nbs-iscc-s:graybrown.112','graybrown','gray brown',[138,135,118],'8a8776',9078646], ['nbs-iscc-s:graygreen.112','graygreen','gray green',[138,135,118],'8a8776',9078646], ['nbs-iscc-s:graygreen.120','graygreen','gray green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-s:graygreen.122','graygreen','gray green',[143,151,121],'8f9779',9410425], ['nbs-iscc-s:graygreen.136','graygreen','gray green',[103,146,103],'679267',6787687], ['nbs-iscc-s:graygreen.144','graygreen','gray green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-s:graygreen.145','graygreen','gray green',[59,120,97],'3b7861',3897441], ['nbs-iscc-s:graygreen.163','graygreen','gray green',[102,173,164],'66ada4',6729124], ['nbs-iscc-s:graylilac.22','graylilac','gray lilac',[143,129,127],'8f817f',9404799], ['nbs-iscc-s:graylilac.63','graylilac','gray lilac',[142,130,121],'8e8279',9339513], ['nbs-iscc-s:graylilac.226','graylilac','gray lilac',[214,202,221],'d6cadd',14076637], ['nbs-iscc-s:graylilac.232','graylilac','gray lilac',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-s:graylilac.249','graylilac','gray lilac',[239,187,204],'efbbcc',15711180], ['nbs-iscc-s:grayviolet.233','grayviolet','gray violet',[139,133,137],'8b8589',9143689], ['nbs-iscc-s:green.117','green','green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-s:green.120','green','green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-s:green.129','green','green',[39,166,76],'27a64c',2598476], ['nbs-iscc-s:green.130','green','green',[131,211,125],'83d37d',8639357], ['nbs-iscc-s:green.131','green','green',[68,148,74],'44944a',4494410], ['nbs-iscc-s:green.132','green','green',[0,98,45],'00622d',25133], ['nbs-iscc-s:green.135','green','green',[147,197,146],'93c592',9684370], ['nbs-iscc-s:green.136','green','green',[103,146,103],'679267',6787687], ['nbs-iscc-s:green.139','green','green',[0,136,86],'008856',34902], ['nbs-iscc-s:green.140','green','green',[62,180,137],'3eb489',4109449], ['nbs-iscc-s:green.141','green','green',[0,121,89],'007959',31065], ['nbs-iscc-s:green.142','green','green',[0,84,61],'00543d',21565], ['nbs-iscc-s:green.143','green','green',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-s:green.144','green','green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-s:green.145','green','green',[59,120,97],'3b7861',3897441], ['nbs-iscc-s:green.148','green','green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-s:green.149','green','green',[141,163,153],'8da399',9282457], ['nbs-iscc-s:green.150','green','green',[94,113,106],'5e716a',6189418], ['nbs-iscc-s:green.154','green','green',[178,190,181],'b2beb5',11714229], ['nbs-iscc-s:green.159','green','green',[0,166,147],'00a693',42643], ['nbs-iscc-s:green.163','green','green',[102,173,164],'66ada4',6729124], ['nbs-iscc-s:green.164','green','green',[49,120,115],'317873',3242099], ['nbs-iscc-s:greenishblack.149','greenishblack','greenish black',[141,163,153],'8da399',9282457], ['nbs-iscc-s:greenishblue.164','greenishblue','greenish blue',[49,120,115],'317873',3242099], ['nbs-iscc-s:greenishblue.169','greenishblue','greenish blue',[0,119,145],'007791',30609], ['nbs-iscc-s:greenishblue.173','greenishblue','greenish blue',[54,117,136],'367588',3569032], ['nbs-iscc-s:hennabrown.13','hennabrown','henna brown ',[132,27,45],'841b2d',8657709], ['nbs-iscc-s:indigo.179','indigo','indigo',[0,65,106],'00416a',16746], ['nbs-iscc-s:indigo.204','indigo','indigo',[76,81,109],'4c516d',5001581], ['nbs-iscc-s:lake.15','lake','lake',[171,78,82],'ab4e52',11226706], ['nbs-iscc-s:lake.16','lake','lake',[114,47,55],'722f37',7483191], ['nbs-iscc-s:lake.19','lake','lake',[144,93,93],'905d5d',9461085], ['nbs-iscc-s:lake.39','lake','lake',[180,116,94],'b4745e',11826270], ['nbs-iscc-s:lake.258','lake','lake',[168,81,110],'a8516e',11030894], ['nbs-iscc-s:lemon.82','lemon','lemon',[243,195,0],'f3c300',15975168], ['nbs-iscc-s:lemon.83','lemon','lemon',[250,218,94],'fada5e',16439902], ['nbs-iscc-s:lemon.84','lemon','lemon',[212,175,55],'d4af37',13938487], ['nbs-iscc-s:lemon.85','lemon','lemon',[175,141,19],'af8d13',11504915], ['nbs-iscc-s:lemon.97','lemon','lemon',[220,211,0],'dcd300',14471936], ['nbs-iscc-s:lemonyellow.85','lemonyellow','lemon yellow',[175,141,19],'af8d13',11504915], ['nbs-iscc-s:lemonyellow.100','lemonyellow','lemon yellow',[155,148,0],'9b9400',10195968], ['nbs-iscc-s:lightblue.162','lightblue','light blue',[150,222,209],'96ded1',9887441], ['nbs-iscc-s:lightblue.163','lightblue','light blue',[102,173,164],'66ada4',6729124], ['nbs-iscc-s:lightblue.164','lightblue','light blue',[49,120,115],'317873',3242099], ['nbs-iscc-s:lightblue.168','lightblue','light blue',[35,158,186],'239eba',2334394], ['nbs-iscc-s:lightblue.172','lightblue','light blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-s:lightblue.173','lightblue','light blue',[54,117,136],'367588',3569032], ['nbs-iscc-s:lightblue.178','lightblue','light blue',[0,103,165],'0067a5',26533], ['nbs-iscc-s:lightblue.181','lightblue','light blue',[112,163,204],'70a3cc',7381964], ['nbs-iscc-s:lightblue.184','lightblue','light blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-s:lightbrown.32','lightbrown','light brown',[199,173,163],'c7ada3',13086115], ['nbs-iscc-s:lightgreen.131','lightgreen','light green',[68,148,74],'44944a',4494410], ['nbs-iscc-s:lightgreen.135','lightgreen','light green',[147,197,146],'93c592',9684370], ['nbs-iscc-s:lightgreen.140','lightgreen','light green',[62,180,137],'3eb489',4109449], ['nbs-iscc-s:lightolivegreen.106','lightolivegreen','light olive green',[134,126,54],'867e36',8814134], ['nbs-iscc-s:lightolivegreen.117','lightolivegreen','light olive green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-s:lightolivegreen.119','lightolivegreen','light olive green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-s:lightredbrown.42','lightredbrown','light red brown',[168,124,109],'a87c6d',11041901], ['nbs-iscc-s:lilac.10','lilac','lilac',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-s:lilac.209','lilac','lilac',[220,208,255],'dcd0ff',14471423], ['nbs-iscc-s:lilac.210','lilac','lilac',[140,130,182],'8c82b6',9208502], ['nbs-iscc-s:lilac.221','lilac','lilac',[213,186,219],'d5badb',14007003], ['nbs-iscc-s:lilac.226','lilac','lilac',[214,202,221],'d6cadd',14076637], ['nbs-iscc-s:lilac.227','lilac','lilac',[170,152,169],'aa98a9',11180201], ['nbs-iscc-s:lilac.228','lilac','lilac',[121,104,120],'796878',7956600], ['nbs-iscc-s:lilac.231','lilac','lilac',[232,227,229],'e8e3e5',15262693], ['nbs-iscc-s:lilac.232','lilac','lilac',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-s:lilac.233','lilac','lilac',[139,133,137],'8b8589',9143689], ['nbs-iscc-s:lilac.241','lilac','lilac',[145,92,131],'915c83',9526403], ['nbs-iscc-s:lilac.244','lilac','lilac',[170,138,158],'aa8a9e',11176606], ['nbs-iscc-s:lilac.252','lilac','lilac',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-s:lilac.253','lilac','lilac',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-s:lilac.261','lilac','lilac',[175,134,142],'af868e',11503246], ['nbs-iscc-s:lilac.262','lilac','lilac',[145,95,109],'915f6d',9527149], ['nbs-iscc-s:lilacbrown.10','lilacbrown','lilac brown',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-s:lilacbrown.22','lilacbrown','lilac brown',[143,129,127],'8f817f',9404799], ['nbs-iscc-s:lilacbrown.63','lilacbrown','lilac brown',[142,130,121],'8e8279',9339513], ['nbs-iscc-s:lilacgray.232','lilacgray','lilac gray',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-s:lilacrose.3','lilacrose','lilac rose',[228,113,122],'e4717a',14971258], ['nbs-iscc-s:lilacrose.18','lilacrose','lilac rose',[173,136,132],'ad8884',11372676], ['nbs-iscc-s:lilacrose.237','lilacrose','lilac rose',[158,79,136],'9e4f88',10375048], ['nbs-iscc-s:lilacrose.248','lilacrose','lilac rose',[222,111,161],'de6fa1',14577569], ['nbs-iscc-s:lilacrose.249','lilacrose','lilac rose',[239,187,204],'efbbcc',15711180], ['nbs-iscc-s:lilacrose.258','lilacrose','lilac rose',[168,81,110],'a8516e',11030894], ['nbs-iscc-s:magenta.205','magenta','magenta',[144,101,202],'9065ca',9463242], ['nbs-iscc-s:magenta.218','magenta','magenta',[135,86,146],'875692',8869522], ['nbs-iscc-s:magenta.237','magenta','magenta',[158,79,136],'9e4f88',10375048], ['nbs-iscc-s:magenta.242','magenta','magenta',[93,57,84],'5d3954',6109524], ['nbs-iscc-s:magenta.255','magenta','magenta',[179,68,108],'b3446c',11748460], ['nbs-iscc-s:magenta.258','magenta','magenta',[168,81,110],'a8516e',11030894], ['nbs-iscc-s:magenta.259','magenta','magenta',[103,49,71],'673147',6762823], ['nbs-iscc-s:magenta.262','magenta','magenta',[145,95,109],'915f6d',9527149], ['nbs-iscc-s:maroon.16','maroon','maroon',[114,47,55],'722f37',7483191], ['nbs-iscc-s:maroon.259','maroon','maroon',[103,49,71],'673147',6762823], ['nbs-iscc-s:mauve.241','mauve','mauve',[145,92,131],'915c83',9526403], ['nbs-iscc-s:milkyblue.172','milkyblue','milky blue ',[102,170,188],'66aabc',6728380], ['nbs-iscc-s:myrtlegreen.164','myrtlegreen','myrtle green ',[49,120,115],'317873',3242099], ['nbs-iscc-s:myrtlegreen.165','myrtlegreen','myrtle green ',[0,75,73],'004b49',19273], ['nbs-iscc-s:ochre.51','ochre','ochre',[190,101,22],'be6516',12477718], ['nbs-iscc-s:ochre.53','ochre','ochre',[217,144,88],'d99058',14258264], ['nbs-iscc-s:ochre.57','ochre','ochre',[166,123,91],'a67b5b',10910555], ['nbs-iscc-s:ochre.67','ochre','ochre',[255,193,79],'ffc14f',16761167], ['nbs-iscc-s:ochre.71','ochre','ochre',[227,168,87],'e3a857',14919767], ['nbs-iscc-s:ochre.73','ochre','ochre',[250,214,165],'fad6a5',16438949], ['nbs-iscc-s:ochre.74','ochre','ochre',[153,101,21],'996515',10052885], ['nbs-iscc-s:ochre.83','ochre','ochre',[250,218,94],'fada5e',16439902], ['nbs-iscc-s:ochre.84','ochre','ochre',[212,175,55],'d4af37',13938487], ['nbs-iscc-s:ochre.86','ochre','ochre',[248,222,126],'f8de7e',16309886], ['nbs-iscc-s:ochre.87','ochre','ochre',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-s:olive.95','olive','olive',[108,84,30],'6c541e',7099422], ['nbs-iscc-s:olive.110','olive','olive',[91,88,66],'5b5842',5986370], ['nbs-iscc-s:olive.122','olive','olive',[143,151,121],'8f9779',9410425], ['nbs-iscc-s:olivebistre.69','olivebistre','olive bistre',[201,133,0],'c98500',13206784], ['nbs-iscc-s:olivebistre.72','olivebistre','olive bistre',[190,138,61],'be8a3d',12487229], ['nbs-iscc-s:olivebistre.74','olivebistre','olive bistre',[153,101,21],'996515',10052885], ['nbs-iscc-s:olivebistre.77','olivebistre','olive bistre',[130,102,68],'826644',8545860], ['nbs-iscc-s:olivebistre.85','olivebistre','olive bistre',[175,141,19],'af8d13',11504915], ['nbs-iscc-s:olivebistre.87','olivebistre','olive bistre',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-s:olivebistre.88','olivebistre','olive bistre',[171,145,68],'ab9144',11243844], ['nbs-iscc-s:olivebistre.89','olivebistre','olive bistre',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-s:olivebistre.90','olivebistre','olive bistre',[194,178,128],'c2b280',12759680], ['nbs-iscc-s:olivebistre.91','olivebistre','olive bistre',[161,143,96],'a18f60',10588000], ['nbs-iscc-s:olivebistre.93','olivebistre','olive bistre',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-s:olivebistre.94','olivebistre','olive bistre',[150,113,23],'967117',9859351], ['nbs-iscc-s:olivebistre.106','olivebistre','olive bistre',[134,126,54],'867e36',8814134], ['nbs-iscc-s:olivebistre.112','olivebistre','olive bistre',[138,135,118],'8a8776',9078646], ['nbs-iscc-s:olivebistre.122','olivebistre','olive bistre',[143,151,121],'8f9779',9410425], ['nbs-iscc-s:olivebistre.264','olivebistre','olive bistre',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-s:oliveblack.110','oliveblack','olive black',[91,88,66],'5b5842',5986370], ['nbs-iscc-s:oliveblack.113','oliveblack','olive black',[87,85,76],'57554c',5723468], ['nbs-iscc-s:olivebrown.58','olivebrown','olive brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-s:olivebrown.63','olivebrown','olive brown',[142,130,121],'8e8279',9339513], ['nbs-iscc-s:olivebrown.78','olivebrown','olive brown',[75,54,33],'4b3621',4929057], ['nbs-iscc-s:olivebrown.80','olivebrown','olive brown',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-s:olivebrown.81','olivebrown','olive brown',[72,60,50],'483c32',4734002], ['nbs-iscc-s:olivebrown.95','olivebrown','olive brown',[108,84,30],'6c541e',7099422], ['nbs-iscc-s:olivebrown.110','olivebrown','olive brown',[91,88,66],'5b5842',5986370], ['nbs-iscc-s:olivebrown.113','olivebrown','olive brown',[87,85,76],'57554c',5723468], ['nbs-iscc-s:olivegray.107','olivegray','olive gray',[102,93,30],'665d1e',6708510], ['nbs-iscc-s:olivegray.112','olivegray','olive gray',[138,135,118],'8a8776',9078646], ['nbs-iscc-s:olivegray.113','olivegray','olive gray',[87,85,76],'57554c',5723468], ['nbs-iscc-s:olivegray.122','olivegray','olive gray',[143,151,121],'8f9779',9410425], ['nbs-iscc-s:olivegray.155','olivegray','olive gray',[125,137,132],'7d8984',8227204], ['nbs-iscc-s:olivegray.156','olivegray','olive gray',[78,87,85],'4e5755',5134165], ['nbs-iscc-s:olivegreen.88','olivegreen','olive green',[171,145,68],'ab9144',11243844], ['nbs-iscc-s:olivegreen.89','olivegreen','olive green',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-s:olivegreen.90','olivegreen','olive green',[194,178,128],'c2b280',12759680], ['nbs-iscc-s:olivegreen.91','olivegreen','olive green',[161,143,96],'a18f60',10588000], ['nbs-iscc-s:olivegreen.93','olivegreen','olive green',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-s:olivegreen.100','olivegreen','olive green',[155,148,0],'9b9400',10195968], ['nbs-iscc-s:olivegreen.106','olivegreen','olive green',[134,126,54],'867e36',8814134], ['nbs-iscc-s:olivegreen.107','olivegreen','olive green',[102,93,30],'665d1e',6708510], ['nbs-iscc-s:olivegreen.109','olivegreen','olive green',[140,135,103],'8c8767',9209703], ['nbs-iscc-s:olivegreen.110','olivegreen','olive green',[91,88,66],'5b5842',5986370], ['nbs-iscc-s:olivegreen.112','olivegreen','olive green',[138,135,118],'8a8776',9078646], ['nbs-iscc-s:olivegreen.113','olivegreen','olive green',[87,85,76],'57554c',5723468], ['nbs-iscc-s:olivegreen.117','olivegreen','olive green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-s:olivegreen.120','olivegreen','olive green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-s:olivegreen.122','olivegreen','olive green',[143,151,121],'8f9779',9410425], ['nbs-iscc-s:olivegreen.123','olivegreen','olive green',[64,79,0],'404f00',4214528], ['nbs-iscc-s:olivegreen.125','olivegreen','olive green',[74,93,35],'4a5d23',4873507], ['nbs-iscc-s:olivegreen.127','olivegreen','olive green',[81,87,68],'515744',5330756], ['nbs-iscc-s:olivegreen.150','olivegreen','olive green',[94,113,106],'5e716a',6189418], ['nbs-iscc-s:olivegreen.151','olivegreen','olive green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-s:olivegreen.155','olivegreen','olive green',[125,137,132],'7d8984',8227204], ['nbs-iscc-s:olivegreen.156','olivegreen','olive green',[78,87,85],'4e5755',5134165], ['nbs-iscc-s:oliveyellow.31','oliveyellow','olive yellow',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-s:oliveyellow.33','oliveyellow','olive yellow',[194,172,153],'c2ac99',12758169], ['nbs-iscc-s:oliveyellow.73','oliveyellow','olive yellow',[250,214,165],'fad6a5',16438949], ['nbs-iscc-s:oliveyellow.86','oliveyellow','olive yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-s:oliveyellow.87','oliveyellow','olive yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-s:oliveyellow.89','oliveyellow','olive yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-s:oliveyellow.93','oliveyellow','olive yellow',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-s:orange.25','orange','orange',[255,183,165],'ffb7a5',16758693], ['nbs-iscc-s:orange.26','orange','orange',[248,131,121],'f88379',16286585], ['nbs-iscc-s:orange.28','orange','orange',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-s:orange.29','orange','orange',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-s:orange.34','orange','orange',[226,88,34],'e25822',14833698], ['nbs-iscc-s:orange.35','orange','orange',[217,96,59],'d9603b',14245947], ['nbs-iscc-s:orange.37','orange','orange',[203,109,81],'cb6d51',13331793], ['nbs-iscc-s:orange.48','orange','orange',[243,132,0],'f38400',15959040], ['nbs-iscc-s:orange.49','orange','orange',[253,148,63],'fd943f',16618559], ['nbs-iscc-s:orange.50','orange','orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-s:orange.51','orange','orange',[190,101,22],'be6516',12477718], ['nbs-iscc-s:orange.52','orange','orange',[250,181,127],'fab57f',16430463], ['nbs-iscc-s:orange.53','orange','orange',[217,144,88],'d99058',14258264], ['nbs-iscc-s:orange.66','orange','orange',[246,166,0],'f6a600',16164352], ['nbs-iscc-s:orange.67','orange','orange',[255,193,79],'ffc14f',16761167], ['nbs-iscc-s:orange.68','orange','orange',[234,162,33],'eaa221',15376929], ['nbs-iscc-s:orange.69','orange','orange',[201,133,0],'c98500',13206784], ['nbs-iscc-s:orange.70','orange','orange',[251,201,127],'fbc97f',16501119], ['nbs-iscc-s:orange.71','orange','orange',[227,168,87],'e3a857',14919767], ['nbs-iscc-s:orange.72','orange','orange',[190,138,61],'be8a3d',12487229], ['nbs-iscc-s:orange.73','orange','orange',[250,214,165],'fad6a5',16438949], ['nbs-iscc-s:orange.76','orange','orange',[193,154,107],'c19a6b',12687979], ['nbs-iscc-s:orange.83','orange','orange',[250,218,94],'fada5e',16439902], ['nbs-iscc-s:orange.84','orange','orange',[212,175,55],'d4af37',13938487], ['nbs-iscc-s:orange.86','orange','orange',[248,222,126],'f8de7e',16309886], ['nbs-iscc-s:orange.87','orange','orange',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-s:orange.89','orange','orange',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-s:orangebrown.16','orangebrown','orange brown',[114,47,55],'722f37',7483191], ['nbs-iscc-s:orangebrown.37','orangebrown','orange brown',[203,109,81],'cb6d51',13331793], ['nbs-iscc-s:orangebrown.39','orangebrown','orange brown',[180,116,94],'b4745e',11826270], ['nbs-iscc-s:orangebrown.40','orangebrown','orange brown',[136,45,23],'882d17',8924439], ['nbs-iscc-s:orangebrown.51','orangebrown','orange brown',[190,101,22],'be6516',12477718], ['nbs-iscc-s:orangebrown.53','orangebrown','orange brown',[217,144,88],'d99058',14258264], ['nbs-iscc-s:orangebrown.54','orangebrown','orange brown',[174,105,56],'ae6938',11430200], ['nbs-iscc-s:orangebrown.55','orangebrown','orange brown',[128,70,27],'80461b',8406555], ['nbs-iscc-s:orangebrown.57','orangebrown','orange brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-s:orangebrown.58','orangebrown','orange brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-s:orangebrown.60','orangebrown','orange brown',[149,128,112],'958070',9797744], ['nbs-iscc-s:orangebrown.79','orangebrown','orange brown',[174,155,130],'ae9b82',11443074], ['nbs-iscc-s:orangebuff.29','orangebuff','orange buff',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-s:orangered.6','orangered','orange red',[192,128,129],'c08081',12615809], ['nbs-iscc-s:orangered.35','orangered','orange red',[217,96,59],'d9603b',14245947], ['nbs-iscc-s:orangered.37','orangered','orange red',[203,109,81],'cb6d51',13331793], ['nbs-iscc-s:orangevermilion.37','orangevermilion','orange vermilion',[203,109,81],'cb6d51',13331793], ['nbs-iscc-s:orangevermilion.51','orangevermilion','orange vermilion',[190,101,22],'be6516',12477718], ['nbs-iscc-s:orangeyellow.48','orangeyellow','orange yellow',[243,132,0],'f38400',15959040], ['nbs-iscc-s:orangeyellow.49','orangeyellow','orange yellow',[253,148,63],'fd943f',16618559], ['nbs-iscc-s:orangeyellow.50','orangeyellow','orange yellow',[237,135,45],'ed872d',15566637], ['nbs-iscc-s:orangeyellow.52','orangeyellow','orange yellow',[250,181,127],'fab57f',16430463], ['nbs-iscc-s:orangeyellow.67','orangeyellow','orange yellow',[255,193,79],'ffc14f',16761167], ['nbs-iscc-s:orangeyellow.68','orangeyellow','orange yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-s:orangeyellow.69','orangeyellow','orange yellow',[201,133,0],'c98500',13206784], ['nbs-iscc-s:orangeyellow.70','orangeyellow','orange yellow',[251,201,127],'fbc97f',16501119], ['nbs-iscc-s:orangeyellow.71','orangeyellow','orange yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-s:paleblue.186','paleblue','pale blue',[83,104,120],'536878',5466232], ['nbs-iscc-s:paleblue.232','paleblue','pale blue',[191,185,189],'bfb9bd',12564925], ['nbs-iscc-s:palebrown.53','palebrown','pale brown',[217,144,88],'d99058',14258264], ['nbs-iscc-s:palebrown.57','palebrown','pale brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-s:palegraygreen.121','palegraygreen','pale gray green',[218,223,183],'dadfb7',14344119], ['nbs-iscc-s:palegreen.119','palegreen','pale green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-s:palegreen.120','palegreen','pale green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-s:palegreen.143','palegreen','pale green',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-s:palelilac.252','palelilac','pale lilac',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-s:paleolivegreen.120','paleolivegreen','pale olive green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-s:paleyellowgreen.116','paleyellowgreen','pale yellow-green',[189,218,87],'bdda57',12442199], ['nbs-iscc-s:paleyellowgreen.119','paleyellowgreen','pale yellow-green',[201,220,137],'c9dc89',13229193], ['nbs-iscc-s:paleyellowgreen.130','paleyellowgreen','pale yellow-green',[131,211,125],'83d37d',8639357], ['nbs-iscc-s:peacockblue.169','peacockblue','peacock blue',[0,119,145],'007791',30609], ['nbs-iscc-s:pink.2','pink','pink',[234,147,153],'ea9399',15373209], ['nbs-iscc-s:pink.3','pink','pink',[228,113,122],'e4717a',14971258], ['nbs-iscc-s:pink.26','pink','pink',[248,131,121],'f88379',16286585], ['nbs-iscc-s:pink.246','pink','pink',[255,200,214],'ffc8d6',16763094], ['nbs-iscc-s:pink.247','pink','pink',[230,143,172],'e68fac',15110060], ['nbs-iscc-s:pink.248','pink','pink',[222,111,161],'de6fa1',14577569], ['nbs-iscc-s:pink.258','pink','pink',[168,81,110],'a8516e',11030894], ['nbs-iscc-s:plum.236','plum','plum',[135,0,116],'870074',8847476], ['nbs-iscc-s:plum.238','plum','plum',[112,41,99],'702963',7350627], ['nbs-iscc-s:plum.256','plum','plum',[120,24,74],'78184a',7870538], ['nbs-iscc-s:prussianblue.170','prussianblue','prussian blue',[46,132,149],'2e8495',3048597], ['nbs-iscc-s:prussianblue.174','prussianblue','prussian blue',[0,73,88],'004958',18776], ['nbs-iscc-s:prussiangreen.160','prussiangreen','prussian green',[0,122,116],'007a74',31348], ['nbs-iscc-s:prussiangreen.161','prussiangreen','prussian green',[0,68,63],'00443f',17471], ['nbs-iscc-s:prussiangreen.164','prussiangreen','prussian green',[49,120,115],'317873',3242099], ['nbs-iscc-s:prussiangreen.170','prussiangreen','prussian green',[46,132,149],'2e8495',3048597], ['nbs-iscc-s:purple.197','purple','purple',[39,36,88],'272458',2565208], ['nbs-iscc-s:purple.200','purple','purple',[78,81,128],'4e5180',5132672], ['nbs-iscc-s:purple.207','purple','purple',[96,78,151],'604e97',6311575], ['nbs-iscc-s:purple.211','purple','purple',[96,78,129],'604e81',6311553], ['nbs-iscc-s:purple.215','purple','purple',[85,76,105],'554c69',5590121], ['nbs-iscc-s:purple.216','purple','purple',[154,78,174],'9a4eae',10112686], ['nbs-iscc-s:purple.218','purple','purple',[135,86,146],'875692',8869522], ['nbs-iscc-s:purple.219','purple','purple',[96,47,107],'602f6b',6303595], ['nbs-iscc-s:purple.223','purple','purple',[134,96,142],'86608e',8806542], ['nbs-iscc-s:purple.241','purple','purple',[145,92,131],'915c83',9526403], ['nbs-iscc-s:purple.242','purple','purple',[93,57,84],'5d3954',6109524], ['nbs-iscc-s:purple.245','purple','purple',[131,100,121],'836479',8610937], ['nbs-iscc-s:purplebrown.228','purplebrown','purple brown',[121,104,120],'796878',7956600], ['nbs-iscc-s:purplishbistre.33','purplishbistre','purplish bistre',[194,172,153],'c2ac99',12758169], ['nbs-iscc-s:red.3','red','red',[228,113,122],'e4717a',14971258], ['nbs-iscc-s:red.5','red','red',[222,165,164],'dea5a4',14591396], ['nbs-iscc-s:red.8','red','red',[196,174,173],'c4aead',12889773], ['nbs-iscc-s:red.12','red','red',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-s:red.19','red','red',[144,93,93],'905d5d',9461085], ['nbs-iscc-s:red.26','red','red',[248,131,121],'f88379',16286585], ['nbs-iscc-s:red.27','red','red',[230,103,97],'e66761',15099745], ['nbs-iscc-s:red.28','red','red',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-s:red.29','red','red',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-s:red.35','red','red',[217,96,59],'d9603b',14245947], ['nbs-iscc-s:red.36','red','red',[170,56,30],'aa381e',11155486], ['nbs-iscc-s:red.37','red','red',[203,109,81],'cb6d51',13331793], ['nbs-iscc-s:redbrown.8','redbrown','red brown',[196,174,173],'c4aead',12889773], ['nbs-iscc-s:redbrown.16','redbrown','red brown',[114,47,55],'722f37',7483191], ['nbs-iscc-s:redbrown.18','redbrown','red brown',[173,136,132],'ad8884',11372676], ['nbs-iscc-s:redbrown.19','redbrown','red brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-s:redbrown.22','redbrown','red brown',[143,129,127],'8f817f',9404799], ['nbs-iscc-s:redbrown.31','redbrown','red brown',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-s:redbrown.32','redbrown','red brown',[199,173,163],'c7ada3',13086115], ['nbs-iscc-s:redbrown.37','redbrown','red brown',[203,109,81],'cb6d51',13331793], ['nbs-iscc-s:redbrown.38','redbrown','red brown',[158,71,50],'9e4732',10372914], ['nbs-iscc-s:redbrown.42','redbrown','red brown',[168,124,109],'a87c6d',11041901], ['nbs-iscc-s:redbrown.43','redbrown','red brown',[121,68,59],'79443b',7947323], ['nbs-iscc-s:redbrown.51','redbrown','red brown',[190,101,22],'be6516',12477718], ['nbs-iscc-s:redbrown.53','redbrown','red brown',[217,144,88],'d99058',14258264], ['nbs-iscc-s:redbrown.54','redbrown','red brown',[174,105,56],'ae6938',11430200], ['nbs-iscc-s:redbrown.57','redbrown','red brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-s:redbrown.58','redbrown','red brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-s:redbrown.74','redbrown','red brown',[153,101,21],'996515',10052885], ['nbs-iscc-s:redbrown.77','redbrown','red brown',[130,102,68],'826644',8545860], ['nbs-iscc-s:redbrown.95','redbrown','red brown',[108,84,30],'6c541e',7099422], ['nbs-iscc-s:reddishbrown.46','reddishbrown','reddish brown',[103,76,71],'674c47',6769735], ['nbs-iscc-s:redlilac.8','redlilac','red lilac',[196,174,173],'c4aead',12889773], ['nbs-iscc-s:redlilac.258','redlilac','red lilac',[168,81,110],'a8516e',11030894], ['nbs-iscc-s:redlilac.262','redlilac','red lilac',[145,95,109],'915f6d',9527149], ['nbs-iscc-s:redorange.11','redorange','red orange',[190,0,50],'be0032',12451890], ['nbs-iscc-s:redorange.25','redorange','red orange',[255,183,165],'ffb7a5',16758693], ['nbs-iscc-s:redorange.34','redorange','red orange',[226,88,34],'e25822',14833698], ['nbs-iscc-s:redorange.35','redorange','red orange',[217,96,59],'d9603b',14245947], ['nbs-iscc-s:redorange.50','redorange','red orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-s:redpurple.238','redpurple','red purple',[112,41,99],'702963',7350627], ['nbs-iscc-s:redpurple.259','redpurple','red purple',[103,49,71],'673147',6762823], ['nbs-iscc-s:redviolet.216','redviolet','red violet',[154,78,174],'9a4eae',10112686], ['nbs-iscc-s:redviolet.218','redviolet','red violet',[135,86,146],'875692',8869522], ['nbs-iscc-s:redviolet.219','redviolet','red violet',[96,47,107],'602f6b',6303595], ['nbs-iscc-s:redviolet.222','redviolet','red violet',[182,149,192],'b695c0',11965888], ['nbs-iscc-s:redviolet.223','redviolet','red violet',[134,96,142],'86608e',8806542], ['nbs-iscc-s:redviolet.237','redviolet','red violet',[158,79,136],'9e4f88',10375048], ['nbs-iscc-s:redviolet.238','redviolet','red violet',[112,41,99],'702963',7350627], ['nbs-iscc-s:redviolet.240','redviolet','red violet',[183,132,167],'b784a7',12027047], ['nbs-iscc-s:redviolet.241','redviolet','red violet',[145,92,131],'915c83',9526403], ['nbs-iscc-s:redviolet.249','redviolet','red violet',[239,187,204],'efbbcc',15711180], ['nbs-iscc-s:redviolet.250','redviolet','red violet',[213,151,174],'d597ae',13997998], ['nbs-iscc-s:redviolet.253','redviolet','red violet',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-s:redviolet.262','redviolet','red violet',[145,95,109],'915f6d',9527149], ['nbs-iscc-s:rose.1','rose','rose',[255,181,186],'ffb5ba',16758202], ['nbs-iscc-s:rose.2','rose','rose',[234,147,153],'ea9399',15373209], ['nbs-iscc-s:rose.3','rose','rose',[228,113,122],'e4717a',14971258], ['nbs-iscc-s:rose.4','rose','rose',[249,204,202],'f9ccca',16370890], ['nbs-iscc-s:rose.5','rose','rose',[222,165,164],'dea5a4',14591396], ['nbs-iscc-s:rose.6','rose','rose',[192,128,129],'c08081',12615809], ['nbs-iscc-s:rose.12','rose','rose',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-s:rose.13','rose','rose',[132,27,45],'841b2d',8657709], ['nbs-iscc-s:rose.15','rose','rose',[171,78,82],'ab4e52',11226706], ['nbs-iscc-s:rose.19','rose','rose',[144,93,93],'905d5d',9461085], ['nbs-iscc-s:rose.25','rose','rose',[255,183,165],'ffb7a5',16758693], ['nbs-iscc-s:rose.26','rose','rose',[248,131,121],'f88379',16286585], ['nbs-iscc-s:rose.27','rose','rose',[230,103,97],'e66761',15099745], ['nbs-iscc-s:rose.28','rose','rose',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-s:rose.29','rose','rose',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-s:rose.30','rose','rose',[196,131,121],'c48379',12878713], ['nbs-iscc-s:rose.31','rose','rose',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-s:rose.32','rose','rose',[199,173,163],'c7ada3',13086115], ['nbs-iscc-s:rose.37','rose','rose',[203,109,81],'cb6d51',13331793], ['nbs-iscc-s:rose.227','rose','rose',[170,152,169],'aa98a9',11180201], ['nbs-iscc-s:rose.247','rose','rose',[230,143,172],'e68fac',15110060], ['nbs-iscc-s:rose.248','rose','rose',[222,111,161],'de6fa1',14577569], ['nbs-iscc-s:rose.249','rose','rose',[239,187,204],'efbbcc',15711180], ['nbs-iscc-s:rose.250','rose','rose',[213,151,174],'d597ae',13997998], ['nbs-iscc-s:rose.251','rose','rose',[193,126,145],'c17e91',12680849], ['nbs-iscc-s:rose.254','rose','rose',[206,70,118],'ce4676',13518454], ['nbs-iscc-s:rose.255','rose','rose',[179,68,108],'b3446c',11748460], ['nbs-iscc-s:rose.258','rose','rose',[168,81,110],'a8516e',11030894], ['nbs-iscc-s:rose.262','rose','rose',[145,95,109],'915f6d',9527149], ['nbs-iscc-s:rosebrown.11','rosebrown','rose brown',[190,0,50],'be0032',12451890], ['nbs-iscc-s:rosebrown.13','rosebrown','rose brown',[132,27,45],'841b2d',8657709], ['nbs-iscc-s:rosebrown.14','rosebrown','rose brown',[92,9,35],'5c0923',6031651], ['nbs-iscc-s:rosebrown.256','rosebrown','rose brown',[120,24,74],'78184a',7870538], ['nbs-iscc-s:rosebrown.257','rosebrown','rose brown',[84,19,59],'54133b',5509947], ['nbs-iscc-s:rosecarmine.3','rosecarmine','rose carmine',[228,113,122],'e4717a',14971258], ['nbs-iscc-s:rosecarmine.254','rosecarmine','rose carmine',[206,70,118],'ce4676',13518454], ['nbs-iscc-s:rosecarmine.255','rosecarmine','rose carmine',[179,68,108],'b3446c',11748460], ['nbs-iscc-s:rosecarmine.258','rosecarmine','rose carmine',[168,81,110],'a8516e',11030894], ['nbs-iscc-s:roselake.5','roselake','rose lake',[222,165,164],'dea5a4',14591396], ['nbs-iscc-s:roselake.259','roselake','rose lake',[103,49,71],'673147',6762823], ['nbs-iscc-s:roselake.262','roselake','rose lake',[145,95,109],'915f6d',9527149], ['nbs-iscc-s:roselilac.237','roselilac','rose lilac',[158,79,136],'9e4f88',10375048], ['nbs-iscc-s:roselilac.240','roselilac','rose lilac',[183,132,167],'b784a7',12027047], ['nbs-iscc-s:roselilac.250','roselilac','rose lilac',[213,151,174],'d597ae',13997998], ['nbs-iscc-s:roselilac.251','roselilac','rose lilac',[193,126,145],'c17e91',12680849], ['nbs-iscc-s:roselilac.258','roselilac','rose lilac',[168,81,110],'a8516e',11030894], ['nbs-iscc-s:roselilac.262','roselilac','rose lilac',[145,95,109],'915f6d',9527149], ['nbs-iscc-s:rosepink.254','rosepink','rose pink',[206,70,118],'ce4676',13518454], ['nbs-iscc-s:rosered.3','rosered','rose red',[228,113,122],'e4717a',14971258], ['nbs-iscc-s:rosered.15','rosered','rose red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-s:rosered.16','rosered','rose red',[114,47,55],'722f37',7483191], ['nbs-iscc-s:roseviolet.237','roseviolet','rose violet',[158,79,136],'9e4f88',10375048], ['nbs-iscc-s:roseviolet.238','roseviolet','rose violet',[112,41,99],'702963',7350627], ['nbs-iscc-s:roseviolet.241','roseviolet','rose violet',[145,92,131],'915c83',9526403], ['nbs-iscc-s:roseviolet.256','roseviolet','rose violet',[120,24,74],'78184a',7870538], ['nbs-iscc-s:roseviolet.258','roseviolet','rose violet',[168,81,110],'a8516e',11030894], ['nbs-iscc-s:royalblue.179','royalblue','royal blue',[0,65,106],'00416a',16746], ['nbs-iscc-s:salmon.26','salmon','salmon',[248,131,121],'f88379',16286585], ['nbs-iscc-s:salmon.28','salmon','salmon',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-s:salmon.29','salmon','salmon',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-s:salmonrose.2','salmonrose','salmon rose',[234,147,153],'ea9399',15373209], ['nbs-iscc-s:salmonrose.4','salmonrose','salmon rose',[249,204,202],'f9ccca',16370890], ['nbs-iscc-s:salmonrose.26','salmonrose','salmon rose',[248,131,121],'f88379',16286585], ['nbs-iscc-s:salmonrose.28','salmonrose','salmon rose',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-s:salmonrose.29','salmonrose','salmon rose',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-s:scarlet.3','scarlet','scarlet',[228,113,122],'e4717a',14971258], ['nbs-iscc-s:scarlet.11','scarlet','scarlet',[190,0,50],'be0032',12451890], ['nbs-iscc-s:scarlet.12','scarlet','scarlet',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-s:scarlet.15','scarlet','scarlet',[171,78,82],'ab4e52',11226706], ['nbs-iscc-s:scarlet.34','scarlet','scarlet',[226,88,34],'e25822',14833698], ['nbs-iscc-s:sepia.63','sepia','sepia',[142,130,121],'8e8279',9339513], ['nbs-iscc-s:slate.149','slate','slate',[141,163,153],'8da399',9282457], ['nbs-iscc-s:slate.151','slate','slate',[58,75,71],'3a4b47',3820359], ['nbs-iscc-s:slate.155','slate','slate',[125,137,132],'7d8984',8227204], ['nbs-iscc-s:slate.156','slate','slate',[78,87,85],'4e5755',5134165], ['nbs-iscc-s:slate.187','slate','slate',[54,69,79],'36454f',3556687], ['nbs-iscc-s:slate.188','slate','slate',[32,40,48],'202830',2107440], ['nbs-iscc-s:slate.191','slate','slate',[129,135,139],'81878b',8488843], ['nbs-iscc-s:slate.192','slate','slate',[81,88,94],'51585e',5331038], ['nbs-iscc-s:slate.201','slate','slate',[37,36,64],'252440',2434112], ['nbs-iscc-s:slate.204','slate','slate',[76,81,109],'4c516d',5001581], ['nbs-iscc-s:slate.266','slate','slate',[85,85,85],'555555',5592405], ['nbs-iscc-s:slateblue.164','slateblue','slate blue',[49,120,115],'317873',3242099], ['nbs-iscc-s:slateblue.186','slateblue','slate blue',[83,104,120],'536878',5466232], ['nbs-iscc-s:slategreen.109','slategreen','slate green ',[140,135,103],'8c8767',9209703], ['nbs-iscc-s:slategreen.112','slategreen','slate green ',[138,135,118],'8a8776',9078646], ['nbs-iscc-s:slategreen.123','slategreen','slate green ',[64,79,0],'404f00',4214528], ['nbs-iscc-s:slategreen.125','slategreen','slate green ',[74,93,35],'4a5d23',4873507], ['nbs-iscc-s:slategreen.145','slategreen','slate green ',[59,120,97],'3b7861',3897441], ['nbs-iscc-s:slategreen.151','slategreen','slate green ',[58,75,71],'3a4b47',3820359], ['nbs-iscc-s:slategreen.155','slategreen','slate green ',[125,137,132],'7d8984',8227204], ['nbs-iscc-s:straw.87','straw','straw',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-s:turquoiseblue.172','turquoiseblue','turquoise blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-s:turquoisegreen.158','turquoisegreen','turquoise green',[0,136,130],'008882',34946], ['nbs-iscc-s:turquoisegreen.159','turquoisegreen','turquoise green',[0,166,147],'00a693',42643], ['nbs-iscc-s:ultramarine.176','ultramarine','ultramarine',[0,161,194],'00a1c2',41410], ['nbs-iscc-s:ultramarine.177','ultramarine','ultramarine',[73,151,208],'4997d0',4822992], ['nbs-iscc-s:ultramarine.178','ultramarine','ultramarine',[0,103,165],'0067a5',26533], ['nbs-iscc-s:ultramarine.179','ultramarine','ultramarine',[0,65,106],'00416a',16746], ['nbs-iscc-s:ultramarine.181','ultramarine','ultramarine',[112,163,204],'70a3cc',7381964], ['nbs-iscc-s:ultramarine.182','ultramarine','ultramarine',[67,107,149],'436b95',4418453], ['nbs-iscc-s:ultramarine.185','ultramarine','ultramarine',[145,163,176],'91a3b0',9544624], ['nbs-iscc-s:ultramarine.186','ultramarine','ultramarine',[83,104,120],'536878',5466232], ['nbs-iscc-s:ultramarine.194','ultramarine','ultramarine',[48,38,122],'30267a',3155578], ['nbs-iscc-s:ultramarine.195','ultramarine','ultramarine',[108,121,184],'6c79b8',7109048], ['nbs-iscc-s:ultramarine.196','ultramarine','ultramarine',[84,90,167],'545aa7',5528231], ['nbs-iscc-s:ultramarine.198','ultramarine','ultramarine',[179,188,226],'b3bce2',11779298], ['nbs-iscc-s:ultramarine.199','ultramarine','ultramarine',[135,145,191],'8791bf',8884671], ['nbs-iscc-s:ultramarine.200','ultramarine','ultramarine',[78,81,128],'4e5180',5132672], ['nbs-iscc-s:ultramarine.202','ultramarine','ultramarine',[192,200,225],'c0c8e1',12634337], ['nbs-iscc-s:ultramarine.203','ultramarine','ultramarine',[140,146,172],'8c92ac',9212588], ['nbs-iscc-s:ultramarine.204','ultramarine','ultramarine',[76,81,109],'4c516d',5001581], ['nbs-iscc-s:ultramarine.210','ultramarine','ultramarine',[140,130,182],'8c82b6',9208502], ['nbs-iscc-s:umberbrown.61','umberbrown','umber brown',[99,81,71],'635147',6508871], ['nbs-iscc-s:vermilion.6','vermilion','vermilion',[192,128,129],'c08081',12615809], ['nbs-iscc-s:vermilion.12','vermilion','vermilion',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-s:vermilion.15','vermilion','vermilion',[171,78,82],'ab4e52',11226706], ['nbs-iscc-s:vermilion.18','vermilion','vermilion',[173,136,132],'ad8884',11372676], ['nbs-iscc-s:vermilion.19','vermilion','vermilion',[144,93,93],'905d5d',9461085], ['nbs-iscc-s:vermilion.26','vermilion','vermilion',[248,131,121],'f88379',16286585], ['nbs-iscc-s:vermilion.27','vermilion','vermilion',[230,103,97],'e66761',15099745], ['nbs-iscc-s:vermilion.30','vermilion','vermilion',[196,131,121],'c48379',12878713], ['nbs-iscc-s:vermilion.35','vermilion','vermilion',[217,96,59],'d9603b',14245947], ['nbs-iscc-s:vermilion.36','vermilion','vermilion',[170,56,30],'aa381e',11155486], ['nbs-iscc-s:vermilion.37','vermilion','vermilion',[203,109,81],'cb6d51',13331793], ['nbs-iscc-s:vermilion.38','vermilion','vermilion',[158,71,50],'9e4732',10372914], ['nbs-iscc-s:violet.16','violet','violet',[114,47,55],'722f37',7483191], ['nbs-iscc-s:violet.200','violet','violet',[78,81,128],'4e5180',5132672], ['nbs-iscc-s:violet.206','violet','violet',[126,115,184],'7e73b8',8287160], ['nbs-iscc-s:violet.210','violet','violet',[140,130,182],'8c82b6',9208502], ['nbs-iscc-s:violet.211','violet','violet',[96,78,129],'604e81',6311553], ['nbs-iscc-s:violet.214','violet','violet',[150,144,171],'9690ab',9867435], ['nbs-iscc-s:violet.217','violet','violet',[211,153,230],'d399e6',13867494], ['nbs-iscc-s:violet.218','violet','violet',[135,86,146],'875692',8869522], ['nbs-iscc-s:violet.222','violet','violet',[182,149,192],'b695c0',11965888], ['nbs-iscc-s:violet.223','violet','violet',[134,96,142],'86608e',8806542], ['nbs-iscc-s:violet.226','violet','violet',[214,202,221],'d6cadd',14076637], ['nbs-iscc-s:violet.227','violet','violet',[170,152,169],'aa98a9',11180201], ['nbs-iscc-s:violet.228','violet','violet',[121,104,120],'796878',7956600], ['nbs-iscc-s:violet.229','violet','violet',[80,64,77],'50404d',5259341], ['nbs-iscc-s:violet.238','violet','violet',[112,41,99],'702963',7350627], ['nbs-iscc-s:violet.240','violet','violet',[183,132,167],'b784a7',12027047], ['nbs-iscc-s:violet.244','violet','violet',[170,138,158],'aa8a9e',11176606], ['nbs-iscc-s:violet.245','violet','violet',[131,100,121],'836479',8610937], ['nbs-iscc-s:violet.250','violet','violet',[213,151,174],'d597ae',13997998], ['nbs-iscc-s:violet.252','violet','violet',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-s:violet.253','violet','violet',[195,166,177],'c3a6b1',12822193], ['nbs-iscc-s:violet.261','violet','violet',[175,134,142],'af868e',11503246], ['nbs-iscc-s:violetblack.20','violetblack','violet black',[84,61,63],'543d3f',5520703], ['nbs-iscc-s:violetblack.234','violetblack','violet black',[93,85,91],'5d555b',6116699], ['nbs-iscc-s:violetblue.196','violetblue','violet blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-s:violetbrown.19','violetbrown','violet brown',[144,93,93],'905d5d',9461085], ['nbs-iscc-s:violetbrown.228','violetbrown','violet brown',[121,104,120],'796878',7956600], ['nbs-iscc-s:violetbrown.259','violetbrown','violet brown',[103,49,71],'673147',6762823], ['nbs-iscc-s:yellow.28','yellow','yellow',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-s:yellow.29','yellow','yellow',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-s:yellow.48','yellow','yellow',[243,132,0],'f38400',15959040], ['nbs-iscc-s:yellow.49','yellow','yellow',[253,148,63],'fd943f',16618559], ['nbs-iscc-s:yellow.50','yellow','yellow',[237,135,45],'ed872d',15566637], ['nbs-iscc-s:yellow.52','yellow','yellow',[250,181,127],'fab57f',16430463], ['nbs-iscc-s:yellow.53','yellow','yellow',[217,144,88],'d99058',14258264], ['nbs-iscc-s:yellow.57','yellow','yellow',[166,123,91],'a67b5b',10910555], ['nbs-iscc-s:yellow.66','yellow','yellow',[246,166,0],'f6a600',16164352], ['nbs-iscc-s:yellow.67','yellow','yellow',[255,193,79],'ffc14f',16761167], ['nbs-iscc-s:yellow.68','yellow','yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-s:yellow.69','yellow','yellow',[201,133,0],'c98500',13206784], ['nbs-iscc-s:yellow.70','yellow','yellow',[251,201,127],'fbc97f',16501119], ['nbs-iscc-s:yellow.71','yellow','yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-s:yellow.72','yellow','yellow',[190,138,61],'be8a3d',12487229], ['nbs-iscc-s:yellow.73','yellow','yellow',[250,214,165],'fad6a5',16438949], ['nbs-iscc-s:yellow.76','yellow','yellow',[193,154,107],'c19a6b',12687979], ['nbs-iscc-s:yellow.82','yellow','yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-s:yellow.83','yellow','yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-s:yellow.84','yellow','yellow',[212,175,55],'d4af37',13938487], ['nbs-iscc-s:yellow.85','yellow','yellow',[175,141,19],'af8d13',11504915], ['nbs-iscc-s:yellow.86','yellow','yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-s:yellow.87','yellow','yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-s:yellow.88','yellow','yellow',[171,145,68],'ab9144',11243844], ['nbs-iscc-s:yellow.89','yellow','yellow',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-s:yellow.90','yellow','yellow',[194,178,128],'c2b280',12759680], ['nbs-iscc-s:yellow.92','yellow','yellow',[240,234,214],'f0ead6',15788758], ['nbs-iscc-s:yellowbrown.33','yellowbrown','yellow brown',[194,172,153],'c2ac99',12758169], ['nbs-iscc-s:yellowbrown.38','yellowbrown','yellow brown',[158,71,50],'9e4732',10372914], ['nbs-iscc-s:yellowbrown.42','yellowbrown','yellow brown',[168,124,109],'a87c6d',11041901], ['nbs-iscc-s:yellowbrown.45','yellowbrown','yellow brown',[151,127,115],'977f73',9928563], ['nbs-iscc-s:yellowbrown.53','yellowbrown','yellow brown',[217,144,88],'d99058',14258264], ['nbs-iscc-s:yellowbrown.54','yellowbrown','yellow brown',[174,105,56],'ae6938',11430200], ['nbs-iscc-s:yellowbrown.55','yellowbrown','yellow brown',[128,70,27],'80461b',8406555], ['nbs-iscc-s:yellowbrown.57','yellowbrown','yellow brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-s:yellowbrown.72','yellowbrown','yellow brown',[190,138,61],'be8a3d',12487229], ['nbs-iscc-s:yellowbrown.74','yellowbrown','yellow brown',[153,101,21],'996515',10052885], ['nbs-iscc-s:yellowbrown.106','yellowbrown','yellow brown',[134,126,54],'867e36',8814134], ['nbs-iscc-s:yellowbuff.29','yellowbuff','yellow buff',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-s:yellowbuff.53','yellowbuff','yellow buff',[217,144,88],'d99058',14258264], ['nbs-iscc-s:yellowbuff.71','yellowbuff','yellow buff',[227,168,87],'e3a857',14919767], ['nbs-iscc-s:yellowbuff.73','yellowbuff','yellow buff',[250,214,165],'fad6a5',16438949], ['nbs-iscc-s:yellowbuff.76','yellowbuff','yellow buff',[193,154,107],'c19a6b',12687979], ['nbs-iscc-s:yellowbuff.89','yellowbuff','yellow buff',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-s:yellowbuff.90','yellowbuff','yellow buff',[194,178,128],'c2b280',12759680], ['nbs-iscc-s:yellowgreen.117','yellowgreen','yellow green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-s:yellowgreen.120','yellowgreen','yellow green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-s:yellowgreen.129','yellowgreen','yellow green',[39,166,76],'27a64c',2598476], ['nbs-iscc-s:yellowgreen.130','yellowgreen','yellow green',[131,211,125],'83d37d',8639357], ['nbs-iscc-s:yellowgreen.131','yellowgreen','yellow green',[68,148,74],'44944a',4494410], ['nbs-iscc-s:yellowgreen.132','yellowgreen','yellow green',[0,98,45],'00622d',25133], ['nbs-iscc-s:yellowgreen.134','yellowgreen','yellow green',[182,229,175],'b6e5af',11986351], ['nbs-iscc-s:yellowgreen.135','yellowgreen','yellow green',[147,197,146],'93c592',9684370], ['nbs-iscc-s:yellowgreen.136','yellowgreen','yellow green',[103,146,103],'679267',6787687], ['nbs-iscc-s:yellowgreen.137','yellowgreen','yellow green',[53,94,59],'355e3b',3497531], ['nbs-iscc-s:yellowgreen.139','yellowgreen','yellow green',[0,136,86],'008856',34902], ['nbs-iscc-s:yellowgreen.140','yellowgreen','yellow green',[62,180,137],'3eb489',4109449], ['nbs-iscc-s:yellowgreen.141','yellowgreen','yellow green',[0,121,89],'007959',31065], ['nbs-iscc-s:yellowgreen.143','yellowgreen','yellow green',[142,209,178],'8ed1b2',9359794], ['nbs-iscc-s:yellowgreen.144','yellowgreen','yellow green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-s:yellowgreen.145','yellowgreen','yellow green',[59,120,97],'3b7861',3897441], ['nbs-iscc-s:yelloworange.50','yelloworange','yellow orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-s:yelloworange.53','yelloworange','yellow orange',[217,144,88],'d99058',14258264] ]; } sub _description { return { 'subtitle' => 'Postage-Stamp Color Names', 'title' => 'NBS/ISCC S', 'description' => ' Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (S) Postage-Stamp Color Names Postage-Stamp Color Names, William H. Beck This dictionary is a hybrid of combinatorial and idiosyncratic styles. 178 names map to 905 colors, using 223 of 267 centroids. Despite covering 84% of the centroids, averaging over 5 colors per name makes this dictionary uselessly unspecific. [http://swissnet.ai.mit.edu/~jaffer/Color/Dictionaries#S] ' } } 1; RC.pm100644000765000024 5020211667760546 23006 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionary/NBS_ISCCpackage Color::Library::Dictionary::NBS_ISCC::RC; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::NBS_ISCC::RC; =pod =head1 NAME Color::Library::Dictionary::NBS_ISCC::RC - (NBS/ISCC RC) Rock-Color Chart =head1 DESCRIPTION Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (RC) Rock-Color Chart National Research Council, Rock-Color Chart This combinatorial field-work dictionary's 95 names map to 120 colors, using 89 of 267 centoids. This is less redundant than the others. Unfortunately, the focus on rock colors will not make for a general purpose dictionary. L =head1 COLORS black black #222222 blackish red blackishred #543d3f bluish white bluishwhite #e9e9ed brilliant green brilliantgreen #6aab8e brownish black brownishblack #3e322c brownish gray brownishgray #5b504f dark greenish gray darkgreenishgray #5e716a dark greenish gray darkgreenishgray #4e5755 dark greenish yellow darkgreenishyellow #98943e dark reddish brown darkreddishbrown #79443b dark yellowish brown darkyellowishbrown #7e6d5a dark yellowish green darkyellowishgreen #355e3b dark yellowish orange darkyellowishorange #be8a3d dusky blue duskyblue #536878 dusky blue duskyblue #36454f dusky blue-green duskybluegreen #3a4b47 dusky brown duskybrown #3e322c dusky green duskygreen #1b4d3e dusky red duskyred #722f37 dusky yellow duskyyellow #a18f60 dusky yellow green duskyyellowgreen #8f9779 dusky yellowish brown duskyyellowishbrown #483c32 dusky yellowish green duskyyellowishgreen #355e3b dusky yellowish green duskyyellowishgreen #3a4b47 grayish black grayishblack #222222 grayish blue grayishblue #536878 grayish blue grayishblue #8c92ac grayish blue-green grayishbluegreen #5e716a grayish blue-green grayishbluegreen #317873 grayish brown grayishbrown #635147 grayish green grayishgreen #5e716a grayish green grayishgreen #317873 grayish olive grayisholive #5b5842 grayish olive green grayisholivegreen #515744 grayish orange grayishorange #c19a6b grayish orange pink grayishorangepink #c7ada3 grayish pink grayishpink #ead8d7 grayish purple grayishpurple #796878 grayish red grayishred #905d5d grayish red grayishred #674c47 grayish red purple grayishredpurple #796878 grayish yellow grayishyellow #c2b280 grayish yellow green grayishyellowgreen #8f9779 greenish black greenishblack #31362b greenish black greenishblack #3a4b47 greenish black greenishblack #1a2421 greenish black greenishblack #4e5755 greenish black greenishblack #1e2321 greenish gray greenishgray #8da399 greenish gray greenishgray #7d8984 light blue lightblue #66aabc light blue green lightbluegreen #66ada4 light bluish gray lightbluishgray #b4bcc0 light brown lightbrown #ae6938 light brown lightbrown #a67b5b light brownish gray lightbrownishgray #8e8279 light gray lightgray #b9b8b5 light green lightgreen #6aab8e light greenish gray lightgreenishgray #b2beb5 light olive lightolive #867e36 light olive brown lightolivebrown #867e36 light olive-gray lightolivegray #8e8279 light olive-gray lightolivegray #8a8776 light red lightred #c08081 medium bluish gray mediumbluishgray #81878b medium gray mediumgray #848482 medium gray mediumgray #555555 medium light gray mediumlightgray #848482 moderate blue moderateblue #367588 moderate blue green moderatebluegreen #317873 moderate brown moderatebrown #6f4e37 moderate green moderategreen #3b7861 moderate greenish yellow moderategreenishyellow #b9b57d moderate olive brown moderateolivebrown #665d1e moderate orange pink moderateorangepink #f4c2c2 moderate orange pink moderateorangepink #d9a6a9 moderate pink moderatepink #dea5a4 moderate red moderatered #905d5d moderate reddish brown moderatereddishbrown #9e4732 moderate reddish orange moderatereddishorange #b4745e moderate yellow moderateyellow #c9ae5d moderate yellow green moderateyellowgreen #8a9a5b moderate yellowish brown moderateyellowishbrown #826644 moderate yellowish green moderateyellowishgreen #679267 olive black oliveblack #363527 olive black oliveblack #57554c olive gray olivegray #57554c pale blue paleblue #66aabc pale blue paleblue #91a3b0 pale blue green palebluegreen #8da399 pale brown palebrown #977f73 pale green palegreen #8da399 pale greenish yellow palegreenishyellow #dadfb7 pale olive paleolive #8c8767 pale pink palepink #e8ccd7 pale purple palepurple #aa98a9 pale red palered #ad8884 pale red palered #977f73 pale reddish brown palereddishbrown #a87c6d pale red purple paleredpurple #aa98a9 pale yellowish brown paleyellowishbrown #ae9b82 pale yellowish green paleyellowishgreen #8da399 pale yellowish orange paleyellowishorange #fad6a5 pinkish gray pinkishgray #c1b6b3 very dark red verydarkred #722f37 very dusky purple veryduskypurple #563c5c very dusky purple veryduskypurple #50404d very dusky purple veryduskypurple #291e29 very dusky red veryduskyred #674c47 very dusky red veryduskyred #43302e very dusky red purple veryduskyredpurple #50404d very dusky red purple veryduskyredpurple #291e29 very dusky red purple veryduskyredpurple #673147 very dusky red purple veryduskyredpurple #38152c very light gray verylightgray #b9b8b5 very pale blue verypaleblue #bcd4e6 very pale green verypalegreen #c7e6d7 very pale orange verypaleorange #bfb8a5 white white #f2f3f4 yellowish gray yellowishgray #bfb8a5 =cut sub _load_color_list() { return [ ['nbs-iscc-rc:black.267','black','black',[34,34,34],'222222',2236962], ['nbs-iscc-rc:blackishred.20','blackishred','blackish red',[84,61,63],'543d3f',5520703], ['nbs-iscc-rc:bluishwhite.189','bluishwhite','bluish white',[233,233,237],'e9e9ed',15329773], ['nbs-iscc-rc:brilliantgreen.144','brilliantgreen','brilliant green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-rc:brownishblack.62','brownishblack','brownish black',[62,50,44],'3e322c',4076076], ['nbs-iscc-rc:brownishgray.64','brownishgray','brownish gray',[91,80,79],'5b504f',5984335], ['nbs-iscc-rc:darkgreenishgray.150','darkgreenishgray','dark greenish gray',[94,113,106],'5e716a',6189418], ['nbs-iscc-rc:darkgreenishgray.156','darkgreenishgray','dark greenish gray',[78,87,85],'4e5755',5134165], ['nbs-iscc-rc:darkgreenishyellow.103','darkgreenishyellow','dark greenish yellow',[152,148,62],'98943e',9999422], ['nbs-iscc-rc:darkreddishbrown.43','darkreddishbrown','dark reddish brown',[121,68,59],'79443b',7947323], ['nbs-iscc-rc:darkyellowishbrown.80','darkyellowishbrown','dark yellowish brown',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-rc:darkyellowishgreen.137','darkyellowishgreen','dark yellowish green',[53,94,59],'355e3b',3497531], ['nbs-iscc-rc:darkyellowishorange.72','darkyellowishorange','dark yellowish orange',[190,138,61],'be8a3d',12487229], ['nbs-iscc-rc:duskyblue.186','duskyblue','dusky blue',[83,104,120],'536878',5466232], ['nbs-iscc-rc:duskyblue.187','duskyblue','dusky blue',[54,69,79],'36454f',3556687], ['nbs-iscc-rc:duskybluegreen.151','duskybluegreen','dusky blue-green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-rc:duskybrown.62','duskybrown','dusky brown ',[62,50,44],'3e322c',4076076], ['nbs-iscc-rc:duskygreen.146','duskygreen','dusky green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-rc:duskyred.16','duskyred','dusky red',[114,47,55],'722f37',7483191], ['nbs-iscc-rc:duskyyellow.91','duskyyellow','dusky yellow',[161,143,96],'a18f60',10588000], ['nbs-iscc-rc:duskyyellowgreen.122','duskyyellowgreen','dusky yellow green',[143,151,121],'8f9779',9410425], ['nbs-iscc-rc:duskyyellowishbrown.81','duskyyellowishbrown','dusky yellowish brown',[72,60,50],'483c32',4734002], ['nbs-iscc-rc:duskyyellowishgreen.137','duskyyellowishgreen','dusky yellowish green',[53,94,59],'355e3b',3497531], ['nbs-iscc-rc:duskyyellowishgreen.151','duskyyellowishgreen','dusky yellowish green',[58,75,71],'3a4b47',3820359], ['nbs-iscc-rc:grayishblack.267','grayishblack','grayish black',[34,34,34],'222222',2236962], ['nbs-iscc-rc:grayishblue.186','grayishblue','grayish blue',[83,104,120],'536878',5466232], ['nbs-iscc-rc:grayishblue.203','grayishblue','grayish blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-rc:grayishbluegreen.150','grayishbluegreen','grayish blue-green',[94,113,106],'5e716a',6189418], ['nbs-iscc-rc:grayishbluegreen.164','grayishbluegreen','grayish blue-green',[49,120,115],'317873',3242099], ['nbs-iscc-rc:grayishbrown.61','grayishbrown','grayish brown',[99,81,71],'635147',6508871], ['nbs-iscc-rc:grayishgreen.150','grayishgreen','grayish green',[94,113,106],'5e716a',6189418], ['nbs-iscc-rc:grayishgreen.164','grayishgreen','grayish green',[49,120,115],'317873',3242099], ['nbs-iscc-rc:grayisholive.110','grayisholive','grayish olive',[91,88,66],'5b5842',5986370], ['nbs-iscc-rc:grayisholivegreen.127','grayisholivegreen','grayish olive green',[81,87,68],'515744',5330756], ['nbs-iscc-rc:grayishorange.76','grayishorange','grayish orange',[193,154,107],'c19a6b',12687979], ['nbs-iscc-rc:grayishorangepink.32','grayishorangepink','grayish orange pink',[199,173,163],'c7ada3',13086115], ['nbs-iscc-rc:grayishpink.7','grayishpink','grayish pink',[234,216,215],'ead8d7',15390935], ['nbs-iscc-rc:grayishpurple.228','grayishpurple','grayish purple',[121,104,120],'796878',7956600], ['nbs-iscc-rc:grayishred.19','grayishred','grayish red',[144,93,93],'905d5d',9461085], ['nbs-iscc-rc:grayishred.46','grayishred','grayish red',[103,76,71],'674c47',6769735], ['nbs-iscc-rc:grayishredpurple.228','grayishredpurple','grayish red purple',[121,104,120],'796878',7956600], ['nbs-iscc-rc:grayishyellow.90','grayishyellow','grayish yellow',[194,178,128],'c2b280',12759680], ['nbs-iscc-rc:grayishyellowgreen.122','grayishyellowgreen','grayish yellow green ',[143,151,121],'8f9779',9410425], ['nbs-iscc-rc:greenishblack.128','greenishblack','greenish black',[49,54,43],'31362b',3225131], ['nbs-iscc-rc:greenishblack.151','greenishblack','greenish black',[58,75,71],'3a4b47',3820359], ['nbs-iscc-rc:greenishblack.152','greenishblack','greenish black',[26,36,33],'1a2421',1713185], ['nbs-iscc-rc:greenishblack.156','greenishblack','greenish black',[78,87,85],'4e5755',5134165], ['nbs-iscc-rc:greenishblack.157','greenishblack','greenish black',[30,35,33],'1e2321',1975073], ['nbs-iscc-rc:greenishgray.149','greenishgray','greenish gray',[141,163,153],'8da399',9282457], ['nbs-iscc-rc:greenishgray.155','greenishgray','greenish gray',[125,137,132],'7d8984',8227204], ['nbs-iscc-rc:lightblue.172','lightblue','light blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-rc:lightbluegreen.163','lightbluegreen','light blue green',[102,173,164],'66ada4',6729124], ['nbs-iscc-rc:lightbluishgray.190','lightbluishgray','light bluish gray',[180,188,192],'b4bcc0',11844800], ['nbs-iscc-rc:lightbrown.54','lightbrown','light brown',[174,105,56],'ae6938',11430200], ['nbs-iscc-rc:lightbrown.57','lightbrown','light brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-rc:lightbrownishgray.63','lightbrownishgray','light brownish gray',[142,130,121],'8e8279',9339513], ['nbs-iscc-rc:lightgray.264','lightgray','light gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-rc:lightgreen.144','lightgreen','light green',[106,171,142],'6aab8e',6990734], ['nbs-iscc-rc:lightgreenishgray.154','lightgreenishgray','light greenish gray',[178,190,181],'b2beb5',11714229], ['nbs-iscc-rc:lightolive.106','lightolive','light olive',[134,126,54],'867e36',8814134], ['nbs-iscc-rc:lightolivebrown.106','lightolivebrown','light olive brown',[134,126,54],'867e36',8814134], ['nbs-iscc-rc:lightolivegray.63','lightolivegray','light olive-gray',[142,130,121],'8e8279',9339513], ['nbs-iscc-rc:lightolivegray.112','lightolivegray','light olive-gray',[138,135,118],'8a8776',9078646], ['nbs-iscc-rc:lightred.6','lightred','light red',[192,128,129],'c08081',12615809], ['nbs-iscc-rc:mediumbluishgray.191','mediumbluishgray','medium bluish gray',[129,135,139],'81878b',8488843], ['nbs-iscc-rc:mediumgray.265','mediumgray','medium gray',[132,132,130],'848482',8684674], ['nbs-iscc-rc:mediumgray.266','mediumgray','medium gray',[85,85,85],'555555',5592405], ['nbs-iscc-rc:mediumlightgray.265','mediumlightgray','medium light gray ',[132,132,130],'848482',8684674], ['nbs-iscc-rc:moderateblue.173','moderateblue','moderate blue',[54,117,136],'367588',3569032], ['nbs-iscc-rc:moderatebluegreen.164','moderatebluegreen','moderate blue green',[49,120,115],'317873',3242099], ['nbs-iscc-rc:moderatebrown.58','moderatebrown','moderate brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-rc:moderategreen.145','moderategreen','moderate green',[59,120,97],'3b7861',3897441], ['nbs-iscc-rc:moderategreenishyellow.105','moderategreenishyellow','moderate greenish yellow',[185,181,125],'b9b57d',12170621], ['nbs-iscc-rc:moderateolivebrown.107','moderateolivebrown','moderate olive brown',[102,93,30],'665d1e',6708510], ['nbs-iscc-rc:moderateorangepink.28','moderateorangepink','moderate orange pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-rc:moderateorangepink.29','moderateorangepink','moderate orange pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-rc:moderatepink.5','moderatepink','moderate pink',[222,165,164],'dea5a4',14591396], ['nbs-iscc-rc:moderatered.19','moderatered','moderate red',[144,93,93],'905d5d',9461085], ['nbs-iscc-rc:moderatereddishbrown.38','moderatereddishbrown','moderate reddish brown',[158,71,50],'9e4732',10372914], ['nbs-iscc-rc:moderatereddishorange.39','moderatereddishorange','moderate reddish orange',[180,116,94],'b4745e',11826270], ['nbs-iscc-rc:moderateyellow.87','moderateyellow','moderate yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-rc:moderateyellowgreen.120','moderateyellowgreen','moderate yellow green',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-rc:moderateyellowishbrown.77','moderateyellowishbrown','moderate yellowish brown',[130,102,68],'826644',8545860], ['nbs-iscc-rc:moderateyellowishgreen.136','moderateyellowishgreen','moderate yellowish green',[103,146,103],'679267',6787687], ['nbs-iscc-rc:oliveblack.111','oliveblack','olive black',[54,53,39],'363527',3552551], ['nbs-iscc-rc:oliveblack.113','oliveblack','olive black',[87,85,76],'57554c',5723468], ['nbs-iscc-rc:olivegray.113','olivegray','olive gray',[87,85,76],'57554c',5723468], ['nbs-iscc-rc:paleblue.172','paleblue','pale blue',[102,170,188],'66aabc',6728380], ['nbs-iscc-rc:paleblue.185','paleblue','pale blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-rc:palebluegreen.149','palebluegreen','pale blue green',[141,163,153],'8da399',9282457], ['nbs-iscc-rc:palebrown.45','palebrown','pale brown',[151,127,115],'977f73',9928563], ['nbs-iscc-rc:palegreen.149','palegreen','pale green',[141,163,153],'8da399',9282457], ['nbs-iscc-rc:palegreenishyellow.121','palegreenishyellow','pale greenish yellow',[218,223,183],'dadfb7',14344119], ['nbs-iscc-rc:paleolive.109','paleolive','pale olive',[140,135,103],'8c8767',9209703], ['nbs-iscc-rc:palepink.252','palepink','pale pink',[232,204,215],'e8ccd7',15256791], ['nbs-iscc-rc:palepurple.227','palepurple','pale purple',[170,152,169],'aa98a9',11180201], ['nbs-iscc-rc:palered.18','palered','pale red',[173,136,132],'ad8884',11372676], ['nbs-iscc-rc:palered.45','palered','pale red',[151,127,115],'977f73',9928563], ['nbs-iscc-rc:palereddishbrown.42','palereddishbrown','pale reddish brown',[168,124,109],'a87c6d',11041901], ['nbs-iscc-rc:paleredpurple.227','paleredpurple','pale red purple ',[170,152,169],'aa98a9',11180201], ['nbs-iscc-rc:paleyellowishbrown.79','paleyellowishbrown','pale yellowish brown',[174,155,130],'ae9b82',11443074], ['nbs-iscc-rc:paleyellowishgreen.149','paleyellowishgreen','pale yellowish green',[141,163,153],'8da399',9282457], ['nbs-iscc-rc:paleyellowishorange.73','paleyellowishorange','pale yellowish orange',[250,214,165],'fad6a5',16438949], ['nbs-iscc-rc:pinkishgray.10','pinkishgray','pinkish gray',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-rc:verydarkred.16','verydarkred','very dark red',[114,47,55],'722f37',7483191], ['nbs-iscc-rc:veryduskypurple.224','veryduskypurple','very dusky purple',[86,60,92],'563c5c',5651548], ['nbs-iscc-rc:veryduskypurple.229','veryduskypurple','very dusky purple',[80,64,77],'50404d',5259341], ['nbs-iscc-rc:veryduskypurple.230','veryduskypurple','very dusky purple',[41,30,41],'291e29',2694697], ['nbs-iscc-rc:veryduskyred.46','veryduskyred','very dusky red',[103,76,71],'674c47',6769735], ['nbs-iscc-rc:veryduskyred.47','veryduskyred','very dusky red',[67,48,46],'43302e',4403246], ['nbs-iscc-rc:veryduskyredpurple.229','veryduskyredpurple','very dusky red purple',[80,64,77],'50404d',5259341], ['nbs-iscc-rc:veryduskyredpurple.230','veryduskyredpurple','very dusky red purple',[41,30,41],'291e29',2694697], ['nbs-iscc-rc:veryduskyredpurple.259','veryduskyredpurple','very dusky red purple',[103,49,71],'673147',6762823], ['nbs-iscc-rc:veryduskyredpurple.260','veryduskyredpurple','very dusky red purple',[56,21,44],'38152c',3675436], ['nbs-iscc-rc:verylightgray.264','verylightgray','very light gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-rc:verypaleblue.184','verypaleblue','very pale blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-rc:verypalegreen.148','verypalegreen','very pale green',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-rc:verypaleorange.93','verypaleorange','very pale orange',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-rc:white.263','white','white',[242,243,244],'f2f3f4',15922164], ['nbs-iscc-rc:yellowishgray.93','yellowishgray','yellowish gray',[191,184,165],'bfb8a5',12564645] ]; } sub _description { return { 'subtitle' => 'Rock-Color Chart', 'title' => 'NBS/ISCC RC', 'description' => ' Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (RC) Rock-Color Chart National Research Council, Rock-Color Chart This combinatorial field-work dictionary\'s 95 names map to 120 colors, using 89 of 267 centoids. This is less redundant than the others. Unfortunately, the focus on rock colors will not make for a general purpose dictionary. [http://swissnet.ai.mit.edu/~jaffer/Color/Dictionaries#RC] ' } } 1; SC.pm100644000765000024 6410111667760546 23012 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionary/NBS_ISCCpackage Color::Library::Dictionary::NBS_ISCC::SC; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::NBS_ISCC::SC; =pod =head1 NAME Color::Library::Dictionary::NBS_ISCC::SC - (NBS/ISCC SC) Soil Color Charts =head1 DESCRIPTION Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (SC) Soil Color Charts U.S. Department of Agriculture Soil Color Charts This combinatorial field-work dictionary's 50 names mape to 176 colors, using 76 of 267 centroids. Again, its focus on soil colors limits its general usefulness. L =head1 COLORS black black #3e322c black black #28201c black black #3b3121 black black #363527 black black #25241d black black #222222 brown brown #a67b5b brown brown #6f4e37 brown brown #958070 brown brown #635147 brown brown #826644 brown brown #7e6d5a brownish yellow brownishyellow #be8a3d brownish yellow brownishyellow #c19a6b dark brown darkbrown #6f4e37 dark brown darkbrown #635147 dark brown darkbrown #826644 dark brown darkbrown #4b3621 dark brown darkbrown #7e6d5a dark gray darkgray #5b504f dark gray darkgray #57554c dark gray darkgray #555555 dark grayish brown darkgrayishbrown #7e6d5a dark grayish brown darkgrayishbrown #6c541e dark olive darkolive #665d1e dark olive darkolive #403d21 dark olive darkolive #363527 dark olive-gray darkolivegray #5b5842 dark red darkred #722f37 dark red darkred #882d17 dark red darkred #56070c dark red darkred #79443b dark red darkred #80461b dark reddish brown darkreddishbrown #79443b dark reddish brown darkreddishbrown #3e1d1e dark reddish brown darkreddishbrown #674c47 dark reddish brown darkreddishbrown #43302e dark reddish brown darkreddishbrown #6f4e37 dark reddish brown darkreddishbrown #422518 dark reddish brown darkreddishbrown #635147 dark reddish brown darkreddishbrown #3e322c dark reddish gray darkreddishgray #5c504f dark reddish gray darkreddishgray #635147 dark reddish gray darkreddishgray #5b504f dark yellowish brown darkyellowishbrown #996515 dark yellowish brown darkyellowishbrown #826644 dark yellowish brown darkyellowishbrown #4b3621 dusky red duskyred #79443b dusky red duskyred #674c47 gray gray #8e8279 gray gray #8a8776 gray gray #848482 grayish brown grayishbrown #7e6d5a grayish brown grayishbrown #967117 light brown lightbrown #a67b5b light brownish gray lightbrownishgray #ae9b82 light brownish gray lightbrownishgray #967117 light gray lightgray #c1b6b3 light gray lightgray #8e8279 light gray lightgray #ae9b82 light gray lightgray #c2b280 light gray lightgray #bfb8a5 light gray lightgray #8a8776 light gray lightgray #b9b8b5 light gray lightgray #848482 light olive brown lightolivebrown #967117 light olive-gray lightolivegray #8c8767 light olive-gray lightolivegray #8a8776 light red lightred #e66761 light red lightred #c48379 light red lightred #cb6d51 light red lightred #b4745e light red lightred #d99058 light reddish brown lightreddishbrown #a87c6d light reddish brown lightreddishbrown #977f73 light reddish brown lightreddishbrown #a67b5b light yellowish brown lightyellowishbrown #c19a6b light yellowish brown lightyellowishbrown #a18f60 olive olive #867e36 olive olive #665d1e olive olive #8c8767 olive olive #5b5842 olive brown olivebrown #6c541e olive brown olivebrown #3b3121 olive gray olivegray #8c8767 olive gray olivegray #5b5842 olive gray olivegray #8a8776 olive yellow oliveyellow #ab9144 pale brown palebrown #c19a6b pale brown palebrown #ae9b82 pale olive paleolive #a18f60 pale olive paleolive #8c8767 pale red palered #ad8884 pale red palered #a87c6d pale red palered #977f73 pale yellow paleyellow #f3e5ab pale yellow paleyellow #c2b280 pink pink #f4c2c2 pink pink #d9a6a9 pink pink #ecd5c5 pink pink #c7ada3 pink pink #c2ac99 pink pink #fad6a5 pink pink #c19a6b pinkish gray pinkishgray #c7ada3 pinkish gray pinkishgray #c2ac99 pinkish gray pinkishgray #977f73 pinkish gray pinkishgray #958070 pinkish white pinkishwhite #ecd5c5 pinkish white pinkishwhite #c7ada3 pinkish white pinkishwhite #c2ac99 red red #ab4e52 red red #905d5d red red #cb6d51 red red #9e4732 red red #b4745e red red #79443b red red #ae6938 red red #80461b reddish black reddishblack #282022 reddish black reddishblack #3e1d1e reddish black reddishblack #43302e reddish black reddishblack #3e322c reddish black reddishblack #28201c reddish brown reddishbrown #a87c6d reddish brown reddishbrown #79443b reddish brown reddishbrown #977f73 reddish brown reddishbrown #674c47 reddish brown reddishbrown #a67b5b reddish brown reddishbrown #6f4e37 reddish gray reddishgray #8f817f reddish gray reddishgray #977f73 reddish gray reddishgray #958070 reddish gray reddishgray #8e8279 reddish yellow reddishyellow #fab57f reddish yellow reddishyellow #d99058 reddish yellow reddishyellow #fbc97f reddish yellow reddishyellow #e3a857 reddish yellow reddishyellow #be8a3d strong brown strongbrown #80461b strong brown strongbrown #996515 very dark brown verydarkbrown #422518 very dark brown verydarkbrown #3e322c very dark brown verydarkbrown #4b3621 very dark brown verydarkbrown #483c32 very dark gray verydarkgray #5b504f very dark gray verydarkgray #57554c very dark gray verydarkgray #555555 very dark grayish brown verydarkgrayishbrown #483c32 very dark grayish brown verydarkgrayishbrown #6c541e very dusky red veryduskyred #3e1d1e very dusky red veryduskyred #43302e very pale brown verypalebrown #c2ac99 very pale brown verypalebrown #fad6a5 very pale brown verypalebrown #c19a6b very pale brown verypalebrown #ae9b82 weak red weakred #905d5d weak red weakred #a87c6d weak red weakred #79443b weak red weakred #977f73 weak red weakred #674c47 white white #eae3e1 white white #c1b6b3 white white #fad6a5 white white #f0ead6 white white #bfb8a5 white white #f2f3f4 white white #b9b8b5 yellow yellow #fbc97f yellow yellow #e3a857 yellow yellow #f8de7e yellow yellow #c9ae5d yellowish brown yellowishbrown #996515 yellowish brown yellowishbrown #826644 yellow red yellowred #ae6938 yellow red yellowred #80461b =cut sub _load_color_list() { return [ ['nbs-iscc-sc:black.62','black','black',[62,50,44],'3e322c',4076076], ['nbs-iscc-sc:black.65','black','black',[40,32,28],'28201c',2629660], ['nbs-iscc-sc:black.96','black','black',[59,49,33],'3b3121',3879201], ['nbs-iscc-sc:black.111','black','black',[54,53,39],'363527',3552551], ['nbs-iscc-sc:black.114','black','black',[37,36,29],'25241d',2434077], ['nbs-iscc-sc:black.267','black','black',[34,34,34],'222222',2236962], ['nbs-iscc-sc:brown.57','brown','brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-sc:brown.58','brown','brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-sc:brown.60','brown','brown',[149,128,112],'958070',9797744], ['nbs-iscc-sc:brown.61','brown','brown',[99,81,71],'635147',6508871], ['nbs-iscc-sc:brown.77','brown','brown',[130,102,68],'826644',8545860], ['nbs-iscc-sc:brown.80','brown','brown',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-sc:brownishyellow.72','brownishyellow','brownish yellow',[190,138,61],'be8a3d',12487229], ['nbs-iscc-sc:brownishyellow.76','brownishyellow','brownish yellow',[193,154,107],'c19a6b',12687979], ['nbs-iscc-sc:darkbrown.58','darkbrown','dark brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-sc:darkbrown.61','darkbrown','dark brown',[99,81,71],'635147',6508871], ['nbs-iscc-sc:darkbrown.77','darkbrown','dark brown',[130,102,68],'826644',8545860], ['nbs-iscc-sc:darkbrown.78','darkbrown','dark brown',[75,54,33],'4b3621',4929057], ['nbs-iscc-sc:darkbrown.80','darkbrown','dark brown',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-sc:darkgray.64','darkgray','dark gray',[91,80,79],'5b504f',5984335], ['nbs-iscc-sc:darkgray.113','darkgray','dark gray',[87,85,76],'57554c',5723468], ['nbs-iscc-sc:darkgray.266','darkgray','dark gray',[85,85,85],'555555',5592405], ['nbs-iscc-sc:darkgrayishbrown.80','darkgrayishbrown','dark grayish brown',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-sc:darkgrayishbrown.95','darkgrayishbrown','dark grayish brown',[108,84,30],'6c541e',7099422], ['nbs-iscc-sc:darkolive.107','darkolive','dark olive',[102,93,30],'665d1e',6708510], ['nbs-iscc-sc:darkolive.108','darkolive','dark olive',[64,61,33],'403d21',4209953], ['nbs-iscc-sc:darkolive.111','darkolive','dark olive',[54,53,39],'363527',3552551], ['nbs-iscc-sc:darkolivegray.110','darkolivegray','dark olive-gray',[91,88,66],'5b5842',5986370], ['nbs-iscc-sc:darkred.16','darkred','dark red',[114,47,55],'722f37',7483191], ['nbs-iscc-sc:darkred.40','darkred','dark red',[136,45,23],'882d17',8924439], ['nbs-iscc-sc:darkred.41','darkred','dark red',[86,7,12],'56070c',5637900], ['nbs-iscc-sc:darkred.43','darkred','dark red',[121,68,59],'79443b',7947323], ['nbs-iscc-sc:darkred.55','darkred','dark red',[128,70,27],'80461b',8406555], ['nbs-iscc-sc:darkreddishbrown.43','darkreddishbrown','dark reddish brown',[121,68,59],'79443b',7947323], ['nbs-iscc-sc:darkreddishbrown.44','darkreddishbrown','dark reddish brown',[62,29,30],'3e1d1e',4070686], ['nbs-iscc-sc:darkreddishbrown.46','darkreddishbrown','dark reddish brown',[103,76,71],'674c47',6769735], ['nbs-iscc-sc:darkreddishbrown.47','darkreddishbrown','dark reddish brown',[67,48,46],'43302e',4403246], ['nbs-iscc-sc:darkreddishbrown.58','darkreddishbrown','dark reddish brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-sc:darkreddishbrown.59','darkreddishbrown','dark reddish brown',[66,37,24],'422518',4334872], ['nbs-iscc-sc:darkreddishbrown.61','darkreddishbrown','dark reddish brown',[99,81,71],'635147',6508871], ['nbs-iscc-sc:darkreddishbrown.62','darkreddishbrown','dark reddish brown',[62,50,44],'3e322c',4076076], ['nbs-iscc-sc:darkreddishgray.23','darkreddishgray','dark reddish gray',[92,80,79],'5c504f',6049871], ['nbs-iscc-sc:darkreddishgray.61','darkreddishgray','dark reddish gray',[99,81,71],'635147',6508871], ['nbs-iscc-sc:darkreddishgray.64','darkreddishgray','dark reddish gray',[91,80,79],'5b504f',5984335], ['nbs-iscc-sc:darkyellowishbrown.74','darkyellowishbrown','dark yellowish brown',[153,101,21],'996515',10052885], ['nbs-iscc-sc:darkyellowishbrown.77','darkyellowishbrown','dark yellowish brown',[130,102,68],'826644',8545860], ['nbs-iscc-sc:darkyellowishbrown.78','darkyellowishbrown','dark yellowish brown',[75,54,33],'4b3621',4929057], ['nbs-iscc-sc:duskyred.43','duskyred','dusky red',[121,68,59],'79443b',7947323], ['nbs-iscc-sc:duskyred.46','duskyred','dusky red',[103,76,71],'674c47',6769735], ['nbs-iscc-sc:gray.63','gray','gray',[142,130,121],'8e8279',9339513], ['nbs-iscc-sc:gray.112','gray','gray',[138,135,118],'8a8776',9078646], ['nbs-iscc-sc:gray.265','gray','gray',[132,132,130],'848482',8684674], ['nbs-iscc-sc:grayishbrown.80','grayishbrown','grayish brown',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-sc:grayishbrown.94','grayishbrown','grayish brown',[150,113,23],'967117',9859351], ['nbs-iscc-sc:lightbrown.57','lightbrown','light brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-sc:lightbrownishgray.79','lightbrownishgray','light brownish gray',[174,155,130],'ae9b82',11443074], ['nbs-iscc-sc:lightbrownishgray.94','lightbrownishgray','light brownish gray',[150,113,23],'967117',9859351], ['nbs-iscc-sc:lightgray.10','lightgray','light gray',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-sc:lightgray.63','lightgray','light gray',[142,130,121],'8e8279',9339513], ['nbs-iscc-sc:lightgray.79','lightgray','light gray',[174,155,130],'ae9b82',11443074], ['nbs-iscc-sc:lightgray.90','lightgray','light gray',[194,178,128],'c2b280',12759680], ['nbs-iscc-sc:lightgray.93','lightgray','light gray',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-sc:lightgray.112','lightgray','light gray',[138,135,118],'8a8776',9078646], ['nbs-iscc-sc:lightgray.264','lightgray','light gray',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-sc:lightgray.265','lightgray','light gray',[132,132,130],'848482',8684674], ['nbs-iscc-sc:lightolivebrown.94','lightolivebrown','light olive brown',[150,113,23],'967117',9859351], ['nbs-iscc-sc:lightolivegray.109','lightolivegray','light olive-gray',[140,135,103],'8c8767',9209703], ['nbs-iscc-sc:lightolivegray.112','lightolivegray','light olive-gray',[138,135,118],'8a8776',9078646], ['nbs-iscc-sc:lightred.27','lightred','light red',[230,103,97],'e66761',15099745], ['nbs-iscc-sc:lightred.30','lightred','light red',[196,131,121],'c48379',12878713], ['nbs-iscc-sc:lightred.37','lightred','light red',[203,109,81],'cb6d51',13331793], ['nbs-iscc-sc:lightred.39','lightred','light red',[180,116,94],'b4745e',11826270], ['nbs-iscc-sc:lightred.53','lightred','light red',[217,144,88],'d99058',14258264], ['nbs-iscc-sc:lightreddishbrown.42','lightreddishbrown','light reddish brown',[168,124,109],'a87c6d',11041901], ['nbs-iscc-sc:lightreddishbrown.45','lightreddishbrown','light reddish brown',[151,127,115],'977f73',9928563], ['nbs-iscc-sc:lightreddishbrown.57','lightreddishbrown','light reddish brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-sc:lightyellowishbrown.76','lightyellowishbrown','light yellowish brown',[193,154,107],'c19a6b',12687979], ['nbs-iscc-sc:lightyellowishbrown.91','lightyellowishbrown','light yellowish brown',[161,143,96],'a18f60',10588000], ['nbs-iscc-sc:olive.106','olive','olive',[134,126,54],'867e36',8814134], ['nbs-iscc-sc:olive.107','olive','olive',[102,93,30],'665d1e',6708510], ['nbs-iscc-sc:olive.109','olive','olive',[140,135,103],'8c8767',9209703], ['nbs-iscc-sc:olive.110','olive','olive',[91,88,66],'5b5842',5986370], ['nbs-iscc-sc:olivebrown.95','olivebrown','olive brown',[108,84,30],'6c541e',7099422], ['nbs-iscc-sc:olivebrown.96','olivebrown','olive brown',[59,49,33],'3b3121',3879201], ['nbs-iscc-sc:olivegray.109','olivegray','olive gray',[140,135,103],'8c8767',9209703], ['nbs-iscc-sc:olivegray.110','olivegray','olive gray',[91,88,66],'5b5842',5986370], ['nbs-iscc-sc:olivegray.112','olivegray','olive gray',[138,135,118],'8a8776',9078646], ['nbs-iscc-sc:oliveyellow.88','oliveyellow','olive yellow',[171,145,68],'ab9144',11243844], ['nbs-iscc-sc:palebrown.76','palebrown','pale brown',[193,154,107],'c19a6b',12687979], ['nbs-iscc-sc:palebrown.79','palebrown','pale brown',[174,155,130],'ae9b82',11443074], ['nbs-iscc-sc:paleolive.91','paleolive','pale olive',[161,143,96],'a18f60',10588000], ['nbs-iscc-sc:paleolive.109','paleolive','pale olive',[140,135,103],'8c8767',9209703], ['nbs-iscc-sc:palered.18','palered','pale red',[173,136,132],'ad8884',11372676], ['nbs-iscc-sc:palered.42','palered','pale red',[168,124,109],'a87c6d',11041901], ['nbs-iscc-sc:palered.45','palered','pale red',[151,127,115],'977f73',9928563], ['nbs-iscc-sc:paleyellow.89','paleyellow','pale yellow ',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-sc:paleyellow.90','paleyellow','pale yellow ',[194,178,128],'c2b280',12759680], ['nbs-iscc-sc:pink.28','pink','pink',[244,194,194],'f4c2c2',16040642], ['nbs-iscc-sc:pink.29','pink','pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-sc:pink.31','pink','pink',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-sc:pink.32','pink','pink',[199,173,163],'c7ada3',13086115], ['nbs-iscc-sc:pink.33','pink','pink',[194,172,153],'c2ac99',12758169], ['nbs-iscc-sc:pink.73','pink','pink',[250,214,165],'fad6a5',16438949], ['nbs-iscc-sc:pink.76','pink','pink',[193,154,107],'c19a6b',12687979], ['nbs-iscc-sc:pinkishgray.32','pinkishgray','pinkish gray',[199,173,163],'c7ada3',13086115], ['nbs-iscc-sc:pinkishgray.33','pinkishgray','pinkish gray',[194,172,153],'c2ac99',12758169], ['nbs-iscc-sc:pinkishgray.45','pinkishgray','pinkish gray',[151,127,115],'977f73',9928563], ['nbs-iscc-sc:pinkishgray.60','pinkishgray','pinkish gray',[149,128,112],'958070',9797744], ['nbs-iscc-sc:pinkishwhite.31','pinkishwhite','pinkish white',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-sc:pinkishwhite.32','pinkishwhite','pinkish white',[199,173,163],'c7ada3',13086115], ['nbs-iscc-sc:pinkishwhite.33','pinkishwhite','pinkish white',[194,172,153],'c2ac99',12758169], ['nbs-iscc-sc:red.15','red','red',[171,78,82],'ab4e52',11226706], ['nbs-iscc-sc:red.19','red','red',[144,93,93],'905d5d',9461085], ['nbs-iscc-sc:red.37','red','red',[203,109,81],'cb6d51',13331793], ['nbs-iscc-sc:red.38','red','red',[158,71,50],'9e4732',10372914], ['nbs-iscc-sc:red.39','red','red',[180,116,94],'b4745e',11826270], ['nbs-iscc-sc:red.43','red','red',[121,68,59],'79443b',7947323], ['nbs-iscc-sc:red.54','red','red',[174,105,56],'ae6938',11430200], ['nbs-iscc-sc:red.55','red','red',[128,70,27],'80461b',8406555], ['nbs-iscc-sc:reddishblack.24','reddishblack','reddish black',[40,32,34],'282022',2629666], ['nbs-iscc-sc:reddishblack.44','reddishblack','reddish black',[62,29,30],'3e1d1e',4070686], ['nbs-iscc-sc:reddishblack.47','reddishblack','reddish black',[67,48,46],'43302e',4403246], ['nbs-iscc-sc:reddishblack.62','reddishblack','reddish black',[62,50,44],'3e322c',4076076], ['nbs-iscc-sc:reddishblack.65','reddishblack','reddish black',[40,32,28],'28201c',2629660], ['nbs-iscc-sc:reddishbrown.42','reddishbrown','reddish brown',[168,124,109],'a87c6d',11041901], ['nbs-iscc-sc:reddishbrown.43','reddishbrown','reddish brown',[121,68,59],'79443b',7947323], ['nbs-iscc-sc:reddishbrown.45','reddishbrown','reddish brown',[151,127,115],'977f73',9928563], ['nbs-iscc-sc:reddishbrown.46','reddishbrown','reddish brown',[103,76,71],'674c47',6769735], ['nbs-iscc-sc:reddishbrown.57','reddishbrown','reddish brown',[166,123,91],'a67b5b',10910555], ['nbs-iscc-sc:reddishbrown.58','reddishbrown','reddish brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-sc:reddishgray.22','reddishgray','reddish gray',[143,129,127],'8f817f',9404799], ['nbs-iscc-sc:reddishgray.45','reddishgray','reddish gray',[151,127,115],'977f73',9928563], ['nbs-iscc-sc:reddishgray.60','reddishgray','reddish gray',[149,128,112],'958070',9797744], ['nbs-iscc-sc:reddishgray.63','reddishgray','reddish gray',[142,130,121],'8e8279',9339513], ['nbs-iscc-sc:reddishyellow.52','reddishyellow','reddish yellow',[250,181,127],'fab57f',16430463], ['nbs-iscc-sc:reddishyellow.53','reddishyellow','reddish yellow',[217,144,88],'d99058',14258264], ['nbs-iscc-sc:reddishyellow.70','reddishyellow','reddish yellow',[251,201,127],'fbc97f',16501119], ['nbs-iscc-sc:reddishyellow.71','reddishyellow','reddish yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-sc:reddishyellow.72','reddishyellow','reddish yellow',[190,138,61],'be8a3d',12487229], ['nbs-iscc-sc:strongbrown.55','strongbrown','strong brown',[128,70,27],'80461b',8406555], ['nbs-iscc-sc:strongbrown.74','strongbrown','strong brown',[153,101,21],'996515',10052885], ['nbs-iscc-sc:verydarkbrown.59','verydarkbrown','very dark brown',[66,37,24],'422518',4334872], ['nbs-iscc-sc:verydarkbrown.62','verydarkbrown','very dark brown',[62,50,44],'3e322c',4076076], ['nbs-iscc-sc:verydarkbrown.78','verydarkbrown','very dark brown',[75,54,33],'4b3621',4929057], ['nbs-iscc-sc:verydarkbrown.81','verydarkbrown','very dark brown',[72,60,50],'483c32',4734002], ['nbs-iscc-sc:verydarkgray.64','verydarkgray','very dark gray ',[91,80,79],'5b504f',5984335], ['nbs-iscc-sc:verydarkgray.113','verydarkgray','very dark gray ',[87,85,76],'57554c',5723468], ['nbs-iscc-sc:verydarkgray.266','verydarkgray','very dark gray ',[85,85,85],'555555',5592405], ['nbs-iscc-sc:verydarkgrayishbrown.81','verydarkgrayishbrown','very dark grayish brown',[72,60,50],'483c32',4734002], ['nbs-iscc-sc:verydarkgrayishbrown.95','verydarkgrayishbrown','very dark grayish brown',[108,84,30],'6c541e',7099422], ['nbs-iscc-sc:veryduskyred.44','veryduskyred','very dusky red',[62,29,30],'3e1d1e',4070686], ['nbs-iscc-sc:veryduskyred.47','veryduskyred','very dusky red',[67,48,46],'43302e',4403246], ['nbs-iscc-sc:verypalebrown.33','verypalebrown','very pale brown',[194,172,153],'c2ac99',12758169], ['nbs-iscc-sc:verypalebrown.73','verypalebrown','very pale brown',[250,214,165],'fad6a5',16438949], ['nbs-iscc-sc:verypalebrown.76','verypalebrown','very pale brown',[193,154,107],'c19a6b',12687979], ['nbs-iscc-sc:verypalebrown.79','verypalebrown','very pale brown',[174,155,130],'ae9b82',11443074], ['nbs-iscc-sc:weakred.19','weakred','weak red',[144,93,93],'905d5d',9461085], ['nbs-iscc-sc:weakred.42','weakred','weak red',[168,124,109],'a87c6d',11041901], ['nbs-iscc-sc:weakred.43','weakred','weak red',[121,68,59],'79443b',7947323], ['nbs-iscc-sc:weakred.45','weakred','weak red',[151,127,115],'977f73',9928563], ['nbs-iscc-sc:weakred.46','weakred','weak red',[103,76,71],'674c47',6769735], ['nbs-iscc-sc:white.9','white','white',[234,227,225],'eae3e1',15393761], ['nbs-iscc-sc:white.10','white','white',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-sc:white.73','white','white',[250,214,165],'fad6a5',16438949], ['nbs-iscc-sc:white.92','white','white',[240,234,214],'f0ead6',15788758], ['nbs-iscc-sc:white.93','white','white',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-sc:white.263','white','white',[242,243,244],'f2f3f4',15922164], ['nbs-iscc-sc:white.264','white','white',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-sc:yellow.70','yellow','yellow',[251,201,127],'fbc97f',16501119], ['nbs-iscc-sc:yellow.71','yellow','yellow',[227,168,87],'e3a857',14919767], ['nbs-iscc-sc:yellow.86','yellow','yellow',[248,222,126],'f8de7e',16309886], ['nbs-iscc-sc:yellow.87','yellow','yellow',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-sc:yellowishbrown.74','yellowishbrown','yellowish brown',[153,101,21],'996515',10052885], ['nbs-iscc-sc:yellowishbrown.77','yellowishbrown','yellowish brown',[130,102,68],'826644',8545860], ['nbs-iscc-sc:yellowred.54','yellowred','yellow red',[174,105,56],'ae6938',11430200], ['nbs-iscc-sc:yellowred.55','yellowred','yellow red',[128,70,27],'80461b',8406555] ]; } sub _description { return { 'subtitle' => 'Soil Color Charts', 'title' => 'NBS/ISCC SC', 'description' => ' Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (SC) Soil Color Charts U.S. Department of Agriculture Soil Color Charts This combinatorial field-work dictionary\'s 50 names mape to 176 colors, using 76 of 267 centroids. Again, its focus on soil colors limits its general usefulness. [http://swissnet.ai.mit.edu/~jaffer/Color/Dictionaries#SC] ' } } 1; TC.pm100644000765000024 10722211667760546 23035 0ustar00robstaff000000000000Color-Library-0.021/lib/Color/Library/Dictionary/NBS_ISCCpackage Color::Library::Dictionary::NBS_ISCC::TC; use strict; use warnings; use base qw/Color::Library::Dictionary/; __PACKAGE__->_register_dictionary; package Color::Library::Dictionary::NBS_ISCC::TC; =pod =head1 NAME Color::Library::Dictionary::NBS_ISCC::TC - (NBS/ISCC TC) Standard Color Card of America =head1 DESCRIPTION Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (TC) Standard Color Card of America Textile Color Card Association [TCCA], Standard Color Card of America and U.S. Army Color Card The 237 names of this idiosyncratic dictionary map to 267 colors, but only 129 out of 267 possible centroids are called out. L =head1 COLORS african brown africanbrown #3e322c african brown africanbrown #5b504f almond green almondgreen #5e716a amberlite amberlite #c19a6b american beauty americanbeauty #673147 amethyst amethyst #86608e apple red applered #be0032 apricot apricot #d99058 aqua aqua #66ada4 arbutus pink arbutuspink #dea5a4 ashes of rose ashesofrose #915f6d autumn brown autumnbrown #6f4e37 autumn brown autumnbrown #635147 baby blue babyblue #bcd4e6 baby pink babypink #f9ccca beaver beaver #635147 beige beige #958070 bisque bisque #958070 black black #222222 blue bird, bluebird bluebirdbluebird #436b95 blue flower blueflower #91a3b0 blue spruce bluespruce #3b7861 bluesteel bluesteel #536878 blue turquoise blueturquoise #66aabc bois de rose boisderose #905d5d bottle green bottlegreen #1b4d3e brick red brickred #722f37 brittany blue brittanyblue #367588 bronze bronze #6c541e brown, brown #6f4e37 buff buff #d99058 buff buff #c19a6b burgundy burgundy #673147 burgundy burgundy #38152c burnished straw burnishedstraw #a67b5b burnt orange burntorange #cb6d51 caramel brown caramelbrown #6f4e37 caramel brown caramelbrown #422518 cardinal cardinal #841b2d carmine carmine #be0032 castor castor #5b504f catawba catawba #673147 chalk pink chalkpink #dea5a4 chamois chamois #c9ae5d champagne champagne #fad6a5 chartreuse chartreuse #beb72e cherry cherry #b3446c claret claret #673147 cobalt blue cobaltblue #00304e cocoa cocoa #79443b copenhagen copenhagen #536878 coral coral #ea9399 cork cork #a67b5b cornflower blue cornflowerblue #545aa7 crab apple crabapple #d9603b crayon green crayongreen #93c592 cream cream #f0ead6 crimson crimson #78184a crocus crocus #b784a7 dahlia purple dahliapurple #602f6b dark blue darkblue #222222 dark cardinal darkcardinal #722f37 duckling duckling #004958 dustblu dustblu #91a3b0 dusty pink dustypink #d9a6a9 ecru ecru #ae9b82 eggplant eggplant #291e29 eggshell eggshell #f3e5ab electric electric #367588 emerald emerald #44944a evergreen evergreen #355e3b evergreen evergreen #173620 fawn fawn #7e6d5a flame red flamered #d9603b flax flax #c2b280 flemish blue flemishblue #536878 flesh pink fleshpink #ecd5c5 forget-me-not forgetmenot #70a3cc fuchsia fuchsia #ce4676 garnet garnet #722f37 geranium geranium #be0032 gold gold #ab9144 gold brown goldbrown #ae6938 gold brown goldbrown #80461b golden orange goldenorange #ed872d golden poppy goldenpoppy #e25822 golden yellow goldenyellow #f3c300 goldmist goldmist #c2b280 graphite blue graphiteblue #36454f graphite blue graphiteblue #202830 graphite blue graphiteblue #252440 graphite blue graphiteblue #4c516d grebe grebe #555555 grecian rose grecianrose #c48379 green green #355e3b grotto blue grottoblue #007791 gull gull #c1b6b3 harvard crimson harvardcrimson #78184a henna henna #79443b homage blue homageblue #202830 homage blue homageblue #252440 honeydew honeydew #d99058 hunter hunter #355e3b hydrangea blue hydrangeablue #436b95 imperial purple imperialpurple #602f6b independence independence #252440 independence independence #4c516d indian orange indianorange #e25822 irish green irishgreen #00543d ivory ivory #f0ead6 jade green jadegreen #679267 jasmine jasmine #f8de7e jungle green junglegreen #004b49 khaki khaki #967117 lacquer lacquer #9e4732 lavender lavender #aa98a9 leghorn leghorn #f3e5ab lemon yellow lemonyellow #fada5e light blue lightblue #367588 light blue lightblue #536878 light olive drab lightolivedrab #6c541e lilac lilac #86608e limepeel limepeel #8a9a5b lupine lupine #8791bf lupine lupine #8c92ac lustre blue lustreblue #436b95 magenta magenta #78184a magenta magenta #673147 mahogany mahogany #79443b maize maize #f8de7e majolica blue majolicablue #436b95 maple sugar maplesugar #826644 marine corps marinecorps #00304e maroon maroon #722f37 maroon maroon #673147 maroon maroon #543d3f mauve mauve #875692 melon pink melonpink #ffb7a5 midnight midnight #202830 mintleaf mintleaf #44944a mistiblu mistiblu #536878 myrtle myrtle #1b4d3e national flag blue nationalflagblue #252440 natural natural #bfb8a5 navy 1 navy1 #00304e navy 2 navy2 #00304e nickel nickel #8f817f nickel nickel #848482 nile nile #c9dc89 nile nile #8a9a5b nude nude #ae9b82 nugget gold nuggetgold #af8d13 oakwood oakwood #6f4e37 old blue oldblue #91a3b0 old china oldchina #436b95 old glory blue oldgloryblue #4e5180 old glory red oldgloryred #be0032 old gold oldgold #ab9144 old gold oldgold #c9ae5d old rose oldrose #c08081 olive olive #4a5d23 orange orange #ed872d orange orange #e25822 orchid orchid #b695c0 oriental blue orientalblue #0067a5 pale blue paleblue #b2beb5 pale blue paleblue #b9b8b5 palmetto palmetto #5e716a pansy pansy #604e97 pansy pansy #32174d paprica paprica #e25822 parma violet parmaviolet #604e97 parrot blue parrotblue #317873 parrot blue parrotblue #367588 pastel blue pastelblue #bcd4e6 pastel pink pastelpink #dea5a4 peach peach #d9a6a9 peach blossom peachblossom #e4717a peach blossom peachblossom #a8516e peacock peacock #367588 pearl grey pearlgrey #bfb8a5 pearl grey pearlgrey #b9b8b5 peasant blue peasantblue #536878 peking blue pekingblue #436b95 peking blue pekingblue #00304e periwinkle blue periwinkleblue #8791bf pigeon pigeon #8f817f pimento pimento #be0032 plum plum #563c5c popcorn popcorn #c9ae5d primitive green primitivegreen #007959 princeton orange princetonorange #ed872d prune prune #563c5c prune prune #301934 purple purple #2f2140 purple orchid purpleorchid #9e4f88 putty putty #958070 putty putty #8e8279 raspberry raspberry #a8516e raspberry raspberry #673147 redgrape redgrape #673147 reseda reseda #5e716a reseda reseda #3a4b47 river blue riverblue #367588 river blue riverblue #536878 robin's egg robinsegg #536878 rose beige rosebeige #a67b5b rose pink rosepink #ea9399 royal blue royalblue #00304e royal blue royalblue #00416a ruby ruby #78184a salmon salmon #cb6d51 salmon pink salmonpink #f88379 sand sand #bfb8a5 sandalwood sandalwood #a67b5b sapphire blue sapphireblue #272458 saxe blue saxeblue #536878 scarab green scarabgreen #3eb489 scarlet scarlet #be0032 scarlet scarlet #bc3f4a seal seal #3e322c sea pink seapink #e4717a shell pink shellpink #f88379 shrimp pink shrimppink #e4717a shrimp pink shrimppink #e66761 silver silver #848482 silver gray silvergray #848482 sistine sistine #91a3b0 sky blue skyblue #91a3b0 sky blue skyblue #00304e smoke smoke #555555 spanish yellow spanishyellow #eaa221 spicebrown spicebrown #6f4e37 spraygreen spraygreen #8da399 spring green springgreen #7e9f2e starlight blue starlightblue #8c92ac steel steel #8b8589 stone blue stoneblue #536878 strawberry strawberry #a8516e sunset sunset #fad6a5 tan tan #c19a6b tangerine tangerine #d9603b tarragon tarragon #679267 taupe taupe #5b504f teal teal #004958 tea rose tearose #f88379 terra cotta terracotta #9e4732 terra cotta terracotta #882d17 terra cotta terracotta #79443b tigerlily tigerlily #e66761 tile blue tileblue #536878 toast brown toastbrown #6f4e37 tobacco tobacco #6f4e37 topaz topaz #be8a3d tourmaline tourmaline #c7e6d7 turquoise turquoise #66ada4 ultramarine blue ultramarineblue #00a1c2 ultramarine blue ultramarineblue #30267a vassar rose vassarrose #d597ae violet violet #604e97 violine pink violinepink #a8516e west point westpoint #536878 white white #f0ead6 white white #f2f3f4 white white #f0ead6 white white #bfb8a5 yale blue yaleblue #272458 yellow yellow #eaa221 =cut sub _load_color_list() { return [ ['nbs-iscc-tc:africanbrown.62','africanbrown','african brown',[62,50,44],'3e322c',4076076], ['nbs-iscc-tc:africanbrown.64','africanbrown','african brown',[91,80,79],'5b504f',5984335], ['nbs-iscc-tc:almondgreen.150','almondgreen','almond green',[94,113,106],'5e716a',6189418], ['nbs-iscc-tc:amberlite.76','amberlite','amberlite',[193,154,107],'c19a6b',12687979], ['nbs-iscc-tc:americanbeauty.259','americanbeauty','american beauty',[103,49,71],'673147',6762823], ['nbs-iscc-tc:amethyst.223','amethyst','amethyst',[134,96,142],'86608e',8806542], ['nbs-iscc-tc:applered.11','applered','apple red',[190,0,50],'be0032',12451890], ['nbs-iscc-tc:apricot.53','apricot','apricot',[217,144,88],'d99058',14258264], ['nbs-iscc-tc:aqua.163','aqua','aqua',[102,173,164],'66ada4',6729124], ['nbs-iscc-tc:arbutuspink.5','arbutuspink','arbutus pink',[222,165,164],'dea5a4',14591396], ['nbs-iscc-tc:ashesofrose.262','ashesofrose','ashes of rose',[145,95,109],'915f6d',9527149], ['nbs-iscc-tc:autumnbrown.58','autumnbrown','autumn brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-tc:autumnbrown.61','autumnbrown','autumn brown',[99,81,71],'635147',6508871], ['nbs-iscc-tc:babyblue.184','babyblue','baby blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-tc:babypink.4','babypink','baby pink',[249,204,202],'f9ccca',16370890], ['nbs-iscc-tc:beaver.61','beaver','beaver',[99,81,71],'635147',6508871], ['nbs-iscc-tc:beige.60','beige','beige',[149,128,112],'958070',9797744], ['nbs-iscc-tc:bisque.60','bisque','bisque',[149,128,112],'958070',9797744], ['nbs-iscc-tc:black.267','black','black',[34,34,34],'222222',2236962], ['nbs-iscc-tc:bluebirdbluebird.182','bluebirdbluebird','blue bird, bluebird',[67,107,149],'436b95',4418453], ['nbs-iscc-tc:blueflower.185','blueflower','blue flower',[145,163,176],'91a3b0',9544624], ['nbs-iscc-tc:bluespruce.145','bluespruce','blue spruce',[59,120,97],'3b7861',3897441], ['nbs-iscc-tc:bluesteel.186','bluesteel','bluesteel',[83,104,120],'536878',5466232], ['nbs-iscc-tc:blueturquoise.172','blueturquoise','blue turquoise',[102,170,188],'66aabc',6728380], ['nbs-iscc-tc:boisderose.19','boisderose','bois de rose ',[144,93,93],'905d5d',9461085], ['nbs-iscc-tc:bottlegreen.146','bottlegreen','bottle green',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-tc:brickred.16','brickred','brick red',[114,47,55],'722f37',7483191], ['nbs-iscc-tc:brittanyblue.173','brittanyblue','brittany blue',[54,117,136],'367588',3569032], ['nbs-iscc-tc:bronze.95','bronze','bronze',[108,84,30],'6c541e',7099422], ['nbs-iscc-tc:brown.58','brown','brown,',[111,78,55],'6f4e37',7294519], ['nbs-iscc-tc:buff.53','buff','buff',[217,144,88],'d99058',14258264], ['nbs-iscc-tc:buff.76','buff','buff',[193,154,107],'c19a6b',12687979], ['nbs-iscc-tc:burgundy.259','burgundy','burgundy',[103,49,71],'673147',6762823], ['nbs-iscc-tc:burgundy.260','burgundy','burgundy',[56,21,44],'38152c',3675436], ['nbs-iscc-tc:burnishedstraw.57','burnishedstraw','burnished straw',[166,123,91],'a67b5b',10910555], ['nbs-iscc-tc:burntorange.37','burntorange','burnt orange',[203,109,81],'cb6d51',13331793], ['nbs-iscc-tc:caramelbrown.58','caramelbrown','caramel brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-tc:caramelbrown.59','caramelbrown','caramel brown',[66,37,24],'422518',4334872], ['nbs-iscc-tc:cardinal.13','cardinal','cardinal',[132,27,45],'841b2d',8657709], ['nbs-iscc-tc:carmine.11','carmine','carmine',[190,0,50],'be0032',12451890], ['nbs-iscc-tc:castor.64','castor','castor',[91,80,79],'5b504f',5984335], ['nbs-iscc-tc:catawba.259','catawba','catawba',[103,49,71],'673147',6762823], ['nbs-iscc-tc:chalkpink.5','chalkpink','chalk pink',[222,165,164],'dea5a4',14591396], ['nbs-iscc-tc:chamois.87','chamois','chamois',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-tc:champagne.73','champagne','champagne',[250,214,165],'fad6a5',16438949], ['nbs-iscc-tc:chartreuse.99','chartreuse','chartreuse',[190,183,46],'beb72e',12498734], ['nbs-iscc-tc:cherry.255','cherry','cherry',[179,68,108],'b3446c',11748460], ['nbs-iscc-tc:claret.259','claret','claret',[103,49,71],'673147',6762823], ['nbs-iscc-tc:cobaltblue.183','cobaltblue','cobalt blue',[0,48,78],'00304e',12366], ['nbs-iscc-tc:cocoa.43','cocoa','cocoa',[121,68,59],'79443b',7947323], ['nbs-iscc-tc:copenhagen.186','copenhagen','copenhagen',[83,104,120],'536878',5466232], ['nbs-iscc-tc:coral.2','coral','coral',[234,147,153],'ea9399',15373209], ['nbs-iscc-tc:cork.57','cork','cork',[166,123,91],'a67b5b',10910555], ['nbs-iscc-tc:cornflowerblue.196','cornflowerblue','cornflower blue',[84,90,167],'545aa7',5528231], ['nbs-iscc-tc:crabapple.35','crabapple','crab apple',[217,96,59],'d9603b',14245947], ['nbs-iscc-tc:crayongreen.135','crayongreen','crayon green',[147,197,146],'93c592',9684370], ['nbs-iscc-tc:cream.92','cream','cream',[240,234,214],'f0ead6',15788758], ['nbs-iscc-tc:crimson.256','crimson','crimson',[120,24,74],'78184a',7870538], ['nbs-iscc-tc:crocus.240','crocus','crocus',[183,132,167],'b784a7',12027047], ['nbs-iscc-tc:dahliapurple.219','dahliapurple','dahlia purple',[96,47,107],'602f6b',6303595], ['nbs-iscc-tc:darkblue.267','darkblue','dark blue',[34,34,34],'222222',2236962], ['nbs-iscc-tc:darkcardinal.16','darkcardinal','dark cardinal',[114,47,55],'722f37',7483191], ['nbs-iscc-tc:duckling.174','duckling','duckling',[0,73,88],'004958',18776], ['nbs-iscc-tc:dustblu.185','dustblu','dustblu',[145,163,176],'91a3b0',9544624], ['nbs-iscc-tc:dustypink.29','dustypink','dusty pink',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-tc:ecru.79','ecru','ecru',[174,155,130],'ae9b82',11443074], ['nbs-iscc-tc:eggplant.230','eggplant','eggplant',[41,30,41],'291e29',2694697], ['nbs-iscc-tc:eggshell.89','eggshell','eggshell ',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-tc:electric.173','electric','electric ',[54,117,136],'367588',3569032], ['nbs-iscc-tc:emerald.131','emerald','emerald',[68,148,74],'44944a',4494410], ['nbs-iscc-tc:evergreen.137','evergreen','evergreen',[53,94,59],'355e3b',3497531], ['nbs-iscc-tc:evergreen.138','evergreen','evergreen',[23,54,32],'173620',1521184], ['nbs-iscc-tc:fawn.80','fawn','fawn',[126,109,90],'7e6d5a',8285530], ['nbs-iscc-tc:flamered.35','flamered','flame red',[217,96,59],'d9603b',14245947], ['nbs-iscc-tc:flax.90','flax','flax',[194,178,128],'c2b280',12759680], ['nbs-iscc-tc:flemishblue.186','flemishblue','flemish blue',[83,104,120],'536878',5466232], ['nbs-iscc-tc:fleshpink.31','fleshpink','flesh pink',[236,213,197],'ecd5c5',15521221], ['nbs-iscc-tc:forgetmenot.181','forgetmenot','forget-me-not',[112,163,204],'70a3cc',7381964], ['nbs-iscc-tc:fuchsia.254','fuchsia','fuchsia',[206,70,118],'ce4676',13518454], ['nbs-iscc-tc:garnet.16','garnet','garnet',[114,47,55],'722f37',7483191], ['nbs-iscc-tc:geranium.11','geranium','geranium',[190,0,50],'be0032',12451890], ['nbs-iscc-tc:gold.88','gold','gold',[171,145,68],'ab9144',11243844], ['nbs-iscc-tc:goldbrown.54','goldbrown','gold brown',[174,105,56],'ae6938',11430200], ['nbs-iscc-tc:goldbrown.55','goldbrown','gold brown',[128,70,27],'80461b',8406555], ['nbs-iscc-tc:goldenorange.50','goldenorange','golden orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-tc:goldenpoppy.34','goldenpoppy','golden poppy',[226,88,34],'e25822',14833698], ['nbs-iscc-tc:goldenyellow.82','goldenyellow','golden yellow',[243,195,0],'f3c300',15975168], ['nbs-iscc-tc:goldmist.90','goldmist','goldmist',[194,178,128],'c2b280',12759680], ['nbs-iscc-tc:graphiteblue.187','graphiteblue','graphite blue',[54,69,79],'36454f',3556687], ['nbs-iscc-tc:graphiteblue.188','graphiteblue','graphite blue',[32,40,48],'202830',2107440], ['nbs-iscc-tc:graphiteblue.201','graphiteblue','graphite blue',[37,36,64],'252440',2434112], ['nbs-iscc-tc:graphiteblue.204','graphiteblue','graphite blue',[76,81,109],'4c516d',5001581], ['nbs-iscc-tc:grebe.266','grebe','grebe',[85,85,85],'555555',5592405], ['nbs-iscc-tc:grecianrose.30','grecianrose','grecian rose',[196,131,121],'c48379',12878713], ['nbs-iscc-tc:green.137','green','green',[53,94,59],'355e3b',3497531], ['nbs-iscc-tc:grottoblue.169','grottoblue','grotto blue',[0,119,145],'007791',30609], ['nbs-iscc-tc:gull.10','gull','gull',[193,182,179],'c1b6b3',12695219], ['nbs-iscc-tc:harvardcrimson.256','harvardcrimson','harvard crimson',[120,24,74],'78184a',7870538], ['nbs-iscc-tc:henna.43','henna','henna',[121,68,59],'79443b',7947323], ['nbs-iscc-tc:homageblue.188','homageblue','homage blue',[32,40,48],'202830',2107440], ['nbs-iscc-tc:homageblue.201','homageblue','homage blue',[37,36,64],'252440',2434112], ['nbs-iscc-tc:honeydew.53','honeydew','honeydew',[217,144,88],'d99058',14258264], ['nbs-iscc-tc:hunter.137','hunter','hunter',[53,94,59],'355e3b',3497531], ['nbs-iscc-tc:hydrangeablue.182','hydrangeablue','hydrangea blue',[67,107,149],'436b95',4418453], ['nbs-iscc-tc:imperialpurple.219','imperialpurple','imperial purple',[96,47,107],'602f6b',6303595], ['nbs-iscc-tc:independence.201','independence','independence',[37,36,64],'252440',2434112], ['nbs-iscc-tc:independence.204','independence','independence',[76,81,109],'4c516d',5001581], ['nbs-iscc-tc:indianorange.34','indianorange','indian orange',[226,88,34],'e25822',14833698], ['nbs-iscc-tc:irishgreen.142','irishgreen','irish green',[0,84,61],'00543d',21565], ['nbs-iscc-tc:ivory.92','ivory','ivory',[240,234,214],'f0ead6',15788758], ['nbs-iscc-tc:jadegreen.136','jadegreen','jade green',[103,146,103],'679267',6787687], ['nbs-iscc-tc:jasmine.86','jasmine','jasmine',[248,222,126],'f8de7e',16309886], ['nbs-iscc-tc:junglegreen.165','junglegreen','jungle green',[0,75,73],'004b49',19273], ['nbs-iscc-tc:khaki.94','khaki','khaki',[150,113,23],'967117',9859351], ['nbs-iscc-tc:lacquer.38','lacquer','lacquer',[158,71,50],'9e4732',10372914], ['nbs-iscc-tc:lavender.227','lavender','lavender',[170,152,169],'aa98a9',11180201], ['nbs-iscc-tc:leghorn.89','leghorn','leghorn',[243,229,171],'f3e5ab',15984043], ['nbs-iscc-tc:lemonyellow.83','lemonyellow','lemon yellow',[250,218,94],'fada5e',16439902], ['nbs-iscc-tc:lightblue.173','lightblue','light blue',[54,117,136],'367588',3569032], ['nbs-iscc-tc:lightblue.186','lightblue','light blue',[83,104,120],'536878',5466232], ['nbs-iscc-tc:lightolivedrab.95','lightolivedrab','light olive drab',[108,84,30],'6c541e',7099422], ['nbs-iscc-tc:lilac.223','lilac','lilac',[134,96,142],'86608e',8806542], ['nbs-iscc-tc:limepeel.120','limepeel','limepeel ',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-tc:lupine.199','lupine','lupine',[135,145,191],'8791bf',8884671], ['nbs-iscc-tc:lupine.203','lupine','lupine',[140,146,172],'8c92ac',9212588], ['nbs-iscc-tc:lustreblue.182','lustreblue','lustre blue',[67,107,149],'436b95',4418453], ['nbs-iscc-tc:magenta.256','magenta','magenta',[120,24,74],'78184a',7870538], ['nbs-iscc-tc:magenta.259','magenta','magenta',[103,49,71],'673147',6762823], ['nbs-iscc-tc:mahogany.43','mahogany','mahogany',[121,68,59],'79443b',7947323], ['nbs-iscc-tc:maize.86','maize','maize',[248,222,126],'f8de7e',16309886], ['nbs-iscc-tc:majolicablue.182','majolicablue','majolica blue',[67,107,149],'436b95',4418453], ['nbs-iscc-tc:maplesugar.77','maplesugar','maple sugar',[130,102,68],'826644',8545860], ['nbs-iscc-tc:marinecorps.183','marinecorps','marine corps',[0,48,78],'00304e',12366], ['nbs-iscc-tc:maroon.16','maroon','maroon',[114,47,55],'722f37',7483191], ['nbs-iscc-tc:maroon.259','maroon','maroon',[103,49,71],'673147',6762823], ['nbs-iscc-tc:maroon.20','maroon','maroon',[84,61,63],'543d3f',5520703], ['nbs-iscc-tc:mauve.218','mauve','mauve',[135,86,146],'875692',8869522], ['nbs-iscc-tc:melonpink.25','melonpink','melon pink',[255,183,165],'ffb7a5',16758693], ['nbs-iscc-tc:midnight.188','midnight','midnight ',[32,40,48],'202830',2107440], ['nbs-iscc-tc:mintleaf.131','mintleaf','mintleaf ',[68,148,74],'44944a',4494410], ['nbs-iscc-tc:mistiblu.186','mistiblu','mistiblu ',[83,104,120],'536878',5466232], ['nbs-iscc-tc:myrtle.146','myrtle','myrtle ',[27,77,62],'1b4d3e',1789246], ['nbs-iscc-tc:nationalflagblue.201','nationalflagblue','national flag blue',[37,36,64],'252440',2434112], ['nbs-iscc-tc:natural.93','natural','natural',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-tc:navy1.183','navy1','navy 1 ',[0,48,78],'00304e',12366], ['nbs-iscc-tc:navy2.183','navy2','navy 2 ',[0,48,78],'00304e',12366], ['nbs-iscc-tc:nickel.22','nickel','nickel',[143,129,127],'8f817f',9404799], ['nbs-iscc-tc:nickel.265','nickel','nickel',[132,132,130],'848482',8684674], ['nbs-iscc-tc:nile.119','nile','nile',[201,220,137],'c9dc89',13229193], ['nbs-iscc-tc:nile.120','nile','nile',[138,154,91],'8a9a5b',9083483], ['nbs-iscc-tc:nude.79','nude','nude',[174,155,130],'ae9b82',11443074], ['nbs-iscc-tc:nuggetgold.85','nuggetgold','nugget gold',[175,141,19],'af8d13',11504915], ['nbs-iscc-tc:oakwood.58','oakwood','oakwood',[111,78,55],'6f4e37',7294519], ['nbs-iscc-tc:oldblue.185','oldblue','old blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-tc:oldchina.182','oldchina','old china',[67,107,149],'436b95',4418453], ['nbs-iscc-tc:oldgloryblue.200','oldgloryblue','old glory blue',[78,81,128],'4e5180',5132672], ['nbs-iscc-tc:oldgloryred.11','oldgloryred','old glory red',[190,0,50],'be0032',12451890], ['nbs-iscc-tc:oldgold.88','oldgold','old gold',[171,145,68],'ab9144',11243844], ['nbs-iscc-tc:oldgold.87','oldgold','old gold',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-tc:oldrose.6','oldrose','old rose',[192,128,129],'c08081',12615809], ['nbs-iscc-tc:olive.125','olive','olive',[74,93,35],'4a5d23',4873507], ['nbs-iscc-tc:orange.50','orange','orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-tc:orange.34','orange','orange',[226,88,34],'e25822',14833698], ['nbs-iscc-tc:orchid.222','orchid','orchid',[182,149,192],'b695c0',11965888], ['nbs-iscc-tc:orientalblue.178','orientalblue','oriental blue',[0,103,165],'0067a5',26533], ['nbs-iscc-tc:paleblue.154','paleblue','pale blue',[178,190,181],'b2beb5',11714229], ['nbs-iscc-tc:paleblue.264','paleblue','pale blue',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-tc:palmetto.150','palmetto','palmetto',[94,113,106],'5e716a',6189418], ['nbs-iscc-tc:pansy.207','pansy','pansy',[96,78,151],'604e97',6311575], ['nbs-iscc-tc:pansy.208','pansy','pansy',[50,23,77],'32174d',3282765], ['nbs-iscc-tc:paprica.34','paprica','paprica',[226,88,34],'e25822',14833698], ['nbs-iscc-tc:parmaviolet.207','parmaviolet','parma violet',[96,78,151],'604e97',6311575], ['nbs-iscc-tc:parrotblue.164','parrotblue','parrot blue',[49,120,115],'317873',3242099], ['nbs-iscc-tc:parrotblue.173','parrotblue','parrot blue',[54,117,136],'367588',3569032], ['nbs-iscc-tc:pastelblue.184','pastelblue','pastel blue',[188,212,230],'bcd4e6',12375270], ['nbs-iscc-tc:pastelpink.5','pastelpink','pastel pink',[222,165,164],'dea5a4',14591396], ['nbs-iscc-tc:peach.29','peach','peach',[217,166,169],'d9a6a9',14263977], ['nbs-iscc-tc:peachblossom.3','peachblossom','peach blossom',[228,113,122],'e4717a',14971258], ['nbs-iscc-tc:peachblossom.258','peachblossom','peach blossom',[168,81,110],'a8516e',11030894], ['nbs-iscc-tc:peacock.173','peacock','peacock',[54,117,136],'367588',3569032], ['nbs-iscc-tc:pearlgrey.93','pearlgrey','pearl grey ',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-tc:pearlgrey.264','pearlgrey','pearl grey ',[185,184,181],'b9b8b5',12171445], ['nbs-iscc-tc:peasantblue.186','peasantblue','peasant blue',[83,104,120],'536878',5466232], ['nbs-iscc-tc:pekingblue.182','pekingblue','peking blue',[67,107,149],'436b95',4418453], ['nbs-iscc-tc:pekingblue.183','pekingblue','peking blue',[0,48,78],'00304e',12366], ['nbs-iscc-tc:periwinkleblue.199','periwinkleblue','periwinkle blue',[135,145,191],'8791bf',8884671], ['nbs-iscc-tc:pigeon.22','pigeon','pigeon',[143,129,127],'8f817f',9404799], ['nbs-iscc-tc:pimento.11','pimento','pimento',[190,0,50],'be0032',12451890], ['nbs-iscc-tc:plum.224','plum','plum',[86,60,92],'563c5c',5651548], ['nbs-iscc-tc:popcorn.87','popcorn','popcorn',[201,174,93],'c9ae5d',13217373], ['nbs-iscc-tc:primitivegreen.141','primitivegreen','primitive green',[0,121,89],'007959',31065], ['nbs-iscc-tc:princetonorange.50','princetonorange','princeton orange',[237,135,45],'ed872d',15566637], ['nbs-iscc-tc:prune.224','prune','prune',[86,60,92],'563c5c',5651548], ['nbs-iscc-tc:prune.225','prune','prune',[48,25,52],'301934',3152180], ['nbs-iscc-tc:purple.212','purple','purple',[47,33,64],'2f2140',3088704], ['nbs-iscc-tc:purpleorchid.237','purpleorchid','purple orchid',[158,79,136],'9e4f88',10375048], ['nbs-iscc-tc:putty.60','putty','putty',[149,128,112],'958070',9797744], ['nbs-iscc-tc:putty.63','putty','putty',[142,130,121],'8e8279',9339513], ['nbs-iscc-tc:raspberry.258','raspberry','raspberry',[168,81,110],'a8516e',11030894], ['nbs-iscc-tc:raspberry.259','raspberry','raspberry',[103,49,71],'673147',6762823], ['nbs-iscc-tc:redgrape.259','redgrape','redgrape',[103,49,71],'673147',6762823], ['nbs-iscc-tc:reseda.150','reseda','reseda',[94,113,106],'5e716a',6189418], ['nbs-iscc-tc:reseda.151','reseda','reseda',[58,75,71],'3a4b47',3820359], ['nbs-iscc-tc:riverblue.173','riverblue','river blue',[54,117,136],'367588',3569032], ['nbs-iscc-tc:riverblue.186','riverblue','river blue',[83,104,120],'536878',5466232], ['nbs-iscc-tc:robinsegg.186','robinsegg','robin\'s egg',[83,104,120],'536878',5466232], ['nbs-iscc-tc:rosebeige.57','rosebeige','rose beige',[166,123,91],'a67b5b',10910555], ['nbs-iscc-tc:rosepink.2','rosepink','rose pink',[234,147,153],'ea9399',15373209], ['nbs-iscc-tc:royalblue.183','royalblue','royal blue',[0,48,78],'00304e',12366], ['nbs-iscc-tc:royalblue.179','royalblue','royal blue',[0,65,106],'00416a',16746], ['nbs-iscc-tc:ruby.256','ruby','ruby',[120,24,74],'78184a',7870538], ['nbs-iscc-tc:salmon.37','salmon','salmon',[203,109,81],'cb6d51',13331793], ['nbs-iscc-tc:salmonpink.26','salmonpink','salmon pink ',[248,131,121],'f88379',16286585], ['nbs-iscc-tc:sand.93','sand','sand',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-tc:sandalwood.57','sandalwood','sandalwood',[166,123,91],'a67b5b',10910555], ['nbs-iscc-tc:sapphireblue.197','sapphireblue','sapphire blue',[39,36,88],'272458',2565208], ['nbs-iscc-tc:saxeblue.186','saxeblue','saxe blue',[83,104,120],'536878',5466232], ['nbs-iscc-tc:scarabgreen.140','scarabgreen','scarab green',[62,180,137],'3eb489',4109449], ['nbs-iscc-tc:scarlet.11','scarlet','scarlet',[190,0,50],'be0032',12451890], ['nbs-iscc-tc:scarlet.12','scarlet','scarlet',[188,63,74],'bc3f4a',12336970], ['nbs-iscc-tc:seal.62','seal','seal',[62,50,44],'3e322c',4076076], ['nbs-iscc-tc:seapink.3','seapink','sea pink',[228,113,122],'e4717a',14971258], ['nbs-iscc-tc:shellpink.26','shellpink','shell pink',[248,131,121],'f88379',16286585], ['nbs-iscc-tc:shrimppink.3','shrimppink','shrimp pink',[228,113,122],'e4717a',14971258], ['nbs-iscc-tc:shrimppink.27','shrimppink','shrimp pink',[230,103,97],'e66761',15099745], ['nbs-iscc-tc:silver.265','silver','silver',[132,132,130],'848482',8684674], ['nbs-iscc-tc:silvergray.265','silvergray','silver gray',[132,132,130],'848482',8684674], ['nbs-iscc-tc:sistine.185','sistine','sistine',[145,163,176],'91a3b0',9544624], ['nbs-iscc-tc:skyblue.185','skyblue','sky blue',[145,163,176],'91a3b0',9544624], ['nbs-iscc-tc:skyblue.183','skyblue','sky blue',[0,48,78],'00304e',12366], ['nbs-iscc-tc:smoke.266','smoke','smoke',[85,85,85],'555555',5592405], ['nbs-iscc-tc:spanishyellow.68','spanishyellow','spanish yellow',[234,162,33],'eaa221',15376929], ['nbs-iscc-tc:spicebrown.58','spicebrown','spicebrown ',[111,78,55],'6f4e37',7294519], ['nbs-iscc-tc:spraygreen.149','spraygreen','spraygreen ',[141,163,153],'8da399',9282457], ['nbs-iscc-tc:springgreen.117','springgreen','spring green',[126,159,46],'7e9f2e',8298286], ['nbs-iscc-tc:starlightblue.203','starlightblue','starlight blue',[140,146,172],'8c92ac',9212588], ['nbs-iscc-tc:steel.233','steel','steel',[139,133,137],'8b8589',9143689], ['nbs-iscc-tc:stoneblue.186','stoneblue','stone blue',[83,104,120],'536878',5466232], ['nbs-iscc-tc:strawberry.258','strawberry','strawberry',[168,81,110],'a8516e',11030894], ['nbs-iscc-tc:sunset.73','sunset','sunset',[250,214,165],'fad6a5',16438949], ['nbs-iscc-tc:tan.76','tan','tan',[193,154,107],'c19a6b',12687979], ['nbs-iscc-tc:tangerine.35','tangerine','tangerine',[217,96,59],'d9603b',14245947], ['nbs-iscc-tc:tarragon.136','tarragon','tarragon',[103,146,103],'679267',6787687], ['nbs-iscc-tc:taupe.64','taupe','taupe',[91,80,79],'5b504f',5984335], ['nbs-iscc-tc:teal.174','teal','teal',[0,73,88],'004958',18776], ['nbs-iscc-tc:tearose.26','tearose','tea rose',[248,131,121],'f88379',16286585], ['nbs-iscc-tc:terracotta.38','terracotta','terra cotta',[158,71,50],'9e4732',10372914], ['nbs-iscc-tc:terracotta.40','terracotta','terra cotta',[136,45,23],'882d17',8924439], ['nbs-iscc-tc:terracotta.43','terracotta','terra cotta',[121,68,59],'79443b',7947323], ['nbs-iscc-tc:tigerlily.27','tigerlily','tigerlily',[230,103,97],'e66761',15099745], ['nbs-iscc-tc:tileblue.186','tileblue','tile blue',[83,104,120],'536878',5466232], ['nbs-iscc-tc:toastbrown.58','toastbrown','toast brown',[111,78,55],'6f4e37',7294519], ['nbs-iscc-tc:tobacco.58','tobacco','tobacco',[111,78,55],'6f4e37',7294519], ['nbs-iscc-tc:topaz.72','topaz','topaz',[190,138,61],'be8a3d',12487229], ['nbs-iscc-tc:tourmaline.148','tourmaline','tourmaline',[199,230,215],'c7e6d7',13100759], ['nbs-iscc-tc:turquoise.163','turquoise','turquoise',[102,173,164],'66ada4',6729124], ['nbs-iscc-tc:ultramarineblue.176','ultramarineblue','ultramarine blue',[0,161,194],'00a1c2',41410], ['nbs-iscc-tc:ultramarineblue.194','ultramarineblue','ultramarine blue',[48,38,122],'30267a',3155578], ['nbs-iscc-tc:vassarrose.250','vassarrose','vassar rose',[213,151,174],'d597ae',13997998], ['nbs-iscc-tc:violet.207','violet','violet',[96,78,151],'604e97',6311575], ['nbs-iscc-tc:violinepink.258','violinepink','violine pink',[168,81,110],'a8516e',11030894], ['nbs-iscc-tc:westpoint.186','westpoint','west point',[83,104,120],'536878',5466232], ['nbs-iscc-tc:white.92','white','white',[240,234,214],'f0ead6',15788758], ['nbs-iscc-tc:white.263','white','white',[242,243,244],'f2f3f4',15922164], ['nbs-iscc-tc:white.92','white','white',[240,234,214],'f0ead6',15788758], ['nbs-iscc-tc:white.93','white','white',[191,184,165],'bfb8a5',12564645], ['nbs-iscc-tc:yaleblue.197','yaleblue','yale blue',[39,36,88],'272458',2565208], ['nbs-iscc-tc:yellow.68','yellow','yellow',[234,162,33],'eaa221',15376929] ]; } sub _description { return { 'subtitle' => 'Standard Color Card of America', 'title' => 'NBS/ISCC TC', 'description' => ' Kenneth L. Kelly and Deanne B. Judd. "Color: Universal Language and Dictionary of Names", National Bureau of Standards, Spec. Publ. 440, Dec. 1976, 189 pages. Color Name Dictionary: (TC) Standard Color Card of America Textile Color Card Association [TCCA], Standard Color Card of America and U.S. Army Color Card The 237 names of this idiosyncratic dictionary map to 267 colors, but only 129 out of 267 possible centroids are called out. [http://swissnet.ai.mit.edu/~jaffer/Color/Dictionaries#TC] ' } } 1;