diff --git a/android/res/drawable/ic_bookmarks_off.xml b/android/res/drawable/ic_bookmarks_off.xml
index a97cf261be..5f9e277579 100644
--- a/android/res/drawable/ic_bookmarks_off.xml
+++ b/android/res/drawable/ic_bookmarks_off.xml
@@ -3,13 +3,8 @@
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
-
-
-
+
diff --git a/android/res/drawable/ic_bookmarks_on.xml b/android/res/drawable/ic_bookmarks_on.xml
index f415ea3c40..487e8249ae 100644
--- a/android/res/drawable/ic_bookmarks_on.xml
+++ b/android/res/drawable/ic_bookmarks_on.xml
@@ -3,13 +3,8 @@
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
-
-
-
+
diff --git a/android/res/values/themes-attrs.xml b/android/res/values/themes-attrs.xml
index cd8cb8bdc6..dc13e91467 100644
--- a/android/res/values/themes-attrs.xml
+++ b/android/res/values/themes-attrs.xml
@@ -12,6 +12,7 @@
+
diff --git a/android/res/values/themes-base.xml b/android/res/values/themes-base.xml
index 87d6d5fa0a..13d73827bd 100644
--- a/android/res/values/themes-base.xml
+++ b/android/res/values/themes-base.xml
@@ -33,6 +33,7 @@
- @color/bg_side_panel
- @color/black_54
- @color/black_12
+ - @color/yellow
- @color/icon_tint_light
- @color/text_dark_hint
@@ -209,6 +210,7 @@
- @color/bg_side_panel_night
- @color/white_secondary
- @color/white_12
+ - @color/yellow
- @color/icon_tint_light_night
- @color/text_light_hint
diff --git a/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java b/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java
index 71fbe71264..efe0e9c375 100644
--- a/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java
+++ b/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java
@@ -877,7 +877,7 @@ public class PlacePageView extends NestedScrollViewClickFixed
return;
if (mBookmarkSet)
- mBookmarkButtonIcon.setImageDrawable(Graphics.tint(getContext(), R.drawable.ic_bookmarks_on, R.attr.iconTint));
+ mBookmarkButtonIcon.setImageDrawable(Graphics.tint(getContext(), R.drawable.ic_bookmarks_on, R.attr.iconTintActive));
else
mBookmarkButtonIcon.setImageDrawable(Graphics.tint(getContext(), R.drawable.ic_bookmarks_off, R.attr.iconTint));