fix: update text color based on theme in ChatsListScreen and optimize status bar color handling in ImageEditorScreen

This commit is contained in:
k1ngsterr1
2026-02-04 03:12:09 +05:00
parent d5d3d5e56d
commit 6d9fe931bb

View File

@@ -481,7 +481,7 @@ fun ChatsListScreen(
text = accountName,
fontSize = 16.sp,
fontWeight = FontWeight.SemiBold,
color = Color.White
color = if (isDarkTheme) Color.White else Color.Black
)
}
@@ -492,7 +492,7 @@ fun ChatsListScreen(
text =
"@$accountUsername",
fontSize = 13.sp,
color = Color.White.copy(alpha = 0.7f)
color = if (isDarkTheme) Color.White.copy(alpha = 0.7f) else Color.Black.copy(alpha = 0.7f)
)
}
}