Exemple #1
0
 /**
  * Get color in HEX.
  *
  * @return HEX
  */
 public function toHEX()
 {
     return new HEX(RGBtoHEX(...C256toRGB($this->code())));
 }
Exemple #2
0
 /**
  * Get color in HEX.
  *
  * @return HEX
  */
 public function toHEX()
 {
     return new HEX(RGBtoHEX(...HSLtoRGB(...$this->hsl())));
 }
Exemple #3
0
 /**
  * Get color in HEX.
  *
  * @return HEX
  */
 public function toHEX()
 {
     return new HEX(RGBtoHEX(...$this->rgb()));
 }