How change active tab color in React material-ui?
问题 How I can change the color of the active tab? I mean, this pink line, look at the pic. 回答1: 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'}}>... 回答2: @Risa's solution works just fine and should be the accepted answer. My example of her explanation looks like this: <Tabs fullWidth centered classes