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/cmd_aps.go | |
| parent | 351f1d78e2d94da4445c015d863dbaa34bc58619 (diff) | |
| download | thehouseoficarus-e679811057bedda7864b61a325a11e472e0034ad.tar.gz | |
feat: new default color scheme
Diffstat (limited to 'internal/game/cmd_aps.go')
| -rw-r--r-- | internal/game/cmd_aps.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/game/cmd_aps.go b/internal/game/cmd_aps.go index 839455e..727bf8b 100644 --- a/internal/game/cmd_aps.go +++ b/internal/game/cmd_aps.go @@ -129,11 +129,11 @@ func displayApsNodes(g *Game, sess *net.Session, p *player.Player, known []int) for i, info := range infos { distStr := strconv.Itoa(info.Distance) if info.Distance == 0 { - distStr = color.Render(mode, color.Parse("52"), "here") + distStr = color.Render(mode, color.Parse("6C"), "here") } rows[i] = []string{ color.Render(mode, color.Parse("F5"), fmt.Sprintf("#%d", info.ID)), - color.Render(mode, color.Parse("4B"), info.Name), + color.Render(mode, color.Parse("49"), info.Name), distStr, } } @@ -142,8 +142,8 @@ func displayApsNodes(g *Game, sess *net.Session, p *player.Player, known []int) Title: "APS Datapad", Columns: []string{ color.Render(mode, color.Parse("F5"), "Room"), - color.Render(mode, color.Parse("4B"), "Name"), - color.Render(mode, color.Parse("E6"), "Distance"), + color.Render(mode, color.Parse("49"), "Name"), + color.Render(mode, color.Parse("FA"), "Distance"), }, Rows: rows, } |
