mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-29 21:55:58 +00:00
forest theme icon color fixes
This commit is contained in:
parent
82842f1aa0
commit
6771e39e8a
2 changed files with 6 additions and 3 deletions
|
@ -357,6 +357,9 @@ class _WalletNavigationBarState extends ConsumerState<WalletNavigationBar> {
|
|||
const Spacer(),
|
||||
SvgPicture.asset(
|
||||
Assets.svg.tokens,
|
||||
color: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.accentColorDark,
|
||||
width: 24,
|
||||
height: 24,
|
||||
),
|
||||
|
|
|
@ -175,12 +175,12 @@ class ForestColors extends StackColorTheme {
|
|||
@override
|
||||
Color get bottomNavIconBack => const Color(0xFFA7C7CF);
|
||||
@override
|
||||
Color get bottomNavIconIcon => const Color(0xFF227386);
|
||||
Color get bottomNavIconIcon => accentColorDark; //const Color(0xFF227386);
|
||||
|
||||
@override
|
||||
Color get topNavIconPrimary => const Color(0xFF227386);
|
||||
Color get topNavIconPrimary => accentColorDark; //const Color(0xFF227386);
|
||||
@override
|
||||
Color get topNavIconGreen => const Color(0xFF00A591);
|
||||
Color get topNavIconGreen => accentColorDark; //const Color(0xFF00A591);
|
||||
@override
|
||||
Color get topNavIconYellow => const Color(0xFFFDD33A);
|
||||
@override
|
||||
|
|
Loading…
Reference in a new issue