From: martin Date: Wed, 14 Aug 2002 05:27:35 +0000 (+0000) Subject: Added some new colours X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=fb8418d9bcfe2e191373b0eae8f8f2c6d756cf97;p=moodle.git Added some new colours --- diff --git a/lib/graphlib.php b/lib/graphlib.php index e566df522f..4857c6b083 100644 --- a/lib/graphlib.php +++ b/lib/graphlib.php @@ -1376,6 +1376,8 @@ function init_colours() { $this->colour['purple'] = ImageColorAllocate ($this->image, 0x80, 0x00, 0x80); $this->colour['gray'] = ImageColorAllocate ($this->image, 0x80, 0x80, 0x80); $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['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);