return CURRENTCOLOR_VALUE;
}
return super.createValue(lu);
case LexicalUnit.SAC_RGBCOLOR:
LexicalUnit l = lu.getParameters();
ValueFactory ph = new ColorComponentFactory(getParser());
CSSPrimitiveValue r = new CSSOMValue(ph, createColorValue(l));
l = l.getNextLexicalUnit().getNextLexicalUnit();
CSSPrimitiveValue g = new CSSOMValue(ph, createColorValue(l));
l = l.getNextLexicalUnit().getNextLexicalUnit();
CSSPrimitiveValue b = new CSSOMValue(ph, createColorValue(l));