From e180d72d047dc7d53a442a5b7b5e5f884c2bbfc6 Mon Sep 17 00:00:00 2001 From: Justin Barnyak Date: Tue, 25 Sep 2018 12:57:58 -0400 Subject: [PATCH] Change Prayerbar Color Scheme to be Colorblind Friendly --- .../runelite/client/plugins/prayer/PrayerBarOverlay.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/prayer/PrayerBarOverlay.java b/runelite-client/src/main/java/net/runelite/client/plugins/prayer/PrayerBarOverlay.java index bfd1d9eff3..203d3f56ad 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/prayer/PrayerBarOverlay.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/prayer/PrayerBarOverlay.java @@ -44,8 +44,9 @@ import net.runelite.client.ui.overlay.OverlayPriority; @Singleton class PrayerBarOverlay extends Overlay { - private static final Color BAR_FILL_COLOR = Color.cyan; - private static final Color BAR_BG_COLOR = Color.white; + private static final Color BAR_FILL_COLOR = new Color(0, 149, 151); + private static final Color BAR_BG_COLOR = Color.black; + private static final Color FLICK_HELP_COLOR = Color.white; private static final Dimension PRAYER_BAR_SIZE = new Dimension(30, 5); private final Client client; @@ -101,7 +102,7 @@ class PrayerBarOverlay extends Overlay int xOffset = (int) (-Math.cos(t) * barWidth / 2) + barWidth / 2; - graphics.setColor(Color.black); + graphics.setColor(FLICK_HELP_COLOR); graphics.fillRect(barX + xOffset, barY, 1, barHeight); }