commit 6d6b91115b637f2989b31f264c454aff0f3310c5 parent c3878352f5cb8661025be5330d9281780bf7f225 Author: Marc Stibane <marc@taler.net> Date: Sat, 4 Jul 2026 10:27:02 +0200 Colors: Taler/Primary for Incoming/Outgoing Diffstat:
| M | TalerWallet1/Helper/WalletColors.swift | | | 8 | ++++---- |
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/TalerWallet1/Helper/WalletColors.swift b/TalerWallet1/Helper/WalletColors.swift @@ -147,12 +147,12 @@ public struct WalletColors { } func pendingColor(_ incoming: Bool) -> Color { - incoming ? Color("PendingIncoming") - : Color("PendingOutgoing") + incoming ? talerColor // Color("PendingIncoming") + : primary() // Color("PendingOutgoing") } func transactionColor(_ incoming: Bool) -> Color { - incoming ? Color("Incoming") - : Color("Outgoing") + incoming ? talerColor // Color("Incoming") + : primary() // Color("Outgoing") } }