2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-17 15:26:23 +00:00

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

This commit is contained in:
Noah Bond 2022-08-31 14:40:38 -07:00 committed by mergify[bot]
parent bb87210270
commit 87a8175c83
2 changed files with 3 additions and 3 deletions

View File

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

View File

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