diff --git a/lib/pages/wallet_view/sub_widgets/wallet_navigation_bar.dart b/lib/pages/wallet_view/sub_widgets/wallet_navigation_bar.dart index b82992673..04147c883 100644 --- a/lib/pages/wallet_view/sub_widgets/wallet_navigation_bar.dart +++ b/lib/pages/wallet_view/sub_widgets/wallet_navigation_bar.dart @@ -27,7 +27,7 @@ class WalletNavigationBar extends StatelessWidget { return Container( height: height, decoration: BoxDecoration( - color: Theme.of(context).extension()!.popupBG, + color: Theme.of(context).extension()!.bottomNavBack, boxShadow: [ Theme.of(context).extension()!.standardBoxShadow ], diff --git a/lib/utilities/theme/dark_colors.dart b/lib/utilities/theme/dark_colors.dart index 04e36a537..b28880da8 100644 --- a/lib/utilities/theme/dark_colors.dart +++ b/lib/utilities/theme/dark_colors.dart @@ -70,7 +70,7 @@ class DarkColors extends StackColorTheme { @override Color get numpadBackDefault => const Color(0xFF4C86E9); @override - Color get bottomNavBack => const Color(0xFFA2A2A2); + Color get bottomNavBack => const Color(0xFF3E4148); // button text/element @override diff --git a/lib/utilities/theme/light_colors.dart b/lib/utilities/theme/light_colors.dart index e3d9eeb3c..4c7ac7ab4 100644 --- a/lib/utilities/theme/light_colors.dart +++ b/lib/utilities/theme/light_colors.dart @@ -70,7 +70,7 @@ class LightColors extends StackColorTheme { @override Color get numpadBackDefault => const Color(0xFF232323); @override - Color get bottomNavBack => const Color(0xFFA2A2A2); + Color get bottomNavBack => const Color(0xFFFFFFFF); // button text/element @override