Fix reminder dialog button colors

pull/2923/head
Alex Baker 4 months ago
parent 95ecac8e7c
commit 58955bd0a1

@ -31,12 +31,12 @@ object Constants {
@Composable @Composable
fun textButtonColors() = ButtonDefaults.textButtonColors( fun textButtonColors() = ButtonDefaults.textButtonColors(
contentColor = MaterialTheme.colorScheme.onSecondary contentColor = MaterialTheme.colorScheme.onSurface
) )
@Composable @Composable
fun textFieldColors() = OutlinedTextFieldDefaults.colors( fun textFieldColors() = OutlinedTextFieldDefaults.colors(
cursorColor = MaterialTheme.colorScheme.secondary, cursorColor = MaterialTheme.colorScheme.onSurface,
focusedTextColor = MaterialTheme.colorScheme.onSecondary.copy(alpha = ContentAlpha.high), focusedTextColor = MaterialTheme.colorScheme.onSurface.copy(alpha = ContentAlpha.high),
) )
} }
Loading…
Cancel
Save