From 566e6c193432a9f70792d691547f4ebe1a7d3dfd Mon Sep 17 00:00:00 2001 From: another-simple-pixel Date: Sat, 16 May 2026 14:41:58 -0700 Subject: [PATCH] ChatInfoImage: lighten LIGHT default avatar to halfway between white and canvas --- .../kotlin/chat/simplex/common/views/helpers/ChatInfoImage.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/helpers/ChatInfoImage.kt b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/helpers/ChatInfoImage.kt index abdaa23768..e33a59243d 100644 --- a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/helpers/ChatInfoImage.kt +++ b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/helpers/ChatInfoImage.kt @@ -27,7 +27,7 @@ import kotlin.math.max @Composable private fun defaultProfileIconColor(): Color = if (CurrentColors.value.base == DefaultTheme.LIGHT) - MaterialTheme.colors.background.mixWith(MaterialTheme.colors.onBackground, 0.88f) + MaterialTheme.colors.background.mixWith(MaterialTheme.colors.onBackground, 0.91f) else MaterialTheme.colors.secondaryVariant