From: Vincent Vanwaelscappel Date: Fri, 7 Jul 2023 09:37:53 +0000 (+0200) Subject: wip #6117 @0.25 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=2aa62559b73513c5b208f494e05608fada5d2819;p=cubist_util.git wip #6117 @0.25 --- diff --git a/src/Graphics/Color.php b/src/Graphics/Color.php index 0ac57c0..d4ade5a 100644 --- a/src/Graphics/Color.php +++ b/src/Graphics/Color.php @@ -147,7 +147,7 @@ class Color } elseif ($this->_alpha == 1) { return '#' . $this->toHexRVB(); } - return 'rgba(' . self::_to255($this->_red) . ',' . self::_to255($this->_green) . ',' . self::_to255($this->_blue) . ',' . $this->_alpha . ')'; + return 'rgba(' . self::_to255($this->_red) . ', ' . self::_to255($this->_green) . ', ' . self::_to255($this->_blue) . ', ' . $this->_alpha . ')'; } public function toHexRVB()