defmodule Islands.Engine.Proxy.GameNotStarted do alias IO.ANSI.Plus, as: ANSI @spec message(String.t()) :: ANSI.ansilist() def message(game_name) do [ :fuchsia_background, :light_white, "Game ", :fuchsia_background, :stratos, "#{game_name}", :fuchsia_background, :light_white, " not started." ] end end