Index: mobile/android/base/java/org/mozilla/gecko/toolbar/BrowserToolbarPhoneBase.java |
=================================================================== |
--- a/mobile/android/base/java/org/mozilla/gecko/toolbar/BrowserToolbarPhoneBase.java |
+++ b/mobile/android/base/java/org/mozilla/gecko/toolbar/BrowserToolbarPhoneBase.java |
@@ -58,18 +58,17 @@ |
focusOrder.addAll(urlDisplayLayout.getFocusOrder()); |
focusOrder.addAll(Arrays.asList(tabsButton, menuButton)); |
roundCornerShape = new Path(); |
updateRoundCornerShape(); |
roundCornerPaint = new Paint(); |
roundCornerPaint.setAntiAlias(true); |
- // Using ABB color palette. See https://issues.adblockplus.org/ticket/3769 |
- roundCornerPaint.setColor(ContextCompat.getColor(context, R.color.abb_background_light_grey)); |
+ roundCornerPaint.setColor(ContextCompat.getColor(context, R.color.text_and_tabs_tray_grey)); |
roundCornerPaint.setStrokeWidth(0.0f); |
} |
private void updateRoundCornerShape() { |
roundCornerShape.reset(); |
if (ViewCompat.getLayoutDirection(this) == ViewCompat.LAYOUT_DIRECTION_RTL) { |
int right = getRight(); |
roundCornerShape.moveTo(right, 0); |