diff --git a/src/quo/components/tags/summary_tag/view.cljs b/src/quo/components/tags/summary_tag/view.cljs index cd7b2c3cbc..a010ea4b4d 100644 --- a/src/quo/components/tags/summary_tag/view.cljs +++ b/src/quo/components/tags/summary_tag/view.cljs @@ -59,12 +59,15 @@ - :image-source - resource - image to display on :network, :collectible and :user - :theme - :light / :dark" [{:keys [label customization-color type container-style] - :as props - :or {customization-color colors/neutral-80-opa-5}}] - (let [theme (quo.theme/use-theme)] + :as props}] + (let [theme (quo.theme/use-theme) + default-color (if (= theme :light) + colors/neutral-80-opa-5 + colors/white-opa-5) + color (or customization-color default-color)] [rn/view {:accessibility-label :container - :style (merge (style/main (assoc props :customization-color customization-color) + :style (merge (style/main (assoc props :customization-color color) theme) container-style)} [left-view props] diff --git a/src/status_im/contexts/wallet/send/transaction_confirmation/account_summary.cljs b/src/status_im/contexts/wallet/send/transaction_confirmation/account_summary.cljs index cbc7965528..77ad8eb379 100644 --- a/src/status_im/contexts/wallet/send/transaction_confirmation/account_summary.cljs +++ b/src/status_im/contexts/wallet/send/transaction_confirmation/account_summary.cljs @@ -46,13 +46,18 @@ {:type summary-type :networks? true :values network-values - :account-props {:customization-color customization-color - :size 32 - :emoji emoji - :type :default - :name (or label address) - :full-name label - :address shortened-address}}])) + :account-props (cond-> {:customization-color customization-color + :size 32 + :emoji emoji + :type :default + :name (or label address) + :full-name label + :address shortened-address} + + (= recipient-type :address) + (assoc :full-name "0 x" + :monospace? true + :lowercase? true))}])) (defn from-summary []