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:
Paradox
2013-09-04 17:02:59 +02:00
parent df0c5dc016
commit 278b4ce3bf
@@ -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);