Looking at Tabs specs from material3 the inactive state color is
On surface variant
. But the implementation we have:
Copy code
package androidx.compose.material3
@Composable
fun Tab(
...
selectedContentColor: Color = LocalContentColor.current,
unselectedContentColor: Color = selectedContentColor,
)