[2/2] vendor: themes: fix notification overlay config

for notification overlays to correctly tint notification texts
we must add a way they can override whatever is in the primary
overlay

Change-Id: I352b0eca58be428f9d57655742a8cc90a821fdc2
diff --git a/google/themes/NotificationsDark/res/values/config.xml b/google/themes/NotificationsDark/res/values/config.xml
index a1802c8..210f6cf 100644
--- a/google/themes/NotificationsDark/res/values/config.xml
+++ b/google/themes/NotificationsDark/res/values/config.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
 <resources>
-    <bool name="config_useDarkBgNotificationIconTextTinting">true</bool>
-    <bool name="config_enableNightMode">true</bool>
+    <bool name="config_useDarkBgNotificationTinting_override">true</bool>
+    <bool name="config_notificationTinting_override">true</bool>
 </resources>
diff --git a/google/themes/NotificationsLight/res/values/config.xml b/google/themes/NotificationsLight/res/values/config.xml
index bc9a085..1be70e2 100644
--- a/google/themes/NotificationsLight/res/values/config.xml
+++ b/google/themes/NotificationsLight/res/values/config.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
 <resources>
-    <bool name="config_useDarkBgNotificationIconTextTinting">false</bool>
-    <bool name="config_enableNightMode">false</bool>
+    <bool name="config_useDarkBgNotificationTinting_override">false</bool>
+    <bool name="config_notificationTinting_override">true</bool>
 </resources>
diff --git a/google/themes/NotificationsPrimary/res/values/config.xml b/google/themes/NotificationsPrimary/res/values/config.xml
deleted file mode 100644
index a1802c8..0000000
--- a/google/themes/NotificationsPrimary/res/values/config.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <bool name="config_useDarkBgNotificationIconTextTinting">true</bool>
-    <bool name="config_enableNightMode">true</bool>
-</resources>