From 9f38ea990f484c919b8e7986cb38579fc22b78ec Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Sun, 3 Jun 2012 21:03:34 -0400 Subject: Changed color scheme to give game more of a "cold" feeling --- src/com/fourisland/frigidearth/Tile.java | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'src/com/fourisland') diff --git a/src/com/fourisland/frigidearth/Tile.java b/src/com/fourisland/frigidearth/Tile.java index cc128a6..be17d6c 100644 --- a/src/com/fourisland/frigidearth/Tile.java +++ b/src/com/fourisland/frigidearth/Tile.java @@ -26,7 +26,7 @@ public enum Tile public Color getBackgroundColor() { - return new Color(96, 51, 17); + return new Color(0, 63, 135); } }, DirtFloor { @@ -37,7 +37,7 @@ public enum Tile public Color getBackgroundColor() { - return new Color(205, 127, 50); + return new Color(162, 181, 205); } }, StoneWall { @@ -75,7 +75,7 @@ public enum Tile public Color getBackgroundColor() { - return new Color(96, 51, 17); + return new Color(0, 63, 135); } }, UpStairs { @@ -88,6 +88,11 @@ public enum Tile { return '>'; } + + public Color getBackgroundColor() + { + return new Color(162, 181, 205); + } }, DownStairs { public boolean isBlocked() @@ -99,6 +104,11 @@ public enum Tile { return '<'; } + + public Color getBackgroundColor() + { + return new Color(162, 181, 205); + } }; public abstract boolean isBlocked(); -- cgit 1.4.1