From 50a811720ff180d939b4a7ae83c3b65a8186514a Mon Sep 17 00:00:00 2001 From: Rahul Mohata <54268438+Rahulm2310@users.noreply.github.com> Date: Sun, 15 Mar 2020 15:43:44 +0530 Subject: [PATCH] Mobile: Fixes #2695: Fixed colour of background in OLED dark theme (#2757) --- ReactNativeClient/lib/components/global-style.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactNativeClient/lib/components/global-style.js b/ReactNativeClient/lib/components/global-style.js index c6300a1fb8..6b2920a64c 100644 --- a/ReactNativeClient/lib/components/global-style.js +++ b/ReactNativeClient/lib/components/global-style.js @@ -140,7 +140,7 @@ function themeStyle(theme) { output.raisedHighlightedColor = '#ffffff'; output.htmlColor = 'rgb(220,220,220)'; - output.htmlBackgroundColor = 'rgb(29,32,36)'; + output.htmlBackgroundColor = 'rgb(0,0,0)'; output.htmlLinkColor = 'rgb(166,166,255)'; output.htmlDividerColor = '#3D444E';