diff options
| author | historia <[not public]> | 2026-07-14 16:35:28 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-07-14 16:35:28 -0400 |
| commit | e679811057bedda7864b61a325a11e472e0034ad (patch) | |
| tree | 5a9a580f808a13e2e6aad24635ab5c567fec13f2 /internal/game/render_map.go | |
| parent | 351f1d78e2d94da4445c015d863dbaa34bc58619 (diff) | |
| download | thehouseoficarus-e679811057bedda7864b61a325a11e472e0034ad.tar.gz | |
feat: new default color scheme
Diffstat (limited to 'internal/game/render_map.go')
| -rw-r--r-- | internal/game/render_map.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/game/render_map.go b/internal/game/render_map.go index 3f9c4da..a28538b 100644 --- a/internal/game/render_map.go +++ b/internal/game/render_map.go @@ -427,28 +427,28 @@ func resolveMapAt(g *Game, sess *net.Session) color.ColorSpec { if sess != nil { return g.resolveColor(sess, "map_at") } - return color.Parse("0F") + return color.Parse("B4 bold") } func resolveDim(g *Game, sess *net.Session) color.ColorSpec { if sess != nil { return g.resolveColor(sess, "dim") } - return color.Parse("F3 dim") + return color.Parse("F5 dim") } func resolveMapBlocked(g *Game, sess *net.Session) color.ColorSpec { if sess != nil { return g.resolveColor(sess, "map_blocked") } - return color.Parse("C4") + return color.Parse("A7") } func resolveMapCourse(g *Game, sess *net.Session) color.ColorSpec { if sess != nil { return g.resolveColor(sess, "map_course") } - return color.Parse("1B") + return color.Parse("43") } // mapRenderCtx bundles the per-render state shared by node and connector drawing |
