summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-10-04 00:41:22 +0200
committermetamuffin <metamuffin@disroot.org>2024-10-04 00:41:22 +0200
commit0f7133a6be99fba03e26fcc26172e06f10aa4f2a (patch)
tree91e32b72592c013c4c03792e55f5dc9c6aef2958
parent6d8da7b39c108a0c7d4d44e9805648cc1ea22d0d (diff)
parentf23afc6b145e47748f1fa76f4fe8b9e907ee101d (diff)
downloadhurrycurry-0f7133a6be99fba03e26fcc26172e06f10aa4f2a.tar
hurrycurry-0f7133a6be99fba03e26fcc26172e06f10aa4f2a.tar.bz2
hurrycurry-0f7133a6be99fba03e26fcc26172e06f10aa4f2a.tar.zst
Merge branch 'master' of codeberg.org:hurrycurry/hurrycurry
-rw-r--r--client/menu/communicate/chat/chat_message.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu/communicate/chat/chat_message.gd b/client/menu/communicate/chat/chat_message.gd
index c6e64a7c..33dd92c8 100644
--- a/client/menu/communicate/chat/chat_message.gd
+++ b/client/menu/communicate/chat/chat_message.gd
@@ -23,7 +23,7 @@ class_name ChatMessage
func set_message(username: String, message: String, username_color: Color, fade_away: bool = false, fade_time: float = 5.):
sender_label.text = "<%s>" % username
message_label.text = message
- sender_label.add_theme_color_override("font_color", username_color)
+ sender_label.add_theme_color_override("font_color", username_color.lightened(.5))
if fade_away:
fade_away_timer.start(fade_time)