From ab29ae240314a59c4857c54b3ef2f047fcd99c5d Mon Sep 17 00:00:00 2001 From: androiddevkkotlin Date: Mon, 30 Nov 2020 11:45:22 +0200 Subject: [PATCH] Colors grey --- OsmAnd/src/net/osmand/AndroidUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OsmAnd/src/net/osmand/AndroidUtils.java b/OsmAnd/src/net/osmand/AndroidUtils.java index 69b55a95f4..a3ca6b066b 100644 --- a/OsmAnd/src/net/osmand/AndroidUtils.java +++ b/OsmAnd/src/net/osmand/AndroidUtils.java @@ -328,9 +328,9 @@ public class AndroidUtils { new int[] {} }, new int[] { - Color.GRAY, + ContextCompat.getColor(ctx, night? R.color.text_color_secondary_dark : R.color.text_color_secondary_light), ContextCompat.getColor(ctx, night? R.color.active_color_primary_dark : R.color.active_color_primary_light), - Color.GRAY} + ContextCompat.getColor(ctx, night? R.color.text_color_secondary_dark : R.color.text_color_secondary_light)} ); }