online multiplayer chess game (note server currently down)
-rw-r--r--ui/chat/Chat.gd5
-rw-r--r--ui/menus/lobby/Lobby.tscn3
2 files changed, 4 insertions, 4 deletions
diff --git a/ui/chat/Chat.gd b/ui/chat/Chat.gd
index 5f4eae8..e0cec0c 100644
--- a/ui/chat/Chat.gd
+++ b/ui/chat/Chat.gd
@@ -19,7 +19,7 @@ var regexes := [
# create smokey centered text
func server(txt: String) -> void:
- list.add_label("[center][i][b][color=#a9a9a9]%s[/color][/b][/i][/center]" % md2bb(txt))
+ list.add_label("[center][i][b][color=#93a1a1]%s[/color][/b][/i][/center]" % md2bb(txt))
func _init():
@@ -38,7 +38,8 @@ func _ready():
func add_label_with(data: Dictionary) -> void:
- var string := "[b]{who}[color=#f0e67e]:[/color][/b] {text}".format(data)
+ # b c /c c /c /b c
+ var string := "[b][color=#eee8d5]{who}[/color][color=#b58900]:[/color][/b][color=#eee8d5] {text}".format(data)
list.add_label(string)
diff --git a/ui/menus/lobby/Lobby.tscn b/ui/menus/lobby/Lobby.tscn
index 3d966df..0b9049e 100644
--- a/ui/menus/lobby/Lobby.tscn
+++ b/ui/menus/lobby/Lobby.tscn
@@ -98,7 +98,6 @@ visible = false
margin_top = 242.0
margin_right = 350.0
margin_bottom = 292.0
-custom_colors/font_color = Color( 1, 1, 1, 1 )
autowrap = true
[node name="StatusFail" type="Label" parent="Center/VBox"]
@@ -107,7 +106,7 @@ visible = false
margin_top = 242.0
margin_right = 350.0
margin_bottom = 292.0
-custom_colors/font_color = Color( 0.698039, 0.415686, 0.415686, 1 )
+custom_colors/font_color = Color( 0.862745, 0.196078, 0.184314, 1 )
autowrap = true
[connection signal="pressed" from="Center/VBox/stophost" to="." method="_on_stophost_pressed"]