Skip to content

Commit

Permalink
refactor colors
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigoncalves committed Mar 21, 2024
1 parent f011410 commit 3c5e726
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 13 deletions.
4 changes: 2 additions & 2 deletions src/components/BasicRow/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ const styles = StyleSheet.create({
container: castStyle.view({
marginTop: 10,
paddingVertical: 10,
backgroundColor: sharedColors.black,
backgroundColor: sharedColors.background.primary,
height: 'auto',
flexDirection: 'row',
}),
Expand Down Expand Up @@ -181,7 +181,7 @@ const styles = StyleSheet.create({
usdText: {
textAlign: 'right',
flex: 1,
color: sharedColors.labelLight,
color: sharedColors.text.label,
},
horizontalPadding: {
paddingRight: 1,
Expand Down
4 changes: 1 addition & 3 deletions src/components/modal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,7 @@ export const ConfirmationModal = ({
const modalStyles = StyleSheet.create({
container: castStyle.view({
borderRadius: 25,
borderWidth: 1,
borderColor: '#000',
borderStyle: 'solid',
borderWidth: 0,
padding: 15,
}),
header: castStyle.view({
Expand Down
10 changes: 2 additions & 8 deletions src/screens/rnsManager/rnsManagerStyles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,14 @@ import { colors } from 'src/styles'

export const rnsManagerStyles = StyleSheet.create({
scrollContainer: castStyle.view({
backgroundColor: sharedColors.black,
backgroundColor: sharedColors.background.primary,
}),
container: castStyle.view({
flex: 1,
backgroundColor: sharedColors.black,
backgroundColor: 'transparent',
padding: 20,
paddingTop: 50,
}),
title: castStyle.text({
color: sharedColors.subTitle,
}),
subtitle: castStyle.text({
color: sharedColors.subTitle,
}),
profileHeader: castStyle.view({
flexDirection: 'row',
justifyContent: 'space-between',
Expand Down

0 comments on commit 3c5e726

Please sign in to comment.