toCssValue method

String toCssValue()

To css color value.

Implementation

String toCssValue()
{
  if (isEmpty) {
    // Empty is transparent.
    return EMPTY_COLOR_CSSVALUE;
  }
  else {
    return toHtmlHexTriplet();
  }
}