Added Solarized Light theme.

This commit is contained in:
Oliver Jan Krylow 2017-05-08 19:22:23 +02:00
parent a4e9936a85
commit 0c49023bbf
5 changed files with 49 additions and 22 deletions

View file

@ -25,7 +25,7 @@ public class Theme {
public Color background;
public Color foreground;
public Color emptyCell;
private Color emptyCell;
public Color currentScore;
public Color highScore;
@ -34,7 +34,6 @@ public class Theme {
public Color textColor;
private Color[] cells;
private Color[] buttons;
public static Skin skin;
@ -126,7 +125,7 @@ public class Theme {
foreground = new Color((int)Long.parseLong(colors.getString("foreground"), 16));
JsonValue buttonColors = colors.get("buttons");
buttons = new Color[buttonColors.size];
Color[] buttons = new Color[buttonColors.size];
for (int i = 0; i < buttons.length; ++i) {
buttons[i] = new Color((int)Long.parseLong(buttonColors.getString(i), 16));
if (buttonStyles[i] == null) {

View file

@ -18,7 +18,7 @@ public abstract class BaseScorer implements BinSerializable {
//region Members
protected int currentScore;
int currentScore;
final Label currentScoreLabel;
final Label highScoreLabel;