Is it possible to set Element Shape background color with Hexadecimal format eg #B6D7A8 ? I see an example here, Google Slides API- How to change text color for all shapes of a certain color
However, the Google Slide API reference does not mention it. I want to be sure, and specifically for Java environment.
https://developers.google.com/slides/reference/rest/v1/presentations.pages/other#Page.OpaqueColor
requests.add(new Request()
.setUpdateShapeProperties(new UpdateShapePropertiesRequest()
.setObjectId(elementRandomString)
.setShapeProperties(new ShapeProperties()
.setShapeBackgroundFill(new ShapeBackgroundFill()
.setSolidFill(new SolidFill()
.setColor(new Col)