mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-03 00:37:55 +00:00
Updated the color of the server selection
Updated the color for the server selector. It used to be: Color color1 = new Color(160, 0, 0); But now it is: Color color1 = new Color(41, 97, 105); It now better fits our theme.
This commit is contained in:
@@ -80,7 +80,7 @@ public class ServerWidget extends JPanel {
|
||||
setOpaque(true);
|
||||
int w = getWidth();
|
||||
int h = getHeight();
|
||||
Color color1 = new Color(160, 0, 0);
|
||||
Color color1 = new Color(41, 97, 105);
|
||||
Color color2 = color1.darker();
|
||||
GradientPaint gp = new GradientPaint(0, 0, color1, 0, h, color2);
|
||||
g2d.setPaint(gp);
|
||||
|
||||
Reference in New Issue
Block a user