Revert "MemberProfileImage: use defaultProfileIconColor instead of secondaryVariant"

This reverts commit bea3f24664.
This commit is contained in:
another-simple-pixel
2026-05-18 07:50:57 -07:00
parent 1923b87240
commit f1d80307f6
2 changed files with 2 additions and 2 deletions
@@ -895,7 +895,7 @@ private fun RoleSelectionRow(
fun MemberProfileImage(
size: Dp,
mem: GroupMember,
color: Color = defaultProfileIconColor(),
color: Color = MaterialTheme.colors.secondaryVariant,
backgroundColor: Color? = null,
async: Boolean = false
) {
@@ -25,7 +25,7 @@ import dev.icerock.moko.resources.ImageResource
import kotlin.math.max
@Composable
fun defaultProfileIconColor(): Color =
private fun defaultProfileIconColor(): Color =
if (CurrentColors.value.base == DefaultTheme.LIGHT)
MaterialTheme.colors.background.mixWith(MaterialTheme.colors.onBackground, 0.97f)
else