I am brand new to using material ui and have been attempting to alter the colors of the selected tab.
Currently, the color is a dark blue shade and I am aiming to change it to red.
I tried applying inline styles, but unfortunately, there was no change. Could you advise me on how to resolve this issue?
Below, I have shared my sandbox link and code snippet for reference:
https://codesandbox.io/s/yqj5q8v461
<Tabs
value={value}
onChange={this.handleChange}
scrollable
scrollButtons="on"
indicatorColor="primary"
textColor="primary"
>
<Tab
label="Search"
icon={<PhoneIcon />}
style={{ border: "red" }}
/>
<Tab
favorites={favorites}
label="Favorites"
icon={<FavoriteIcon />}
/>
</Tabs>