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:
parent
bb87210270
commit
87a8175c83
@ -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
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
@ -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
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user