Text() composable draws text with some transparency on surfaces with primary color:
val Purple500 = Color(0xFF6200EE)
private val LightColorPalette = lightColors(
primary = Purple500,
primaryVariant = Purple700,
secondary = Teal200
)
ColorsTestTheme {
// A surface container using the 'background' color from the theme
Surface(color = MaterialTheme.colors.primary) {
Column {
Text("Android", fontSize = 55.sp)
Text("Android", color = Color.White, fontSize = 55.sp)
}
}
}

Can I make text 100% opaque for ALL Text() composables with some BUILT-IN API?
Usually I get design mockups with opaque text :)
I realize that I can implement my own composable like OpaqueText(<params>, @Composable () -> Unit)
and use it to draw opaque text :). I'm just wondering if there is a way to configure something in compose in order to achieve the same result with built-in Text() composable.