Introduction
In Apex Interactive Report design, look and feel is a term used with respect to a graphical user interface and comprises aspects of its design, including elements such as colors, shapes, layout, and typefaces.
To Change the Report Field Title color
.apexir_WORKSHEET_DATA th div {font-size:12px; color:black; }
To draw border for the Report
table.apexir_WORKSHEET_DATA th div{text-decoration:none;}
table.apexir_WORKSHEET_DATA td, table.apexir_WORKSHEET_DATA th {border:1px solid darkblue}
To Give Background color for report and change the report font color
.apexir_WORKSHEET_DATA td {font-size:11px; color:DarkBlue;background-color:whitesmoke;}
The above code will print like white smoke as background color of report and text color of the report will be dark blue.
[The above codes should be written in HTML Header of the page, within the below tag]<style>
</style>
Call To Action
For Oracle apex development and customization please do visit us..Our company website https://doyensys.com/
Conclusion
By this you can add the title color,font color and background color to the interactive report.