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_mods.go | |
| parent | 351f1d78e2d94da4445c015d863dbaa34bc58619 (diff) | |
| download | thehouseoficarus-e679811057bedda7864b61a325a11e472e0034ad.tar.gz | |
feat: new default color scheme
Diffstat (limited to 'internal/game/cmd_mods.go')
| -rw-r--r-- | internal/game/cmd_mods.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/game/cmd_mods.go b/internal/game/cmd_mods.go index 9468e89..26b0e95 100644 --- a/internal/game/cmd_mods.go +++ b/internal/game/cmd_mods.go @@ -55,9 +55,9 @@ func (g *Game) doMods(sess *net.Session, showAll bool) { t := &ui.Table{ Title: cat.Name, Columns: []string{ - color.Render(mode, color.Parse("4B"), "Module"), + color.Render(mode, color.Parse("49"), "Module"), color.Render(mode, color.Parse("F5"), "Level"), - color.Render(mode, color.Parse("DE"), "Cost"), + color.Render(mode, color.Parse("B3"), "Cost"), color.Render(mode, color.Parse("B3"), "XP"), }, } @@ -77,9 +77,9 @@ func (g *Game) doMods(sess *net.Session, showAll bool) { }) } else if unlocked { t.Rows = append(t.Rows, []string{ - color.Render(mode, color.Parse("4B"), m.Name), + color.Render(mode, color.Parse("49"), m.Name), color.Render(mode, color.Parse("F5"), levelStr), - color.Render(mode, color.Parse("DE"), costStr), + color.Render(mode, color.Parse("B3"), costStr), color.Render(mode, color.Parse("B3"), xpStr), }) } else { |
