You are here

public static function SassScriptFunctions::blue in Sassy 7

Same name and namespace in other branches
  1. 7.3 phpsass/script/SassScriptFunctions.php \SassScriptFunctions::blue()

* Returns the blue component of a colour. *

Parameters

SassColour The colour: * @return new SassNumber The blue component of colour * @throws SassScriptFunctionException If $colour is not a colour

File

phamlp/sass/script/SassScriptFunctions.php, line 193

Class

SassScriptFunctions
SassScript functions class. A collection of functions for use in SassSCript. @package PHamlP @subpackage Sass.script

Code

public static function blue($colour) {
  SassLiteral::assertType($colour, 'SassColour');
  return new SassNumber($colour->blue);
}