Skip to content

Commit

Permalink
Merge pull request BlueWallet#2784 from BlueWallet/cardsops
Browse files Browse the repository at this point in the history
REF: Wallets cards colors optimized
  • Loading branch information
GladosBlueWallet authored Mar 12, 2021
2 parents 95e26c3 + d38c59e commit da7488c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
18 changes: 9 additions & 9 deletions class/wallet-gradient.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ import { HDAezeedWallet } from "./wallets/hd-aezeed-wallet";
import { useTheme } from '@react-navigation/native';

export default class WalletGradient {
static hdSegwitP2SHWallet = ['#65ceef', '#68bbe1'];
static hdSegwitBech32Wallet = ['#68bbe1', '#3b73d4'];
static segwitBech32Wallet = ['#f8bbe1', '#945a90'];
static watchOnlyWallet = ['#7d7d7d', '#4a4a4a'];
static legacyWallet = ['#40fad1', '#15be98'];
static hdLegacyP2PKHWallet = ['#e36dfa', '#bd10e0'];
static hdSegwitP2SHWallet = ['#007AFF', '#0040FF'];
static hdSegwitBech32Wallet = ['#26D1F4', '#44BEE5'];
static segwitBech32Wallet = ['#26D1F4', '#44BEE5'];
static watchOnlyWallet = ['#474646', '#282828'];
static legacyWallet = ['#37E8C0', '#15BE98'];
static hdLegacyP2PKHWallet = ['#FD7478', '#E73B40'];
static hdLegacyBreadWallet = ['#fe6381', '#f99c42'];
static multisigHdWallet = ['#1ce6eb', '#296fc5', '#3500A2'];
static defaultGradients = ['#c65afb', '#9053fe'];
static lightningCustodianWallet = ['#f1be07', '#f79056'];
static aezeedWallet = ['#550271', '#530140'];
static defaultGradients = ['#B770F6', '#9013FE'];
static lightningCustodianWallet = ['#F1AA07', '#FD7E37'];
static aezeedWallet = ['#8584FF', '#5351FB'];

static createWallet = () => {
// eslint-disable-next-line react-hooks/rules-of-hooks
Expand Down
10 changes: 5 additions & 5 deletions components/WalletsCarousel.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const iStyles = StyleSheet.create({
},
grad: {
padding: 15,
borderRadius: 10,
borderRadius: 12,
minHeight: 164,
elevation: 5,
},
Expand Down Expand Up @@ -217,9 +217,9 @@ const WalletCarouselItem = ({ item, index, onPress, handleLongPress, isSelectedW
return (
<Animated.View
style={[iStyles.root, { opacity, transform: [{ scale: scaleValue }] }]}
shadowOpacity={40 / 100}
shadowOffset={{ width: 0, height: 0 }}
shadowRadius={5}
shadowOpacity={25 / 100}
shadowOffset={{ width: 0, height: 3 }}
shadowRadius={8}
>
<TouchableWithoutFeedback
testID={item.getLabel()}
Expand Down Expand Up @@ -278,7 +278,7 @@ const cStyles = StyleSheet.create({
alignItems: 'center',
},
content: {
left: 20,
left: 16,
},
});

Expand Down

0 comments on commit da7488c

Please sign in to comment.