From df5f11e696155fd5171c3c9b84b8403db6694c35 Mon Sep 17 00:00:00 2001 From: Owain van Brakel Date: Fri, 4 Oct 2019 00:03:30 +0200 Subject: [PATCH] colorscheme: Readability --- .../src/main/java/net/runelite/client/ui/ColorScheme.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/ui/ColorScheme.java b/runelite-client/src/main/java/net/runelite/client/ui/ColorScheme.java index 56bb0e5214..cef0c0b02b 100644 --- a/runelite-client/src/main/java/net/runelite/client/ui/ColorScheme.java +++ b/runelite-client/src/main/java/net/runelite/client/ui/ColorScheme.java @@ -32,10 +32,10 @@ import java.awt.Color; public class ColorScheme { /* The blue color used for the branding's accents */ - public static final Color BRAND_BLUE = new Color(0, 106, 221); + public static final Color BRAND_BLUE = new Color(25, 194, 255); /* The blue color used for the branding's accents, with lowered opacity */ - public static final Color BRAND_BLUE_TRANSPARENT = new Color(0, 106, 221, 120); + public static final Color BRAND_BLUE_TRANSPARENT = new Color(25, 194, 255, 120); public static final Color DARKER_GRAY_COLOR = new Color(30, 30, 30); public static final Color DARK_GRAY_COLOR = new Color(40, 40, 40);