Search code examples
reactjsmaterial-ui

How to change active tab color in Material UI?


How I can change the color of the active tab?

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

enter image description here


Solution

  • Hi if anyone is still having issues with changing the color, following worked for me:

    <Tabs
      value={value}
      onChange={this.handleChange}
      TabIndicatorProps={{
        style: {
          backgroundColor: "#D97D54"
        }
      }}
    >
    ...
    </Tabs>