Just dipping my toes into the world of Material UI, so bear with me if this question sounds a bit amateur. I've been playing around with Material UI Tabs and successfully tweaked the CSS to fit my needs. Take a look below:
https://i.stack.imgur.com/BXTOA.png
However, I've run into an issue where the selected tab and the other tabs seem to have different opacity levels, even though they are technically the same color. Despite scouring online Material UI documentation, I can't seem to find a solution to make them consistent. I've tried various approaches like tweaking [TabIndicatorProps] or adding the snippet below to the Tabs class:
"&.Mui-selected": {
color: "1D4659",
opacity: "70%"
}
Does anyone have any insights on how to address this? Ideally, I'd like to ensure that both the selected tab and the others maintain uniformity in appearance.