Fix reminder dialog button colors

pull/2923/head
Alex Baker 1 week ago
parent 95ecac8e7c
commit 58955bd0a1

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