Game colors
This commit is contained in:
parent
c205a2a110
commit
4e46d50e58
1 changed files with 12 additions and 0 deletions
|
@ -0,0 +1,12 @@
|
|||
package group.ouroboros.potrogue.builders
|
||||
|
||||
import org.hexworks.zircon.api.color.TileColor
|
||||
|
||||
object GameColors {
|
||||
//TODO: Change these colors to our own custom theme
|
||||
val WALL_FOREGROUND = TileColor.fromString("#75715E")
|
||||
val WALL_BACKGROUND = TileColor.fromString("#3E3D32")
|
||||
|
||||
val FLOOR_FOREGROUND = TileColor.fromString("#75715E")
|
||||
val FLOOR_BACKGROUND = TileColor.fromString("#1e2320")
|
||||
}
|
Loading…
Reference in a new issue