How change active tab color in React material-ui?

none picture none · May 19, 2016 · Viewed 39.5k times · Source

How I can change the color of the active tab?

I mean, this pink line, look at the pic.

enter image description here

Answer

André Junges picture André Junges · May 19, 2016

Well, you have two options:

You could customize the theme:
http://www.material-ui.com/#/customization/themes

But the easiest way would be using the inkBarStyle property.
You can see it in the docs..
Example:

<Tabs inkBarStyle={{background: 'blue'}}>...