diff --git a/assets/svg/themed/orange/stack-icon1.svg b/assets/svg/themed/orange/stack-icon1.svg
new file mode 100644
index 000000000..f316012d7
--- /dev/null
+++ b/assets/svg/themed/orange/stack-icon1.svg
@@ -0,0 +1,5 @@
+
diff --git a/lib/utilities/theme/color_theme.dart b/lib/utilities/theme/color_theme.dart
index eb728355e..9741d7326 100644
--- a/lib/utilities/theme/color_theme.dart
+++ b/lib/utilities/theme/color_theme.dart
@@ -39,7 +39,7 @@ extension ThemeTypeExt on ThemeType {
case "oledBlack":
return ThemeType.oledBlack;
case "orange":
- return ThemeType.oledBlack;
+ return ThemeType.orange;
case "fruitSorbet":
return ThemeType.fruitSorbet;
case "forest":
diff --git a/lib/utilities/theme/forest_colors.dart b/lib/utilities/theme/forest_colors.dart
index d6854d6e8..b3f46adc6 100644
--- a/lib/utilities/theme/forest_colors.dart
+++ b/lib/utilities/theme/forest_colors.dart
@@ -177,7 +177,7 @@ class ForestColors extends StackColorTheme {
@override
Color get bottomNavIconBack => const Color(0xFFA7C7CF);
@override
- Color get bottomNavIconIcon => const Color(0xFF227386);
+ Color get bottomNavIconIcon => const Color(0xFF22867A);
@override
Color get topNavIconPrimary => const Color(0xFF227386);
diff --git a/lib/utilities/theme/orange_colors.dart b/lib/utilities/theme/orange_colors.dart
index 48074c94f..b8c766bdb 100644
--- a/lib/utilities/theme/orange_colors.dart
+++ b/lib/utilities/theme/orange_colors.dart
@@ -83,7 +83,7 @@ class OrangeColors extends StackColorTheme {
@override
Color get numpadBackDefault => const Color(0xFFF36B43);
@override
- Color get bottomNavBack => const Color(0xFFFFFFFF);
+ Color get bottomNavBack => const Color(0xFFF36B43);
// button text/element
@override
diff --git a/lib/widgets/wallet_navigation_bar/components/icons/receive_nav_icon.dart b/lib/widgets/wallet_navigation_bar/components/icons/receive_nav_icon.dart
index 54420543f..62c9aae63 100644
--- a/lib/widgets/wallet_navigation_bar/components/icons/receive_nav_icon.dart
+++ b/lib/widgets/wallet_navigation_bar/components/icons/receive_nav_icon.dart
@@ -12,7 +12,7 @@ class ReceiveNavIcon extends StatelessWidget {
decoration: BoxDecoration(
color: Theme.of(context)
.extension()!
- .accentColorDark
+ .bottomNavIconIcon
.withOpacity(0.4),
borderRadius: BorderRadius.circular(
24,
@@ -24,7 +24,7 @@ class ReceiveNavIcon extends StatelessWidget {
Assets.svg.arrowDownLeft,
width: 12,
height: 12,
- color: Theme.of(context).extension()!.accentColorDark,
+ color: Theme.of(context).extension()!.bottomNavIconIcon,
),
),
);
diff --git a/lib/widgets/wallet_navigation_bar/components/icons/send_nav_icon.dart b/lib/widgets/wallet_navigation_bar/components/icons/send_nav_icon.dart
index 7b7da5799..cbffa3396 100644
--- a/lib/widgets/wallet_navigation_bar/components/icons/send_nav_icon.dart
+++ b/lib/widgets/wallet_navigation_bar/components/icons/send_nav_icon.dart
@@ -12,7 +12,7 @@ class SendNavIcon extends StatelessWidget {
decoration: BoxDecoration(
color: Theme.of(context)
.extension()!
- .accentColorDark
+ .bottomNavIconIcon
.withOpacity(0.4),
borderRadius: BorderRadius.circular(
24,
@@ -24,7 +24,7 @@ class SendNavIcon extends StatelessWidget {
Assets.svg.arrowUpRight,
width: 12,
height: 12,
- color: Theme.of(context).extension()!.accentColorDark,
+ color: Theme.of(context).extension()!.bottomNavIconIcon,
),
),
);