Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tweak colors #4709

Merged
merged 6 commits into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ exports[`LineTextDivider should render with loading props 1`] = `
<View
style={
{
"borderBottomColor": "#A4C7DF",
"borderBottomColor": "rgba(255, 255, 255, .1)",
"borderBottomWidth": 1,
"flex": 1,
}
Expand All @@ -43,7 +43,7 @@ exports[`LineTextDivider should render with loading props 1`] = `
<View
style={
{
"borderBottomColor": "#A4C7DF",
"borderBottomColor": "rgba(255, 255, 255, .1)",
"borderBottomWidth": 1,
"flex": 1,
}
Expand Down
29 changes: 5 additions & 24 deletions src/__tests__/components/__snapshots__/MenuTabs.test.tsx.snap
Original file line number Diff line number Diff line change
@@ -1,26 +1,7 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`MenuTabs should render with loading props 1`] = `
<BVLinearGradient
colors={
[
0,
4278190080,
]
}
endPoint={
{
"x": 0,
"y": 1,
}
}
locations={null}
startPoint={
{
"x": 0,
"y": 0.5,
}
}
<View
style={
{
"bottom": 0,
Expand All @@ -35,7 +16,7 @@ exports[`MenuTabs should render with loading props 1`] = `
<BlurView
blurAmount={10}
blurType="dark"
overlayColor="#00000000"
overlayColor="rgba(0, 0, 0, 0)"
style={
{
"bottom": 0,
Expand All @@ -49,8 +30,8 @@ exports[`MenuTabs should render with loading props 1`] = `
<BVLinearGradient
colors={
[
0,
4278190080,
436207616,
3003121664,
]
}
endPoint={
Expand All @@ -77,5 +58,5 @@ exports[`MenuTabs should render with loading props 1`] = `
}
/>
</BVLinearGradient>
</BVLinearGradient>
</View>
`;
22 changes: 12 additions & 10 deletions src/__tests__/modals/__snapshots__/CategoryModal.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ exports[`CategoryModal should render with a subcategory 1`] = `
style={
[
{
"backgroundColor": "#000000",
"bottom": 0,
"left": 0,
"position": "absolute",
Expand All @@ -42,7 +43,7 @@ exports[`CategoryModal should render with a subcategory 1`] = `
[
{
"alignSelf": "flex-end",
"backgroundColor": "rgba(255, 255, 255, 0.376)",
"backgroundColor": "rgba(255, 255, 255, .37)",
"borderTopLeftRadius": 22,
"borderTopRightRadius": 22,
"flexShrink": 1,
Expand Down Expand Up @@ -79,7 +80,7 @@ exports[`CategoryModal should render with a subcategory 1`] = `
<BlurView
blurAmount={10}
blurType="dark"
overlayColor="#00000000"
overlayColor="rgba(0, 0, 0, .7)"
style={
{
"bottom": 0,
Expand All @@ -105,7 +106,7 @@ exports[`CategoryModal should render with a subcategory 1`] = `
<View
style={
{
"backgroundColor": "#87939E",
"backgroundColor": "#888888",
"borderRadius": 3,
"height": 6,
"marginTop": 11,
Expand Down Expand Up @@ -629,7 +630,7 @@ exports[`CategoryModal should render with a subcategory 1`] = `
style={
[
{
"color": "#1b2f3b",
"color": "hsla(0, 0%, 100%, 0.20)",
"flexGrow": 1,
"flexShrink": 1,
"fontFamily": "Quicksand-Regular",
Expand Down Expand Up @@ -1410,7 +1411,7 @@ exports[`CategoryModal should render with a subcategory 1`] = `
style={
[
{
"color": "#87939E",
"color": "#888888",
"fontSize": 22,
},
undefined,
Expand Down Expand Up @@ -1454,6 +1455,7 @@ exports[`CategoryModal should render with an empty subcategory 1`] = `
style={
[
{
"backgroundColor": "#000000",
"bottom": 0,
"left": 0,
"position": "absolute",
Expand All @@ -1472,7 +1474,7 @@ exports[`CategoryModal should render with an empty subcategory 1`] = `
[
{
"alignSelf": "flex-end",
"backgroundColor": "rgba(255, 255, 255, 0.376)",
"backgroundColor": "rgba(255, 255, 255, .37)",
"borderTopLeftRadius": 22,
"borderTopRightRadius": 22,
"flexShrink": 1,
Expand Down Expand Up @@ -1509,7 +1511,7 @@ exports[`CategoryModal should render with an empty subcategory 1`] = `
<BlurView
blurAmount={10}
blurType="dark"
overlayColor="#00000000"
overlayColor="rgba(0, 0, 0, .7)"
style={
{
"bottom": 0,
Expand All @@ -1535,7 +1537,7 @@ exports[`CategoryModal should render with an empty subcategory 1`] = `
<View
style={
{
"backgroundColor": "#87939E",
"backgroundColor": "#888888",
"borderRadius": 3,
"height": 6,
"marginTop": 11,
Expand Down Expand Up @@ -2059,7 +2061,7 @@ exports[`CategoryModal should render with an empty subcategory 1`] = `
style={
[
{
"color": "#1b2f3b",
"color": "hsla(0, 0%, 100%, 0.20)",
"flexGrow": 1,
"flexShrink": 1,
"fontFamily": "Quicksand-Regular",
Expand Down Expand Up @@ -2724,7 +2726,7 @@ exports[`CategoryModal should render with an empty subcategory 1`] = `
style={
[
{
"color": "#87939E",
"color": "#888888",
"fontSize": 22,
},
undefined,
Expand Down
9 changes: 5 additions & 4 deletions src/__tests__/modals/__snapshots__/HelpModal.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ exports[`HelpModal should render with loading props 1`] = `
style={
[
{
"backgroundColor": "#000000",
"bottom": 0,
"left": 0,
"position": "absolute",
Expand All @@ -42,7 +43,7 @@ exports[`HelpModal should render with loading props 1`] = `
[
{
"alignSelf": "flex-end",
"backgroundColor": "rgba(255, 255, 255, 0.376)",
"backgroundColor": "rgba(255, 255, 255, .37)",
"borderTopLeftRadius": 22,
"borderTopRightRadius": 22,
"flexShrink": 1,
Expand Down Expand Up @@ -79,7 +80,7 @@ exports[`HelpModal should render with loading props 1`] = `
<BlurView
blurAmount={10}
blurType="dark"
overlayColor="#00000000"
overlayColor="rgba(0, 0, 0, .7)"
style={
{
"bottom": 0,
Expand All @@ -105,7 +106,7 @@ exports[`HelpModal should render with loading props 1`] = `
<View
style={
{
"backgroundColor": "#87939E",
"backgroundColor": "#888888",
"borderRadius": 3,
"height": 6,
"marginTop": 11,
Expand Down Expand Up @@ -1053,7 +1054,7 @@ exports[`HelpModal should render with loading props 1`] = `
style={
[
{
"color": "#87939E",
"color": "#888888",
"fontSize": 22,
},
undefined,
Expand Down
12 changes: 6 additions & 6 deletions src/__tests__/modals/__snapshots__/WalletListModal.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ exports[`WalletListModal should render with loading props 1`] = `
style={
{
"alignSelf": "flex-end",
"backgroundColor": "#121d25",
"backgroundColor": "#1a1a1a",
"borderColor": "rgba(255, 255, 255, 0)",
"borderTopLeftRadius": 22,
"borderTopRightRadius": 22,
Expand Down Expand Up @@ -313,7 +313,7 @@ exports[`WalletListModal should render with loading props 1`] = `
style={
[
{
"color": "#1b2f3b",
"color": "hsla(0, 0%, 100%, 0.20)",
"flexGrow": 1,
"flexShrink": 1,
"fontFamily": "Quicksand-Regular",
Expand Down Expand Up @@ -640,10 +640,10 @@ exports[`WalletListModal should render with loading props 1`] = `
<BVLinearGradient
colors={
[
1187109,
856825125,
3205635365,
4279377189,
1710618,
857348634,
3206158874,
4279900698,
]
}
endPoint={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ exports[`CreateWalletAccountSelect renders 1`] = `
"type": 0,
}
}
opacity={0.25}
opacity={0.1}
>
<RNSVGCircle
cx="10%"
Expand Down Expand Up @@ -565,7 +565,7 @@ exports[`CreateWalletAccountSelect renders 1`] = `
style={
[
{
"color": "#1b2f3b",
"color": "hsla(0, 0%, 100%, 0.20)",
"flexGrow": 1,
"flexShrink": 1,
"fontFamily": "Quicksand-Regular",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ exports[`CreateWalletImportScene should render with loading props 1`] = `
"type": 0,
}
}
opacity={0.25}
opacity={0.1}
>
<RNSVGCircle
cx="10%"
Expand Down Expand Up @@ -539,7 +539,7 @@ exports[`CreateWalletImportScene should render with loading props 1`] = `
style={
[
{
"color": "#1b2f3b",
"color": "hsla(0, 0%, 100%, 0.20)",
"flexGrow": 1,
"flexShrink": 1,
"fontFamily": "Quicksand-Regular",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ exports[`CreateWalletSelectCrypto should render with loading props 1`] = `
"type": 0,
}
}
opacity={0.25}
opacity={0.1}
>
<RNSVGCircle
cx="10%"
Expand Down Expand Up @@ -484,7 +484,7 @@ exports[`CreateWalletSelectCrypto should render with loading props 1`] = `
style={
[
{
"color": "#1b2f3b",
"color": "hsla(0, 0%, 100%, 0.20)",
"flexGrow": 1,
"flexShrink": 1,
"fontFamily": "Quicksand-Regular",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ exports[`CreateWalletSelectFiatComponent should render with loading props 1`] =
"type": 0,
}
}
opacity={0.25}
opacity={0.1}
>
<RNSVGCircle
cx="10%"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ exports[`CryptoExchangeQuoteScreenComponent should render with loading props 1`]
"type": 0,
}
}
opacity={0.25}
opacity={0.1}
>
<RNSVGCircle
cx="10%"
Expand Down Expand Up @@ -341,7 +341,7 @@ exports[`CryptoExchangeQuoteScreenComponent should render with loading props 1`]
<View
style={
{
"borderBottomColor": "#A4C7DF",
"borderBottomColor": "rgba(255, 255, 255, .1)",
"borderBottomWidth": 1,
"flex": 1,
}
Expand Down Expand Up @@ -379,7 +379,7 @@ exports[`CryptoExchangeQuoteScreenComponent should render with loading props 1`]
<View
style={
{
"borderBottomColor": "#A4C7DF",
"borderBottomColor": "rgba(255, 255, 255, .1)",
"borderBottomWidth": 1,
"flex": 1,
}
Expand Down Expand Up @@ -913,7 +913,7 @@ exports[`CryptoExchangeQuoteScreenComponent should render with loading props 1`]
<View
style={
{
"borderBottomColor": "#A4C7DF",
"borderBottomColor": "rgba(255, 255, 255, .1)",
"borderBottomWidth": 1,
"flex": 1,
}
Expand Down Expand Up @@ -951,7 +951,7 @@ exports[`CryptoExchangeQuoteScreenComponent should render with loading props 1`]
<View
style={
{
"borderBottomColor": "#A4C7DF",
"borderBottomColor": "rgba(255, 255, 255, .1)",
"borderBottomWidth": 1,
"flex": 1,
}
Expand Down Expand Up @@ -1458,7 +1458,7 @@ exports[`CryptoExchangeQuoteScreenComponent should render with loading props 1`]
<Text
style={
{
"color": "#87939E",
"color": "#888888",
"fontSize": 17,
}
}
Expand Down Expand Up @@ -1686,7 +1686,7 @@ exports[`CryptoExchangeQuoteScreenComponent should render with loading props 1`]
style={
[
{
"backgroundColor": "#2B333A",
"backgroundColor": "#00604d",
"borderRadius": 27.5,
"height": 55,
"justifyContent": "center",
Expand All @@ -1703,7 +1703,7 @@ exports[`CryptoExchangeQuoteScreenComponent should render with loading props 1`]
style={
[
{
"backgroundColor": "#2B333A",
"backgroundColor": "#333333",
"borderRadius": 27.5,
"bottom": 0,
"left": 0,
Expand Down Expand Up @@ -1754,7 +1754,7 @@ exports[`CryptoExchangeQuoteScreenComponent should render with loading props 1`]
"fontSize": 34,
},
{
"color": "#1b2f3b",
"color": "#1a1a1a",
"fontSize": 51,
},
{
Expand Down
Loading
Loading