summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdel Gadllah <adel.gadllah@gmail.com>2012-03-18 11:47:51 +0100
committerAdel Gadllah <adel.gadllah@gmail.com>2012-03-18 12:57:25 +0100
commit0cbb0dfed7350ed48a12d56925cdd76255891aa5 (patch)
tree36ac7752dfd7e9e97b76902e92e0c7e01bdb8c28
parentc3f70d2950feb7a7934c94b14f1294362f0adf58 (diff)
downloadlibcroco-0cbb0dfed7350ed48a12d56925cdd76255891aa5.tar.gz
cr-rgb: Fix mapping for 'green'
Green is supposed to be #00FF00 not #008000. https://bugzilla.gnome.org/show_bug.cgi?id=672332
-rw-r--r--src/cr-rgb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cr-rgb.c b/src/cr-rgb.c
index ffd7746..648191a 100644
--- a/src/cr-rgb.c
+++ b/src/cr-rgb.c
@@ -85,7 +85,7 @@ static const CRRgb gv_standard_colors[] = {
{(const guchar*)"gold", 255, 215, 0, FALSE, FALSE, FALSE, {0,0,0}},
{(const guchar*)"goldenrod", 218, 165, 32, FALSE, FALSE, FALSE, {0,0,0}},
{(const guchar*)"gray", 128, 128, 128, FALSE, FALSE, FALSE, {0,0,0}},
- {(const guchar*)"green", 0, 128, 0, FALSE, FALSE, FALSE, {0,0,0}},
+ {(const guchar*)"green", 0, 255, 0, FALSE, FALSE, FALSE, {0,0,0}},
{(const guchar*)"greenyellow", 173, 255, 47, FALSE, FALSE, FALSE, {0,0,0}},
{(const guchar*)"grey", 128, 128, 128, FALSE, FALSE, FALSE, {0,0,0}},
{(const guchar*)"honeydew", 240, 255, 240, FALSE, FALSE, FALSE, {0,0,0}},