From 9b2c68985acee996cb800beb589124745f5a20fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Espino=20Garc=C3=ADa?= Date: Thu, 25 May 2023 10:51:07 +0200 Subject: [PATCH] Fix all references to mention color on "login" screens (#7364) * Fix all references to mention color on "login" screens * Add missing change --- app/screens/forgot_password/index.tsx | 4 ++-- app/screens/login/index.tsx | 2 +- app/screens/mfa/index.tsx | 2 +- app/screens/sso/sso_with_redirect_url.tsx | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/screens/forgot_password/index.tsx b/app/screens/forgot_password/index.tsx index 2b6e95236a..b27dbb693b 100644 --- a/app/screens/forgot_password/index.tsx +++ b/app/screens/forgot_password/index.tsx @@ -54,7 +54,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({ marginTop: 20, }, header: { - color: theme.mentionColor, + color: theme.centerChannelColor, marginBottom: 12, ...typography('Heading', 1000, 'SemiBold'), }, @@ -84,7 +84,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({ textAlign: 'center', }, successTitle: { - color: theme.mentionColor, + color: theme.centerChannelColor, marginBottom: 12, ...typography('Heading', 1000), }, diff --git a/app/screens/login/index.tsx b/app/screens/login/index.tsx index 6e1e70777a..70ddde7237 100644 --- a/app/screens/login/index.tsx +++ b/app/screens/login/index.tsx @@ -57,7 +57,7 @@ const getStyles = makeStyleSheetFromTheme((theme: Theme) => ({ flex: 1, }, header: { - color: theme.mentionColor, + color: theme.centerChannelColor, marginBottom: 12, ...typography('Heading', 1000, 'SemiBold'), }, diff --git a/app/screens/mfa/index.tsx b/app/screens/mfa/index.tsx index 91781076db..f59aa3f6e5 100644 --- a/app/screens/mfa/index.tsx +++ b/app/screens/mfa/index.tsx @@ -61,7 +61,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({ marginTop: 20, }, header: { - color: theme.mentionColor, + color: theme.centerChannelColor, marginBottom: 12, ...typography('Heading', 1000, 'SemiBold'), }, diff --git a/app/screens/sso/sso_with_redirect_url.tsx b/app/screens/sso/sso_with_redirect_url.tsx index 7458363b9e..2238e48222 100644 --- a/app/screens/sso/sso_with_redirect_url.tsx +++ b/app/screens/sso/sso_with_redirect_url.tsx @@ -51,7 +51,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => { ...typography('Body', 100, 'Regular'), }, infoTitle: { - color: theme.mentionColor, + color: theme.centerChannelColor, marginBottom: 4, ...typography('Heading', 700), },