fix send/receive icon colors for wallet nav bar

This commit is contained in:
ryleedavis 2023-04-05 16:45:33 -06:00
parent 9ebc7287c6
commit 848336bb07
4 changed files with 6 additions and 6 deletions

View file

@ -177,7 +177,7 @@ class ForestColors extends StackColorTheme {
@override @override
Color get bottomNavIconBack => const Color(0xFFA7C7CF); Color get bottomNavIconBack => const Color(0xFFA7C7CF);
@override @override
Color get bottomNavIconIcon => const Color(0xFF227386); Color get bottomNavIconIcon => const Color(0xFF22867A);
@override @override
Color get topNavIconPrimary => const Color(0xFF227386); Color get topNavIconPrimary => const Color(0xFF227386);

View file

@ -83,7 +83,7 @@ class OrangeColors extends StackColorTheme {
@override @override
Color get numpadBackDefault => const Color(0xFFF36B43); Color get numpadBackDefault => const Color(0xFFF36B43);
@override @override
Color get bottomNavBack => const Color(0xFFFFFFFF); Color get bottomNavBack => const Color(0xFFF36B43);
// button text/element // button text/element
@override @override

View file

@ -12,7 +12,7 @@ class ReceiveNavIcon extends StatelessWidget {
decoration: BoxDecoration( decoration: BoxDecoration(
color: Theme.of(context) color: Theme.of(context)
.extension<StackColors>()! .extension<StackColors>()!
.accentColorDark .bottomNavIconIcon
.withOpacity(0.4), .withOpacity(0.4),
borderRadius: BorderRadius.circular( borderRadius: BorderRadius.circular(
24, 24,
@ -24,7 +24,7 @@ class ReceiveNavIcon extends StatelessWidget {
Assets.svg.arrowDownLeft, Assets.svg.arrowDownLeft,
width: 12, width: 12,
height: 12, height: 12,
color: Theme.of(context).extension<StackColors>()!.accentColorDark, color: Theme.of(context).extension<StackColors>()!.bottomNavIconIcon,
), ),
), ),
); );

View file

@ -12,7 +12,7 @@ class SendNavIcon extends StatelessWidget {
decoration: BoxDecoration( decoration: BoxDecoration(
color: Theme.of(context) color: Theme.of(context)
.extension<StackColors>()! .extension<StackColors>()!
.accentColorDark .bottomNavIconIcon
.withOpacity(0.4), .withOpacity(0.4),
borderRadius: BorderRadius.circular( borderRadius: BorderRadius.circular(
24, 24,
@ -24,7 +24,7 @@ class SendNavIcon extends StatelessWidget {
Assets.svg.arrowUpRight, Assets.svg.arrowUpRight,
width: 12, width: 12,
height: 12, height: 12,
color: Theme.of(context).extension<StackColors>()!.accentColorDark, color: Theme.of(context).extension<StackColors>()!.bottomNavIconIcon,
), ),
), ),
); );