From 249f887531a5437fa4bda4dfc640e54f58a60142 Mon Sep 17 00:00:00 2001 From: Diogo Date: Wed, 4 Sep 2024 14:01:06 +0100 Subject: [PATCH] updated icon color --- .../kotlin/chat/simplex/common/views/chatlist/UserPicker.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chatlist/UserPicker.kt b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chatlist/UserPicker.kt index 3fcb84b9aa..6876070bdf 100644 --- a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chatlist/UserPicker.kt +++ b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chatlist/UserPicker.kt @@ -221,17 +221,18 @@ private fun UsersLayout( onClick = onShowAllProfilesClicked, enabled = !stopped, ) { + val iconColor = MaterialTheme.colors.secondary.copy(alpha = 0.63f) Box( contentAlignment = Alignment.Center, modifier = Modifier .size(31.dp * fontSizeSqrtMultiplier) .background(MaterialTheme.colors.surface, CircleShape) - .border(border = BorderStroke(2.dp, MaterialTheme.colors.secondary), shape = CircleShape), + .border(border = BorderStroke(2.dp, iconColor), shape = CircleShape), ) { Icon( painterResource(MR.images.ic_chevron_right), stringResource(MR.strings.your_chat_profiles), - tint = MaterialTheme.colors.secondary, + tint = iconColor, ) } }