It seems be caused in dark theme, so you should change color if isSystemDarkTheme()
or not.
val textColor = if (isSystemInDarkTheme()) {
Color.White
} else {
Color.Black
}
BasicTextField(
// ..
textStyle = LocalTextStyle.current.copy(color = textColor),
)