remove dup and fix cmyb in colorcodes hash

master
Michael Smith 2012-06-03 11:34:52 -06:00
parent 77249c2f9d
commit aebe07c20a
1 changed files with 1 additions and 3 deletions

View File

@ -8,15 +8,13 @@ use Math::Round;
my %types = ( # hash of keyword => Convert::Color prefix
vga => 'vga',
rgb => 'rgb8',
hsv => 'hsv',
hex => 'rgb8',
html => 'rgb8',
css => 'rgb8',
hsl => 'hsl',
hsv => 'hsv',
cmy => 'cmy',
cmyk => 'cmyk',
cmyb => 'cmyb',
cmyb => 'cmyk',
);
my $typestr = join '|', keys %types;