bottom nav text color change for fruit sorbet

This commit is contained in:
julian 2023-01-31 18:37:04 -06:00
parent a05121b62e
commit dc2f344779
2 changed files with 5 additions and 2 deletions

View file

@ -175,7 +175,7 @@ class _WalletNavigationBarState extends ConsumerState<WalletNavigationBar> {
children: [
Text(
"Paynym",
style: STextStyles.w600_12(context),
style: STextStyles.buttonSmall(context),
),
const SizedBox(
width: 16,
@ -184,6 +184,9 @@ class _WalletNavigationBarState extends ConsumerState<WalletNavigationBar> {
Assets.svg.robotHead,
height: 20,
width: 20,
color: Theme.of(context)
.extension<StackColors>()!
.bottomNavIconIcon,
),
],
),

View file

@ -1065,7 +1065,7 @@ class STextStyles {
);
case ThemeType.fruitSorbet:
return GoogleFonts.inter(
color: _theme(context).textDark,
color: _theme(context).bottomNavIconIcon,
fontWeight: FontWeight.w500,
fontSize: 12,
);