mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
fix send/receive icon colors for wallet nav bar
This commit is contained in:
parent
9ebc7287c6
commit
848336bb07
4 changed files with 6 additions and 6 deletions
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -12,7 +12,7 @@ class ReceiveNavIcon extends StatelessWidget {
|
|||
decoration: BoxDecoration(
|
||||
color: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.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<StackColors>()!.accentColorDark,
|
||||
color: Theme.of(context).extension<StackColors>()!.bottomNavIconIcon,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
|
|
@ -12,7 +12,7 @@ class SendNavIcon extends StatelessWidget {
|
|||
decoration: BoxDecoration(
|
||||
color: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.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<StackColors>()!.accentColorDark,
|
||||
color: Theme.of(context).extension<StackColors>()!.bottomNavIconIcon,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue