aboutsummaryrefslogtreecommitdiff
path: root/internal/game/cmd_color.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/cmd_color.go
parent351f1d78e2d94da4445c015d863dbaa34bc58619 (diff)
downloadthehouseoficarus-e679811057bedda7864b61a325a11e472e0034ad.tar.gz
feat: new default color scheme
Diffstat (limited to 'internal/game/cmd_color.go')
-rw-r--r--internal/game/cmd_color.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/game/cmd_color.go b/internal/game/cmd_color.go
index d48e314..95ccbc4 100644
--- a/internal/game/cmd_color.go
+++ b/internal/game/cmd_color.go
@@ -176,9 +176,9 @@ func showColorTable(g *Game, sess *net.Session) {
mode := g.colorMode(sess)
table := &ui.Table{
Columns: []string{
- color.Render(mode, color.Parse("4B"), "Target"),
+ color.Render(mode, color.Parse("49"), "Target"),
"Color",
- color.Render(mode, color.Parse("F3"), "Source"),
+ color.Render(mode, color.Parse("F5"), "Source"),
},
}
for _, cat := range colorCategoryOrder {
@@ -192,9 +192,9 @@ func showColorTable(g *Game, sess *net.Session) {
}
}
table.Rows = append(table.Rows, []string{
- color.Render(mode, color.Parse("4B"), cat),
+ color.Render(mode, color.Parse("49"), cat),
coloredVal,
- color.Render(mode, color.Parse("F3"), source),
+ color.Render(mode, color.Parse("F5"), source),
})
}
for _, line := range table.Render(p.OptionBool("unicode"), p.OptionInt("wrap_width")) {