String pn, Value v) {
Paint p = PaintServer.convertPaint
(target.getElement(), null, v, 1.0f, ctx);
if (p instanceof Color) {
Color c = (Color) p;
return new AnimatableColorValue(target,
c.getRed() / 255f,
c.getGreen() / 255f,
c.getBlue() / 255f);
}
// XXX Indicate that the parsed value wasn't a Color?