Hi,
I am using Aspose words for Java 10.2 for creating a new document. In that, i have set the background color for the text using the code,
Font font = run.getFont();
java.awt.Color color = new java.awt.Color(195,214,155); //light green color
font.setColor(color);
But my text background color appears to be gray in document.Please help me in fixing this.