function setup()
 {
     $this->green = ColorUtils::rgb_rgbarr(127, 255, 64);
     $this->green_hex = ColorUtils::rgb_hex($this->green);
     $this->green_hsv = ColorUtils::rgb_hsv($this->green);
     $this->green_from_hsv = ColorUtils::hsv_rgb($this->green_hsv);
     $this->orange = ColorUtils::hex_rgb('#ed691f');
     $this->cyan = ColorUtils::hex_rgb('8bc');
     $this->red = ColorUtils::hex_rgb('f0');
 }