You are here

public function SassColour::getValue in Sassy 7.3

Same name and namespace in other branches
  1. 7 phamlp/sass/script/literals/SassColour.php \SassColour::getValue()

Returns the value of this colour.

Return value

array the colour

Overrides SassLiteral::getValue

File

phpsass/script/literals/SassColour.php, line 722

Class

SassColour
SassColour class. A SassScript object representing a CSS colour.

Code

public function getValue() {
  return $this->rgb;
}