From 7f031d9b55f56c00a3c923f36389d3722852bd1a Mon Sep 17 00:00:00 2001 From: CJ <38697367+imisshtml@users.noreply.github.com> Date: Fri, 15 Nov 2019 04:25:25 -0500 Subject: [PATCH] MM-19696 Added font color for GlobalStyle Input (#3536) Added the default color #3d3c40 for the GlobalStyle Input that the Server select and Login screen used for style. --- .../forgot_password/__snapshots__/forgot_password.test.js.snap | 2 ++ app/styles/index.js | 1 + 2 files changed, 3 insertions(+) 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', }, });