feat: Update menu icon color for improved visibility in ChatsListScreen

This commit is contained in:
2026-01-17 21:03:19 +05:00
parent 569aa34432
commit c9136ed499
10 changed files with 939 additions and 879 deletions

View File

@@ -105,7 +105,7 @@ fun SetPasswordScreen(
Icon( Icon(
imageVector = Icons.Default.ArrowBack, imageVector = Icons.Default.ArrowBack,
contentDescription = "Back", contentDescription = "Back",
tint = textColor tint = textColor.copy(alpha = 0.6f)
) )
} }
Spacer(modifier = Modifier.weight(1f)) Spacer(modifier = Modifier.weight(1f))

View File

@@ -285,7 +285,7 @@ fun UnlockScreen(
Icon( Icon(
imageVector = Icons.Default.KeyboardArrowDown, imageVector = Icons.Default.KeyboardArrowDown,
contentDescription = null, contentDescription = null,
tint = secondaryTextColor, tint = secondaryTextColor.copy(alpha = 0.6f),
modifier = Modifier modifier = Modifier
.size(24.dp) .size(24.dp)
.graphicsLayer { .graphicsLayer {
@@ -332,7 +332,7 @@ fun UnlockScreen(
Icon( Icon(
Icons.Default.Search, Icons.Default.Search,
contentDescription = null, contentDescription = null,
tint = secondaryTextColor tint = secondaryTextColor.copy(alpha = 0.6f)
) )
}, },
colors = OutlinedTextFieldDefaults.colors( colors = OutlinedTextFieldDefaults.colors(

View File

@@ -80,7 +80,7 @@ fun WelcomeScreen(
Icon( Icon(
Icons.Default.ArrowBack, Icons.Default.ArrowBack,
contentDescription = "Back", contentDescription = "Back",
tint = textColor tint = textColor.copy(alpha = 0.6f)
) )
} }
} }

View File

@@ -802,7 +802,7 @@ fun ChatDetailScreen(
Icon( Icon(
Icons.Default.Call, Icons.Default.Call,
contentDescription = "Call", contentDescription = "Call",
tint = headerIconColor tint = headerIconColor.copy(alpha = 0.6f)
) )
} }
} }
@@ -826,7 +826,7 @@ fun ChatDetailScreen(
Icon( Icon(
Icons.Default.MoreVert, Icons.Default.MoreVert,
contentDescription = "More", contentDescription = "More",
tint = headerIconColor, tint = headerIconColor.copy(alpha = 0.6f),
modifier = Modifier.size(26.dp) modifier = Modifier.size(26.dp)
) )
} }
@@ -2480,7 +2480,7 @@ private fun MessageInputBar(
Icon( Icon(
Icons.Default.AttachFile, Icons.Default.AttachFile,
contentDescription = "Attach", contentDescription = "Attach",
tint = if (isDarkTheme) Color(0xFF8E8E93) else Color(0xFF8E8E93), tint = if (isDarkTheme) Color(0xFF8E8E93).copy(alpha = 0.6f) else Color(0xFF8E8E93).copy(alpha = 0.6f),
modifier = Modifier.size(24.dp) modifier = Modifier.size(24.dp)
) )
} }
@@ -2534,7 +2534,7 @@ private fun MessageInputBar(
if (showEmojiPicker) Icons.Default.Keyboard if (showEmojiPicker) Icons.Default.Keyboard
else Icons.Default.SentimentSatisfiedAlt, else Icons.Default.SentimentSatisfiedAlt,
contentDescription = "Emoji", contentDescription = "Emoji",
tint = if (isDarkTheme) Color(0xFF8E8E93) else Color(0xFF8E8E93), tint = if (isDarkTheme) Color(0xFF8E8E93).copy(alpha = 0.6f) else Color(0xFF8E8E93).copy(alpha = 0.6f),
modifier = Modifier.size(24.dp) modifier = Modifier.size(24.dp)
) )
} }

View File

@@ -136,7 +136,7 @@ fun ForwardChatPickerBottomSheet(
Icon( Icon(
Icons.Default.Close, Icons.Default.Close,
contentDescription = "Close", contentDescription = "Close",
tint = secondaryTextColor tint = secondaryTextColor.copy(alpha = 0.6f)
) )
} }
} }

View File

@@ -126,7 +126,7 @@ fun SearchScreen(
Icon( Icon(
Icons.Default.ArrowBack, Icons.Default.ArrowBack,
contentDescription = "Back", contentDescription = "Back",
tint = textColor tint = textColor.copy(alpha = 0.6f)
) )
} }
@@ -189,7 +189,7 @@ fun SearchScreen(
Icon( Icon(
Icons.Default.Clear, Icons.Default.Clear,
contentDescription = "Clear", contentDescription = "Clear",
tint = secondaryTextColor tint = secondaryTextColor.copy(alpha = 0.6f)
) )
} }
} }
@@ -381,7 +381,7 @@ private fun RecentUserItem(
Icon( Icon(
Icons.Default.Close, Icons.Default.Close,
contentDescription = "Remove", contentDescription = "Remove",
tint = secondaryTextColor, tint = secondaryTextColor.copy(alpha = 0.6f),
modifier = Modifier.size(20.dp) modifier = Modifier.size(20.dp)
) )
} }