From 15cfaf21a356ac6fdf103addfa57a4f54e1b35a8 Mon Sep 17 00:00:00 2001 From: another-simple-pixel Date: Sun, 5 Jul 2026 16:16:20 -0700 Subject: [PATCH] Make the SIMPLEX contact-info action icons white The round accent buttons in the contact-info screen (search, call, video, mute) showed dark icons on the cyan fill on SIMPLEX. They are now white; the other themes are unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) --- .../kotlin/chat/simplex/common/views/chat/ChatInfoView.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chat/ChatInfoView.kt b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chat/ChatInfoView.kt index a099bf333b..8e063f76e3 100644 --- a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chat/ChatInfoView.kt +++ b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chat/ChatInfoView.kt @@ -1062,7 +1062,7 @@ fun InfoViewActionButton( icon, contentDescription = null, Modifier.size(22.dp * fontSizeSqrtMultiplier), - tint = if (disabledLook) MaterialTheme.colors.secondary else MaterialTheme.colors.onPrimary + tint = if (disabledLook) MaterialTheme.colors.secondary else if (CurrentColors.value.base == DefaultTheme.SIMPLEX) Color.White else MaterialTheme.colors.onPrimary ) } }