diff options
Diffstat (limited to 'client/menu/communicate')
-rw-r--r-- | client/menu/communicate/chat/chat_message.gd | 2 |
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) |