aboutsummaryrefslogtreecommitdiff
path: root/go/ui/colors.go
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fischer@muhq.space>2025-10-18 14:44:54 +0200
committerFlorian Fischer <florian.fischer@muhq.space>2025-10-18 14:47:21 +0200
commit03f09542930eb96a657a88e5b57bf47a95ac73da (patch)
tree2b3de603b4ad25471da76dc04ce51a5e7f59f8c2 /go/ui/colors.go
parent848dceaef3578c874633611b81eae465c9255f52 (diff)
downloadmuhqs-game-main.tar.gz
muhqs-game-main.zip
improve text input handlingHEADmain
Diffstat (limited to 'go/ui/colors.go')
-rw-r--r--go/ui/colors.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/go/ui/colors.go b/go/ui/colors.go
index e647b1fc..6da64320 100644
--- a/go/ui/colors.go
+++ b/go/ui/colors.go
@@ -8,6 +8,7 @@ var (
Gray = color.RGBA{0x80, 0x80, 0x80, 0xff}
ResourceBg = color.RGBA{230, 180, 128, 0xff}
+ FocusHintColor = color.RGBA{0x00, 0x00, 0xff, 0xff}
HighlightSelectionColor = color.RGBA{0xc7, 0x89, 0x33, 0xff}
HighlightOptionColor = color.RGBA{0xc7, 0x52, 0x33, 0xff}
HighlightMovementColor = color.RGBA{27, 59, 217, 0x80}