For #26609 - Update favicon dark mode background color for recent bookmarks and recent tabs

pull/543/head
Noah Bond 2 years ago committed by mergify[bot]
parent 7dbdde3473
commit bc6ec7a64e

@ -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