feat: Update menu icon color for improved visibility in ChatsListScreen

This commit is contained in:
k1ngsterr1
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(
imageVector = Icons.Default.ArrowBack,
contentDescription = "Back",
tint = textColor
tint = textColor.copy(alpha = 0.6f)
)
}
Spacer(modifier = Modifier.weight(1f))

View File

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

View File

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

View File

@@ -802,7 +802,7 @@ fun ChatDetailScreen(
Icon(
Icons.Default.Call,
contentDescription = "Call",
tint = headerIconColor
tint = headerIconColor.copy(alpha = 0.6f)
)
}
}
@@ -826,7 +826,7 @@ fun ChatDetailScreen(
Icon(
Icons.Default.MoreVert,
contentDescription = "More",
tint = headerIconColor,
tint = headerIconColor.copy(alpha = 0.6f),
modifier = Modifier.size(26.dp)
)
}
@@ -2480,7 +2480,7 @@ private fun MessageInputBar(
Icon(
Icons.Default.AttachFile,
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)
)
}
@@ -2534,7 +2534,7 @@ private fun MessageInputBar(
if (showEmojiPicker) Icons.Default.Keyboard
else Icons.Default.SentimentSatisfiedAlt,
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)
)
}

View File

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

View File

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