colorscheme: Readability

This commit is contained in:
Owain van Brakel
2019-10-04 00:03:30 +02:00
parent bd9284e2f6
commit df5f11e696

View File

@@ -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);