diff --git a/OsmAnd/res/layout/main.xml b/OsmAnd/res/layout/main.xml index ad1fca9559..93c8d907aa 100644 --- a/OsmAnd/res/layout/main.xml +++ b/OsmAnd/res/layout/main.xml @@ -14,7 +14,7 @@ #33888888 #ff33b5e5 #b9b9b9 + + #303030 \ No newline at end of file diff --git a/OsmAnd/src/net/osmand/plus/activities/MapActivityActions.java b/OsmAnd/src/net/osmand/plus/activities/MapActivityActions.java index 2676a135cd..c21b413b02 100644 --- a/OsmAnd/src/net/osmand/plus/activities/MapActivityActions.java +++ b/OsmAnd/src/net/osmand/plus/activities/MapActivityActions.java @@ -739,9 +739,9 @@ public class MapActivityActions implements DialogProvider { mDrawerList.setAdapter(listAdapter); if (getMyApplication().getSettings().isLightContentMenu()){ - mDrawerList.setBackgroundColor(mapActivity.getResources().getColor(R.color.color_white)); + mDrawerList.setBackgroundColor(mapActivity.getResources().getColor(R.color.shadow_color)); } else { - mDrawerList.setBackgroundColor(mapActivity.getResources().getColor(R.color.color_black)); + mDrawerList.setBackgroundColor(mapActivity.getResources().getColor(R.color.dark_drawer_bg_color)); } mDrawerList.setOnItemClickListener(new AdapterView.OnItemClickListener() {