From fb2587397b843d6aa0684d688af8b801481c18bb Mon Sep 17 00:00:00 2001 From: Paul V Puey Date: Thu, 18 Apr 2024 10:36:45 -0700 Subject: [PATCH] Decrease opacity in Wallet list row for better visibility --- CHANGELOG.md | 1 + src/components/themed/WalletListCurrencyRow.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27c72425618..d1ce156a811 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ - changed: Upgrade to React Native v0.73.6 - changed: "Split" wallet menu options consolidated into one - changed: Paybis implementation to use SHA signatures and oneTimeToken +- changed: Increase opacity in wallet list gradient for better visibility - fixed: Possible to see receive address for a wallet requiring activation when creating the wallet from search - fixed: Glitch on transaction list scene when starting search - fixed: Properly set default buy/sell fiat amount for non-USD wallets diff --git a/src/components/themed/WalletListCurrencyRow.tsx b/src/components/themed/WalletListCurrencyRow.tsx index 749d7420bb4..ea489df3a29 100644 --- a/src/components/themed/WalletListCurrencyRow.tsx +++ b/src/components/themed/WalletListCurrencyRow.tsx @@ -46,7 +46,7 @@ const WalletListCurrencyRowComponent = (props: Props) => { // State // const iconColor = useIconColor({ pluginId, tokenId }) - const primaryColor = iconColor != null ? `${iconColor}88` : 'rgba(0, 0, 0, 0)' + const primaryColor = iconColor != null ? `${iconColor}30` : 'rgba(0, 0, 0, 0)' // // Handlers