From 16c7a7c2492113a28c95d96ca5925c788bc5730c Mon Sep 17 00:00:00 2001 From: velichkomarija Date: Mon, 7 Dec 2020 14:53:04 +0300 Subject: [PATCH] [android] Fixed night mode tags items. --- android/src/com/mapswithme/maps/ugc/routes/TagsResFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/src/com/mapswithme/maps/ugc/routes/TagsResFactory.java b/android/src/com/mapswithme/maps/ugc/routes/TagsResFactory.java index 96bd458b48..3af59e5588 100644 --- a/android/src/com/mapswithme/maps/ugc/routes/TagsResFactory.java +++ b/android/src/com/mapswithme/maps/ugc/routes/TagsResFactory.java @@ -35,7 +35,7 @@ public class TagsResFactory private static int getDisabledTagColor(@NonNull Context context) { Resources res = context.getResources(); - return ThemeUtils.isNightTheme(context) ? res.getColor(R.color.white_12) + return ThemeUtils.isNightTheme(context) ? res.getColor(R.color.black_primary) : res.getColor(R.color.black_12); }