From 988b006a5bb9edb6465653566e7bdf8175347b8c Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Sat, 27 Jun 2026 16:50:41 -0400 Subject: feat: one-way map links, blocked paths on map, map grid startup validation, user colors for maps --- internal/game/render_color.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'internal/game/render_color.go') diff --git a/internal/game/render_color.go b/internal/game/render_color.go index a5ab8fa..0e31538 100644 --- a/internal/game/render_color.go +++ b/internal/game/render_color.go @@ -46,15 +46,15 @@ func levelColorSpec(myLevel, theirLevel int) color.ColorSpec { diff := theirLevel - myLevel switch { case diff == 0: - return color.Parse("231") + return color.Parse("E7") case diff > 0 && diff < 5: - return color.Parse("208") + return color.Parse("D0") case diff >= 5: - return color.Parse("196") + return color.Parse("C4") case diff < 0 && diff > -5: - return color.Parse("190") + return color.Parse("BE") default: - return color.Parse("34") + return color.Parse("22") } } -- cgit v1.2.3