Skip to content

Commit 32c7aa1

Browse files
Merge pull request #462 from cypherstack/ui-fixes
color fixes
2 parents ef23738 + 848336b commit 32c7aa1

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed
Lines changed: 5 additions & 0 deletions
Loading

lib/utilities/theme/color_theme.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ extension ThemeTypeExt on ThemeType {
3939
case "oledBlack":
4040
return ThemeType.oledBlack;
4141
case "orange":
42-
return ThemeType.oledBlack;
42+
return ThemeType.orange;
4343
case "fruitSorbet":
4444
return ThemeType.fruitSorbet;
4545
case "forest":

lib/utilities/theme/forest_colors.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class ForestColors extends StackColorTheme {
177177
@override
178178
Color get bottomNavIconBack => const Color(0xFFA7C7CF);
179179
@override
180-
Color get bottomNavIconIcon => const Color(0xFF227386);
180+
Color get bottomNavIconIcon => const Color(0xFF22867A);
181181

182182
@override
183183
Color get topNavIconPrimary => const Color(0xFF227386);

lib/utilities/theme/orange_colors.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class OrangeColors extends StackColorTheme {
8383
@override
8484
Color get numpadBackDefault => const Color(0xFFF36B43);
8585
@override
86-
Color get bottomNavBack => const Color(0xFFFFFFFF);
86+
Color get bottomNavBack => const Color(0xFFF36B43);
8787

8888
// button text/element
8989
@override

lib/widgets/wallet_navigation_bar/components/icons/receive_nav_icon.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class ReceiveNavIcon extends StatelessWidget {
1212
decoration: BoxDecoration(
1313
color: Theme.of(context)
1414
.extension<StackColors>()!
15-
.accentColorDark
15+
.bottomNavIconIcon
1616
.withOpacity(0.4),
1717
borderRadius: BorderRadius.circular(
1818
24,
@@ -24,7 +24,7 @@ class ReceiveNavIcon extends StatelessWidget {
2424
Assets.svg.arrowDownLeft,
2525
width: 12,
2626
height: 12,
27-
color: Theme.of(context).extension<StackColors>()!.accentColorDark,
27+
color: Theme.of(context).extension<StackColors>()!.bottomNavIconIcon,
2828
),
2929
),
3030
);

lib/widgets/wallet_navigation_bar/components/icons/send_nav_icon.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class SendNavIcon extends StatelessWidget {
1212
decoration: BoxDecoration(
1313
color: Theme.of(context)
1414
.extension<StackColors>()!
15-
.accentColorDark
15+
.bottomNavIconIcon
1616
.withOpacity(0.4),
1717
borderRadius: BorderRadius.circular(
1818
24,
@@ -24,7 +24,7 @@ class SendNavIcon extends StatelessWidget {
2424
Assets.svg.arrowUpRight,
2525
width: 12,
2626
height: 12,
27-
color: Theme.of(context).extension<StackColors>()!.accentColorDark,
27+
color: Theme.of(context).extension<StackColors>()!.bottomNavIconIcon,
2828
),
2929
),
3030
);

0 commit comments

Comments
 (0)