diff --git a/app/screens/forgot_password/__snapshots__/forgot_password.test.js.snap b/app/screens/forgot_password/__snapshots__/forgot_password.test.js.snap index c75da12af..fe416e910 100644 --- a/app/screens/forgot_password/__snapshots__/forgot_password.test.js.snap +++ b/app/screens/forgot_password/__snapshots__/forgot_password.test.js.snap @@ -151,6 +151,7 @@ exports[`ForgotPassword should match snapshot 1`] = ` "borderColor": "gainsboro", "borderRadius": 3, "borderWidth": 1, + "color": "#3d3c40", "fontSize": 16, "height": 45, "marginBottom": 5, @@ -262,6 +263,7 @@ exports[`ForgotPassword snapshot for error on failure of email regex 1`] = ` "borderColor": "gainsboro", "borderRadius": 3, "borderWidth": 1, + "color": "#3d3c40", "fontSize": 16, "height": 45, "marginBottom": 5, diff --git a/app/styles/index.js b/app/styles/index.js index d7d1744ac..eeec07217 100644 --- a/app/styles/index.js +++ b/app/styles/index.js @@ -110,5 +110,6 @@ export const GlobalStyles = StyleSheet.create({ paddingLeft: 10, alignSelf: 'stretch', borderRadius: 3, + color: '#3d3c40', }, });