Skip to content

Commit

Permalink
remove unused input shared color
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigoncalves committed Mar 27, 2024
1 parent ba2c526 commit c93ad07
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/input/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ const styles = StyleSheet.create({
minHeight: 80,
}),
containerActive: castStyle.view({
backgroundColor: sharedColors.input.active,
backgroundColor: sharedColors.background.accent,
}),
contentPadding: castStyle.view({
paddingBottom: 18,
Expand Down
2 changes: 1 addition & 1 deletion src/screens/settings/WalletBackup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import { useEffect, useState } from 'react'
import { useTranslation } from 'react-i18next'
import { ScrollView, StyleSheet, View } from 'react-native'

import { sharedColors, sharedStyles } from 'shared/constants'
import { MnemonicComponent, Typography } from 'components/index'
import {
SettingsScreenProps,
settingsStackRouteNames,
} from 'navigation/settingsNavigator/types'
import { sharedStyles } from 'shared/constants'
import { castStyle, usePreventScreenshot } from 'shared/utils'
import { getKeys } from 'storage/SecureStorage'

Expand Down
4 changes: 0 additions & 4 deletions src/shared/constants/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ export const sharedColors = {
highlight: '#575757',
light: '#FBFBFB',
},
input: {
active: '#3A3A3A',
inactive: '#252525',
},
text: {
primary: '#fff',
secondary: '#000',
Expand Down

0 comments on commit c93ad07

Please sign in to comment.