m = rgbPattern.matcher(value);
if (!m.matches ())
{
//Invalid color format: {0}
problems.add(new FXGInvalidColorValueProblem(node.getDocumentPath(), node.getStartLine(),
node.getStartColumn(), name, value));
return defaultValue;
}
value = value.substring(1);