diff --git a/ChangeLog b/ChangeLog index 0507fc98e4..72c5fdbc82 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,12 @@ 2009-01-23 Kevin Cozens * libgimpcolor/gimprgb-parse.c: Applied patch from Andreas Turtschan - to fix colour values for slategray and slategray. Fixes bug #568839. + to fix more RGB colour values. Fixes bug #568909. + +2009-01-23 Kevin Cozens + + * libgimpcolor/gimprgb-parse.c: Applied patch from Andreas Turtschan + to fix colour values for slategray and slategrey. Fixes bug #568839. 2009-01-22 Tor Lillqvist diff --git a/libgimpcolor/gimprgb-parse.c b/libgimpcolor/gimprgb-parse.c index 6d19ab1cdb..60fb180959 100644 --- a/libgimpcolor/gimprgb-parse.c +++ b/libgimpcolor/gimprgb-parse.c @@ -82,7 +82,7 @@ static const ColorEntry named_colors[] = { "cyan", 0, 255, 255 }, { "darkblue", 0, 0, 139 }, { "darkcyan", 0, 139, 139 }, - { "darkgoldenrod", 184, 132, 11 }, + { "darkgoldenrod", 184, 134, 11 }, { "darkgray", 169, 169, 169 }, { "darkgreen", 0, 100, 0 }, { "darkgrey", 169, 169, 169 }, @@ -105,7 +105,7 @@ static const ColorEntry named_colors[] = { "dimgrey", 105, 105, 105 }, { "dodgerblue", 30, 144, 255 }, { "firebrick", 178, 34, 34 }, - { "floralwhite" , 255, 255, 240 }, + { "floralwhite" , 255, 250, 240 }, { "forestgreen", 34, 139, 34 }, { "fuchsia", 255, 0, 255 }, { "gainsboro", 220, 220, 220 }, @@ -175,7 +175,7 @@ static const ColorEntry named_colors[] = { "peachpuff", 255, 218, 185 }, { "peru", 205, 133, 63 }, { "pink", 255, 192, 203 }, - { "plum", 221, 160, 203 }, + { "plum", 221, 160, 221 }, { "powderblue", 176, 224, 230 }, { "purple", 128, 0, 128 }, { "red", 255, 0, 0 }, @@ -192,7 +192,7 @@ static const ColorEntry named_colors[] = { "slateblue", 106, 90, 205 }, { "slategray", 112, 128, 144 }, { "slategrey", 112, 128, 144 }, - { "snow", 255, 255, 250 }, + { "snow", 255, 250, 250 }, { "springgreen", 0, 255, 127 }, { "steelblue", 70, 130, 180 }, { "tan", 210, 180, 140 },