From 55bab9454ad088e82be2f8c334847e6e3c121b1a Mon Sep 17 00:00:00 2001 From: Parvesh Monu Date: Wed, 26 Apr 2023 19:35:51 +0530 Subject: [PATCH] fix status bar font color (#15744) --- src/quo2/components/inputs/title_input/style.cljs | 2 +- src/status_im2/navigation/options.cljs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/quo2/components/inputs/title_input/style.cljs b/src/quo2/components/inputs/title_input/style.cljs index 77e8cde141..9bc68ada1f 100644 --- a/src/quo2/components/inputs/title_input/style.cljs +++ b/src/quo2/components/inputs/title_input/style.cljs @@ -30,7 +30,7 @@ [customization-color blur? override-theme] (if blur? (colors/theme-colors colors/neutral-100 colors/white override-theme) - (colors/custom-color customization-color (if (or (= :dark override-theme) colors/dark?) 60 50)))) + (colors/custom-color customization-color (if (or (= :dark override-theme) (colors/dark?)) 60 50)))) (def text-input-container {:flex 1}) diff --git a/src/status_im2/navigation/options.cljs b/src/status_im2/navigation/options.cljs index 5c1532a0f2..6088f01697 100644 --- a/src/status_im2/navigation/options.cljs +++ b/src/status_im2/navigation/options.cljs @@ -31,12 +31,12 @@ (defn navbar ([dark?] - {:navigationBar {:backgroundColor (if (or dark? colors/dark?) colors/neutral-100 colors/white)}}) + {:navigationBar {:backgroundColor (if (or dark? (colors/dark?)) colors/neutral-100 colors/white)}}) ([] (navbar nil))) (defn statusbar ([dark?] - (let [style (if (or dark? colors/dark?) :light :dark)] + (let [style (if (or dark? (colors/dark?)) :light :dark)] (if platform/android? {:statusBar {:translucent true :backgroundColor :transparent