diff options
| author | historia <[not public]> | 2026-06-17 02:27:20 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-17 02:27:20 -0400 |
| commit | 731adf2e0fbcac9a32179da077299ed6465af41e (patch) | |
| tree | 29d368917f258350d426f2680bec59feeb464eaf /internal/game/color.go | |
| parent | 389e307f205f9b7edf604fb9f86e1038ead736ef (diff) | |
| download | thehouseoficarus-731adf2e0fbcac9a32179da077299ed6465af41e.tar.gz | |
feat: movement overhauled. agility-enhancing items added.
Diffstat (limited to 'internal/game/color.go')
| -rw-r--r-- | internal/game/color.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/internal/game/color.go b/internal/game/color.go index 4fd8000..c3b3d83 100644 --- a/internal/game/color.go +++ b/internal/game/color.go @@ -46,15 +46,15 @@ func levelColorSpec(myLevel, theirLevel int) color.ColorSpec { diff := theirLevel - myLevel switch { case diff == 0: - return color.Parse("7") + return color.Parse("231") case diff > 0 && diff < 5: - return color.Parse("11") + return color.Parse("208") case diff >= 5: - return color.Parse("9") + return color.Parse("196") case diff < 0 && diff > -5: - return color.Parse("3") + return color.Parse("190") default: - return color.Parse("2") + return color.Parse("34") } } |
