Change Jfoenix TabbedPane Header Color

124 Views Asked by At

How to change jfoenix tabbedpane default header color? jFoenix TabbedPane Header

Only tabs color changes. Colored Tabs

1

There are 1 best solutions below

1
On

You can do it using css:

.tab{
-fx-background-color:red;
}

.tab-header-background{
-fx-background-color:red;
}

So far this is all i can do for you. If you have any questions ask them.