0

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

Only tabs color changes. Colored Tabs

codejava
  • 13
  • 6

1 Answers1

1

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.

Peter Nehila
  • 66
  • 1
  • 5