Skip to content
Guides

Themes

Theme refers to using different background colors to render PDF document pages when displaying PDF files to adapt to user preferences and scene needs, enhancing the reading experience.

When modifying the theme, only the visual effects during document display are altered, and it does not modify the PDF document data on the disk. The theme settings are not saved within the PDF document data.

This example shows how to set the dark theme:

java
readerView.setReadBackgroundColor(0xFF000000);

Explanation of Themes

ModeDescriptionOption Values
Light Color ModeUses a white background and black text, suitable for reading in well-lit environments.0xFFFFFFFF
Dark ModeUses a dark background and light text, suitable for reading in low-light environments.0xFF000000
Soft ModeUse a beige background for users who are used to reading on paper.0xFFFFEFBE
Eye Protection ModeSoft light green background reduces discomfort from high brightness and strong contrast when reading, effectively relieving visual fatigue.0xFFCDE6D0
Custom Color ModeCustomizable color scheme.Any hexadecimal value.