Hi Sampurnima,
Thank you for contacting Syncfusion support.
We have support to customize the document editor background color and page border.
Please add the below CSS class in your sample to change the background color.
.e-de-background {
background-color: rgb(238, 238, 238); /* You can customize this color*/
}
|
To change page border color, please set the color value to “pageOutline” property in document editor as shown below.
/**
* Initialize document editor
*/
let editor: DocumentEditor = new DocumentEditor ({ enablePrint: true });
// Set page border color
editor.pageOutline = '#d1d1d1';
|
We have prepared a sample to represent these customizing options. Please refer to the sample from the following link.
Note: Page Content-Area color is white by default.
Regards,
Ramya T