mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-22 19:39:22 +00:00
wallet navbar BG dark mode color fix
This commit is contained in:
parent
963acb042d
commit
37f59f11bf
3 changed files with 3 additions and 3 deletions
|
@ -27,7 +27,7 @@ class WalletNavigationBar extends StatelessWidget {
|
|||
return Container(
|
||||
height: height,
|
||||
decoration: BoxDecoration(
|
||||
color: Theme.of(context).extension<StackColors>()!.popupBG,
|
||||
color: Theme.of(context).extension<StackColors>()!.bottomNavBack,
|
||||
boxShadow: [
|
||||
Theme.of(context).extension<StackColors>()!.standardBoxShadow
|
||||
],
|
||||
|
|
|
@ -70,7 +70,7 @@ class DarkColors extends StackColorTheme {
|
|||
@override
|
||||
Color get numpadBackDefault => const Color(0xFF4C86E9);
|
||||
@override
|
||||
Color get bottomNavBack => const Color(0xFFA2A2A2);
|
||||
Color get bottomNavBack => const Color(0xFF3E4148);
|
||||
|
||||
// button text/element
|
||||
@override
|
||||
|
|
|
@ -70,7 +70,7 @@ class LightColors extends StackColorTheme {
|
|||
@override
|
||||
Color get numpadBackDefault => const Color(0xFF232323);
|
||||
@override
|
||||
Color get bottomNavBack => const Color(0xFFA2A2A2);
|
||||
Color get bottomNavBack => const Color(0xFFFFFFFF);
|
||||
|
||||
// button text/element
|
||||
@override
|
||||
|
|
Loading…
Reference in a new issue