diff options
-rw-r--r-- | client/project.godot | 4 | ||||
-rw-r--r-- | client/themes/styles/focus.tres | 13 |
2 files changed, 17 insertions, 0 deletions
diff --git a/client/project.godot b/client/project.godot index 09247046..61b5fd34 100644 --- a/client/project.godot +++ b/client/project.godot @@ -19,6 +19,10 @@ config/icon="res://icon.svg" Multiplayer="*res://scripts/multiplayer.gd" +[gui] + +theme/custom="res://themes/menu.tres" + [input] forward={ diff --git a/client/themes/styles/focus.tres b/client/themes/styles/focus.tres new file mode 100644 index 00000000..4c8385ea --- /dev/null +++ b/client/themes/styles/focus.tres @@ -0,0 +1,13 @@ +[gd_resource type="StyleBoxFlat" format=3 uid="uid://cakf4liofcocu"] + +[resource] +bg_color = Color(0.47451, 0.580392, 0.917647, 0) +border_width_left = 3 +border_width_top = 3 +border_width_right = 3 +border_width_bottom = 3 +border_color = Color(0.513726, 0.611765, 0.929412, 1) +corner_radius_top_left = 10 +corner_radius_top_right = 10 +corner_radius_bottom_right = 10 +corner_radius_bottom_left = 10 |