From b3a715f6ea3d0faaf6d09e2a49267f2a5fb3fad2 Mon Sep 17 00:00:00 2001 From: Siddharth Verma Date: Thu, 10 Jun 2021 00:46:02 -0700 Subject: [PATCH] removal of textColor from base application theme (#31487) Summary: https://github.com/facebook/react-native/issues/31345 The issue to` android/app/src/main/res/values/styles.xml.` In the base application theme, there is an explicitly added item `#000000` This leads the `textColor` of the app to be black even though the theme is actually DayNight. A permanent fix would be to not have this item added by default when creating a new project, as it is buggy behavior ## Changelog [General] [removed] - line `#000000` in this file `android/app/src/main/res/values/styles.xml `for the inital setup Pull Request resolved: https://github.com/facebook/react-native/pull/31487 Test Plan: Removing this has fixed the issue for me. Reviewed By: yungsters Differential Revision: D28966678 Pulled By: ShikaSD fbshipit-source-id: 57c6b4b7b5f11847ea6e611c7567c0c03133c79d --- template/android/app/src/main/res/values/styles.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/template/android/app/src/main/res/values/styles.xml b/template/android/app/src/main/res/values/styles.xml index 9fab0be7437..24bc0613687 100644 --- a/template/android/app/src/main/res/values/styles.xml +++ b/template/android/app/src/main/res/values/styles.xml @@ -3,7 +3,6 @@