aboutsummaryrefslogtreecommitdiff
path: root/internal/game/render_map.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-07-14 16:35:28 -0400
committerhistoria <[not public]>2026-07-14 16:35:28 -0400
commite679811057bedda7864b61a325a11e472e0034ad (patch)
tree5a9a580f808a13e2e6aad24635ab5c567fec13f2 /internal/game/render_map.go
parent351f1d78e2d94da4445c015d863dbaa34bc58619 (diff)
downloadthehouseoficarus-e679811057bedda7864b61a325a11e472e0034ad.tar.gz
feat: new default color scheme
Diffstat (limited to 'internal/game/render_map.go')
-rw-r--r--internal/game/render_map.go8
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