From e6372230745d8c5648f5c3367e1917259e849298 Mon Sep 17 00:00:00 2001 From: Nikolaus Heger Date: Wed, 5 Aug 2026 16:37:21 +0800 Subject: [PATCH] home: tint action button icons with theme accentOrange so swap matches send/receive --- mobile-app/lib/v2/screens/home/home_screen.dart | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mobile-app/lib/v2/screens/home/home_screen.dart b/mobile-app/lib/v2/screens/home/home_screen.dart index 3889e260..95dd84bf 100644 --- a/mobile-app/lib/v2/screens/home/home_screen.dart +++ b/mobile-app/lib/v2/screens/home/home_screen.dart @@ -440,7 +440,12 @@ class _HomeScreenState extends ConsumerState { label: label, onTap: onTap, isDisabled: isDisabled, - icon: SvgPicture.asset(iconAsset, width: 24, height: 24), + icon: SvgPicture.asset( + iconAsset, + width: 24, + height: 24, + colorFilter: ColorFilter.mode(context.colors.accentOrange, BlendMode.srcIn), + ), iconPlacement: IconPlacement.top, padding: const EdgeInsets.all(14), variant: ButtonVariant.secondary,