You are here

public function ColorRGB::getGreen in Color Field 8.2

Get the green value (rounded).

Return value

int The green value

3 calls to ColorRGB::getGreen()
ColorRGB::toHex in src/ColorRGB.php
Get the color as a hex instance.
ColorRGB::toHsl in src/ColorRGB.php
Get the color as a HSL instance.
ColorRGB::toString in src/ColorRGB.php
A string representation of this color in the current format.

File

src/ColorRGB.php, line 79

Class

ColorRGB
RGB represents the RGB color format.

Namespace

Drupal\color_field

Code

public function getGreen() {
  return 0.5 + $this->green | 0;
}