src/battleship/utils/Colors.ts
export class Colors {
public static BACKGROUND_DARK = 0x204d63;
public static TITLE = 0xffffff;
public static TEXT = 0xb5d6e6;
public static BUTTON_ICON = 0x204d63;
public static HP_BACKGROUND = 0x737ebc;
public static HP = 0xead1b4;
public static GAME_BACKGROUND = 0x404040;
public static HUD = 0xffffff;
public static TILE_BACKGROUND = 0x737ebc;
public static TILE_BACKGROUND_SUCCESS = 0xead1b4;
public static TILE_BACKGROUND_FAIL = 0x585d74;
public static TILE_BACKGROUND_SHIP = 0xead1b4;
}