You are here

public function SassColour::getAlpha in Sassy 7

Same name and namespace in other branches
  1. 7.3 phpsass/script/literals/SassColour.php \SassColour::getAlpha()

* Returns the alpha component (opacity) of this colour. *

Return value

float the alpha component (opacity) of this colour.

File

phamlp/sass/script/literals/SassColour.php, line 615

Class

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

Code

public function getAlpha() {
  return $this->alpha;
}