Skip to content

Commit c93ad07

Browse files
remove unused input shared color
1 parent ba2c526 commit c93ad07

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

src/components/input/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ const styles = StyleSheet.create({
221221
minHeight: 80,
222222
}),
223223
containerActive: castStyle.view({
224-
backgroundColor: sharedColors.input.active,
224+
backgroundColor: sharedColors.background.accent,
225225
}),
226226
contentPadding: castStyle.view({
227227
paddingBottom: 18,

src/screens/settings/WalletBackup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ import { useEffect, useState } from 'react'
22
import { useTranslation } from 'react-i18next'
33
import { ScrollView, StyleSheet, View } from 'react-native'
44

5-
import { sharedColors, sharedStyles } from 'shared/constants'
65
import { MnemonicComponent, Typography } from 'components/index'
76
import {
87
SettingsScreenProps,
98
settingsStackRouteNames,
109
} from 'navigation/settingsNavigator/types'
10+
import { sharedStyles } from 'shared/constants'
1111
import { castStyle, usePreventScreenshot } from 'shared/utils'
1212
import { getKeys } from 'storage/SecureStorage'
1313

src/shared/constants/colors.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ export const sharedColors = {
1919
highlight: '#575757',
2020
light: '#FBFBFB',
2121
},
22-
input: {
23-
active: '#3A3A3A',
24-
inactive: '#252525',
25-
},
2622
text: {
2723
primary: '#fff',
2824
secondary: '#000',

0 commit comments

Comments
 (0)