Skip to content

Commit

Permalink
domain input
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigoncalves committed Mar 26, 2024
1 parent dd5305a commit 0b446e2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/screens/rnsManager/DomainInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ const labelColorMap = new Map([
[DomainStatus.AVAILABLE, colors.green],
[DomainStatus.TAKEN, colors.red],
[DomainStatus.OWNED, colors.green],
[DomainStatus.NO_VALID, sharedColors.subTitle],
[DomainStatus.NONE, sharedColors.subTitle],
[DomainStatus.NO_VALID, sharedColors.text.placeholder],
[DomainStatus.NONE, sharedColors.text.placeholder],
])

export const DomainInput = ({
Expand Down Expand Up @@ -181,11 +181,11 @@ const styles = StyleSheet.create({
}),
domainPlaceholder: castStyle.text({
fontSize: 14,
color: sharedColors.subTitle,
color: sharedColors.text.placeholder,
}),
domainSuffix: castStyle.text({
paddingRight: 10,
color: sharedColors.subTitle,
color: sharedColors.text.placeholder,
}),
errorText: castStyle.text({
color: colors.red,
Expand Down
1 change: 1 addition & 0 deletions src/shared/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export const sharedColors = {
primary: '#fff',
secondary: '#000',
label: '#B8B8B8',
placeholder: '#FBFBFB',
link: '#4152E6',
},

Expand Down

0 comments on commit 0b446e2

Please sign in to comment.