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(
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)
)
}
}