Hi David,
Greetings from Syncfusion Support.
We can customize the tab item header and content by overriding the respective CSS classes.
The font size the tab header text
We can change the font size of the tab header text by overriding the below CSS.
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-text,
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-icon{
font-size: 20px;
} |
font color of the tab header text
To change the font color of the tab header, it could be possible by overriding the below CSS
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap,
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-icon{
color: crimson;
} |
The background color of the tab content body section
We can change the background color of the tab content like below
|
.e-tab .e-content > .e-item.e-active{
background: antiquewhite;
} |
For your reference, we prepared the sample and it can be available in the below link.
Kindly check the above sample and get back to us if you need any further assistance.
Regards,
Vengatesh