File tree Expand file tree Collapse file tree 6 files changed +12
-7
lines changed
widgets/wallet_navigation_bar/components/icons Expand file tree Collapse file tree 6 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ extension ThemeTypeExt on ThemeType {
3939 case "oledBlack" :
4040 return ThemeType .oledBlack;
4141 case "orange" :
42- return ThemeType .oledBlack ;
42+ return ThemeType .orange ;
4343 case "fruitSorbet" :
4444 return ThemeType .fruitSorbet;
4545 case "forest" :
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ class ForestColors extends StackColorTheme {
177177 @override
178178 Color get bottomNavIconBack => const Color (0xFFA7C7CF );
179179 @override
180- Color get bottomNavIconIcon => const Color (0xFF227386 );
180+ Color get bottomNavIconIcon => const Color (0xFF22867A );
181181
182182 @override
183183 Color get topNavIconPrimary => const Color (0xFF227386 );
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ class OrangeColors extends StackColorTheme {
8383 @override
8484 Color get numpadBackDefault => const Color (0xFFF36B43 );
8585 @override
86- Color get bottomNavBack => const Color (0xFFFFFFFF );
86+ Color get bottomNavBack => const Color (0xFFF36B43 );
8787
8888 // button text/element
8989 @override
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class ReceiveNavIcon extends StatelessWidget {
1212 decoration: BoxDecoration (
1313 color: Theme .of (context)
1414 .extension < StackColors > ()!
15- .accentColorDark
15+ .bottomNavIconIcon
1616 .withOpacity (0.4 ),
1717 borderRadius: BorderRadius .circular (
1818 24 ,
@@ -24,7 +24,7 @@ class ReceiveNavIcon extends StatelessWidget {
2424 Assets .svg.arrowDownLeft,
2525 width: 12 ,
2626 height: 12 ,
27- color: Theme .of (context).extension < StackColors > ()! .accentColorDark ,
27+ color: Theme .of (context).extension < StackColors > ()! .bottomNavIconIcon ,
2828 ),
2929 ),
3030 );
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class SendNavIcon extends StatelessWidget {
1212 decoration: BoxDecoration (
1313 color: Theme .of (context)
1414 .extension < StackColors > ()!
15- .accentColorDark
15+ .bottomNavIconIcon
1616 .withOpacity (0.4 ),
1717 borderRadius: BorderRadius .circular (
1818 24 ,
@@ -24,7 +24,7 @@ class SendNavIcon extends StatelessWidget {
2424 Assets .svg.arrowUpRight,
2525 width: 12 ,
2626 height: 12 ,
27- color: Theme .of (context).extension < StackColors > ()! .accentColorDark ,
27+ color: Theme .of (context).extension < StackColors > ()! .bottomNavIconIcon ,
2828 ),
2929 ),
3030 );
You can’t perform that action at this time.
0 commit comments