diff --git a/res/values/colors.xml b/res/values/colors.xml
index 345b41481e5a9f1896cfe7b7c532968663f3be58..0281e37d5061e8d03459e52327bb5b1918d2603f 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -55,6 +55,7 @@
@lineageos.platform:color/color_default_background
@lineageos.platform:color/color_default_blue1
@lineageos.platform:color/color_default_gray2
+ @lineageos.platform:color/color_default_gray1
@@ -113,7 +114,7 @@
@color/dialtacts_secondary_text_color
- @color/dialtacts_theme_color
+ @color/color_default_gray1
#363636
diff --git a/src/com/android/contacts/activities/ContactEditorActivity.java b/src/com/android/contacts/activities/ContactEditorActivity.java
index aa37cc1a1549e3270de1fe92e247c19d3da1af75..a2a449f6c902dd5c0d98f1665940f8ab56d6243c 100644
--- a/src/com/android/contacts/activities/ContactEditorActivity.java
+++ b/src/com/android/contacts/activities/ContactEditorActivity.java
@@ -353,7 +353,7 @@ public class ContactEditorActivity extends AppCompatContactsActivity implements
setContentView(R.layout.contact_editor_activity);
mToolbar = (Toolbar) findViewById(R.id.toolbar);
- mToolbar.setTitleTextColor(getResources().getColor(R.color.color_default_blue1));
+ mToolbar.setTitleTextColor(getResources().getColor(R.color.color_default_primary_text));
setSupportActionBar(mToolbar);
if (Intent.ACTION_EDIT.equals(action)) {
mActionBarTitleResId = R.string.contact_editor_title_existing_contact;