aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fischer@muhq.space>2025-07-24 12:09:31 -0400
committerFlorian Fischer <florian.fischer@muhq.space>2025-07-28 18:03:10 +0200
commitc679ff0252eb9b8aebf448100fc39b82be8cf092 (patch)
tree71a65bc0ab0de45860b8a06eacacf578877fefe2
parentf51dbfe7d4220a9fac2c99db21806e5967a906a8 (diff)
downloadmuhqs-game-c679ff0252eb9b8aebf448100fc39b82be8cf092.tar.gz
muhqs-game-c679ff0252eb9b8aebf448100fc39b82be8cf092.zip
brighten the second player color to better see the symbols
-rw-r--r--go/ui/colors.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/ui/colors.go b/go/ui/colors.go
index fd1b8d06..3db24dfb 100644
--- a/go/ui/colors.go
+++ b/go/ui/colors.go
@@ -15,4 +15,4 @@ var (
var PlayerColors = []color.RGBA{
{1, 0xff, 1, 0xff},
- {1, 1, 0xff, 0xff}}
+ {0x7f, 0x7f, 0xff, 0xff}}