From 4c26ac16d335c2c77a21c5f7a3901e3af131458e Mon Sep 17 00:00:00 2001 From: martin Date: Wed, 14 Aug 2002 05:58:36 +0000 Subject: [PATCH] Orange --- lib/graphlib.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/graphlib.php b/lib/graphlib.php index 4857c6b083..43bcfab664 100644 --- a/lib/graphlib.php +++ b/lib/graphlib.php @@ -1378,6 +1378,9 @@ function init_colours() { $this->colour['red'] = ImageColorAllocate ($this->image, 0xFF, 0x00, 0x00); $this->colour['ltred'] = ImageColorAllocate ($this->image, 0xFF, 0x99, 0x99); $this->colour['ltltred'] = ImageColorAllocate ($this->image, 0xFF, 0xCC, 0xCC); + $this->colour['orange'] = ImageColorAllocate ($this->image, 0xFF, 0x66, 0x00); + $this->colour['ltorange'] = ImageColorAllocate ($this->image, 0xFF, 0x99, 0x66); + $this->colour['ltltorange'] = ImageColorAllocate ($this->image, 0xFF, 0xcc, 0x99); $this->colour['lime'] = ImageColorAllocate ($this->image, 0x00, 0xFF, 0x00); $this->colour['yellow'] = ImageColorAllocate ($this->image, 0xFF, 0xFF, 0x00); $this->colour['blue'] = ImageColorAllocate ($this->image, 0x00, 0x00, 0xFF); -- 2.39.5