Skip to content

Commit

Permalink
Merge pull request BlueWallet#2913 from BlueWallet/2888
Browse files Browse the repository at this point in the history
FIX: iOS dark mode makes text illegible BlueWallet#2888
  • Loading branch information
GladosBlueWallet authored Apr 5, 2021
2 parents 70ec398 + e156dc6 commit 5d48f9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BlueComponents.js
Original file line number Diff line number Diff line change
Expand Up @@ -594,11 +594,11 @@ export const BlueText = props => {
const { colors } = useTheme();
return (
<Text
{...props}
style={{
color: colors.foregroundColor,
...props.style,
color: colors.foregroundColor,
}}
{...props}
/>
);
};
Expand Down

0 comments on commit 5d48f9f

Please sign in to comment.