fix: Update tint and text colors in OtherProfileMenu and OtherProfileScreen for better visibility

This commit is contained in:
2026-01-22 20:56:19 +05:00
parent 4e2e6d1259
commit 6fdad7a4c1
2 changed files with 6 additions and 5 deletions

View File

@@ -796,7 +796,7 @@ fun OtherProfileMenu(
icon = if (isBlocked) Icons.Default.CheckCircle else Icons.Default.Block,
text = if (isBlocked) "Unblock User" else "Block User",
onClick = onBlockClick,
tintColor = if (isDarkTheme) Color.White else Color.Black,
tintColor = PrimaryBlue,
textColor = if (isDarkTheme) Color.White else Color.Black
)
@@ -812,8 +812,8 @@ fun OtherProfileMenu(
icon = Icons.Default.Delete,
text = "Clear Chat History",
onClick = onClearChatClick,
tintColor = if (isDarkTheme) Color.White else Color.Black,
textColor = if (isDarkTheme) Color.White else Color.Black
tintColor = Color(0xFFFF3B30),
textColor = Color(0xFFFF3B30)
)
}
}