From 864bdd63faea90f79012827080506113150247f6 Mon Sep 17 00:00:00 2001 From: Khushboo Mehta Date: Tue, 12 Jul 2022 15:55:38 +0200 Subject: [PATCH] fix(@desktop/wallet): Fix for Wallet icon background color seems off in wallet settings under dark mode fixes #6059 --- ui/app/AppLayouts/Profile/controls/WalletAccountDelegate.qml | 2 +- ui/app/AppLayouts/Wallet/views/LeftTabView.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/app/AppLayouts/Profile/controls/WalletAccountDelegate.qml b/ui/app/AppLayouts/Profile/controls/WalletAccountDelegate.qml index 80bef9bfd4..d1167177ec 100644 --- a/ui/app/AppLayouts/Profile/controls/WalletAccountDelegate.qml +++ b/ui/app/AppLayouts/Profile/controls/WalletAccountDelegate.qml @@ -18,7 +18,7 @@ StatusListItem { icon.name: !account.emoji ? "filled-account": "" icon.letterSize: 14 icon.isLetterIdenticon: !!account.emoji - icon.background.color: Theme.palette.indirectColor1 + icon.background.color: Theme.palette.primaryColor3 width: parent.width components: !showShevronIcon ? [] : [ shevronIcon ] diff --git a/ui/app/AppLayouts/Wallet/views/LeftTabView.qml b/ui/app/AppLayouts/Wallet/views/LeftTabView.qml index b0aff968ce..46f7639798 100644 --- a/ui/app/AppLayouts/Wallet/views/LeftTabView.qml +++ b/ui/app/AppLayouts/Wallet/views/LeftTabView.qml @@ -112,7 +112,7 @@ Rectangle { icon.name: !model.emoji ? "filled-account": "" icon.letterSize: 14 icon.isLetterIdenticon: !!model.emoji ? true : false - icon.background.color: Theme.palette.indirectColor1 + icon.background.color: Theme.palette.primaryColor3 onClicked: { changeSelectedAccount(index) showSavedAddresses(false)