diff --git a/presentation/src/main/java/com/nto/presentation/composable/DecoratedButton.kt b/presentation/src/main/java/com/nto/presentation/composable/DecoratedButton.kt index 6c7d870..989d7c2 100644 --- a/presentation/src/main/java/com/nto/presentation/composable/DecoratedButton.kt +++ b/presentation/src/main/java/com/nto/presentation/composable/DecoratedButton.kt @@ -42,10 +42,10 @@ object DecoratedButtonValues { private val DisabledColors: ButtonColors @Composable get() = ButtonColors( + disabledContentColor = NTOTheme.colors.primaryBackground, + disabledContainerColor = NTOTheme.colors.buttonDisabled, contentColor = NTOTheme.colors.primaryBackground, - containerColor = NTOTheme.colors.buttonDisabled, - disabledContentColor = Color.Unspecified, - disabledContainerColor = Color.Unspecified + containerColor = NTOTheme.colors.button ) @Composable