[fenix] For https://github.com/mozilla-mobile/fenix/issues/26609 - Update favicon dark mode background color for recent bookmarks and recent tabs

pull/600/head
Noah Bond 2 years ago committed by mergify[bot]
parent bb87210270
commit 87a8175c83

@ -161,7 +161,7 @@ private fun RecentBookmarkImage(bookmark: RecentBookmark) {
Box(
modifier = imageModifier.background(
color = when (isSystemInDarkTheme()) {
true -> PhotonColors.DarkGrey30
true -> PhotonColors.DarkGrey60
false -> PhotonColors.LightGrey30
}
),
@ -190,7 +190,7 @@ private fun PlaceholderBookmarkImage() {
Box(
modifier = imageModifier.background(
color = when (isSystemInDarkTheme()) {
true -> PhotonColors.DarkGrey30
true -> PhotonColors.DarkGrey60
false -> PhotonColors.LightGrey30
}
)

@ -328,7 +328,7 @@ private fun PlaceHolderTabIcon(modifier: Modifier) {
Box(
modifier = modifier.background(
color = when (isSystemInDarkTheme()) {
true -> PhotonColors.DarkGrey30
true -> PhotonColors.DarkGrey60
false -> PhotonColors.LightGrey30
}
)

Loading…
Cancel
Save