diff --git a/addons/flexible_layout/flexible_tab.gd b/addons/flexible_layout/flexible_tab.gd
index b8ea24073..74effe70d 100644
--- a/addons/flexible_layout/flexible_tab.gd
+++ b/addons/flexible_layout/flexible_tab.gd
@@ -6,7 +6,6 @@ var updating : bool = false
func _ready():
- $Container/Close.texture_normal = get_theme_icon("close", "TabBar")
update()
func _notification(what):
@@ -23,6 +22,10 @@ func get_flex_layout():
return flex_tab.flexible_layout
func update():
+ $Container/Close.texture_normal = get_theme_icon("close", "MM_FlexibleTab")
+ $Container/Close.modulate = get_theme_color("font_selected_color", "MM_FlexibleTab")
+ $Container/Undock.texture_normal = get_theme_icon("undock", "MM_FlexibleTab")
+ $Container/Undock.modulate = get_theme_color("font_selected_color", "MM_FlexibleTab")
if not updating:
updating = true
var is_current: bool = (get_index() == get_parent().get_parent().current)
diff --git a/addons/flexible_layout/flexible_tab.tscn b/addons/flexible_layout/flexible_tab.tscn
index 839f1ff02..a1b4c7f67 100644
--- a/addons/flexible_layout/flexible_tab.tscn
+++ b/addons/flexible_layout/flexible_tab.tscn
@@ -1,7 +1,6 @@
-[gd_scene load_steps=4 format=3 uid="uid://e06xegp2tp3f"]
+[gd_scene load_steps=3 format=3 uid="uid://e06xegp2tp3f"]
-[ext_resource type="Script" uid="uid://ywxnr7grll4s" path="res://addons/flexible_layout/flexible_tab.gd" id="1"]
-[ext_resource type="Texture2D" uid="uid://xuy6dfh1rsne" path="res://addons/flexible_layout/undock.png" id="2_nx0qp"]
+[ext_resource type="Script" path="res://addons/flexible_layout/flexible_tab.gd" id="1"]
[sub_resource type="PlaceholderTexture2D" id="PlaceholderTexture2D_bok24"]
size = Vector2(16, 16)
@@ -31,7 +30,6 @@ visible = false
layout_mode = 2
size_flags_horizontal = 4
size_flags_vertical = 4
-texture_normal = ExtResource("2_nx0qp")
[node name="Close" type="TextureButton" parent="Container"]
visible = false
diff --git a/material_maker/main_window.tscn b/material_maker/main_window.tscn
index bed62ffff..721918d6b 100644
--- a/material_maker/main_window.tscn
+++ b/material_maker/main_window.tscn
@@ -15,6 +15,7 @@
[ext_resource type="Script" uid="uid://ds4jcblbferbu" path="res://material_maker/tools/library_manager/library_manager.gd" id="14"]
[ext_resource type="Texture2D" path="res://material_maker/icons/paste_none.tres" id="15"]
+
[sub_resource type="GDScript" id="6"]
script/source = "extends Label
diff --git a/material_maker/main_window_projects_panel.gd b/material_maker/main_window_projects_panel.gd
index e01096321..732210c19 100644
--- a/material_maker/main_window_projects_panel.gd
+++ b/material_maker/main_window_projects_panel.gd
@@ -9,6 +9,14 @@ extends Control
@onready var preview_3d_background_panel = $PreviewUI/Panel
+func _notification(what: int) -> void:
+ if what == NOTIFICATION_THEME_CHANGED:
+ if not is_node_ready():
+ await ready
+ preview_2d_background_button.icon = get_theme_icon("2D_preview", "MM_Icons")
+ preview_3d_background_button.icon = get_theme_icon("3D_preview", "MM_Icons")
+ %ControlView.texture = get_theme_icon("3D_preview_control", "MM_Icons")
+
func get_projects():
return projects
diff --git a/material_maker/nodes/reroute/reroute.gd b/material_maker/nodes/reroute/reroute.gd
index 993351908..d5e9ab1d1 100644
--- a/material_maker/nodes/reroute/reroute.gd
+++ b/material_maker/nodes/reroute/reroute.gd
@@ -7,7 +7,8 @@ const PREVIEW_SIZES : Array[int] = [ 0, 64, 128, 192]
func _ready() -> void:
super._ready()
close_button.visible = false
- set_theme_type("Reroute")
+ theme_type_variation = "MM_Reroute"
+ #set_theme_type("Reroute")
on_connections_changed.call_deferred()
func set_generator(g : MMGenBase) -> void:
@@ -16,12 +17,13 @@ func set_generator(g : MMGenBase) -> void:
await set_preview(g.get_parameter("preview"))
update_node()
-func set_theme_type(type : StringName):
- var current_theme : Theme = mm_globals.main_window.theme
- for constant in current_theme.get_constant_list(type):
- add_theme_constant_override(constant, current_theme.get_constant(constant, type))
- for stylebox in current_theme.get_stylebox_list(type):
- add_theme_stylebox_override(stylebox, current_theme.get_stylebox(stylebox, type))
+
+#func set_theme_type(type : StringName):
+ #var current_theme : Theme = mm_globals.main_window.theme
+ #for constant in current_theme.get_constant_list(type):
+ #add_theme_constant_override(constant, current_theme.get_constant(constant, type))
+ #for stylebox in current_theme.get_stylebox_list(type):
+ #add_theme_stylebox_override(stylebox, current_theme.get_stylebox(stylebox, type))
func on_connections_changed():
var graph_edit = get_parent()
@@ -95,7 +97,8 @@ func set_preview(v : int):
if v == 0:
if preview:
preview.queue_free()
- set_theme_type("Reroute")
+ theme_type_variation = "MM_Reroute"
+ #set_theme_type("Reroute")
else:
if ! preview:
preview = preload("res://material_maker/panels/preview_2d/preview_2d_node.tscn").instantiate()
@@ -104,6 +107,7 @@ func set_preview(v : int):
update_preview(preview)
var preview_size : int = PREVIEW_SIZES[v]
preview.custom_minimum_size = Vector2(preview_size, preview_size)
- set_theme_type("ReroutePreview")
+ #set_theme_type("ReroutePreview")
+ theme_type_variation = "MM_ReroutePreview"
await get_tree().process_frame
size = Vector2(0, 0)
diff --git a/material_maker/panels/library/library.gd b/material_maker/panels/library/library.gd
index 2ac6fce48..b0643aa21 100644
--- a/material_maker/panels/library/library.gd
+++ b/material_maker/panels/library/library.gd
@@ -39,6 +39,17 @@ func _ready() -> void:
libraries_button.get_popup().id_pressed.connect(self._on_Libraries_id_pressed)
init_expanded_items()
update_tree()
+ update_theme()
+
+func _notification(what: int) -> void:
+ if not is_node_ready():
+ return
+
+ if what == NOTIFICATION_THEME_CHANGED:
+ update_theme()
+
+func update_theme() -> void:
+ libraries_button.icon = get_theme_icon("settings", "MM_Icons")
func init_expanded_items() -> void:
var f = FileAccess.open("user://expanded_items.bin", FileAccess.READ)
diff --git a/material_maker/panels/preview_3d/preview_3d_ui.gd b/material_maker/panels/preview_3d/preview_3d_ui.gd
index 9a3f915a7..196edbe6c 100644
--- a/material_maker/panels/preview_3d/preview_3d_ui.gd
+++ b/material_maker/panels/preview_3d/preview_3d_ui.gd
@@ -5,3 +5,6 @@ var target_node
func _ready() -> void:
target_node = get_node(target)
+
+ $Model.icon = get_theme_icon("model", "MM_Icons")
+ $Environment.icon = get_theme_icon("environment", "MM_Icons")
diff --git a/material_maker/panels/preview_3d/preview_3d_ui.tscn b/material_maker/panels/preview_3d/preview_3d_ui.tscn
index 3025ef1fe..228b71fa1 100644
--- a/material_maker/panels/preview_3d/preview_3d_ui.tscn
+++ b/material_maker/panels/preview_3d/preview_3d_ui.tscn
@@ -1,5 +1,6 @@
-[gd_scene load_steps=4 format=3 uid="uid://brlp703awvxbn"]
+[gd_scene load_steps=5 format=3 uid="uid://brlp703awvxbn"]
+[ext_resource type="Script" path="res://material_maker/panels/preview_3d/preview_3d_ui.gd" id="1_oc43p"]
[ext_resource type="Texture2D" uid="uid://c0j4px4n72di5" path="res://material_maker/icons/icons.tres" id="2"]
[sub_resource type="AtlasTexture" id="1"]
@@ -15,6 +16,7 @@ anchors_preset = 10
anchor_right = 1.0
offset_bottom = 20.0
size_flags_horizontal = 3
+script = ExtResource("1_oc43p")
[node name="Model" type="MenuButton" parent="."]
layout_mode = 2
diff --git a/material_maker/projects_panel.tscn b/material_maker/projects_panel.tscn
index f1971ccfe..a24c646ad 100644
--- a/material_maker/projects_panel.tscn
+++ b/material_maker/projects_panel.tscn
@@ -1,10 +1,9 @@
-[gd_scene load_steps=12 format=3 uid="uid://bnqq3vhwmudkw"]
+[gd_scene load_steps=8 format=3 uid="uid://bnqq3vhwmudkw"]
[ext_resource type="Script" uid="uid://cryayuomvuwbo" path="res://material_maker/main_window_projects_panel.gd" id="1_m3usq"]
[ext_resource type="PackedScene" uid="uid://bb6iar0tbj2qt" path="res://material_maker/panels/preview_2d/preview_2d.tscn" id="2_oiaqi"]
[ext_resource type="PackedScene" uid="uid://dpaxvlnn2u1f6" path="res://material_maker/panels/preview_3d/preview_3d.tscn" id="3_qvj7k"]
-[ext_resource type="Script" uid="uid://bl15iwn2k8qm" path="res://material_maker/widgets/tabs/tabs.gd" id="4_mpinq"]
-[ext_resource type="Texture2D" uid="uid://c0j4px4n72di5" path="res://material_maker/icons/icons.tres" id="5_1qnqj"]
+[ext_resource type="Script" path="res://material_maker/widgets/tabs/tabs.gd" id="4_mpinq"]
[ext_resource type="PackedScene" uid="uid://brlp703awvxbn" path="res://material_maker/panels/preview_3d/preview_3d_ui.tscn" id="6_mpc0m"]
[sub_resource type="Shader" id="1"]
@@ -15,18 +14,6 @@ resource_local_to_scene = true
render_priority = 0
shader = SubResource("1")
-[sub_resource type="AtlasTexture" id="3"]
-atlas = ExtResource("5_1qnqj")
-region = Rect2(96, 96, 32, 32)
-
-[sub_resource type="AtlasTexture" id="4"]
-atlas = ExtResource("5_1qnqj")
-region = Rect2(96, 32, 32, 32)
-
-[sub_resource type="AtlasTexture" id="5"]
-atlas = ExtResource("5_1qnqj")
-region = Rect2(96, 64, 32, 31)
-
[node name="ProjectsPanel" type="Control"]
clip_contents = true
custom_minimum_size = Vector2(100, 100)
@@ -118,10 +105,10 @@ layout_mode = 1
anchors_preset = 2
anchor_top = 1.0
anchor_bottom = 1.0
-offset_left = 5.5
-offset_top = -53.5
-offset_right = 335.5
-offset_bottom = -13.5
+offset_left = 11.5
+offset_top = -24.5
+offset_right = 95.5
+offset_bottom = -16.5
grow_vertical = 0
mouse_filter = 2
@@ -129,13 +116,11 @@ mouse_filter = 2
layout_mode = 2
tooltip_text = "Show 2D preview"
toggle_mode = true
-icon = SubResource("3")
[node name="Preview3DButton" type="Button" parent="PreviewUI"]
layout_mode = 2
tooltip_text = "Show 3D preview"
toggle_mode = true
-icon = SubResource("4")
[node name="Panel" type="PanelContainer" parent="PreviewUI"]
visible = false
@@ -148,9 +133,9 @@ layout_mode = 2
layout_mode = 2
[node name="ControlView" type="TextureRect" parent="PreviewUI/Panel/HBoxContainer"]
+unique_name_in_owner = true
layout_mode = 2
size_flags_vertical = 4
-texture = SubResource("5")
[node name="Preview3DUI" parent="PreviewUI/Panel/HBoxContainer" instance=ExtResource("6_mpc0m")]
layout_mode = 2
diff --git a/material_maker/theme/classic.tres b/material_maker/theme/classic.tres
index df3e47501..28be9ee88 100644
--- a/material_maker/theme/classic.tres
+++ b/material_maker/theme/classic.tres
@@ -1,10 +1,7 @@
-[gd_resource type="Theme" load_steps=63 format=3 uid="uid://42cileyfwaca"]
+[gd_resource type="Theme" load_steps=92 format=3 uid="uid://42cileyfwaca"]
+[ext_resource type="Texture2D" uid="uid://c7mq31csbj1fg" path="res://material_maker/theme/default_theme_icons.svg" id="1_7p32q"]
[ext_resource type="FontFile" uid="uid://dgkwr5jydtk6p" path="res://material_maker/theme/font_rubik/Rubik-VariableFont_wght.ttf" id="1_l05jd"]
-[ext_resource type="Texture2D" uid="uid://c74jqqhkapvx0" path="res://material_maker/theme/dark/graphnode_close.png" id="19"]
-[ext_resource type="Texture2D" uid="uid://cgxvaurldh6mq" path="res://material_maker/theme/dark/graphnode_port.png" id="32"]
-[ext_resource type="Texture2D" uid="uid://c4k81poqyod3g" path="res://material_maker/theme/dark/graphnode_resizer.png" id="33"]
-[ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="56"]
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_inl5r"]
content_margin_left = 3.0
@@ -55,6 +52,62 @@ content_margin_right = 3.0
content_margin_bottom = 3.0
bg_color = Color(0.14902, 0.172549, 0.231373, 1)
+[sub_resource type="AtlasTexture" id="AtlasTexture_chskd"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(80, 112, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_iyqub"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(112, 112, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_td4qu"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(16, 112, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_s31a3"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(48, 112, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_rdh87"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(0, 112, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_8fbk7"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(32, 112, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_5s2d2"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(64, 112, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_vngdy"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(96, 112, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_m1w7u"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(0, 128, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_3ph34"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(16, 128, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_4i44b"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(112, 96, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_uxdun"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(64, 96, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_scuvh"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(80, 96, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_cpts2"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(96, 96, 16, 16)
+
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_btw0t"]
content_margin_left = 3.0
content_margin_top = 3.0
@@ -227,6 +280,38 @@ border_width_right = 1
border_width_bottom = 1
border_color = Color(0.2, 0.23, 0.31, 1)
+[sub_resource type="AtlasTexture" id="AtlasTexture_8fwsx"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(48, 0, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_gvlse"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(112, 80, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_q32qs"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(32, 48, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_r3xak"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(48, 48, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_2gawd"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(112, 16, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_du4od"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(64, 80, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_nkmvd"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(48, 80, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_33srw"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(32, 0, 16, 16)
+
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wqwm5"]
content_margin_left = 10.0
content_margin_top = 10.0
@@ -297,6 +382,10 @@ corner_radius_bottom_right = 4
corner_radius_bottom_left = 4
corner_detail = 4
+[sub_resource type="AtlasTexture" id="AtlasTexture_bflk3"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(112, 16, 16, 16)
+
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ofcpt"]
content_margin_left = 3.0
content_margin_top = 3.0
@@ -344,6 +433,40 @@ border_color = Color(0.099986, 0.099986, 0.0999859, 1)
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_u368o"]
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wc6mb"]
+bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1)
+corner_radius_top_left = 24
+corner_radius_top_right = 24
+corner_radius_bottom_right = 24
+corner_radius_bottom_left = 24
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_24h6y"]
+bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1)
+border_width_left = 1
+border_width_top = 1
+border_width_right = 1
+border_width_bottom = 1
+corner_radius_top_left = 24
+corner_radius_top_right = 24
+corner_radius_bottom_right = 24
+corner_radius_bottom_left = 24
+
+[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_l27kp"]
+
+[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_lg0bb"]
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gn0j1"]
+bg_color = Color(0.168627, 0.176471, 0.192157, 1)
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5vt7k"]
+bg_color = Color(0.168627, 0.176471, 0.192157, 1)
+border_width_left = 1
+border_width_top = 1
+border_width_right = 1
+border_width_bottom = 1
+
+[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_xyfhj"]
+
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7hrav"]
content_margin_left = 3.0
content_margin_top = 3.0
@@ -364,6 +487,42 @@ content_margin_right = 6.0
content_margin_bottom = 6.0
bg_color = Color(0.117647, 0.121569, 0.133333, 1)
+[sub_resource type="AtlasTexture" id="AtlasTexture_q4s7x"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(80, 112, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_2h4v4"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(112, 112, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_upgdi"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(16, 112, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_2xbg4"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(48, 112, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_8u2ty"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(0, 112, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_uodmo"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(32, 112, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_5cv8u"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(48, 96, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_bxwwn"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(64, 112, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_ftwxj"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(96, 112, 16, 16)
+
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fq0uc"]
content_margin_left = 3.0
content_margin_top = 3.0
@@ -388,58 +547,9 @@ border_width_bottom = 1
border_color = Color(0.556194, 0.581022, 0.642742, 1)
shadow_size = 2
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7xfok"]
-bg_color = Color(0.376471, 0.376471, 0.376471, 1)
-corner_radius_top_left = 24
-corner_radius_top_right = 24
-corner_radius_bottom_right = 24
-corner_radius_bottom_left = 24
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6or45"]
-bg_color = Color(0.376471, 0.376471, 0.376471, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(1, 1, 1, 1)
-corner_radius_top_left = 24
-corner_radius_top_right = 24
-corner_radius_bottom_right = 24
-corner_radius_bottom_left = 24
-
-[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_smd7i"]
-
-[sub_resource type="FontFile" id="FontFile_00yus"]
-fallbacks = Array[Font]([ExtResource("56")])
-cache/0/16/0/ascent = 0.0
-cache/0/16/0/descent = 0.0
-cache/0/16/0/underline_position = 0.0
-cache/0/16/0/underline_thickness = 0.0
-cache/0/16/0/scale = 1.0
-cache/0/16/0/kerning_overrides/16/0 = Vector2(0, 0)
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_otynv"]
-content_margin_left = 0.0
-content_margin_top = 0.0
-content_margin_right = 0.0
-content_margin_bottom = 0.0
-bg_color = Color(0.376471, 0.376471, 0.376471, 1)
-corner_detail = 1
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kbm1t"]
-content_margin_left = 0.0
-content_margin_top = 0.0
-content_margin_right = 0.0
-content_margin_bottom = 0.0
-bg_color = Color(0.376471, 0.376471, 0.376471, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(1, 1, 1, 1)
-corner_detail = 1
-
-[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_7bw33"]
+[sub_resource type="AtlasTexture" id="AtlasTexture_1wpt7"]
+atlas = ExtResource("1_7p32q")
+region = Rect2(48, 0, 16, 16)
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7nmb2"]
content_margin_left = 7.0
@@ -554,10 +664,24 @@ Button/styles/hover = SubResource("StyleBoxFlat_2qiie")
Button/styles/hover_pressed = SubResource("StyleBoxFlat_2qiie")
Button/styles/normal = SubResource("StyleBoxFlat_644rd")
Button/styles/pressed = SubResource("StyleBoxFlat_rxikb")
+CheckBox/icons/checked = SubResource("AtlasTexture_chskd")
+CheckBox/icons/checked_disabled = SubResource("AtlasTexture_iyqub")
+CheckBox/icons/radio_checked = SubResource("AtlasTexture_td4qu")
+CheckBox/icons/radio_checked_disabled = SubResource("AtlasTexture_s31a3")
+CheckBox/icons/radio_unchecked = SubResource("AtlasTexture_rdh87")
+CheckBox/icons/radio_unchecked_disabled = SubResource("AtlasTexture_8fbk7")
+CheckBox/icons/unchecked = SubResource("AtlasTexture_5s2d2")
+CheckBox/icons/unchecked_disabled = SubResource("AtlasTexture_vngdy")
GraphEdit/colors/grid_major = Color(0.321569, 0.337255, 0.384314, 1)
GraphEdit/colors/grid_minor = Color(0.321569, 0.337255, 0.384314, 1)
GraphEdit/constants/port_hotzone_inner_extent = 8
GraphEdit/constants/port_hotzone_outer_extent = 50
+GraphEdit/icons/grid_toggle = SubResource("AtlasTexture_m1w7u")
+GraphEdit/icons/minimap_toggle = SubResource("AtlasTexture_3ph34")
+GraphEdit/icons/snapping_toggle = SubResource("AtlasTexture_4i44b")
+GraphEdit/icons/zoom_in = SubResource("AtlasTexture_uxdun")
+GraphEdit/icons/zoom_out = SubResource("AtlasTexture_scuvh")
+GraphEdit/icons/zoom_reset = SubResource("AtlasTexture_cpts2")
GraphEdit/styles/menu_panel = SubResource("StyleBoxFlat_btw0t")
GraphEdit/styles/panel = SubResource("StyleBoxEmpty_62l4s")
GraphNode/colors/portpreview_color = Color(0.89059, 0.89059, 0.89059, 1)
@@ -593,6 +717,14 @@ MM_FilterLineEdit/styles/focus = SubResource("StyleBoxFlat_dyhk7")
MM_FilterLineEdit/styles/normal = SubResource("StyleBoxFlat_e8p1m")
MM_FlexibleTab/base_type = &"TabBar"
MM_FlexibleTab/constants/separation = 3
+MM_FlexibleTab/icons/close = SubResource("AtlasTexture_8fwsx")
+MM_FlexibleTab/icons/undock = SubResource("AtlasTexture_gvlse")
+MM_Icons/icons/arrow_left = SubResource("AtlasTexture_q32qs")
+MM_Icons/icons/arrow_right = SubResource("AtlasTexture_r3xak")
+MM_Icons/icons/dropdown = SubResource("AtlasTexture_2gawd")
+MM_Icons/icons/pin_pinned = SubResource("AtlasTexture_du4od")
+MM_Icons/icons/pin_unpinned = SubResource("AtlasTexture_nkmvd")
+MM_Icons/icons/settings = SubResource("AtlasTexture_33srw")
MM_MainBackground/base_type = &"PanelContainer"
MM_MainBackground/styles/panel = SubResource("StyleBoxFlat_wqwm5")
MM_Node/constants/minimum_line_height = 16
@@ -611,6 +743,7 @@ MM_NodeGradientEditPopup/base_type = &"PanelContainer"
MM_NodeGradientEditPopup/styles/panel = SubResource("StyleBoxFlat_omwbs")
MM_NodeImageEdit/base_type = &"Button"
MM_NodeOptionEdit/base_type = &"OptionButton"
+MM_NodeOptionEdit/icons/arrow = SubResource("AtlasTexture_bflk3")
MM_NodeOptionEditPopup/base_type = &"PopupMenu"
MM_NodeOptionEditPopup/styles/hover = SubResource("StyleBoxFlat_ofcpt")
MM_NodeOptionEditPopup/styles/panel = SubResource("StyleBoxFlat_g2id4")
@@ -622,47 +755,30 @@ MM_PanelBackground/base_type = &"PanelContainer"
MM_PanelBackground/styles/panel = SubResource("StyleBoxFlat_uujf1")
MM_ProjectsBackground/base_type = &"Panel"
MM_ProjectsBackground/styles/panel = SubResource("StyleBoxEmpty_u368o")
+MM_Reroute/styles/panel = SubResource("StyleBoxFlat_wc6mb")
+MM_Reroute/styles/panel_selected = SubResource("StyleBoxFlat_24h6y")
+MM_Reroute/styles/titlebar = SubResource("StyleBoxEmpty_l27kp")
+MM_Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_lg0bb")
+MM_ReroutePreview/styles/panel = SubResource("StyleBoxFlat_gn0j1")
+MM_ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_5vt7k")
+MM_ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_xyfhj")
+MM_ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_xyfhj")
MM_StatusBarBackground/base_type = &"PanelContainer"
MM_StatusBarBackground/styles/panel = SubResource("StyleBoxFlat_7hrav")
Panel/styles/panel = SubResource("StyleBoxFlat_dscxc")
+PopupMenu/icons/checked = SubResource("AtlasTexture_q4s7x")
+PopupMenu/icons/checked_disabled = SubResource("AtlasTexture_2h4v4")
+PopupMenu/icons/radio_checked = SubResource("AtlasTexture_upgdi")
+PopupMenu/icons/radio_checked_disabled = SubResource("AtlasTexture_2xbg4")
+PopupMenu/icons/radio_unchecked = SubResource("AtlasTexture_8u2ty")
+PopupMenu/icons/radio_unchecked_disabled = SubResource("AtlasTexture_uodmo")
+PopupMenu/icons/submenu = SubResource("AtlasTexture_5cv8u")
+PopupMenu/icons/unchecked = SubResource("AtlasTexture_bxwwn")
+PopupMenu/icons/unchecked_disabled = SubResource("AtlasTexture_ftwxj")
PopupMenu/styles/hover = SubResource("StyleBoxFlat_fq0uc")
PopupMenu/styles/panel = SubResource("StyleBoxFlat_8p2hu")
-Reroute/colors/close_color = Color(1, 1, 1, 0.7)
-Reroute/colors/resizer_color = Color(1, 1, 1, 0.7)
-Reroute/colors/title_color = Color(1, 1, 1, 1)
-Reroute/constants/close_h_offset = 20
-Reroute/constants/close_offset = 20
-Reroute/constants/port_h_offset = 0
-Reroute/constants/port_offset = 0
-Reroute/constants/separation = 1
-Reroute/constants/title_h_offset = -16
-Reroute/constants/title_offset = 20
-Reroute/icons/close = ExtResource("19")
-Reroute/icons/port = ExtResource("32")
-Reroute/icons/resizer = ExtResource("33")
-Reroute/styles/panel = SubResource("StyleBoxFlat_7xfok")
-Reroute/styles/panel_selected = SubResource("StyleBoxFlat_6or45")
-Reroute/styles/titlebar = SubResource("StyleBoxEmpty_smd7i")
-Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_smd7i")
-ReroutePreview/colors/close_color = Color(1, 1, 1, 0.7)
-ReroutePreview/colors/resizer_color = Color(1, 1, 1, 0.7)
-ReroutePreview/colors/title_color = Color(1, 1, 1, 1)
-ReroutePreview/constants/close_h_offset = 20
-ReroutePreview/constants/close_offset = 20
-ReroutePreview/constants/port_h_offset = 0
-ReroutePreview/constants/port_offset = 0
-ReroutePreview/constants/separation = 1
-ReroutePreview/constants/title_h_offset = -16
-ReroutePreview/constants/title_offset = 20
-ReroutePreview/fonts/title_font = SubResource("FontFile_00yus")
-ReroutePreview/icons/close = ExtResource("19")
-ReroutePreview/icons/port = ExtResource("32")
-ReroutePreview/icons/resizer = ExtResource("33")
-ReroutePreview/styles/panel = SubResource("StyleBoxFlat_otynv")
-ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_kbm1t")
-ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_7bw33")
-ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_7bw33")
TabBar/constants/h_separation = 6
+TabBar/icons/close = SubResource("AtlasTexture_1wpt7")
TabBar/styles/tab_focus = SubResource("StyleBoxFlat_7nmb2")
TabBar/styles/tab_hovered = SubResource("StyleBoxFlat_62r2q")
TabBar/styles/tab_selected = SubResource("StyleBoxFlat_r4jxv")
diff --git a/material_maker/theme/dark/checkbox_checked.png b/material_maker/theme/dark/checkbox_checked.png
deleted file mode 100644
index 3c6e5a6c7..000000000
Binary files a/material_maker/theme/dark/checkbox_checked.png and /dev/null differ
diff --git a/material_maker/theme/dark/checkbox_checked.png.import b/material_maker/theme/dark/checkbox_checked.png.import
deleted file mode 100644
index f3e2e79aa..000000000
--- a/material_maker/theme/dark/checkbox_checked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dns037k5om74b"
-path="res://.godot/imported/checkbox_checked.png-a24c924b1543aa23be2c8420c0d07a36.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/checkbox_checked.png"
-dest_files=["res://.godot/imported/checkbox_checked.png-a24c924b1543aa23be2c8420c0d07a36.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/checkbox_radio_checked.png b/material_maker/theme/dark/checkbox_radio_checked.png
deleted file mode 100644
index bb7d7c27a..000000000
Binary files a/material_maker/theme/dark/checkbox_radio_checked.png and /dev/null differ
diff --git a/material_maker/theme/dark/checkbox_radio_checked.png.import b/material_maker/theme/dark/checkbox_radio_checked.png.import
deleted file mode 100644
index 08dc8f8bb..000000000
--- a/material_maker/theme/dark/checkbox_radio_checked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://d0jps0u7dybnk"
-path="res://.godot/imported/checkbox_radio_checked.png-a6cb92213981a71c047ca59b5fa98b31.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/checkbox_radio_checked.png"
-dest_files=["res://.godot/imported/checkbox_radio_checked.png-a6cb92213981a71c047ca59b5fa98b31.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/checkbox_radio_unchecked.png b/material_maker/theme/dark/checkbox_radio_unchecked.png
deleted file mode 100644
index cddf3aa8a..000000000
Binary files a/material_maker/theme/dark/checkbox_radio_unchecked.png and /dev/null differ
diff --git a/material_maker/theme/dark/checkbox_radio_unchecked.png.import b/material_maker/theme/dark/checkbox_radio_unchecked.png.import
deleted file mode 100644
index 35f062ab8..000000000
--- a/material_maker/theme/dark/checkbox_radio_unchecked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dgy8i2xtjcbox"
-path="res://.godot/imported/checkbox_radio_unchecked.png-116489c9cd49e87c50617a4927320362.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/checkbox_radio_unchecked.png"
-dest_files=["res://.godot/imported/checkbox_radio_unchecked.png-116489c9cd49e87c50617a4927320362.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/checkbox_unchecked.png b/material_maker/theme/dark/checkbox_unchecked.png
deleted file mode 100644
index c809465bc..000000000
Binary files a/material_maker/theme/dark/checkbox_unchecked.png and /dev/null differ
diff --git a/material_maker/theme/dark/checkbox_unchecked.png.import b/material_maker/theme/dark/checkbox_unchecked.png.import
deleted file mode 100644
index 778679e7a..000000000
--- a/material_maker/theme/dark/checkbox_unchecked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://culamc7salbfk"
-path="res://.godot/imported/checkbox_unchecked.png-bc3142334ecb9d65cfbe73d656b3e6b2.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/checkbox_unchecked.png"
-dest_files=["res://.godot/imported/checkbox_unchecked.png-bc3142334ecb9d65cfbe73d656b3e6b2.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/checkbutton_off.png b/material_maker/theme/dark/checkbutton_off.png
deleted file mode 100644
index cb84c425c..000000000
Binary files a/material_maker/theme/dark/checkbutton_off.png and /dev/null differ
diff --git a/material_maker/theme/dark/checkbutton_off.png.import b/material_maker/theme/dark/checkbutton_off.png.import
deleted file mode 100644
index 0edf0d864..000000000
--- a/material_maker/theme/dark/checkbutton_off.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://ur8ohwwy2se0"
-path="res://.godot/imported/checkbutton_off.png-bc6bba9c7849ecc66337bdfbb3ab2d88.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/checkbutton_off.png"
-dest_files=["res://.godot/imported/checkbutton_off.png-bc6bba9c7849ecc66337bdfbb3ab2d88.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/checkbutton_off_disabled.png b/material_maker/theme/dark/checkbutton_off_disabled.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/dark/checkbutton_off_disabled.png and /dev/null differ
diff --git a/material_maker/theme/dark/checkbutton_off_disabled.png.import b/material_maker/theme/dark/checkbutton_off_disabled.png.import
deleted file mode 100644
index ea7f0128e..000000000
--- a/material_maker/theme/dark/checkbutton_off_disabled.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dl5mee2sawhvx"
-path="res://.godot/imported/checkbutton_off_disabled.png-8fb715ddd53ede15dc3e6466cda78bcd.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/checkbutton_off_disabled.png"
-dest_files=["res://.godot/imported/checkbutton_off_disabled.png-8fb715ddd53ede15dc3e6466cda78bcd.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/checkbutton_on.png b/material_maker/theme/dark/checkbutton_on.png
deleted file mode 100644
index b37501f5f..000000000
Binary files a/material_maker/theme/dark/checkbutton_on.png and /dev/null differ
diff --git a/material_maker/theme/dark/checkbutton_on.png.import b/material_maker/theme/dark/checkbutton_on.png.import
deleted file mode 100644
index 366a5c3c6..000000000
--- a/material_maker/theme/dark/checkbutton_on.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://c2svuhr0tv8rx"
-path="res://.godot/imported/checkbutton_on.png-d5ed99c4493108d0ecdbcb16457b1bcf.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/checkbutton_on.png"
-dest_files=["res://.godot/imported/checkbutton_on.png-d5ed99c4493108d0ecdbcb16457b1bcf.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/checkbutton_on_disabled.png b/material_maker/theme/dark/checkbutton_on_disabled.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/dark/checkbutton_on_disabled.png and /dev/null differ
diff --git a/material_maker/theme/dark/checkbutton_on_disabled.png.import b/material_maker/theme/dark/checkbutton_on_disabled.png.import
deleted file mode 100644
index 38293df18..000000000
--- a/material_maker/theme/dark/checkbutton_on_disabled.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://duiw7jcnsryie"
-path="res://.godot/imported/checkbutton_on_disabled.png-ad7eed91bb9ceac9e54a1361d7e97025.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/checkbutton_on_disabled.png"
-dest_files=["res://.godot/imported/checkbutton_on_disabled.png-ad7eed91bb9ceac9e54a1361d7e97025.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/colorpickerbutton_bg.png b/material_maker/theme/dark/colorpickerbutton_bg.png
deleted file mode 100644
index 73fcc7cfd..000000000
Binary files a/material_maker/theme/dark/colorpickerbutton_bg.png and /dev/null differ
diff --git a/material_maker/theme/dark/colorpickerbutton_bg.png.import b/material_maker/theme/dark/colorpickerbutton_bg.png.import
deleted file mode 100644
index 26f2ce63e..000000000
--- a/material_maker/theme/dark/colorpickerbutton_bg.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://c5wfthaqbxite"
-path="res://.godot/imported/colorpickerbutton_bg.png-e1c4b5f05aac67a55db56982783487e0.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/colorpickerbutton_bg.png"
-dest_files=["res://.godot/imported/colorpickerbutton_bg.png-e1c4b5f05aac67a55db56982783487e0.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/curve_preset_bevel.tres b/material_maker/theme/dark/curve_preset_bevel.tres
deleted file mode 100644
index 3b4316a15..000000000
--- a/material_maker/theme/dark/curve_preset_bevel.tres
+++ /dev/null
@@ -1,8 +0,0 @@
-[gd_resource type="AtlasTexture" load_steps=2 format=2]
-
-[ext_resource path="res://material_maker/theme/dark/curve_presets.svg" type="Texture2D" id=1]
-
-[resource]
-flags = 4
-atlas = ExtResource( 1 )
-region = Rect2( 32, 16, 16, 16 )
diff --git a/material_maker/theme/dark/curve_preset_bounce.tres b/material_maker/theme/dark/curve_preset_bounce.tres
deleted file mode 100644
index 63550dd40..000000000
--- a/material_maker/theme/dark/curve_preset_bounce.tres
+++ /dev/null
@@ -1,8 +0,0 @@
-[gd_resource type="AtlasTexture" load_steps=2 format=2]
-
-[ext_resource path="res://material_maker/theme/dark/curve_presets.svg" type="Texture2D" id=1]
-
-[resource]
-flags = 4
-atlas = ExtResource( 1 )
-region = Rect2( 16, 16, 16, 16 )
diff --git a/material_maker/theme/dark/curve_preset_easein.tres b/material_maker/theme/dark/curve_preset_easein.tres
deleted file mode 100644
index d990e0c8c..000000000
--- a/material_maker/theme/dark/curve_preset_easein.tres
+++ /dev/null
@@ -1,8 +0,0 @@
-[gd_resource type="AtlasTexture" load_steps=2 format=2]
-
-[ext_resource path="res://material_maker/theme/dark/curve_presets.svg" type="Texture2D" id=1]
-
-[resource]
-flags = 4
-atlas = ExtResource( 1 )
-region = Rect2( 48, 0, 16, 16 )
diff --git a/material_maker/theme/dark/curve_preset_easeinout.tres b/material_maker/theme/dark/curve_preset_easeinout.tres
deleted file mode 100644
index 2db3e3fee..000000000
--- a/material_maker/theme/dark/curve_preset_easeinout.tres
+++ /dev/null
@@ -1,8 +0,0 @@
-[gd_resource type="AtlasTexture" load_steps=2 format=2]
-
-[ext_resource path="res://material_maker/theme/dark/curve_presets.svg" type="Texture2D" id=1]
-
-[resource]
-flags = 4
-atlas = ExtResource( 1 )
-region = Rect2( 32, 0, 16, 16 )
diff --git a/material_maker/theme/dark/curve_preset_easeout.tres b/material_maker/theme/dark/curve_preset_easeout.tres
deleted file mode 100644
index 73c7f555e..000000000
--- a/material_maker/theme/dark/curve_preset_easeout.tres
+++ /dev/null
@@ -1,8 +0,0 @@
-[gd_resource type="AtlasTexture" load_steps=2 format=2]
-
-[ext_resource path="res://material_maker/theme/dark/curve_presets.svg" type="Texture2D" id=1]
-
-[resource]
-flags = 4
-atlas = ExtResource( 1 )
-region = Rect2( 16, 0, 16, 16 )
diff --git a/material_maker/theme/dark/curve_preset_linear.tres b/material_maker/theme/dark/curve_preset_linear.tres
deleted file mode 100644
index e5b5d2ef2..000000000
--- a/material_maker/theme/dark/curve_preset_linear.tres
+++ /dev/null
@@ -1,8 +0,0 @@
-[gd_resource type="AtlasTexture" load_steps=2 format=2]
-
-[ext_resource path="res://material_maker/theme/dark/curve_presets.svg" type="Texture2D" id=1]
-
-[resource]
-flags = 4
-atlas = ExtResource( 1 )
-region = Rect2( 0, 0, 16, 16 )
diff --git a/material_maker/theme/dark/curve_preset_sawtooth.tres b/material_maker/theme/dark/curve_preset_sawtooth.tres
deleted file mode 100644
index 3d3fda54a..000000000
--- a/material_maker/theme/dark/curve_preset_sawtooth.tres
+++ /dev/null
@@ -1,8 +0,0 @@
-[gd_resource type="AtlasTexture" load_steps=2 format=2]
-
-[ext_resource path="res://material_maker/theme/dark/curve_presets.svg" type="Texture2D" id=1]
-
-[resource]
-flags = 4
-atlas = ExtResource( 1 )
-region = Rect2( 0, 16, 16, 16 )
diff --git a/material_maker/theme/dark/curve_presets.svg b/material_maker/theme/dark/curve_presets.svg
deleted file mode 100644
index 6cfe04952..000000000
--- a/material_maker/theme/dark/curve_presets.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
diff --git a/material_maker/theme/dark/curve_presets.svg.import b/material_maker/theme/dark/curve_presets.svg.import
deleted file mode 100644
index 07ed204a5..000000000
--- a/material_maker/theme/dark/curve_presets.svg.import
+++ /dev/null
@@ -1,37 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cn1n6fh4mx52c"
-path="res://.godot/imported/curve_presets.svg-98e67377f748efc842bad38cea1c58d2.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/curve_presets.svg"
-dest_files=["res://.godot/imported/curve_presets.svg-98e67377f748efc842bad38cea1c58d2.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
-svg/scale=0.75
-editor/scale_with_editor_scale=false
-editor/convert_colors_with_editor_theme=false
diff --git a/material_maker/theme/dark/graphedit_minus.png b/material_maker/theme/dark/graphedit_minus.png
deleted file mode 100644
index bc1364660..000000000
Binary files a/material_maker/theme/dark/graphedit_minus.png and /dev/null differ
diff --git a/material_maker/theme/dark/graphedit_minus.png.import b/material_maker/theme/dark/graphedit_minus.png.import
deleted file mode 100644
index 40be018c9..000000000
--- a/material_maker/theme/dark/graphedit_minus.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://buutlpewvsl5f"
-path="res://.godot/imported/graphedit_minus.png-7590fcf42f3fa67bcee98baa10b81265.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/graphedit_minus.png"
-dest_files=["res://.godot/imported/graphedit_minus.png-7590fcf42f3fa67bcee98baa10b81265.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/graphedit_more.png b/material_maker/theme/dark/graphedit_more.png
deleted file mode 100644
index 0fe70f892..000000000
Binary files a/material_maker/theme/dark/graphedit_more.png and /dev/null differ
diff --git a/material_maker/theme/dark/graphedit_more.png.import b/material_maker/theme/dark/graphedit_more.png.import
deleted file mode 100644
index d41f704ed..000000000
--- a/material_maker/theme/dark/graphedit_more.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bapp055p506nn"
-path="res://.godot/imported/graphedit_more.png-5728011d4d7a1ab6065d51f895c0d07d.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/graphedit_more.png"
-dest_files=["res://.godot/imported/graphedit_more.png-5728011d4d7a1ab6065d51f895c0d07d.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/graphedit_reset.png b/material_maker/theme/dark/graphedit_reset.png
deleted file mode 100644
index f88566330..000000000
Binary files a/material_maker/theme/dark/graphedit_reset.png and /dev/null differ
diff --git a/material_maker/theme/dark/graphedit_reset.png.import b/material_maker/theme/dark/graphedit_reset.png.import
deleted file mode 100644
index d84047ae3..000000000
--- a/material_maker/theme/dark/graphedit_reset.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://kv15jiypeh63"
-path="res://.godot/imported/graphedit_reset.png-25c0e39857d1e046a374f1051112449a.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/graphedit_reset.png"
-dest_files=["res://.godot/imported/graphedit_reset.png-25c0e39857d1e046a374f1051112449a.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/graphedit_snap.png b/material_maker/theme/dark/graphedit_snap.png
deleted file mode 100644
index cafa356ca..000000000
Binary files a/material_maker/theme/dark/graphedit_snap.png and /dev/null differ
diff --git a/material_maker/theme/dark/graphedit_snap.png.import b/material_maker/theme/dark/graphedit_snap.png.import
deleted file mode 100644
index 185c6985b..000000000
--- a/material_maker/theme/dark/graphedit_snap.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bnvjru4lab3id"
-path="res://.godot/imported/graphedit_snap.png-1f0ffd8be9bb375131cb9682e7ebc217.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/graphedit_snap.png"
-dest_files=["res://.godot/imported/graphedit_snap.png-1f0ffd8be9bb375131cb9682e7ebc217.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/graphnode_close.png b/material_maker/theme/dark/graphnode_close.png
deleted file mode 100644
index b3fc6cb3b..000000000
Binary files a/material_maker/theme/dark/graphnode_close.png and /dev/null differ
diff --git a/material_maker/theme/dark/graphnode_close.png.import b/material_maker/theme/dark/graphnode_close.png.import
deleted file mode 100644
index 34df45048..000000000
--- a/material_maker/theme/dark/graphnode_close.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://c74jqqhkapvx0"
-path="res://.godot/imported/graphnode_close.png-52021659e1a4815db57b6acb9e03231c.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/graphnode_close.png"
-dest_files=["res://.godot/imported/graphnode_close.png-52021659e1a4815db57b6acb9e03231c.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/graphnode_port.png b/material_maker/theme/dark/graphnode_port.png
deleted file mode 100644
index 2c043e78e..000000000
Binary files a/material_maker/theme/dark/graphnode_port.png and /dev/null differ
diff --git a/material_maker/theme/dark/graphnode_port.png.import b/material_maker/theme/dark/graphnode_port.png.import
deleted file mode 100644
index 3e0a1e87f..000000000
--- a/material_maker/theme/dark/graphnode_port.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cgxvaurldh6mq"
-path="res://.godot/imported/graphnode_port.png-422b7e0d06b26fa121885aa4304ea317.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/graphnode_port.png"
-dest_files=["res://.godot/imported/graphnode_port.png-422b7e0d06b26fa121885aa4304ea317.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/graphnode_resizer.png b/material_maker/theme/dark/graphnode_resizer.png
deleted file mode 100644
index 8030f4ec6..000000000
Binary files a/material_maker/theme/dark/graphnode_resizer.png and /dev/null differ
diff --git a/material_maker/theme/dark/graphnode_resizer.png.import b/material_maker/theme/dark/graphnode_resizer.png.import
deleted file mode 100644
index 75a8ffce4..000000000
--- a/material_maker/theme/dark/graphnode_resizer.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://c4k81poqyod3g"
-path="res://.godot/imported/graphnode_resizer.png-a6961383cd6639fd4bc506d7c1e7b97f.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/graphnode_resizer.png"
-dest_files=["res://.godot/imported/graphnode_resizer.png-a6961383cd6639fd4bc506d7c1e7b97f.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/hslider_grabber.png b/material_maker/theme/dark/hslider_grabber.png
deleted file mode 100644
index 439c835c1..000000000
Binary files a/material_maker/theme/dark/hslider_grabber.png and /dev/null differ
diff --git a/material_maker/theme/dark/hslider_grabber.png.import b/material_maker/theme/dark/hslider_grabber.png.import
deleted file mode 100644
index dc0596202..000000000
--- a/material_maker/theme/dark/hslider_grabber.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dfk266xc6jids"
-path="res://.godot/imported/hslider_grabber.png-0998fdf9ac6cbf36abd732d4ec0a12a2.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/hslider_grabber.png"
-dest_files=["res://.godot/imported/hslider_grabber.png-0998fdf9ac6cbf36abd732d4ec0a12a2.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/hslider_grabber_disabled.png b/material_maker/theme/dark/hslider_grabber_disabled.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/dark/hslider_grabber_disabled.png and /dev/null differ
diff --git a/material_maker/theme/dark/hslider_grabber_disabled.png.import b/material_maker/theme/dark/hslider_grabber_disabled.png.import
deleted file mode 100644
index 078ad7abb..000000000
--- a/material_maker/theme/dark/hslider_grabber_disabled.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bpy0mwrjt0qn8"
-path="res://.godot/imported/hslider_grabber_disabled.png-d7f926524fd46d3825bc2df120b02621.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/hslider_grabber_disabled.png"
-dest_files=["res://.godot/imported/hslider_grabber_disabled.png-d7f926524fd46d3825bc2df120b02621.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/hslider_grabber_highlight.png b/material_maker/theme/dark/hslider_grabber_highlight.png
deleted file mode 100644
index 246a73feb..000000000
Binary files a/material_maker/theme/dark/hslider_grabber_highlight.png and /dev/null differ
diff --git a/material_maker/theme/dark/hslider_grabber_highlight.png.import b/material_maker/theme/dark/hslider_grabber_highlight.png.import
deleted file mode 100644
index 0043e0d1f..000000000
--- a/material_maker/theme/dark/hslider_grabber_highlight.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cm304a332uihs"
-path="res://.godot/imported/hslider_grabber_highlight.png-fcd106809820d2a9c137f02ebb06717a.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/hslider_grabber_highlight.png"
-dest_files=["res://.godot/imported/hslider_grabber_highlight.png-fcd106809820d2a9c137f02ebb06717a.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/hslider_tick.png b/material_maker/theme/dark/hslider_tick.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/dark/hslider_tick.png and /dev/null differ
diff --git a/material_maker/theme/dark/hslider_tick.png.import b/material_maker/theme/dark/hslider_tick.png.import
deleted file mode 100644
index 7c8a5e04e..000000000
--- a/material_maker/theme/dark/hslider_tick.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bxep57xmcby61"
-path="res://.godot/imported/hslider_tick.png-bc8bc164f8ce2fec889c0bb5173f17a1.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/hslider_tick.png"
-dest_files=["res://.godot/imported/hslider_tick.png-bc8bc164f8ce2fec889c0bb5173f17a1.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/hsplitcontainer_grabber.png b/material_maker/theme/dark/hsplitcontainer_grabber.png
deleted file mode 100644
index 3c309ec9b..000000000
Binary files a/material_maker/theme/dark/hsplitcontainer_grabber.png and /dev/null differ
diff --git a/material_maker/theme/dark/hsplitcontainer_grabber.png.import b/material_maker/theme/dark/hsplitcontainer_grabber.png.import
deleted file mode 100644
index 30150c23d..000000000
--- a/material_maker/theme/dark/hsplitcontainer_grabber.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cs75am60dbelx"
-path="res://.godot/imported/hsplitcontainer_grabber.png-35ce137c64b2ca65aa86d2967b4c9e0a.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/hsplitcontainer_grabber.png"
-dest_files=["res://.godot/imported/hsplitcontainer_grabber.png-35ce137c64b2ca65aa86d2967b4c9e0a.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/lineedit_clear.png b/material_maker/theme/dark/lineedit_clear.png
deleted file mode 100644
index b3fc6cb3b..000000000
Binary files a/material_maker/theme/dark/lineedit_clear.png and /dev/null differ
diff --git a/material_maker/theme/dark/lineedit_clear.png.import b/material_maker/theme/dark/lineedit_clear.png.import
deleted file mode 100644
index 975e234de..000000000
--- a/material_maker/theme/dark/lineedit_clear.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bj6kf4c01lyo5"
-path="res://.godot/imported/lineedit_clear.png-fed4fff685a951cb2361bfabd8d40ad4.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/lineedit_clear.png"
-dest_files=["res://.godot/imported/lineedit_clear.png-fed4fff685a951cb2361bfabd8d40ad4.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/optionbutton_arrow.png b/material_maker/theme/dark/optionbutton_arrow.png
deleted file mode 100644
index 07a3b6940..000000000
Binary files a/material_maker/theme/dark/optionbutton_arrow.png and /dev/null differ
diff --git a/material_maker/theme/dark/optionbutton_arrow.png.import b/material_maker/theme/dark/optionbutton_arrow.png.import
deleted file mode 100644
index 7e5690335..000000000
--- a/material_maker/theme/dark/optionbutton_arrow.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dysx1qjceb1od"
-path="res://.godot/imported/optionbutton_arrow.png-e611305ad4a2b6f0fed934f6baf485a5.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/optionbutton_arrow.png"
-dest_files=["res://.godot/imported/optionbutton_arrow.png-e611305ad4a2b6f0fed934f6baf485a5.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/popupmenu_checked.png b/material_maker/theme/dark/popupmenu_checked.png
deleted file mode 100644
index 3c6e5a6c7..000000000
Binary files a/material_maker/theme/dark/popupmenu_checked.png and /dev/null differ
diff --git a/material_maker/theme/dark/popupmenu_checked.png.import b/material_maker/theme/dark/popupmenu_checked.png.import
deleted file mode 100644
index bacf07fb9..000000000
--- a/material_maker/theme/dark/popupmenu_checked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://c1s6ailuulpow"
-path="res://.godot/imported/popupmenu_checked.png-8ad7739a34b35a7062dc239f4994fa97.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/popupmenu_checked.png"
-dest_files=["res://.godot/imported/popupmenu_checked.png-8ad7739a34b35a7062dc239f4994fa97.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/popupmenu_radio_checked.png b/material_maker/theme/dark/popupmenu_radio_checked.png
deleted file mode 100644
index bb7d7c27a..000000000
Binary files a/material_maker/theme/dark/popupmenu_radio_checked.png and /dev/null differ
diff --git a/material_maker/theme/dark/popupmenu_radio_checked.png.import b/material_maker/theme/dark/popupmenu_radio_checked.png.import
deleted file mode 100644
index f9c8e1cdf..000000000
--- a/material_maker/theme/dark/popupmenu_radio_checked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dxtyj47g22k51"
-path="res://.godot/imported/popupmenu_radio_checked.png-4105e9127c56035f007d5399371a475e.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/popupmenu_radio_checked.png"
-dest_files=["res://.godot/imported/popupmenu_radio_checked.png-4105e9127c56035f007d5399371a475e.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/popupmenu_radio_unchecked.png b/material_maker/theme/dark/popupmenu_radio_unchecked.png
deleted file mode 100644
index cddf3aa8a..000000000
Binary files a/material_maker/theme/dark/popupmenu_radio_unchecked.png and /dev/null differ
diff --git a/material_maker/theme/dark/popupmenu_radio_unchecked.png.import b/material_maker/theme/dark/popupmenu_radio_unchecked.png.import
deleted file mode 100644
index 0112c3546..000000000
--- a/material_maker/theme/dark/popupmenu_radio_unchecked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://p5p3mlddsxcx"
-path="res://.godot/imported/popupmenu_radio_unchecked.png-37eadce0311f18043a85691e658ee277.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/popupmenu_radio_unchecked.png"
-dest_files=["res://.godot/imported/popupmenu_radio_unchecked.png-37eadce0311f18043a85691e658ee277.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/popupmenu_submenu.png b/material_maker/theme/dark/popupmenu_submenu.png
deleted file mode 100644
index d5565ade8..000000000
Binary files a/material_maker/theme/dark/popupmenu_submenu.png and /dev/null differ
diff --git a/material_maker/theme/dark/popupmenu_submenu.png.import b/material_maker/theme/dark/popupmenu_submenu.png.import
deleted file mode 100644
index 3e7208d7e..000000000
--- a/material_maker/theme/dark/popupmenu_submenu.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dw0lvt1ip8ifp"
-path="res://.godot/imported/popupmenu_submenu.png-9d62f158b4d031211684d1c5f15fc489.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/popupmenu_submenu.png"
-dest_files=["res://.godot/imported/popupmenu_submenu.png-9d62f158b4d031211684d1c5f15fc489.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/popupmenu_unchecked.png b/material_maker/theme/dark/popupmenu_unchecked.png
deleted file mode 100644
index c809465bc..000000000
Binary files a/material_maker/theme/dark/popupmenu_unchecked.png and /dev/null differ
diff --git a/material_maker/theme/dark/popupmenu_unchecked.png.import b/material_maker/theme/dark/popupmenu_unchecked.png.import
deleted file mode 100644
index 6c8c5ce32..000000000
--- a/material_maker/theme/dark/popupmenu_unchecked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dtssuiytl2gld"
-path="res://.godot/imported/popupmenu_unchecked.png-e72f7020da8a91d85918d981b381850d.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/popupmenu_unchecked.png"
-dest_files=["res://.godot/imported/popupmenu_unchecked.png-e72f7020da8a91d85918d981b381850d.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/popupmenu_visibility_hidden.png b/material_maker/theme/dark/popupmenu_visibility_hidden.png
deleted file mode 100644
index 959159f91..000000000
Binary files a/material_maker/theme/dark/popupmenu_visibility_hidden.png and /dev/null differ
diff --git a/material_maker/theme/dark/popupmenu_visibility_hidden.png.import b/material_maker/theme/dark/popupmenu_visibility_hidden.png.import
deleted file mode 100644
index 842cda71f..000000000
--- a/material_maker/theme/dark/popupmenu_visibility_hidden.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bti8tyothy6ml"
-path="res://.godot/imported/popupmenu_visibility_hidden.png-6fde2f2b9ee2602cc95b0daa1e043ffe.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/popupmenu_visibility_hidden.png"
-dest_files=["res://.godot/imported/popupmenu_visibility_hidden.png-6fde2f2b9ee2602cc95b0daa1e043ffe.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/popupmenu_visibility_visible.png b/material_maker/theme/dark/popupmenu_visibility_visible.png
deleted file mode 100644
index ae98c1fa5..000000000
Binary files a/material_maker/theme/dark/popupmenu_visibility_visible.png and /dev/null differ
diff --git a/material_maker/theme/dark/popupmenu_visibility_visible.png.import b/material_maker/theme/dark/popupmenu_visibility_visible.png.import
deleted file mode 100644
index 4a1990716..000000000
--- a/material_maker/theme/dark/popupmenu_visibility_visible.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://tfi3spyumjxt"
-path="res://.godot/imported/popupmenu_visibility_visible.png-4447e8ef0ecde762e52569cb18308982.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/popupmenu_visibility_visible.png"
-dest_files=["res://.godot/imported/popupmenu_visibility_visible.png-4447e8ef0ecde762e52569cb18308982.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/popupmenu_visibility_xray.png b/material_maker/theme/dark/popupmenu_visibility_xray.png
deleted file mode 100644
index a2e39e6c7..000000000
Binary files a/material_maker/theme/dark/popupmenu_visibility_xray.png and /dev/null differ
diff --git a/material_maker/theme/dark/popupmenu_visibility_xray.png.import b/material_maker/theme/dark/popupmenu_visibility_xray.png.import
deleted file mode 100644
index 1d15b6401..000000000
--- a/material_maker/theme/dark/popupmenu_visibility_xray.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://rs23woqfg04o"
-path="res://.godot/imported/popupmenu_visibility_xray.png-713aed1a8aba09fe431417316016da86.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/popupmenu_visibility_xray.png"
-dest_files=["res://.godot/imported/popupmenu_visibility_xray.png-713aed1a8aba09fe431417316016da86.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_checkbox_focus_texture.png b/material_maker/theme/dark/sb_checkbox_focus_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/dark/sb_checkbox_focus_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_checkbox_focus_texture.png.import b/material_maker/theme/dark/sb_checkbox_focus_texture.png.import
deleted file mode 100644
index d75ca9cc2..000000000
--- a/material_maker/theme/dark/sb_checkbox_focus_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://d2e2dn0ftpb2d"
-path="res://.godot/imported/sb_checkbox_focus_texture.png-cb2b3f1f9279cde0b6a9838b1195ebb6.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_checkbox_focus_texture.png"
-dest_files=["res://.godot/imported/sb_checkbox_focus_texture.png-cb2b3f1f9279cde0b6a9838b1195ebb6.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_colorpickerbutton_disabled_texture.png b/material_maker/theme/dark/sb_colorpickerbutton_disabled_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/dark/sb_colorpickerbutton_disabled_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_colorpickerbutton_disabled_texture.png.import b/material_maker/theme/dark/sb_colorpickerbutton_disabled_texture.png.import
deleted file mode 100644
index 70f3fc0c8..000000000
--- a/material_maker/theme/dark/sb_colorpickerbutton_disabled_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://rat078bs2dew"
-path="res://.godot/imported/sb_colorpickerbutton_disabled_texture.png-699c3d56d35e09f0238530752b746134.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_colorpickerbutton_disabled_texture.png"
-dest_files=["res://.godot/imported/sb_colorpickerbutton_disabled_texture.png-699c3d56d35e09f0238530752b746134.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_colorpickerbutton_focus_texture.png b/material_maker/theme/dark/sb_colorpickerbutton_focus_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/dark/sb_colorpickerbutton_focus_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_colorpickerbutton_focus_texture.png.import b/material_maker/theme/dark/sb_colorpickerbutton_focus_texture.png.import
deleted file mode 100644
index f6564d716..000000000
--- a/material_maker/theme/dark/sb_colorpickerbutton_focus_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://yoyca5brir7f"
-path="res://.godot/imported/sb_colorpickerbutton_focus_texture.png-4d69951e163fb3db2eb73a35143b62bf.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_colorpickerbutton_focus_texture.png"
-dest_files=["res://.godot/imported/sb_colorpickerbutton_focus_texture.png-4d69951e163fb3db2eb73a35143b62bf.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_hscrollbar_grabber_highlight_texture.png b/material_maker/theme/dark/sb_hscrollbar_grabber_highlight_texture.png
deleted file mode 100644
index 04f64455c..000000000
Binary files a/material_maker/theme/dark/sb_hscrollbar_grabber_highlight_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_hscrollbar_grabber_highlight_texture.png.import b/material_maker/theme/dark/sb_hscrollbar_grabber_highlight_texture.png.import
deleted file mode 100644
index 279141a09..000000000
--- a/material_maker/theme/dark/sb_hscrollbar_grabber_highlight_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://brp0bq28e1iav"
-path="res://.godot/imported/sb_hscrollbar_grabber_highlight_texture.png-bc6cfc7b00d7f4d9b028c8b37c646e5e.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_hscrollbar_grabber_highlight_texture.png"
-dest_files=["res://.godot/imported/sb_hscrollbar_grabber_highlight_texture.png-bc6cfc7b00d7f4d9b028c8b37c646e5e.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_hscrollbar_grabber_pressed_texture.png b/material_maker/theme/dark/sb_hscrollbar_grabber_pressed_texture.png
deleted file mode 100644
index 140519a23..000000000
Binary files a/material_maker/theme/dark/sb_hscrollbar_grabber_pressed_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_hscrollbar_grabber_pressed_texture.png.import b/material_maker/theme/dark/sb_hscrollbar_grabber_pressed_texture.png.import
deleted file mode 100644
index ecbccffcb..000000000
--- a/material_maker/theme/dark/sb_hscrollbar_grabber_pressed_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://fp5eme7mxx6c"
-path="res://.godot/imported/sb_hscrollbar_grabber_pressed_texture.png-e2bcf77a824044c87fa9e1afa4d682a9.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_hscrollbar_grabber_pressed_texture.png"
-dest_files=["res://.godot/imported/sb_hscrollbar_grabber_pressed_texture.png-e2bcf77a824044c87fa9e1afa4d682a9.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_hscrollbar_grabber_texture.png b/material_maker/theme/dark/sb_hscrollbar_grabber_texture.png
deleted file mode 100644
index 13476a140..000000000
Binary files a/material_maker/theme/dark/sb_hscrollbar_grabber_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_hscrollbar_grabber_texture.png.import b/material_maker/theme/dark/sb_hscrollbar_grabber_texture.png.import
deleted file mode 100644
index ea5eb58bd..000000000
--- a/material_maker/theme/dark/sb_hscrollbar_grabber_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bsy38k8xt03bv"
-path="res://.godot/imported/sb_hscrollbar_grabber_texture.png-dfa134ecd72f23f75e67a8aefb016a2c.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_hscrollbar_grabber_texture.png"
-dest_files=["res://.godot/imported/sb_hscrollbar_grabber_texture.png-dfa134ecd72f23f75e67a8aefb016a2c.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_hscrollbar_scroll_focus_texture.png b/material_maker/theme/dark/sb_hscrollbar_scroll_focus_texture.png
deleted file mode 100644
index 1289687fb..000000000
Binary files a/material_maker/theme/dark/sb_hscrollbar_scroll_focus_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_hscrollbar_scroll_focus_texture.png.import b/material_maker/theme/dark/sb_hscrollbar_scroll_focus_texture.png.import
deleted file mode 100644
index 4239536ec..000000000
--- a/material_maker/theme/dark/sb_hscrollbar_scroll_focus_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://c12wyf83ibmn4"
-path="res://.godot/imported/sb_hscrollbar_scroll_focus_texture.png-7b4c44148f335a64c5d35575f24821a2.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_hscrollbar_scroll_focus_texture.png"
-dest_files=["res://.godot/imported/sb_hscrollbar_scroll_focus_texture.png-7b4c44148f335a64c5d35575f24821a2.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_hscrollbar_scroll_texture.png b/material_maker/theme/dark/sb_hscrollbar_scroll_texture.png
deleted file mode 100644
index 1289687fb..000000000
Binary files a/material_maker/theme/dark/sb_hscrollbar_scroll_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_hscrollbar_scroll_texture.png.import b/material_maker/theme/dark/sb_hscrollbar_scroll_texture.png.import
deleted file mode 100644
index 4839c37f8..000000000
--- a/material_maker/theme/dark/sb_hscrollbar_scroll_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bnofoc54dhq5v"
-path="res://.godot/imported/sb_hscrollbar_scroll_texture.png-7bc88f2e06a05756f3fec0afab792154.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_hscrollbar_scroll_texture.png"
-dest_files=["res://.godot/imported/sb_hscrollbar_scroll_texture.png-7bc88f2e06a05756f3fec0afab792154.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_hslider_focus_texture.png b/material_maker/theme/dark/sb_hslider_focus_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/dark/sb_hslider_focus_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_hslider_focus_texture.png.import b/material_maker/theme/dark/sb_hslider_focus_texture.png.import
deleted file mode 100644
index fa82e58c5..000000000
--- a/material_maker/theme/dark/sb_hslider_focus_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dra4lsyntydkb"
-path="res://.godot/imported/sb_hslider_focus_texture.png-32968ceaf3b4924a24675d764075cf6b.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_hslider_focus_texture.png"
-dest_files=["res://.godot/imported/sb_hslider_focus_texture.png-32968ceaf3b4924a24675d764075cf6b.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_hslider_grabber_disabled_texture.png b/material_maker/theme/dark/sb_hslider_grabber_disabled_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/dark/sb_hslider_grabber_disabled_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_hslider_grabber_disabled_texture.png.import b/material_maker/theme/dark/sb_hslider_grabber_disabled_texture.png.import
deleted file mode 100644
index f3f1c27b1..000000000
--- a/material_maker/theme/dark/sb_hslider_grabber_disabled_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://op05flowap3d"
-path="res://.godot/imported/sb_hslider_grabber_disabled_texture.png-73fbd135e1d68fb3a6a5fccce7d8df24.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_hslider_grabber_disabled_texture.png"
-dest_files=["res://.godot/imported/sb_hslider_grabber_disabled_texture.png-73fbd135e1d68fb3a6a5fccce7d8df24.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_hslider_grabber_highlight_texture.png b/material_maker/theme/dark/sb_hslider_grabber_highlight_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/dark/sb_hslider_grabber_highlight_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_hslider_grabber_highlight_texture.png.import b/material_maker/theme/dark/sb_hslider_grabber_highlight_texture.png.import
deleted file mode 100644
index 2375596ca..000000000
--- a/material_maker/theme/dark/sb_hslider_grabber_highlight_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://c11iwb1uhnxau"
-path="res://.godot/imported/sb_hslider_grabber_highlight_texture.png-44a98accf1abe793f5bcceb69bb2e050.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_hslider_grabber_highlight_texture.png"
-dest_files=["res://.godot/imported/sb_hslider_grabber_highlight_texture.png-44a98accf1abe793f5bcceb69bb2e050.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_hsplitcontainer_bg_texture.png b/material_maker/theme/dark/sb_hsplitcontainer_bg_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/dark/sb_hsplitcontainer_bg_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_hsplitcontainer_bg_texture.png.import b/material_maker/theme/dark/sb_hsplitcontainer_bg_texture.png.import
deleted file mode 100644
index 6fe326819..000000000
--- a/material_maker/theme/dark/sb_hsplitcontainer_bg_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://ddtdytcnqvtao"
-path="res://.godot/imported/sb_hsplitcontainer_bg_texture.png-5a39c4306afeecdeaeb2daf08dc46d56.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_hsplitcontainer_bg_texture.png"
-dest_files=["res://.godot/imported/sb_hsplitcontainer_bg_texture.png-5a39c4306afeecdeaeb2daf08dc46d56.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_panel_panelf_texture.png b/material_maker/theme/dark/sb_panel_panelf_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/dark/sb_panel_panelf_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_panel_panelf_texture.png.import b/material_maker/theme/dark/sb_panel_panelf_texture.png.import
deleted file mode 100644
index 097f17855..000000000
--- a/material_maker/theme/dark/sb_panel_panelf_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cucevexu8hadw"
-path="res://.godot/imported/sb_panel_panelf_texture.png-53a77e8caea9105ac0890e123ad9d158.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_panel_panelf_texture.png"
-dest_files=["res://.godot/imported/sb_panel_panelf_texture.png-53a77e8caea9105ac0890e123ad9d158.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_panel_panelnc_texture.png b/material_maker/theme/dark/sb_panel_panelnc_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/dark/sb_panel_panelnc_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_panel_panelnc_texture.png.import b/material_maker/theme/dark/sb_panel_panelnc_texture.png.import
deleted file mode 100644
index ef18739bf..000000000
--- a/material_maker/theme/dark/sb_panel_panelnc_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://kcdk15qmo3fm"
-path="res://.godot/imported/sb_panel_panelnc_texture.png-a3f49cdcc38a449887509152ee883267.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_panel_panelnc_texture.png"
-dest_files=["res://.godot/imported/sb_panel_panelnc_texture.png-a3f49cdcc38a449887509152ee883267.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_popupmenu_panel_disabled_texture.png b/material_maker/theme/dark/sb_popupmenu_panel_disabled_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/dark/sb_popupmenu_panel_disabled_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_popupmenu_panel_disabled_texture.png.import b/material_maker/theme/dark/sb_popupmenu_panel_disabled_texture.png.import
deleted file mode 100644
index da0ce054d..000000000
--- a/material_maker/theme/dark/sb_popupmenu_panel_disabled_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://65n3857lgt8y"
-path="res://.godot/imported/sb_popupmenu_panel_disabled_texture.png-870375ee371485a92201803cded2ee35.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_popupmenu_panel_disabled_texture.png"
-dest_files=["res://.godot/imported/sb_popupmenu_panel_disabled_texture.png-870375ee371485a92201803cded2ee35.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_progressbar_bg_texture.png b/material_maker/theme/dark/sb_progressbar_bg_texture.png
deleted file mode 100644
index 03616f034..000000000
Binary files a/material_maker/theme/dark/sb_progressbar_bg_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_progressbar_bg_texture.png.import b/material_maker/theme/dark/sb_progressbar_bg_texture.png.import
deleted file mode 100644
index 53f4f4236..000000000
--- a/material_maker/theme/dark/sb_progressbar_bg_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dbw4y4q7mak6y"
-path="res://.godot/imported/sb_progressbar_bg_texture.png-4982c630c2c9c64aea46cef98785ae1a.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_progressbar_bg_texture.png"
-dest_files=["res://.godot/imported/sb_progressbar_bg_texture.png-4982c630c2c9c64aea46cef98785ae1a.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_progressbar_fg_texture.png b/material_maker/theme/dark/sb_progressbar_fg_texture.png
deleted file mode 100644
index 5dfbb3133..000000000
Binary files a/material_maker/theme/dark/sb_progressbar_fg_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_progressbar_fg_texture.png.import b/material_maker/theme/dark/sb_progressbar_fg_texture.png.import
deleted file mode 100644
index 142653020..000000000
--- a/material_maker/theme/dark/sb_progressbar_fg_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://6065hcilbsvc"
-path="res://.godot/imported/sb_progressbar_fg_texture.png-99553c68a5bf66f005b2acb21ea39417.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_progressbar_fg_texture.png"
-dest_files=["res://.godot/imported/sb_progressbar_fg_texture.png-99553c68a5bf66f005b2acb21ea39417.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_textedit_completion_texture.png b/material_maker/theme/dark/sb_textedit_completion_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/dark/sb_textedit_completion_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_textedit_completion_texture.png.import b/material_maker/theme/dark/sb_textedit_completion_texture.png.import
deleted file mode 100644
index 4bfda6aa8..000000000
--- a/material_maker/theme/dark/sb_textedit_completion_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dh42tem7tw4ky"
-path="res://.godot/imported/sb_textedit_completion_texture.png-dea53350a82d52dbc348a03f684bc62f.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_textedit_completion_texture.png"
-dest_files=["res://.godot/imported/sb_textedit_completion_texture.png-dea53350a82d52dbc348a03f684bc62f.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_vscrollbar_grabber_highlight_texture.png b/material_maker/theme/dark/sb_vscrollbar_grabber_highlight_texture.png
deleted file mode 100644
index 04f64455c..000000000
Binary files a/material_maker/theme/dark/sb_vscrollbar_grabber_highlight_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_vscrollbar_grabber_highlight_texture.png.import b/material_maker/theme/dark/sb_vscrollbar_grabber_highlight_texture.png.import
deleted file mode 100644
index 835684f35..000000000
--- a/material_maker/theme/dark/sb_vscrollbar_grabber_highlight_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://d044i7mtagf51"
-path="res://.godot/imported/sb_vscrollbar_grabber_highlight_texture.png-d0986b93ab25186f282a28172fa7d9b8.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_vscrollbar_grabber_highlight_texture.png"
-dest_files=["res://.godot/imported/sb_vscrollbar_grabber_highlight_texture.png-d0986b93ab25186f282a28172fa7d9b8.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_vscrollbar_grabber_pressed_texture.png b/material_maker/theme/dark/sb_vscrollbar_grabber_pressed_texture.png
deleted file mode 100644
index 140519a23..000000000
Binary files a/material_maker/theme/dark/sb_vscrollbar_grabber_pressed_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_vscrollbar_grabber_pressed_texture.png.import b/material_maker/theme/dark/sb_vscrollbar_grabber_pressed_texture.png.import
deleted file mode 100644
index eca0bfdfa..000000000
--- a/material_maker/theme/dark/sb_vscrollbar_grabber_pressed_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://r3gxuxumv8dn"
-path="res://.godot/imported/sb_vscrollbar_grabber_pressed_texture.png-09f6f216dc99d4071ebaebacc760b96b.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_vscrollbar_grabber_pressed_texture.png"
-dest_files=["res://.godot/imported/sb_vscrollbar_grabber_pressed_texture.png-09f6f216dc99d4071ebaebacc760b96b.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_vscrollbar_grabber_texture.png b/material_maker/theme/dark/sb_vscrollbar_grabber_texture.png
deleted file mode 100644
index 13476a140..000000000
Binary files a/material_maker/theme/dark/sb_vscrollbar_grabber_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_vscrollbar_grabber_texture.png.import b/material_maker/theme/dark/sb_vscrollbar_grabber_texture.png.import
deleted file mode 100644
index e7900b75f..000000000
--- a/material_maker/theme/dark/sb_vscrollbar_grabber_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://b8adqu5k3carv"
-path="res://.godot/imported/sb_vscrollbar_grabber_texture.png-62ea15adde7ebe74f0cb5d8070838981.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_vscrollbar_grabber_texture.png"
-dest_files=["res://.godot/imported/sb_vscrollbar_grabber_texture.png-62ea15adde7ebe74f0cb5d8070838981.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_vscrollbar_scroll_focus_texture.png b/material_maker/theme/dark/sb_vscrollbar_scroll_focus_texture.png
deleted file mode 100644
index 1289687fb..000000000
Binary files a/material_maker/theme/dark/sb_vscrollbar_scroll_focus_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_vscrollbar_scroll_focus_texture.png.import b/material_maker/theme/dark/sb_vscrollbar_scroll_focus_texture.png.import
deleted file mode 100644
index 4d8aec8e5..000000000
--- a/material_maker/theme/dark/sb_vscrollbar_scroll_focus_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://oihtdmy4e2jv"
-path="res://.godot/imported/sb_vscrollbar_scroll_focus_texture.png-dd564f54ae6d01c4596a2c1e4656a096.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_vscrollbar_scroll_focus_texture.png"
-dest_files=["res://.godot/imported/sb_vscrollbar_scroll_focus_texture.png-dd564f54ae6d01c4596a2c1e4656a096.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_vscrollbar_scroll_texture.png b/material_maker/theme/dark/sb_vscrollbar_scroll_texture.png
deleted file mode 100644
index 1289687fb..000000000
Binary files a/material_maker/theme/dark/sb_vscrollbar_scroll_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_vscrollbar_scroll_texture.png.import b/material_maker/theme/dark/sb_vscrollbar_scroll_texture.png.import
deleted file mode 100644
index 1f2fbdd79..000000000
--- a/material_maker/theme/dark/sb_vscrollbar_scroll_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://c65wasr7rer5n"
-path="res://.godot/imported/sb_vscrollbar_scroll_texture.png-6a5f6b96f4e773f8b473f30d9bb172b6.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_vscrollbar_scroll_texture.png"
-dest_files=["res://.godot/imported/sb_vscrollbar_scroll_texture.png-6a5f6b96f4e773f8b473f30d9bb172b6.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/sb_vsplitcontainer_bg_texture.png b/material_maker/theme/dark/sb_vsplitcontainer_bg_texture.png
deleted file mode 100644
index 006937ea2..000000000
Binary files a/material_maker/theme/dark/sb_vsplitcontainer_bg_texture.png and /dev/null differ
diff --git a/material_maker/theme/dark/sb_vsplitcontainer_bg_texture.png.import b/material_maker/theme/dark/sb_vsplitcontainer_bg_texture.png.import
deleted file mode 100644
index 488a6e1cd..000000000
--- a/material_maker/theme/dark/sb_vsplitcontainer_bg_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://ddmlhes7rgyw2"
-path="res://.godot/imported/sb_vsplitcontainer_bg_texture.png-e73545c6ae2a79a36f2cfe4a0b6c28ae.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/sb_vsplitcontainer_bg_texture.png"
-dest_files=["res://.godot/imported/sb_vsplitcontainer_bg_texture.png-e73545c6ae2a79a36f2cfe4a0b6c28ae.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tabcontainer_decrement.png b/material_maker/theme/dark/tabcontainer_decrement.png
deleted file mode 100644
index d478b19f5..000000000
Binary files a/material_maker/theme/dark/tabcontainer_decrement.png and /dev/null differ
diff --git a/material_maker/theme/dark/tabcontainer_decrement.png.import b/material_maker/theme/dark/tabcontainer_decrement.png.import
deleted file mode 100644
index 7ac7add19..000000000
--- a/material_maker/theme/dark/tabcontainer_decrement.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://c87dumeqpcpkn"
-path="res://.godot/imported/tabcontainer_decrement.png-256e763e94d4544794ac2895ece44cc4.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tabcontainer_decrement.png"
-dest_files=["res://.godot/imported/tabcontainer_decrement.png-256e763e94d4544794ac2895ece44cc4.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tabcontainer_decrement_highlight.png b/material_maker/theme/dark/tabcontainer_decrement_highlight.png
deleted file mode 100644
index 55493ff08..000000000
Binary files a/material_maker/theme/dark/tabcontainer_decrement_highlight.png and /dev/null differ
diff --git a/material_maker/theme/dark/tabcontainer_decrement_highlight.png.import b/material_maker/theme/dark/tabcontainer_decrement_highlight.png.import
deleted file mode 100644
index 0dd809c06..000000000
--- a/material_maker/theme/dark/tabcontainer_decrement_highlight.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cbl5e611kmr3d"
-path="res://.godot/imported/tabcontainer_decrement_highlight.png-533e136404563986378378ebe0810a48.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tabcontainer_decrement_highlight.png"
-dest_files=["res://.godot/imported/tabcontainer_decrement_highlight.png-533e136404563986378378ebe0810a48.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tabcontainer_increment.png b/material_maker/theme/dark/tabcontainer_increment.png
deleted file mode 100644
index e6c35cc2d..000000000
Binary files a/material_maker/theme/dark/tabcontainer_increment.png and /dev/null differ
diff --git a/material_maker/theme/dark/tabcontainer_increment.png.import b/material_maker/theme/dark/tabcontainer_increment.png.import
deleted file mode 100644
index e3b9c4493..000000000
--- a/material_maker/theme/dark/tabcontainer_increment.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://d3y3kp5qy5x30"
-path="res://.godot/imported/tabcontainer_increment.png-2fcf5dfa74de89bb959d612fe4eee199.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tabcontainer_increment.png"
-dest_files=["res://.godot/imported/tabcontainer_increment.png-2fcf5dfa74de89bb959d612fe4eee199.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tabcontainer_increment_highlight.png b/material_maker/theme/dark/tabcontainer_increment_highlight.png
deleted file mode 100644
index 78134d0a8..000000000
Binary files a/material_maker/theme/dark/tabcontainer_increment_highlight.png and /dev/null differ
diff --git a/material_maker/theme/dark/tabcontainer_increment_highlight.png.import b/material_maker/theme/dark/tabcontainer_increment_highlight.png.import
deleted file mode 100644
index 2fc7ee324..000000000
--- a/material_maker/theme/dark/tabcontainer_increment_highlight.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://2dheuv4p0d2d"
-path="res://.godot/imported/tabcontainer_increment_highlight.png-5b4173e2b70a7c1819611e8879e0e245.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tabcontainer_increment_highlight.png"
-dest_files=["res://.godot/imported/tabcontainer_increment_highlight.png-5b4173e2b70a7c1819611e8879e0e245.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tabcontainer_menu.png b/material_maker/theme/dark/tabcontainer_menu.png
deleted file mode 100644
index 08a077f77..000000000
Binary files a/material_maker/theme/dark/tabcontainer_menu.png and /dev/null differ
diff --git a/material_maker/theme/dark/tabcontainer_menu.png.import b/material_maker/theme/dark/tabcontainer_menu.png.import
deleted file mode 100644
index 437fcda64..000000000
--- a/material_maker/theme/dark/tabcontainer_menu.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://doy077313i2s4"
-path="res://.godot/imported/tabcontainer_menu.png-347d515f4bb873b68f97992fe9056b0f.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tabcontainer_menu.png"
-dest_files=["res://.godot/imported/tabcontainer_menu.png-347d515f4bb873b68f97992fe9056b0f.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tabcontainer_menu_highlight.png b/material_maker/theme/dark/tabcontainer_menu_highlight.png
deleted file mode 100644
index 1303f9ba2..000000000
Binary files a/material_maker/theme/dark/tabcontainer_menu_highlight.png and /dev/null differ
diff --git a/material_maker/theme/dark/tabcontainer_menu_highlight.png.import b/material_maker/theme/dark/tabcontainer_menu_highlight.png.import
deleted file mode 100644
index b4dcdc5ba..000000000
--- a/material_maker/theme/dark/tabcontainer_menu_highlight.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dr4fg84bcewo8"
-path="res://.godot/imported/tabcontainer_menu_highlight.png-ad47c336dd84e61b8d4509fc0dbcaceb.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tabcontainer_menu_highlight.png"
-dest_files=["res://.godot/imported/tabcontainer_menu_highlight.png-ad47c336dd84e61b8d4509fc0dbcaceb.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tabs_close.png b/material_maker/theme/dark/tabs_close.png
deleted file mode 100644
index b3fc6cb3b..000000000
Binary files a/material_maker/theme/dark/tabs_close.png and /dev/null differ
diff --git a/material_maker/theme/dark/tabs_close.png.import b/material_maker/theme/dark/tabs_close.png.import
deleted file mode 100644
index 42be96657..000000000
--- a/material_maker/theme/dark/tabs_close.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://b7bi2a08gmv5q"
-path="res://.godot/imported/tabs_close.png-8e2afe839a38c8ac3001079e3b261dfe.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tabs_close.png"
-dest_files=["res://.godot/imported/tabs_close.png-8e2afe839a38c8ac3001079e3b261dfe.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tabs_decrement.png b/material_maker/theme/dark/tabs_decrement.png
deleted file mode 100644
index d478b19f5..000000000
Binary files a/material_maker/theme/dark/tabs_decrement.png and /dev/null differ
diff --git a/material_maker/theme/dark/tabs_decrement.png.import b/material_maker/theme/dark/tabs_decrement.png.import
deleted file mode 100644
index 5b285a3f4..000000000
--- a/material_maker/theme/dark/tabs_decrement.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://8gjqxc8ixpnc"
-path="res://.godot/imported/tabs_decrement.png-9799bee38d072296c91b570fa25dbcee.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tabs_decrement.png"
-dest_files=["res://.godot/imported/tabs_decrement.png-9799bee38d072296c91b570fa25dbcee.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tabs_decrement_highlight.png b/material_maker/theme/dark/tabs_decrement_highlight.png
deleted file mode 100644
index 55493ff08..000000000
Binary files a/material_maker/theme/dark/tabs_decrement_highlight.png and /dev/null differ
diff --git a/material_maker/theme/dark/tabs_decrement_highlight.png.import b/material_maker/theme/dark/tabs_decrement_highlight.png.import
deleted file mode 100644
index 825590f63..000000000
--- a/material_maker/theme/dark/tabs_decrement_highlight.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cgooh67mtaxni"
-path="res://.godot/imported/tabs_decrement_highlight.png-2d889960d3784b308ed420b8831a159b.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tabs_decrement_highlight.png"
-dest_files=["res://.godot/imported/tabs_decrement_highlight.png-2d889960d3784b308ed420b8831a159b.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tabs_increment.png b/material_maker/theme/dark/tabs_increment.png
deleted file mode 100644
index e6c35cc2d..000000000
Binary files a/material_maker/theme/dark/tabs_increment.png and /dev/null differ
diff --git a/material_maker/theme/dark/tabs_increment.png.import b/material_maker/theme/dark/tabs_increment.png.import
deleted file mode 100644
index 19524c070..000000000
--- a/material_maker/theme/dark/tabs_increment.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://tetgna5qjvkf"
-path="res://.godot/imported/tabs_increment.png-c069a5f1ab02c50c415c93947cd3e7a6.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tabs_increment.png"
-dest_files=["res://.godot/imported/tabs_increment.png-c069a5f1ab02c50c415c93947cd3e7a6.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tabs_increment_highlight.png b/material_maker/theme/dark/tabs_increment_highlight.png
deleted file mode 100644
index 78134d0a8..000000000
Binary files a/material_maker/theme/dark/tabs_increment_highlight.png and /dev/null differ
diff --git a/material_maker/theme/dark/tabs_increment_highlight.png.import b/material_maker/theme/dark/tabs_increment_highlight.png.import
deleted file mode 100644
index bd1cc1b20..000000000
--- a/material_maker/theme/dark/tabs_increment_highlight.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://vjf2xjlnd5dh"
-path="res://.godot/imported/tabs_increment_highlight.png-5015f1406e1afac1760a79669e4aeb56.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tabs_increment_highlight.png"
-dest_files=["res://.godot/imported/tabs_increment_highlight.png-5015f1406e1afac1760a79669e4aeb56.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/textedit_fold.png b/material_maker/theme/dark/textedit_fold.png
deleted file mode 100644
index 9f29941d8..000000000
Binary files a/material_maker/theme/dark/textedit_fold.png and /dev/null differ
diff --git a/material_maker/theme/dark/textedit_fold.png.import b/material_maker/theme/dark/textedit_fold.png.import
deleted file mode 100644
index 24c5ca0b3..000000000
--- a/material_maker/theme/dark/textedit_fold.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://d2ohx44rm5pe1"
-path="res://.godot/imported/textedit_fold.png-b3fec6feff31118be4f14f4eb4c01fef.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/textedit_fold.png"
-dest_files=["res://.godot/imported/textedit_fold.png-b3fec6feff31118be4f14f4eb4c01fef.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/textedit_folded.png b/material_maker/theme/dark/textedit_folded.png
deleted file mode 100644
index 21f2196e9..000000000
Binary files a/material_maker/theme/dark/textedit_folded.png and /dev/null differ
diff --git a/material_maker/theme/dark/textedit_folded.png.import b/material_maker/theme/dark/textedit_folded.png.import
deleted file mode 100644
index a56c75430..000000000
--- a/material_maker/theme/dark/textedit_folded.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bcfxo36mapscy"
-path="res://.godot/imported/textedit_folded.png-4b9d6816538d87c65642d13514b3bb26.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/textedit_folded.png"
-dest_files=["res://.godot/imported/textedit_folded.png-4b9d6816538d87c65642d13514b3bb26.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/textedit_space.png b/material_maker/theme/dark/textedit_space.png
deleted file mode 100644
index 3775fa127..000000000
Binary files a/material_maker/theme/dark/textedit_space.png and /dev/null differ
diff --git a/material_maker/theme/dark/textedit_space.png.import b/material_maker/theme/dark/textedit_space.png.import
deleted file mode 100644
index ccd1ed7fe..000000000
--- a/material_maker/theme/dark/textedit_space.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cbnl1ajr2avjc"
-path="res://.godot/imported/textedit_space.png-c5ebd31b1e43530cdd09af90529c38b6.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/textedit_space.png"
-dest_files=["res://.godot/imported/textedit_space.png-c5ebd31b1e43530cdd09af90529c38b6.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/textedit_tab.png b/material_maker/theme/dark/textedit_tab.png
deleted file mode 100644
index 40e102d58..000000000
Binary files a/material_maker/theme/dark/textedit_tab.png and /dev/null differ
diff --git a/material_maker/theme/dark/textedit_tab.png.import b/material_maker/theme/dark/textedit_tab.png.import
deleted file mode 100644
index 59675e118..000000000
--- a/material_maker/theme/dark/textedit_tab.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cwkw8bx2ggvsk"
-path="res://.godot/imported/textedit_tab.png-009e4978369e09430bf4a7d68889b57f.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/textedit_tab.png"
-dest_files=["res://.godot/imported/textedit_tab.png-009e4978369e09430bf4a7d68889b57f.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tree_arrow.png b/material_maker/theme/dark/tree_arrow.png
deleted file mode 100644
index 9f29941d8..000000000
Binary files a/material_maker/theme/dark/tree_arrow.png and /dev/null differ
diff --git a/material_maker/theme/dark/tree_arrow.png.import b/material_maker/theme/dark/tree_arrow.png.import
deleted file mode 100644
index 2ac4802f7..000000000
--- a/material_maker/theme/dark/tree_arrow.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://mxw58hi0ogr4"
-path="res://.godot/imported/tree_arrow.png-d9ef876985412c55d6df622f6e1a51ae.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tree_arrow.png"
-dest_files=["res://.godot/imported/tree_arrow.png-d9ef876985412c55d6df622f6e1a51ae.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tree_arrow_collapsed.png b/material_maker/theme/dark/tree_arrow_collapsed.png
deleted file mode 100644
index 21f2196e9..000000000
Binary files a/material_maker/theme/dark/tree_arrow_collapsed.png and /dev/null differ
diff --git a/material_maker/theme/dark/tree_arrow_collapsed.png.import b/material_maker/theme/dark/tree_arrow_collapsed.png.import
deleted file mode 100644
index 5454030e0..000000000
--- a/material_maker/theme/dark/tree_arrow_collapsed.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://b81bpjjvfcnpi"
-path="res://.godot/imported/tree_arrow_collapsed.png-bc5a640c27cc3374fa7fb3fef45e9b10.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tree_arrow_collapsed.png"
-dest_files=["res://.godot/imported/tree_arrow_collapsed.png-bc5a640c27cc3374fa7fb3fef45e9b10.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tree_checked.png b/material_maker/theme/dark/tree_checked.png
deleted file mode 100644
index 3c6e5a6c7..000000000
Binary files a/material_maker/theme/dark/tree_checked.png and /dev/null differ
diff --git a/material_maker/theme/dark/tree_checked.png.import b/material_maker/theme/dark/tree_checked.png.import
deleted file mode 100644
index 5f6a75943..000000000
--- a/material_maker/theme/dark/tree_checked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://b7tagrhn21clx"
-path="res://.godot/imported/tree_checked.png-a2a3cc52890b05e4ec1633dd00a58c3b.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tree_checked.png"
-dest_files=["res://.godot/imported/tree_checked.png-a2a3cc52890b05e4ec1633dd00a58c3b.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tree_select_arrow.png b/material_maker/theme/dark/tree_select_arrow.png
deleted file mode 100644
index 6f9980350..000000000
Binary files a/material_maker/theme/dark/tree_select_arrow.png and /dev/null differ
diff --git a/material_maker/theme/dark/tree_select_arrow.png.import b/material_maker/theme/dark/tree_select_arrow.png.import
deleted file mode 100644
index bf995d95b..000000000
--- a/material_maker/theme/dark/tree_select_arrow.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://ivbhbdcskgkn"
-path="res://.godot/imported/tree_select_arrow.png-b9ff7ffd2f598e310a5afc673e81c6d4.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tree_select_arrow.png"
-dest_files=["res://.godot/imported/tree_select_arrow.png-b9ff7ffd2f598e310a5afc673e81c6d4.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tree_unchecked.png b/material_maker/theme/dark/tree_unchecked.png
deleted file mode 100644
index c809465bc..000000000
Binary files a/material_maker/theme/dark/tree_unchecked.png and /dev/null differ
diff --git a/material_maker/theme/dark/tree_unchecked.png.import b/material_maker/theme/dark/tree_unchecked.png.import
deleted file mode 100644
index 619cb6bdd..000000000
--- a/material_maker/theme/dark/tree_unchecked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bkbk6pedev6wx"
-path="res://.godot/imported/tree_unchecked.png-93f3909503d9f03002fa1f418d9c75ee.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tree_unchecked.png"
-dest_files=["res://.godot/imported/tree_unchecked.png-93f3909503d9f03002fa1f418d9c75ee.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/tree_updown.png b/material_maker/theme/dark/tree_updown.png
deleted file mode 100644
index 14a00f8fe..000000000
Binary files a/material_maker/theme/dark/tree_updown.png and /dev/null differ
diff --git a/material_maker/theme/dark/tree_updown.png.import b/material_maker/theme/dark/tree_updown.png.import
deleted file mode 100644
index 4bb481d57..000000000
--- a/material_maker/theme/dark/tree_updown.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bs3x24topb8fl"
-path="res://.godot/imported/tree_updown.png-4d2d7620831af3f302b0ea0b8aa3cab5.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/tree_updown.png"
-dest_files=["res://.godot/imported/tree_updown.png-4d2d7620831af3f302b0ea0b8aa3cab5.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/vslider_grabber.png b/material_maker/theme/dark/vslider_grabber.png
deleted file mode 100644
index 439c835c1..000000000
Binary files a/material_maker/theme/dark/vslider_grabber.png and /dev/null differ
diff --git a/material_maker/theme/dark/vslider_grabber.png.import b/material_maker/theme/dark/vslider_grabber.png.import
deleted file mode 100644
index ea3ab5797..000000000
--- a/material_maker/theme/dark/vslider_grabber.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://r18qvh06tu10"
-path="res://.godot/imported/vslider_grabber.png-e665586bd9842529047d52c83a918474.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/vslider_grabber.png"
-dest_files=["res://.godot/imported/vslider_grabber.png-e665586bd9842529047d52c83a918474.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/vslider_grabber_highlight.png b/material_maker/theme/dark/vslider_grabber_highlight.png
deleted file mode 100644
index 246a73feb..000000000
Binary files a/material_maker/theme/dark/vslider_grabber_highlight.png and /dev/null differ
diff --git a/material_maker/theme/dark/vslider_grabber_highlight.png.import b/material_maker/theme/dark/vslider_grabber_highlight.png.import
deleted file mode 100644
index 2c1991ebd..000000000
--- a/material_maker/theme/dark/vslider_grabber_highlight.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://c7tbnm43rce6e"
-path="res://.godot/imported/vslider_grabber_highlight.png-ce90153ad27499ef86748685fb5e8ad6.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/vslider_grabber_highlight.png"
-dest_files=["res://.godot/imported/vslider_grabber_highlight.png-ce90153ad27499ef86748685fb5e8ad6.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/vsplitcontainer_grabber.png b/material_maker/theme/dark/vsplitcontainer_grabber.png
deleted file mode 100644
index 16b5655f2..000000000
Binary files a/material_maker/theme/dark/vsplitcontainer_grabber.png and /dev/null differ
diff --git a/material_maker/theme/dark/vsplitcontainer_grabber.png.import b/material_maker/theme/dark/vsplitcontainer_grabber.png.import
deleted file mode 100644
index 848749f55..000000000
--- a/material_maker/theme/dark/vsplitcontainer_grabber.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cywmxr2m8h7mr"
-path="res://.godot/imported/vsplitcontainer_grabber.png-724cead23ebe9c9eab7c940a161f38cf.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/vsplitcontainer_grabber.png"
-dest_files=["res://.godot/imported/vsplitcontainer_grabber.png-724cead23ebe9c9eab7c940a161f38cf.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/windowdialog_close.png b/material_maker/theme/dark/windowdialog_close.png
deleted file mode 100644
index b3fc6cb3b..000000000
Binary files a/material_maker/theme/dark/windowdialog_close.png and /dev/null differ
diff --git a/material_maker/theme/dark/windowdialog_close.png.import b/material_maker/theme/dark/windowdialog_close.png.import
deleted file mode 100644
index 7e6e9e957..000000000
--- a/material_maker/theme/dark/windowdialog_close.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://lgj5c6kuqwit"
-path="res://.godot/imported/windowdialog_close.png-6fdf713c93c8a83cb96c2b426a12127d.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/windowdialog_close.png"
-dest_files=["res://.godot/imported/windowdialog_close.png-6fdf713c93c8a83cb96c2b426a12127d.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/dark/windowdialog_close_highlight.png b/material_maker/theme/dark/windowdialog_close_highlight.png
deleted file mode 100644
index b3fc6cb3b..000000000
Binary files a/material_maker/theme/dark/windowdialog_close_highlight.png and /dev/null differ
diff --git a/material_maker/theme/dark/windowdialog_close_highlight.png.import b/material_maker/theme/dark/windowdialog_close_highlight.png.import
deleted file mode 100644
index 160c4a42c..000000000
--- a/material_maker/theme/dark/windowdialog_close_highlight.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://xi5ma1i85pdd"
-path="res://.godot/imported/windowdialog_close_highlight.png-955737f6fef058dc509449b75701ab08.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/dark/windowdialog_close_highlight.png"
-dest_files=["res://.godot/imported/windowdialog_close_highlight.png-955737f6fef058dc509449b75701ab08.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/default dark.tres b/material_maker/theme/default dark.tres
index 352f4f6b4..3819ff987 100644
--- a/material_maker/theme/default dark.tres
+++ b/material_maker/theme/default dark.tres
@@ -1,695 +1,192 @@
-[gd_resource type="Theme" load_steps=60 format=3 uid="uid://b628lwfk6ig2c"]
-
-[ext_resource type="FontFile" uid="uid://dgkwr5jydtk6p" path="res://material_maker/theme/font_rubik/Rubik-VariableFont_wght.ttf" id="1_5tfb1"]
-[ext_resource type="Texture2D" uid="uid://c74jqqhkapvx0" path="res://material_maker/theme/dark/graphnode_close.png" id="2_qksaj"]
-[ext_resource type="Texture2D" uid="uid://cgxvaurldh6mq" path="res://material_maker/theme/dark/graphnode_port.png" id="3_chjul"]
-[ext_resource type="Texture2D" uid="uid://c4k81poqyod3g" path="res://material_maker/theme/dark/graphnode_resizer.png" id="4_ak1f4"]
-[ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="5_euge2"]
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_telh7"]
-content_margin_left = 6.0
-content_margin_top = 6.0
-content_margin_right = 6.0
-content_margin_bottom = 6.0
-bg_color = Color(0.0941176, 0.0980392, 0.101961, 1)
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_inl5r"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.266667, 0.278431, 0.301961, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kvrsn"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-draw_center = false
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.490196, 0.505882, 0.545098, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2qiie"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.266667, 0.278431, 0.301961, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_rxikb"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.168627, 0.176471, 0.192157, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_pxlc8"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_62l4s"]
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_uwck0"]
-content_margin_left = 10.0
-content_margin_top = 8.0
-content_margin_right = 10.0
-content_margin_bottom = 8.0
-bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1)
-border_width_left = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.145762, 0.145765, 0.164989, 1)
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ryqkj"]
-content_margin_left = 10.0
-content_margin_top = 8.0
-content_margin_right = 10.0
-content_margin_bottom = 8.0
-bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1)
-border_width_left = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.745098, 0.752941, 0.772549, 1)
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_imqse"]
-content_margin_left = 5.0
-content_margin_top = 5.0
-content_margin_right = 5.0
-content_margin_bottom = 5.0
-bg_color = Color(0.490196, 0.505882, 0.545098, 1)
-border_color = Color(0.490196, 0.505882, 0.545098, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ru0kh"]
-content_margin_left = 5.0
-content_margin_top = 5.0
-content_margin_right = 5.0
-content_margin_bottom = 5.0
-bg_color = Color(0.490196, 0.505882, 0.545098, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_color = Color(0.745098, 0.752941, 0.772549, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_detail = 4
-
-[sub_resource type="FontVariation" id="FontVariation_na26k"]
-base_font = ExtResource("1_5tfb1")
-variation_embolden = 0.8
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_m2221"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.168627, 0.176471, 0.192157, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_attdh"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.266667, 0.278431, 0.301961, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_s437y"]
-content_margin_left = 6.0
-content_margin_top = 3.0
-content_margin_right = 6.0
-content_margin_bottom = 3.0
-bg_color = Color(0.168627, 0.176471, 0.192157, 1)
-draw_center = false
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.490196, 0.505882, 0.545098, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k7e83"]
-content_margin_left = 6.0
-content_margin_top = 3.0
-content_margin_right = 6.0
-content_margin_bottom = 3.0
-bg_color = Color(0.117647, 0.121569, 0.133333, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_f0kci"]
-content_margin_left = 4.0
-content_margin_top = 4.0
-content_margin_right = 4.0
-content_margin_bottom = 4.0
-bg_color = Color(0.0928685, 0.0957873, 0.107466, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.359069, 0.359069, 0.359069, 1)
-
-[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_l61r7"]
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dyhk7"]
-content_margin_left = 10.0
-content_margin_top = 2.0
-content_margin_right = 10.0
-content_margin_bottom = 2.0
-bg_color = Color(0.168627, 0.176471, 0.192157, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.266667, 0.278431, 0.301961, 1)
-corner_radius_top_left = 5
-corner_radius_top_right = 5
-corner_radius_bottom_right = 5
-corner_radius_bottom_left = 5
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mv8c7"]
-content_margin_left = 10.0
-content_margin_top = 2.0
-content_margin_right = 10.0
-content_margin_bottom = 2.0
-bg_color = Color(0.168627, 0.176471, 0.192157, 1)
-corner_radius_top_left = 5
-corner_radius_top_right = 5
-corner_radius_bottom_right = 5
-corner_radius_bottom_left = 5
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wqwm5"]
-content_margin_left = 10.0
-content_margin_top = 10.0
-content_margin_right = 10.0
-content_margin_bottom = 10.0
-bg_color = Color(0.0427646, 0.0427646, 0.0456467, 1)
-
-[sub_resource type="FontVariation" id="FontVariation_80ifi"]
-base_font = ExtResource("1_5tfb1")
-opentype_features = {
-1953396077: 1
-}
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ut30c"]
-bg_color = Color(1, 1, 1, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_b7ktg"]
-bg_color = Color(0.355314, 0.355314, 0.355314, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hgk0b"]
-bg_color = Color(0.303233, 0.303233, 0.303233, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0b15u"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-draw_center = false
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.490196, 0.505882, 0.545098, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_r1sff"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.266667, 0.278431, 0.301961, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8fogc"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.168627, 0.176471, 0.192157, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_omwbs"]
-content_margin_left = 10.0
-content_margin_top = 8.0
-content_margin_right = 10.0
-content_margin_bottom = 8.0
-bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.145098, 0.145098, 0.164706, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3j6py"]
-content_margin_left = 2.0
-content_margin_top = 2.0
-content_margin_right = 2.0
-content_margin_bottom = 2.0
-bg_color = Color(0.207271, 0.216386, 0.234614, 1)
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_j32ac"]
-content_margin_left = 2.0
-content_margin_top = 2.0
-content_margin_right = 2.0
-content_margin_bottom = 2.0
-bg_color = Color(0.168627, 0.176471, 0.192157, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.207843, 0.215686, 0.235294, 1)
-corner_radius_top_left = 2
-corner_radius_top_right = 2
-corner_radius_bottom_right = 2
-corner_radius_bottom_left = 2
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k2ns1"]
-bg_color = Color(0.8, 0.8, 0.8, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-corner_detail = 1
-shadow_color = Color(0, 0, 0, 1)
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_uujf1"]
-content_margin_left = 6.0
-content_margin_top = 6.0
-content_margin_right = 6.0
-content_margin_bottom = 6.0
-bg_color = Color(0.0941176, 0.0980392, 0.101961, 1)
-corner_radius_top_right = 5
-corner_radius_bottom_right = 5
-corner_radius_bottom_left = 5
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1k0sx"]
-bg_color = Color(0.0941176, 0.0980392, 0.101961, 1)
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_xeqlk"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.0941176, 0.0980392, 0.101961, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dscxc"]
-content_margin_left = 6.0
-content_margin_top = 6.0
-content_margin_right = 6.0
-content_margin_bottom = 6.0
-bg_color = Color(0.117647, 0.121569, 0.133333, 1)
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fq0uc"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.168627, 0.176471, 0.192157, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8p2hu"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.117647, 0.121569, 0.133333, 1)
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7xfok"]
-bg_color = Color(0.376471, 0.376471, 0.376471, 1)
-corner_radius_top_left = 24
-corner_radius_top_right = 24
-corner_radius_bottom_right = 24
-corner_radius_bottom_left = 24
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6or45"]
-bg_color = Color(0.376471, 0.376471, 0.376471, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(1, 1, 1, 1)
-corner_radius_top_left = 24
-corner_radius_top_right = 24
-corner_radius_bottom_right = 24
-corner_radius_bottom_left = 24
-
-[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_smd7i"]
-
-[sub_resource type="FontFile" id="FontFile_00yus"]
-fallbacks = Array[Font]([ExtResource("5_euge2")])
-cache/0/16/0/ascent = 0.0
-cache/0/16/0/descent = 0.0
-cache/0/16/0/underline_position = 0.0
-cache/0/16/0/underline_thickness = 0.0
-cache/0/16/0/scale = 1.0
-cache/0/16/0/kerning_overrides/16/0 = Vector2(0, 0)
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_otynv"]
-content_margin_left = 0.0
-content_margin_top = 0.0
-content_margin_right = 0.0
-content_margin_bottom = 0.0
-bg_color = Color(0.376471, 0.376471, 0.376471, 1)
-corner_detail = 1
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kbm1t"]
-content_margin_left = 0.0
-content_margin_top = 0.0
-content_margin_right = 0.0
-content_margin_bottom = 0.0
-bg_color = Color(0.376471, 0.376471, 0.376471, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(1, 1, 1, 1)
-corner_detail = 1
-
-[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_7bw33"]
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ax2cv"]
-content_margin_left = 7.0
-content_margin_top = 5.0
-content_margin_right = 7.0
-content_margin_bottom = 5.0
-bg_color = Color(0.117647, 0.121569, 0.133333, 1)
-draw_center = false
-border_width_top = 2
-border_color = Color(0.266667, 0.278431, 0.301961, 1)
-corner_radius_top_left = 5
-corner_radius_top_right = 5
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_708uu"]
-content_margin_left = 7.0
-content_margin_top = 5.0
-content_margin_right = 7.0
-content_margin_bottom = 5.0
-bg_color = Color(0.145098, 0.14902, 0.164706, 1)
-corner_radius_top_left = 5
-corner_radius_top_right = 5
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_r4jxv"]
-content_margin_left = 7.0
-content_margin_top = 5.0
-content_margin_right = 7.0
-content_margin_bottom = 5.0
-bg_color = Color(0.129412, 0.137255, 0.152941, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_w1kc3"]
-content_margin_left = 7.0
-content_margin_top = 5.0
-content_margin_right = 7.0
-content_margin_bottom = 5.0
-bg_color = Color(0.109804, 0.113725, 0.12549, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wc388"]
-content_margin_left = 5.0
-content_margin_top = 5.0
-content_margin_right = 5.0
-content_margin_bottom = 5.0
-bg_color = Color(0.0941176, 0.0980392, 0.101961, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5rnro"]
-content_margin_left = 10.0
-content_margin_top = 8.0
-content_margin_right = 10.0
-content_margin_bottom = 8.0
-bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.145098, 0.145098, 0.164706, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_iwtn1"]
-content_margin_left = 4.0
-
-[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_yrroa"]
-content_margin_left = 4.0
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_x5l5s"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
+[gd_resource type="Theme" script_class="EnhancedTheme" load_steps=34 format=3 uid="uid://dhuhq2immquoh"]
+
+[ext_resource type="Theme" uid="uid://b628lwfk6ig2c" path="res://material_maker/theme/default.tres" id="3_xjelh"]
+[ext_resource type="Script" path="res://material_maker/theme/enhanced_theme_system/color_swap.gd" id="4_0efyb"]
+[ext_resource type="Script" path="res://material_maker/theme/enhanced_theme_system/enhanced_theme.gd" id="5_yjidp"]
+
+[sub_resource type="Resource" id="Resource_silay"]
+script = ExtResource("4_0efyb")
+name = "Main Font Color"
+orig = Color(1, 1, 1, 1)
+target = Color(1, 1, 1, 1)
+
+[sub_resource type="Resource" id="Resource_eavso"]
+script = ExtResource("4_0efyb")
+name = "NodeTitleFontOutline"
+orig = Color(0.168627, 0.176471, 0.192157, 1)
+target = Color(0.168627, 0.176471, 0.192157, 1)
+
+[sub_resource type="Resource" id="Resource_1jhxl"]
+script = ExtResource("4_0efyb")
+name = "Button Normal"
+orig = Color(0.87451, 0.87451, 0.87451, 1)
+target = Color(0.87451, 0.87451, 0.87451, 1)
+
+[sub_resource type="Resource" id="Resource_qiwix"]
+script = ExtResource("4_0efyb")
+name = "Button Hover"
+orig = Color(0.94902, 0.94902, 0.94902, 1)
+target = Color(0.94902, 0.94902, 0.94902, 1)
+
+[sub_resource type="Resource" id="Resource_5yhcl"]
+script = ExtResource("4_0efyb")
+name = "Button Disabled"
+orig = Color(0.87451, 0.87451, 0.87451, 0.501961)
+target = Color(0.87451, 0.87451, 0.87451, 0.501961)
+
+[sub_resource type="Resource" id="Resource_vdnfu"]
+script = ExtResource("4_0efyb")
+name = "Tree"
+orig = Color(0.701961, 0.701961, 0.701961, 1)
+target = Color(0.701961, 0.701961, 0.701961, 1)
+
+[sub_resource type="Resource" id="Resource_21aar"]
+script = ExtResource("4_0efyb")
+name = "Menu Shortcut"
+orig = Color(0.701961, 0.701961, 0.701961, 0.8)
+target = Color(0.701961, 0.701961, 0.701961, 0.8)
+
+[sub_resource type="Resource" id="Resource_us4qf"]
+script = ExtResource("4_0efyb")
+name = "Placeholder Color"
+orig = Color(0.87451, 0.87451, 0.87451, 0.6)
+target = Color(0.87451, 0.87451, 0.87451, 0.6)
+
+[sub_resource type="Resource" id="Resource_cisvi"]
+script = ExtResource("4_0efyb")
+name = "Main"
+orig = Color(1, 1, 1, 1)
+target = Color(1, 1, 1, 1)
+
+[sub_resource type="Resource" id="Resource_j2h7k"]
+script = ExtResource("4_0efyb")
+name = "Secondary"
+orig = Color(0.933333, 0.521569, 0.909804, 1)
+target = Color(0.933333, 0.521569, 0.909804, 1)
+
+[sub_resource type="Resource" id="Resource_8dhbo"]
+script = ExtResource("4_0efyb")
+name = "MainDisabled"
+orig = Color(0.807843, 0.807843, 0.807843, 1)
+target = Color(0.807843, 0.807843, 0.807843, 1)
+
+[sub_resource type="Resource" id="Resource_5oh4i"]
+script = ExtResource("4_0efyb")
+name = "Hover"
+orig = Color(0.933333, 0.678431, 0.909804, 1)
+target = Color(0.933333, 0.678431, 0.909804, 1)
+
+[sub_resource type="Resource" id="Resource_ub5ur"]
+script = ExtResource("4_0efyb")
+name = "Main Background"
+orig = Color(0.0431373, 0.0431373, 0.0470588, 1)
+target = Color(0.0431373, 0.0431373, 0.0470588, 1)
+
+[sub_resource type="Resource" id="Resource_5rv7m"]
+script = ExtResource("4_0efyb")
+name = "Background"
+orig = Color(0.0941176, 0.0980392, 0.101961, 1)
+target = Color(0.0941176, 0.0980392, 0.101961, 1)
+
+[sub_resource type="Resource" id="Resource_xqbwo"]
+script = ExtResource("4_0efyb")
+name = "Nodes"
+orig = Color(0.0666667, 0.0666667, 0.0784314, 1)
+target = Color(0.0666667, 0.0666667, 0.0784314, 1)
+
+[sub_resource type="Resource" id="Resource_a2t6i"]
+script = ExtResource("4_0efyb")
+name = "Elements"
+orig = Color(0.168627, 0.176471, 0.192157, 1)
+target = Color(0.168627, 0.176471, 0.192157, 1)
+
+[sub_resource type="Resource" id="Resource_pekt7"]
+script = ExtResource("4_0efyb")
+name = "Tab Selected"
+orig = Color(0.129412, 0.137255, 0.152941, 1)
+target = Color(0.129412, 0.137255, 0.152941, 1)
+
+[sub_resource type="Resource" id="Resource_vbpcr"]
+script = ExtResource("4_0efyb")
+name = "Hover"
+orig = Color(0.266667, 0.278431, 0.301961, 1)
+target = Color(0.266667, 0.278431, 0.301961, 1)
+
+[sub_resource type="Resource" id="Resource_qngft"]
+script = ExtResource("4_0efyb")
+name = "Tab Unselected"
+orig = Color(0.109804, 0.113725, 0.12549, 1)
+target = Color(0.109804, 0.113725, 0.12549, 1)
+
+[sub_resource type="Resource" id="Resource_5mixu"]
+script = ExtResource("4_0efyb")
+name = "PopupMenuPanels"
+orig = Color(0.117647, 0.121569, 0.133333, 1)
+target = Color(0.117647, 0.121569, 0.133333, 1)
+
+[sub_resource type="Resource" id="Resource_kxmra"]
+script = ExtResource("4_0efyb")
+name = "AddNodePopup"
+orig = Color(0.0941176, 0.0941176, 0.105882, 1)
+target = Color(0.0941176, 0.0941176, 0.105882, 1)
+
+[sub_resource type="Resource" id="Resource_siafh"]
+script = ExtResource("4_0efyb")
+name = "AddNodePopupBorder"
+orig = Color(0.360784, 0.360784, 0.360784, 1)
+target = Color(0.360784, 0.360784, 0.360784, 1)
+
+[sub_resource type="Resource" id="Resource_s732t"]
+script = ExtResource("4_0efyb")
+name = "NodeBorderUnselected"
+orig = Color(0.145098, 0.145098, 0.164706, 1)
+target = Color(0.145098, 0.145098, 0.164706, 1)
+
+[sub_resource type="Resource" id="Resource_j1t84"]
+script = ExtResource("4_0efyb")
+name = "NodeBorderSelected"
+orig = Color(0.745098, 0.752941, 0.772549, 1)
+target = Color(0.745098, 0.752941, 0.772549, 1)
+
+[sub_resource type="Resource" id="Resource_g7e3b"]
+script = ExtResource("4_0efyb")
+name = "Grid"
+orig = Color(0.137255, 0.141176, 0.152941, 1)
+target = Color(0.137255, 0.141176, 0.152941, 1)
+
+[sub_resource type="Resource" id="Resource_oirgf"]
+script = ExtResource("4_0efyb")
+name = "Port Preview Color"
+orig = Color(0.890196, 0.890196, 0.890196, 1)
+target = Color(0.890196, 0.890196, 0.890196, 1)
+
+[sub_resource type="Resource" id="Resource_1pump"]
+script = ExtResource("4_0efyb")
+name = "Node Title Color"
+orig = Color(0.87451, 0.878431, 0.886275, 1)
+target = Color(0.87451, 0.878431, 0.886275, 1)
+
+[sub_resource type="Resource" id="Resource_fxm05"]
+script = ExtResource("4_0efyb")
+name = "PortGroup"
+orig = Color(0.8, 0.8, 0.8, 1)
+target = Color(0.8, 0.8, 0.8, 1)
+
+[sub_resource type="Resource" id="Resource_mfxjg"]
+script = ExtResource("4_0efyb")
+name = "FloatFillNormal"
+orig = Color(0.301961, 0.301961, 0.301961, 1)
+target = Color(0.301961, 0.301961, 0.301961, 1)
+
+[sub_resource type="Resource" id="Resource_upxps"]
+script = ExtResource("4_0efyb")
+name = "FloatFillHover"
+orig = Color(0.356863, 0.356863, 0.356863, 1)
+target = Color(0.356863, 0.356863, 0.356863, 1)
[resource]
-default_font = ExtResource("1_5tfb1")
-default_font_size = 16
-AcceptDialog/styles/panel = SubResource("StyleBoxFlat_telh7")
-Button/colors/font_color = Color(0.875, 0.875, 0.875, 1)
-Button/colors/font_disabled_color = Color(0.875, 0.875, 0.875, 0.5)
-Button/colors/font_focus_color = Color(0.95, 0.95, 0.95, 1)
-Button/colors/font_hover_color = Color(0.95, 0.95, 0.95, 1)
-Button/colors/font_hover_pressed_color = Color(1, 1, 1, 1)
-Button/colors/font_pressed_color = Color(1, 1, 1, 1)
-Button/colors/icon_hover_pressed_color = Color(0.874128, 0.694643, 0.972002, 1)
-Button/colors/icon_pressed_color = Color(0.792157, 0.478431, 0.94902, 1)
-Button/styles/disabled = SubResource("StyleBoxFlat_inl5r")
-Button/styles/focus = SubResource("StyleBoxFlat_kvrsn")
-Button/styles/hover = SubResource("StyleBoxFlat_2qiie")
-Button/styles/hover_pressed = SubResource("StyleBoxFlat_2qiie")
-Button/styles/normal = SubResource("StyleBoxFlat_rxikb")
-Button/styles/pressed = SubResource("StyleBoxFlat_rxikb")
-GraphEdit/colors/grid_major = Color(0.137255, 0.141176, 0.152941, 1)
-GraphEdit/colors/grid_minor = Color(0.137255, 0.141176, 0.152941, 1)
-GraphEdit/constants/port_hotzone_inner_extent = 8
-GraphEdit/constants/port_hotzone_outer_extent = 50
-GraphEdit/styles/menu_panel = SubResource("StyleBoxFlat_pxlc8")
-GraphEdit/styles/panel = SubResource("StyleBoxEmpty_62l4s")
-GraphNode/colors/portpreview_color = Color(0.89059, 0.89059, 0.89059, 1)
-GraphNode/colors/title_color = Color(0.87451, 0.878431, 0.886275, 1)
-GraphNode/constants/portpreview_radius = 6
-GraphNode/constants/portpreview_width = 15
-GraphNode/styles/panel = SubResource("StyleBoxFlat_uwck0")
-GraphNode/styles/panel_selected = SubResource("StyleBoxFlat_ryqkj")
-GraphNode/styles/titlebar = SubResource("StyleBoxFlat_imqse")
-GraphNode/styles/titlebar_selected = SubResource("StyleBoxFlat_ru0kh")
-GraphNodeTitleLabel/colors/font_outline_color = Color(0.168627, 0.176471, 0.192157, 1)
-GraphNodeTitleLabel/colors/font_shadow_color = Color(0.168627, 0.176471, 0.192157, 1)
-GraphNodeTitleLabel/constants/outline_size = 4
-GraphNodeTitleLabel/constants/shadow_outline_size = 4
-GraphNodeTitleLabel/fonts/font = SubResource("FontVariation_na26k")
-ItemList/colors/guide_color = Color(0.701961, 0.701961, 0.701961, 0.129412)
-ItemList/styles/hovered = SubResource("StyleBoxFlat_m2221")
-ItemList/styles/selected = SubResource("StyleBoxFlat_attdh")
-ItemList/styles/selected_focus = SubResource("StyleBoxFlat_attdh")
-Label/colors/font_color = Color(1, 1, 1, 1)
-LineEdit/colors/font_color = Color(0.875, 0.875, 0.875, 1)
-LineEdit/colors/font_placeholder_color = Color(0.875, 0.875, 0.875, 0.6)
-LineEdit/colors/font_selected_color = Color(1, 1, 1, 1)
-LineEdit/colors/font_uneditable_color = Color(0.875, 0.875, 0.875, 0.5)
-LineEdit/colors/selection_color = Color(0.5, 0.5, 0.5, 1)
-LineEdit/styles/focus = SubResource("StyleBoxFlat_s437y")
-LineEdit/styles/normal = SubResource("StyleBoxFlat_k7e83")
-LineEdit/styles/read_only = SubResource("StyleBoxFlat_k7e83")
-MM_AddNodePanel/base_type = &"PanelContainer"
-MM_AddNodePanel/styles/panel = SubResource("StyleBoxFlat_f0kci")
-MM_AddNodePanelList/base_type = &"ItemList"
-MM_AddNodePanelList/font_sizes/font_size = 14
-MM_AddNodePanelList/styles/focus = SubResource("StyleBoxEmpty_l61r7")
-MM_FilterLineEdit/base_type = &"LineEdit"
-MM_FilterLineEdit/styles/focus = SubResource("StyleBoxFlat_dyhk7")
-MM_FilterLineEdit/styles/normal = SubResource("StyleBoxFlat_mv8c7")
-MM_FlexibleTab/base_type = &"TabBar"
-MM_FlexibleTab/constants/separation = 3
-MM_MainBackground/base_type = &"PanelContainer"
-MM_MainBackground/styles/panel = SubResource("StyleBoxFlat_wqwm5")
-MM_NodeCheckbox/base_type = &"Button"
-MM_NodeFloatEdit/base_type = &"Button"
-MM_NodeFloatEdit/font_sizes/font_size = 15
-MM_NodeFloatEdit/fonts/font = SubResource("FontVariation_80ifi")
-MM_NodeFloatEdit/styles/clip = SubResource("StyleBoxFlat_ut30c")
-MM_NodeFloatEdit/styles/fill_hover = SubResource("StyleBoxFlat_b7ktg")
-MM_NodeFloatEdit/styles/fill_normal = SubResource("StyleBoxFlat_hgk0b")
-MM_NodeFloatEdit/styles/focus = SubResource("StyleBoxFlat_0b15u")
-MM_NodeFloatEdit/styles/hover = SubResource("StyleBoxFlat_r1sff")
-MM_NodeFloatEdit/styles/normal = SubResource("StyleBoxFlat_8fogc")
-MM_NodeGradientEdit/base_type = &"Button"
-MM_NodeGradientEditPopup/base_type = &"PanelContainer"
-MM_NodeGradientEditPopup/styles/panel = SubResource("StyleBoxFlat_omwbs")
-MM_NodeImageEdit/base_type = &"Button"
-MM_NodeOptionEdit/base_type = &"OptionButton"
-MM_NodeOptionEditPopup/base_type = &"PopupMenu"
-MM_NodeOptionEditPopup/styles/hover = SubResource("StyleBoxFlat_3j6py")
-MM_NodeOptionEditPopup/styles/panel = SubResource("StyleBoxFlat_j32ac")
-MM_NodePortGroup/constants/width = 4
-MM_NodePortGroup/styles/panel = SubResource("StyleBoxFlat_k2ns1")
-MM_NodePropertyLabel/base_type = &"Label"
-MM_NodePropertyLabel/font_sizes/font_size = 15
-MM_PanelBackground/base_type = &"PanelContainer"
-MM_PanelBackground/styles/panel = SubResource("StyleBoxFlat_uujf1")
-MM_ProjectsBackground/base_type = &"Panel"
-MM_ProjectsBackground/styles/panel = SubResource("StyleBoxFlat_1k0sx")
-MM_StatusBarBackground/base_type = &"PanelContainer"
-MM_StatusBarBackground/styles/panel = SubResource("StyleBoxFlat_xeqlk")
-Panel/styles/panel = SubResource("StyleBoxFlat_dscxc")
-PopupMenu/colors/font_accelerator_color = Color(0.7, 0.7, 0.7, 0.8)
-PopupMenu/colors/font_color = Color(0.875, 0.875, 0.875, 1)
-PopupMenu/colors/font_disabled_color = Color(0.4, 0.4, 0.4, 0.8)
-PopupMenu/colors/font_hover_color = Color(0.875, 0.875, 0.875, 1)
-PopupMenu/styles/hover = SubResource("StyleBoxFlat_fq0uc")
-PopupMenu/styles/panel = SubResource("StyleBoxFlat_8p2hu")
-Reroute/colors/close_color = Color(1, 1, 1, 0.7)
-Reroute/colors/resizer_color = Color(1, 1, 1, 0.7)
-Reroute/colors/title_color = Color(1, 1, 1, 1)
-Reroute/constants/close_h_offset = 20
-Reroute/constants/close_offset = 20
-Reroute/constants/port_h_offset = 0
-Reroute/constants/port_offset = 0
-Reroute/constants/separation = 1
-Reroute/constants/title_h_offset = -16
-Reroute/constants/title_offset = 20
-Reroute/icons/close = ExtResource("2_qksaj")
-Reroute/icons/port = ExtResource("3_chjul")
-Reroute/icons/resizer = ExtResource("4_ak1f4")
-Reroute/styles/panel = SubResource("StyleBoxFlat_7xfok")
-Reroute/styles/panel_selected = SubResource("StyleBoxFlat_6or45")
-Reroute/styles/titlebar = SubResource("StyleBoxEmpty_smd7i")
-Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_smd7i")
-ReroutePreview/colors/close_color = Color(1, 1, 1, 0.7)
-ReroutePreview/colors/resizer_color = Color(1, 1, 1, 0.7)
-ReroutePreview/colors/title_color = Color(1, 1, 1, 1)
-ReroutePreview/constants/close_h_offset = 20
-ReroutePreview/constants/close_offset = 20
-ReroutePreview/constants/port_h_offset = 0
-ReroutePreview/constants/port_offset = 0
-ReroutePreview/constants/separation = 1
-ReroutePreview/constants/title_h_offset = -16
-ReroutePreview/constants/title_offset = 20
-ReroutePreview/fonts/title_font = SubResource("FontFile_00yus")
-ReroutePreview/icons/close = ExtResource("2_qksaj")
-ReroutePreview/icons/port = ExtResource("3_chjul")
-ReroutePreview/icons/resizer = ExtResource("4_ak1f4")
-ReroutePreview/styles/panel = SubResource("StyleBoxFlat_otynv")
-ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_kbm1t")
-ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_7bw33")
-ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_7bw33")
-TabBar/colors/font_disabled_color = Color(0.875, 0.875, 0.875, 0.5)
-TabBar/colors/font_hovered_color = Color(0.95, 0.95, 0.95, 1)
-TabBar/colors/font_selected_color = Color(0.95, 0.95, 0.95, 1)
-TabBar/colors/font_unselected_color = Color(0.7, 0.7, 0.7, 1)
-TabBar/constants/h_separation = 6
-TabBar/styles/tab_focus = SubResource("StyleBoxFlat_ax2cv")
-TabBar/styles/tab_hovered = SubResource("StyleBoxFlat_708uu")
-TabBar/styles/tab_selected = SubResource("StyleBoxFlat_r4jxv")
-TabBar/styles/tab_unselected = SubResource("StyleBoxFlat_w1kc3")
-TabContainer/styles/panel = SubResource("StyleBoxFlat_wc388")
-TooltipLabel/font_sizes/font_size = 15
-TooltipPanel/styles/panel = SubResource("StyleBoxFlat_5rnro")
-Tree/colors/font_color = Color(0.7, 0.7, 0.7, 1)
-Tree/colors/font_disabled_color = Color(0.875, 0.875, 0.875, 0.5)
-Tree/colors/font_selected_color = Color(1, 1, 1, 1)
-Tree/constants/draw_guides = 0
-Tree/constants/draw_relationship_lines = 0
-Tree/styles/focus = SubResource("StyleBoxEmpty_iwtn1")
-Tree/styles/panel = SubResource("StyleBoxEmpty_yrroa")
-Tree/styles/selected = SubResource("StyleBoxFlat_x5l5s")
-Tree/styles/selected_focus = SubResource("StyleBoxFlat_x5l5s")
+script = ExtResource("5_yjidp")
+base_theme = ExtResource("3_xjelh")
+font_color_swaps = Array[ExtResource("4_0efyb")]([SubResource("Resource_silay"), SubResource("Resource_eavso"), SubResource("Resource_1jhxl"), SubResource("Resource_qiwix"), SubResource("Resource_5yhcl"), SubResource("Resource_vdnfu"), SubResource("Resource_21aar"), SubResource("Resource_us4qf")])
+icon_color_swaps = Array[ExtResource("4_0efyb")]([SubResource("Resource_cisvi"), SubResource("Resource_j2h7k"), SubResource("Resource_8dhbo"), SubResource("Resource_5oh4i")])
+theme_color_swaps = Array[ExtResource("4_0efyb")]([SubResource("Resource_ub5ur"), SubResource("Resource_5rv7m"), SubResource("Resource_xqbwo"), SubResource("Resource_a2t6i"), SubResource("Resource_pekt7"), SubResource("Resource_vbpcr"), SubResource("Resource_qngft"), SubResource("Resource_5mixu"), SubResource("Resource_kxmra"), SubResource("Resource_siafh"), SubResource("Resource_s732t"), SubResource("Resource_j1t84"), SubResource("Resource_g7e3b"), SubResource("Resource_oirgf"), SubResource("Resource_1pump"), SubResource("Resource_fxm05"), SubResource("Resource_mfxjg"), SubResource("Resource_upxps")])
diff --git a/material_maker/theme/default light.tres b/material_maker/theme/default light.tres
index 11a3bb09f..0e9c1569e 100644
--- a/material_maker/theme/default light.tres
+++ b/material_maker/theme/default light.tres
@@ -1,618 +1,9 @@
-[gd_resource type="Theme" script_class="EnhancedTheme" load_steps=97 format=3 uid="uid://u00kx2lkkx8j"]
+[gd_resource type="Theme" script_class="EnhancedTheme" load_steps=34 format=3 uid="uid://u00kx2lkkx8j"]
-[ext_resource type="FontFile" uid="uid://dgkwr5jydtk6p" path="res://material_maker/theme/font_rubik/Rubik-VariableFont_wght.ttf" id="1_de56q"]
-[ext_resource type="FontFile" uid="uid://btybkvkb8rtol" path="res://material_maker/fonts/DroidSansFallback.ttf" id="2_gdmjv"]
-[ext_resource type="Theme" uid="uid://b628lwfk6ig2c" path="res://material_maker/theme/default dark.tres" id="3_e7v0o"]
+[ext_resource type="Theme" uid="uid://b628lwfk6ig2c" path="res://material_maker/theme/default.tres" id="1_ugsao"]
[ext_resource type="Script" path="res://material_maker/theme/enhanced_theme_system/color_swap.gd" id="4_rhf2q"]
[ext_resource type="Script" path="res://material_maker/theme/enhanced_theme_system/enhanced_theme.gd" id="5_fagh3"]
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_xy5i4"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.67451, 0.67451, 0.67451, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hus4k"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-draw_center = false
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.490196, 0.505882, 0.545098, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_roelu"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.67451, 0.67451, 0.67451, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kkdn5"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.67451, 0.67451, 0.67451, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_l4of7"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.627451, 0.627451, 0.627451, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4k3qb"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.627451, 0.627451, 0.627451, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_d5qf7"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.0666667, 0.0705882, 0.0784314, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_lpagw"]
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kuqq6"]
-content_margin_left = 10.0
-content_margin_top = 8.0
-content_margin_right = 10.0
-content_margin_bottom = 8.0
-bg_color = Color(0.839216, 0.839216, 0.839216, 1)
-border_width_left = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.145762, 0.145765, 0.164989, 1)
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_p14gl"]
-content_margin_left = 10.0
-content_margin_top = 8.0
-content_margin_right = 10.0
-content_margin_bottom = 8.0
-bg_color = Color(0.839216, 0.839216, 0.839216, 1)
-border_width_left = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.745098, 0.752941, 0.772549, 1)
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5i3qr"]
-content_margin_left = 5.0
-content_margin_top = 5.0
-content_margin_right = 5.0
-content_margin_bottom = 5.0
-bg_color = Color(0.490196, 0.505882, 0.545098, 1)
-border_color = Color(0.490196, 0.505882, 0.545098, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0ya5f"]
-content_margin_left = 5.0
-content_margin_top = 5.0
-content_margin_right = 5.0
-content_margin_bottom = 5.0
-bg_color = Color(0.490196, 0.505882, 0.545098, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_color = Color(0.745098, 0.752941, 0.772549, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_detail = 4
-
-[sub_resource type="FontVariation" id="FontVariation_clsk5"]
-base_font = ExtResource("1_de56q")
-variation_embolden = 0.8
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3n2pc"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.627451, 0.627451, 0.627451, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1bwbq"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.67451, 0.67451, 0.67451, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mkyjc"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.67451, 0.67451, 0.67451, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6mlnr"]
-content_margin_left = 6.0
-content_margin_top = 3.0
-content_margin_right = 6.0
-content_margin_bottom = 3.0
-bg_color = Color(0.627451, 0.627451, 0.627451, 1)
-draw_center = false
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.490196, 0.505882, 0.545098, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_axdjs"]
-content_margin_left = 6.0
-content_margin_top = 3.0
-content_margin_right = 6.0
-content_margin_bottom = 3.0
-bg_color = Color(0.8, 0.8, 0.8, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ssph1"]
-content_margin_left = 6.0
-content_margin_top = 3.0
-content_margin_right = 6.0
-content_margin_bottom = 3.0
-bg_color = Color(0.8, 0.8, 0.8, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2txad"]
-content_margin_left = 4.0
-content_margin_top = 4.0
-content_margin_right = 4.0
-content_margin_bottom = 4.0
-bg_color = Color(0.0928685, 0.0957873, 0.107466, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.359069, 0.359069, 0.359069, 1)
-corner_radius_top_left = 5
-corner_radius_top_right = 5
-corner_radius_bottom_right = 5
-corner_radius_bottom_left = 5
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4tvdc"]
-content_margin_left = 10.0
-content_margin_top = 2.0
-content_margin_right = 10.0
-content_margin_bottom = 2.0
-bg_color = Color(0.627451, 0.627451, 0.627451, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.266667, 0.278431, 0.301961, 1)
-corner_radius_top_left = 5
-corner_radius_top_right = 5
-corner_radius_bottom_right = 5
-corner_radius_bottom_left = 5
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_a2r0m"]
-content_margin_left = 10.0
-content_margin_top = 2.0
-content_margin_right = 10.0
-content_margin_bottom = 2.0
-bg_color = Color(0.627451, 0.627451, 0.627451, 1)
-corner_radius_top_left = 5
-corner_radius_top_right = 5
-corner_radius_bottom_right = 5
-corner_radius_bottom_left = 5
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_i67ey"]
-content_margin_left = 10.0
-content_margin_top = 10.0
-content_margin_right = 10.0
-content_margin_bottom = 10.0
-bg_color = Color(0.917647, 0.917647, 0.917647, 1)
-
-[sub_resource type="FontVariation" id="FontVariation_qdkrv"]
-base_font = ExtResource("1_de56q")
-opentype_features = {
-1953396077: 1
-}
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_lsxi0"]
-bg_color = Color(1, 1, 1, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kt7c2"]
-bg_color = Color(0.657163, 0.305796, 0.703349, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8gkke"]
-bg_color = Color(0.605934, 0.266905, 0.650558, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hnrxa"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-draw_center = false
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.490196, 0.505882, 0.545098, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ueqls"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.67451, 0.67451, 0.67451, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_qf0cv"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.627451, 0.627451, 0.627451, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_q6w3u"]
-content_margin_left = 10.0
-content_margin_top = 8.0
-content_margin_right = 10.0
-content_margin_bottom = 8.0
-bg_color = Color(0.839216, 0.839216, 0.839216, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.145098, 0.145098, 0.164706, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_l34mb"]
-content_margin_left = 2.0
-content_margin_top = 2.0
-content_margin_right = 2.0
-content_margin_bottom = 2.0
-bg_color = Color(0.207271, 0.216386, 0.234614, 1)
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mp37d"]
-content_margin_left = 2.0
-content_margin_top = 2.0
-content_margin_right = 2.0
-content_margin_bottom = 2.0
-bg_color = Color(0.627451, 0.627451, 0.627451, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.207843, 0.215686, 0.235294, 1)
-corner_radius_top_left = 2
-corner_radius_top_right = 2
-corner_radius_bottom_right = 2
-corner_radius_bottom_left = 2
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wj152"]
-bg_color = Color(0.8, 0.8, 0.8, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-corner_detail = 1
-shadow_color = Color(0, 0, 0, 1)
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_d58m1"]
-content_margin_left = 6.0
-content_margin_top = 6.0
-content_margin_right = 6.0
-content_margin_bottom = 6.0
-bg_color = Color(0.756863, 0.756863, 0.756863, 1)
-corner_radius_top_right = 5
-corner_radius_bottom_right = 5
-corner_radius_bottom_left = 5
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_nn6e1"]
-bg_color = Color(0.756863, 0.756863, 0.756863, 1)
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2sr3g"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.756863, 0.756863, 0.756863, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_y4tl1"]
-content_margin_left = 6.0
-content_margin_top = 6.0
-content_margin_right = 6.0
-content_margin_bottom = 6.0
-bg_color = Color(0.8, 0.8, 0.8, 1)
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_run81"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.627451, 0.627451, 0.627451, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_aqne5"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0.8, 0.8, 0.8, 1)
-
-[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_83jq2"]
-load_path = "res://.godot/imported/graphnode_close.png-52021659e1a4815db57b6acb9e03231c.ctex"
-
-[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_7t6dh"]
-load_path = "res://.godot/imported/graphnode_port.png-422b7e0d06b26fa121885aa4304ea317.ctex"
-
-[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_r8ueu"]
-load_path = "res://.godot/imported/graphnode_resizer.png-a6961383cd6639fd4bc506d7c1e7b97f.ctex"
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hx68e"]
-bg_color = Color(0.376471, 0.376471, 0.376471, 1)
-corner_radius_top_left = 24
-corner_radius_top_right = 24
-corner_radius_bottom_right = 24
-corner_radius_bottom_left = 24
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_230oy"]
-bg_color = Color(0.376471, 0.376471, 0.376471, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(1, 1, 1, 1)
-corner_radius_top_left = 24
-corner_radius_top_right = 24
-corner_radius_bottom_right = 24
-corner_radius_bottom_left = 24
-
-[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_n7all"]
-
-[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_iiy0y"]
-
-[sub_resource type="FontFile" id="FontFile_ce6mk"]
-fallbacks = Array[Font]([ExtResource("2_gdmjv")])
-cache/0/16/0/ascent = 0.0
-cache/0/16/0/descent = 0.0
-cache/0/16/0/underline_position = 0.0
-cache/0/16/0/underline_thickness = 0.0
-cache/0/16/0/scale = 1.0
-cache/0/16/0/kerning_overrides/16/0 = Vector2(0, 0)
-
-[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_y0qlj"]
-load_path = "res://.godot/imported/graphnode_close.png-52021659e1a4815db57b6acb9e03231c.ctex"
-
-[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_afins"]
-load_path = "res://.godot/imported/graphnode_port.png-422b7e0d06b26fa121885aa4304ea317.ctex"
-
-[sub_resource type="CompressedTexture2D" id="CompressedTexture2D_al5dg"]
-load_path = "res://.godot/imported/graphnode_resizer.png-a6961383cd6639fd4bc506d7c1e7b97f.ctex"
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_txtui"]
-content_margin_left = 0.0
-content_margin_top = 0.0
-content_margin_right = 0.0
-content_margin_bottom = 0.0
-bg_color = Color(0.376471, 0.376471, 0.376471, 1)
-corner_detail = 1
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7d6sf"]
-content_margin_left = 0.0
-content_margin_top = 0.0
-content_margin_right = 0.0
-content_margin_bottom = 0.0
-bg_color = Color(0.376471, 0.376471, 0.376471, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(1, 1, 1, 1)
-corner_detail = 1
-
-[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_3g07q"]
-
-[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_oyjia"]
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6ji8m"]
-content_margin_left = 7.0
-content_margin_top = 5.0
-content_margin_right = 7.0
-content_margin_bottom = 5.0
-bg_color = Color(0.8, 0.8, 0.8, 1)
-draw_center = false
-border_width_top = 2
-border_color = Color(0.266667, 0.278431, 0.301961, 1)
-corner_radius_top_left = 5
-corner_radius_top_right = 5
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_4rvke"]
-content_margin_left = 7.0
-content_margin_top = 5.0
-content_margin_right = 7.0
-content_margin_bottom = 5.0
-bg_color = Color(0.145098, 0.14902, 0.164706, 1)
-corner_radius_top_left = 5
-corner_radius_top_right = 5
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7hx0n"]
-content_margin_left = 7.0
-content_margin_top = 5.0
-content_margin_right = 7.0
-content_margin_bottom = 5.0
-bg_color = Color(0.682353, 0.682353, 0.682353, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3y6iv"]
-content_margin_left = 7.0
-content_margin_top = 5.0
-content_margin_right = 7.0
-content_margin_bottom = 5.0
-bg_color = Color(0.854902, 0.854902, 0.854902, 1)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7mlcd"]
-content_margin_left = 5.0
-content_margin_top = 5.0
-content_margin_right = 5.0
-content_margin_bottom = 5.0
-bg_color = Color(0.756863, 0.756863, 0.756863, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_iu5xo"]
-content_margin_left = 10.0
-content_margin_top = 8.0
-content_margin_right = 10.0
-content_margin_bottom = 8.0
-bg_color = Color(0.839216, 0.839216, 0.839216, 1)
-border_width_left = 1
-border_width_top = 1
-border_width_right = 1
-border_width_bottom = 1
-border_color = Color(0.145098, 0.145098, 0.164706, 1)
-corner_radius_top_left = 4
-corner_radius_top_right = 4
-corner_radius_bottom_right = 4
-corner_radius_bottom_left = 4
-corner_detail = 4
-
-[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_h8a7j"]
-content_margin_left = 4.0
-
-[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_lebvd"]
-content_margin_left = 4.0
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mcv0o"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0, 0, 0, 0.6)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
-[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_uf4s7"]
-content_margin_left = 3.0
-content_margin_top = 3.0
-content_margin_right = 3.0
-content_margin_bottom = 3.0
-bg_color = Color(0, 0, 0, 0.6)
-corner_radius_top_left = 3
-corner_radius_top_right = 3
-corner_radius_bottom_right = 3
-corner_radius_bottom_left = 3
-
[sub_resource type="Resource" id="Resource_silay"]
script = ExtResource("4_rhf2q")
name = "Main Font Color"
@@ -661,6 +52,30 @@ name = "Placeholder Color"
orig = Color(0.87451, 0.87451, 0.87451, 0.6)
target = Color(0.169245, 0.169245, 0.169245, 0.6)
+[sub_resource type="Resource" id="Resource_cisvi"]
+script = ExtResource("4_rhf2q")
+name = "Main"
+orig = Color(1, 1, 1, 1)
+target = Color(0.0562916, 0.0562916, 0.0562916, 1)
+
+[sub_resource type="Resource" id="Resource_j2h7k"]
+script = ExtResource("4_rhf2q")
+name = "Secondary"
+orig = Color(0.933333, 0.521569, 0.909804, 1)
+target = Color(0.565764, 0.138889, 0.589763, 1)
+
+[sub_resource type="Resource" id="Resource_8dhbo"]
+script = ExtResource("4_rhf2q")
+name = "MainDisabled"
+orig = Color(0.807843, 0.807843, 0.807843, 1)
+target = Color(0.237539, 0.237539, 0.237539, 1)
+
+[sub_resource type="Resource" id="Resource_5oh4i"]
+script = ExtResource("4_rhf2q")
+name = "Hover"
+orig = Color(0.933333, 0.678431, 0.909804, 1)
+target = Color(0.398892, 0.209142, 0.42588, 1)
+
[sub_resource type="Resource" id="Resource_ub5ur"]
script = ExtResource("4_rhf2q")
name = "Main Background"
@@ -770,150 +185,8 @@ orig = Color(0.356863, 0.356863, 0.356863, 1)
target = Color(0.601223, 0.601223, 0.601223, 1)
[resource]
-Button/colors/font_color = Color(0.105882, 0.105882, 0.105882, 1)
-Button/colors/font_disabled_color = Color(0.109804, 0.109804, 0.109804, 0.501961)
-Button/colors/font_focus_color = Color(0.0901961, 0.0901961, 0.0901961, 1)
-Button/colors/font_hover_color = Color(0.0901961, 0.0901961, 0.0901961, 1)
-Button/colors/font_hover_pressed_color = Color(0, 0, 0, 1)
-Button/colors/font_pressed_color = Color(0, 0, 0, 1)
-Button/colors/icon_hover_pressed_color = Color(0.874128, 0.694643, 0.972002, 1)
-Button/colors/icon_pressed_color = Color(0.792157, 0.478431, 0.94902, 1)
-Button/styles/disabled = SubResource("StyleBoxFlat_xy5i4")
-Button/styles/focus = SubResource("StyleBoxFlat_hus4k")
-Button/styles/hover = SubResource("StyleBoxFlat_roelu")
-Button/styles/hover_pressed = SubResource("StyleBoxFlat_kkdn5")
-Button/styles/normal = SubResource("StyleBoxFlat_l4of7")
-Button/styles/pressed = SubResource("StyleBoxFlat_4k3qb")
-GraphEdit/colors/grid_major = Color(0.137255, 0.141176, 0.152941, 1)
-GraphEdit/colors/grid_minor = Color(0.137255, 0.141176, 0.152941, 1)
-GraphEdit/constants/port_hotzone_inner_extent = 8
-GraphEdit/constants/port_hotzone_outer_extent = 50
-GraphEdit/styles/menu_panel = SubResource("StyleBoxFlat_d5qf7")
-GraphEdit/styles/panel = SubResource("StyleBoxEmpty_lpagw")
-GraphNode/colors/portpreview_color = Color(0.89059, 0.89059, 0.89059, 1)
-GraphNode/colors/title_color = Color(0.87451, 0.878431, 0.886275, 1)
-GraphNode/constants/portpreview_radius = 6
-GraphNode/constants/portpreview_width = 15
-GraphNode/styles/panel = SubResource("StyleBoxFlat_kuqq6")
-GraphNode/styles/panel_selected = SubResource("StyleBoxFlat_p14gl")
-GraphNode/styles/titlebar = SubResource("StyleBoxFlat_5i3qr")
-GraphNode/styles/titlebar_selected = SubResource("StyleBoxFlat_0ya5f")
-GraphNodeTitleLabel/colors/font_outline_color = Color(0.890196, 0.890196, 0.890196, 1)
-GraphNodeTitleLabel/colors/font_shadow_color = Color(0.890196, 0.890196, 0.890196, 1)
-GraphNodeTitleLabel/constants/outline_size = 4
-GraphNodeTitleLabel/constants/shadow_outline_size = 4
-GraphNodeTitleLabel/fonts/font = SubResource("FontVariation_clsk5")
-ItemList/colors/guide_color = Color(0.701961, 0.701961, 0.701961, 0.129412)
-ItemList/styles/hovered = SubResource("StyleBoxFlat_3n2pc")
-ItemList/styles/selected = SubResource("StyleBoxFlat_1bwbq")
-ItemList/styles/selected_focus = SubResource("StyleBoxFlat_mkyjc")
-Label/colors/font_color = Color(0, 0, 0, 1)
-LineEdit/styles/focus = SubResource("StyleBoxFlat_6mlnr")
-LineEdit/styles/normal = SubResource("StyleBoxFlat_axdjs")
-LineEdit/styles/read_only = SubResource("StyleBoxFlat_ssph1")
-MM_AddNodePanel/base_type = &"PanelContainer"
-MM_AddNodePanel/styles/panel = SubResource("StyleBoxFlat_2txad")
-MM_AddNodePanelList/base_type = &"ItemList"
-MM_FilterLineEdit/base_type = &"LineEdit"
-MM_FilterLineEdit/styles/focus = SubResource("StyleBoxFlat_4tvdc")
-MM_FilterLineEdit/styles/normal = SubResource("StyleBoxFlat_a2r0m")
-MM_FlexibleTab/base_type = &"TabBar"
-MM_FlexibleTab/constants/separation = 3
-MM_MainBackground/base_type = &"PanelContainer"
-MM_MainBackground/styles/panel = SubResource("StyleBoxFlat_i67ey")
-MM_NodeCheckbox/base_type = &"Button"
-MM_NodeFloatEdit/base_type = &"Button"
-MM_NodeFloatEdit/font_sizes/font_size = 15
-MM_NodeFloatEdit/fonts/font = SubResource("FontVariation_qdkrv")
-MM_NodeFloatEdit/styles/clip = SubResource("StyleBoxFlat_lsxi0")
-MM_NodeFloatEdit/styles/fill_hover = SubResource("StyleBoxFlat_kt7c2")
-MM_NodeFloatEdit/styles/fill_normal = SubResource("StyleBoxFlat_8gkke")
-MM_NodeFloatEdit/styles/focus = SubResource("StyleBoxFlat_hnrxa")
-MM_NodeFloatEdit/styles/hover = SubResource("StyleBoxFlat_ueqls")
-MM_NodeFloatEdit/styles/normal = SubResource("StyleBoxFlat_qf0cv")
-MM_NodeGradientEdit/base_type = &"Button"
-MM_NodeGradientEditPopup/base_type = &"PanelContainer"
-MM_NodeGradientEditPopup/styles/panel = SubResource("StyleBoxFlat_q6w3u")
-MM_NodeImageEdit/base_type = &"Button"
-MM_NodeOptionEdit/base_type = &"OptionButton"
-MM_NodeOptionEditPopup/base_type = &"PopupMenu"
-MM_NodeOptionEditPopup/styles/hover = SubResource("StyleBoxFlat_l34mb")
-MM_NodeOptionEditPopup/styles/panel = SubResource("StyleBoxFlat_mp37d")
-MM_NodePortGroup/constants/width = 4
-MM_NodePortGroup/styles/panel = SubResource("StyleBoxFlat_wj152")
-MM_NodePropertyLabel/base_type = &"Label"
-MM_NodePropertyLabel/font_sizes/font_size = 15
-MM_PanelBackground/base_type = &"PanelContainer"
-MM_PanelBackground/styles/panel = SubResource("StyleBoxFlat_d58m1")
-MM_ProjectsBackground/base_type = &"Panel"
-MM_ProjectsBackground/styles/panel = SubResource("StyleBoxFlat_nn6e1")
-MM_StatusBarBackground/base_type = &"PanelContainer"
-MM_StatusBarBackground/styles/panel = SubResource("StyleBoxFlat_2sr3g")
-Panel/styles/panel = SubResource("StyleBoxFlat_y4tl1")
-PopupMenu/colors/font_accelerator_color = Color(0.32549, 0.32549, 0.32549, 0.8)
-PopupMenu/colors/font_color = Color(0.105882, 0.105882, 0.105882, 1)
-PopupMenu/colors/font_disabled_color = Color(0.4, 0.4, 0.4, 0.8)
-PopupMenu/colors/font_hover_color = Color(0.105882, 0.105882, 0.105882, 1)
-PopupMenu/styles/hover = SubResource("StyleBoxFlat_run81")
-PopupMenu/styles/panel = SubResource("StyleBoxFlat_aqne5")
-Reroute/colors/close_color = Color(1, 1, 1, 0.7)
-Reroute/colors/resizer_color = Color(1, 1, 1, 0.7)
-Reroute/colors/title_color = Color(1, 1, 1, 1)
-Reroute/constants/close_h_offset = 20
-Reroute/constants/close_offset = 20
-Reroute/constants/port_h_offset = 0
-Reroute/constants/port_offset = 0
-Reroute/constants/separation = 1
-Reroute/constants/title_h_offset = -16
-Reroute/constants/title_offset = 20
-Reroute/icons/close = SubResource("CompressedTexture2D_83jq2")
-Reroute/icons/port = SubResource("CompressedTexture2D_7t6dh")
-Reroute/icons/resizer = SubResource("CompressedTexture2D_r8ueu")
-Reroute/styles/panel = SubResource("StyleBoxFlat_hx68e")
-Reroute/styles/panel_selected = SubResource("StyleBoxFlat_230oy")
-Reroute/styles/titlebar = SubResource("StyleBoxEmpty_n7all")
-Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_iiy0y")
-ReroutePreview/colors/close_color = Color(1, 1, 1, 0.7)
-ReroutePreview/colors/resizer_color = Color(1, 1, 1, 0.7)
-ReroutePreview/colors/title_color = Color(1, 1, 1, 1)
-ReroutePreview/constants/close_h_offset = 20
-ReroutePreview/constants/close_offset = 20
-ReroutePreview/constants/port_h_offset = 0
-ReroutePreview/constants/port_offset = 0
-ReroutePreview/constants/separation = 1
-ReroutePreview/constants/title_h_offset = -16
-ReroutePreview/constants/title_offset = 20
-ReroutePreview/fonts/title_font = SubResource("FontFile_ce6mk")
-ReroutePreview/icons/close = SubResource("CompressedTexture2D_y0qlj")
-ReroutePreview/icons/port = SubResource("CompressedTexture2D_afins")
-ReroutePreview/icons/resizer = SubResource("CompressedTexture2D_al5dg")
-ReroutePreview/styles/panel = SubResource("StyleBoxFlat_txtui")
-ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_7d6sf")
-ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_3g07q")
-ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_oyjia")
-TabBar/colors/font_disabled_color = Color(0.109804, 0.109804, 0.109804, 0.501961)
-TabBar/colors/font_hovered_color = Color(0.0901961, 0.0901961, 0.0901961, 1)
-TabBar/colors/font_selected_color = Color(0.0901961, 0.0901961, 0.0901961, 1)
-TabBar/colors/font_unselected_color = Color(0.0862745, 0.0862745, 0.0862745, 1)
-TabBar/constants/h_separation = 6
-TabBar/styles/tab_focus = SubResource("StyleBoxFlat_6ji8m")
-TabBar/styles/tab_hovered = SubResource("StyleBoxFlat_4rvke")
-TabBar/styles/tab_selected = SubResource("StyleBoxFlat_7hx0n")
-TabBar/styles/tab_unselected = SubResource("StyleBoxFlat_3y6iv")
-TabContainer/styles/panel = SubResource("StyleBoxFlat_7mlcd")
-TooltipLabel/font_sizes/font_size = 15
-TooltipPanel/styles/panel = SubResource("StyleBoxFlat_iu5xo")
-Tree/colors/font_color = Color(0.0862745, 0.0862745, 0.0862745, 1)
-Tree/colors/font_disabled_color = Color(0.109804, 0.109804, 0.109804, 0.501961)
-Tree/colors/font_selected_color = Color(0, 0, 0, 1)
-Tree/constants/draw_guides = 0
-Tree/constants/draw_relationship_lines = 0
-Tree/styles/focus = SubResource("StyleBoxEmpty_h8a7j")
-Tree/styles/panel = SubResource("StyleBoxEmpty_lebvd")
-Tree/styles/selected = SubResource("StyleBoxFlat_mcv0o")
-Tree/styles/selected_focus = SubResource("StyleBoxFlat_uf4s7")
script = ExtResource("5_fagh3")
-base_theme = ExtResource("3_e7v0o")
+base_theme = ExtResource("1_ugsao")
font_color_swaps = Array[ExtResource("4_rhf2q")]([SubResource("Resource_silay"), SubResource("Resource_eavso"), SubResource("Resource_1jhxl"), SubResource("Resource_qiwix"), SubResource("Resource_5yhcl"), SubResource("Resource_vdnfu"), SubResource("Resource_21aar"), SubResource("Resource_us4qf")])
-icon_color_swaps = Array[ExtResource("4_rhf2q")]([])
+icon_color_swaps = Array[ExtResource("4_rhf2q")]([SubResource("Resource_cisvi"), SubResource("Resource_j2h7k"), SubResource("Resource_8dhbo"), SubResource("Resource_5oh4i")])
theme_color_swaps = Array[ExtResource("4_rhf2q")]([SubResource("Resource_ub5ur"), SubResource("Resource_5rv7m"), SubResource("Resource_xqbwo"), SubResource("Resource_a2t6i"), SubResource("Resource_pekt7"), SubResource("Resource_vbpcr"), SubResource("Resource_qngft"), SubResource("Resource_5mixu"), SubResource("Resource_kxmra"), SubResource("Resource_siafh"), SubResource("Resource_s732t"), SubResource("Resource_j1t84"), SubResource("Resource_g7e3b"), SubResource("Resource_oirgf"), SubResource("Resource_1pump"), SubResource("Resource_fxm05"), SubResource("Resource_mfxjg"), SubResource("Resource_upxps")])
diff --git a/material_maker/theme/default.tres b/material_maker/theme/default.tres
new file mode 100644
index 000000000..069576183
--- /dev/null
+++ b/material_maker/theme/default.tres
@@ -0,0 +1,941 @@
+[gd_resource type="Theme" load_steps=99 format=3 uid="uid://b628lwfk6ig2c"]
+
+[ext_resource type="FontFile" uid="uid://dgkwr5jydtk6p" path="res://material_maker/theme/font_rubik/Rubik-VariableFont_wght.ttf" id="1_5tfb1"]
+[ext_resource type="Texture2D" uid="uid://c7mq31csbj1fg" path="res://material_maker/theme/default_theme_icons.svg" id="1_s43fy"]
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_telh7"]
+content_margin_left = 6.0
+content_margin_top = 6.0
+content_margin_right = 6.0
+content_margin_bottom = 6.0
+bg_color = Color(0.0941176, 0.0980392, 0.101961, 1)
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_inl5r"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+bg_color = Color(0.266667, 0.278431, 0.301961, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+corner_radius_bottom_right = 3
+corner_radius_bottom_left = 3
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kvrsn"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+draw_center = false
+border_width_left = 1
+border_width_top = 1
+border_width_right = 1
+border_width_bottom = 1
+border_color = Color(0.490196, 0.505882, 0.545098, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+corner_radius_bottom_right = 3
+corner_radius_bottom_left = 3
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2qiie"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+bg_color = Color(0.266667, 0.278431, 0.301961, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+corner_radius_bottom_right = 3
+corner_radius_bottom_left = 3
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_rxikb"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+bg_color = Color(0.168627, 0.176471, 0.192157, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+corner_radius_bottom_right = 3
+corner_radius_bottom_left = 3
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_chskd"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(80, 112, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_iyqub"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(112, 112, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_td4qu"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(16, 112, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_s31a3"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(48, 112, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_rdh87"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(0, 112, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_8fbk7"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(32, 112, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_5s2d2"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(64, 112, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_vngdy"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(96, 112, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_m1w7u"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(0, 128, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_3ph34"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(16, 128, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_4i44b"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(112, 96, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_uxdun"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(64, 96, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_scuvh"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(80, 96, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_cpts2"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(96, 96, 16, 16)
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_pxlc8"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1)
+corner_radius_top_left = 4
+corner_radius_top_right = 4
+corner_radius_bottom_right = 4
+corner_radius_bottom_left = 4
+corner_detail = 4
+
+[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_62l4s"]
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_uwck0"]
+content_margin_left = 10.0
+content_margin_top = 8.0
+content_margin_right = 10.0
+content_margin_bottom = 8.0
+bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1)
+border_width_left = 1
+border_width_right = 1
+border_width_bottom = 1
+border_color = Color(0.145762, 0.145765, 0.164989, 1)
+corner_radius_bottom_right = 4
+corner_radius_bottom_left = 4
+corner_detail = 4
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ryqkj"]
+content_margin_left = 10.0
+content_margin_top = 8.0
+content_margin_right = 10.0
+content_margin_bottom = 8.0
+bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1)
+border_width_left = 1
+border_width_right = 1
+border_width_bottom = 1
+border_color = Color(0.745098, 0.752941, 0.772549, 1)
+corner_radius_bottom_right = 4
+corner_radius_bottom_left = 4
+corner_detail = 4
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_imqse"]
+content_margin_left = 5.0
+content_margin_top = 5.0
+content_margin_right = 5.0
+content_margin_bottom = 5.0
+bg_color = Color(0.490196, 0.505882, 0.545098, 1)
+border_color = Color(0.490196, 0.505882, 0.545098, 1)
+corner_radius_top_left = 4
+corner_radius_top_right = 4
+corner_detail = 4
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ru0kh"]
+content_margin_left = 5.0
+content_margin_top = 5.0
+content_margin_right = 5.0
+content_margin_bottom = 5.0
+bg_color = Color(0.490196, 0.505882, 0.545098, 1)
+border_width_left = 1
+border_width_top = 1
+border_width_right = 1
+border_color = Color(0.745098, 0.752941, 0.772549, 1)
+corner_radius_top_left = 4
+corner_radius_top_right = 4
+corner_detail = 4
+
+[sub_resource type="FontVariation" id="FontVariation_na26k"]
+base_font = ExtResource("1_5tfb1")
+variation_embolden = 0.8
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_m2221"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+bg_color = Color(0.168627, 0.176471, 0.192157, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+corner_radius_bottom_right = 3
+corner_radius_bottom_left = 3
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_attdh"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+bg_color = Color(0.266667, 0.278431, 0.301961, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+corner_radius_bottom_right = 3
+corner_radius_bottom_left = 3
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_s437y"]
+content_margin_left = 6.0
+content_margin_top = 3.0
+content_margin_right = 6.0
+content_margin_bottom = 3.0
+bg_color = Color(0.168627, 0.176471, 0.192157, 1)
+draw_center = false
+border_width_left = 1
+border_width_top = 1
+border_width_right = 1
+border_width_bottom = 1
+border_color = Color(0.490196, 0.505882, 0.545098, 1)
+corner_radius_top_left = 4
+corner_radius_top_right = 4
+corner_radius_bottom_right = 4
+corner_radius_bottom_left = 4
+corner_detail = 4
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k8x4n"]
+content_margin_left = 10.0
+content_margin_top = 2.0
+content_margin_right = 10.0
+content_margin_bottom = 2.0
+bg_color = Color(0.168627, 0.176471, 0.192157, 1)
+corner_radius_top_left = 5
+corner_radius_top_right = 5
+corner_radius_bottom_right = 5
+corner_radius_bottom_left = 5
+corner_detail = 4
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k7e83"]
+content_margin_left = 6.0
+content_margin_top = 3.0
+content_margin_right = 6.0
+content_margin_bottom = 3.0
+bg_color = Color(0.117647, 0.121569, 0.133333, 1)
+corner_radius_top_left = 4
+corner_radius_top_right = 4
+corner_radius_bottom_right = 4
+corner_radius_bottom_left = 4
+corner_detail = 4
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_f0kci"]
+content_margin_left = 4.0
+content_margin_top = 4.0
+content_margin_right = 4.0
+content_margin_bottom = 4.0
+bg_color = Color(0.0928685, 0.0957873, 0.107466, 1)
+border_width_left = 1
+border_width_top = 1
+border_width_right = 1
+border_width_bottom = 1
+border_color = Color(0.359069, 0.359069, 0.359069, 1)
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dyhk7"]
+content_margin_left = 10.0
+content_margin_top = 2.0
+content_margin_right = 10.0
+content_margin_bottom = 2.0
+bg_color = Color(0.168627, 0.176471, 0.192157, 1)
+border_width_left = 1
+border_width_top = 1
+border_width_right = 1
+border_width_bottom = 1
+border_color = Color(0.266667, 0.278431, 0.301961, 1)
+corner_radius_top_left = 5
+corner_radius_top_right = 5
+corner_radius_bottom_right = 5
+corner_radius_bottom_left = 5
+corner_detail = 4
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_mv8c7"]
+content_margin_left = 10.0
+content_margin_top = 2.0
+content_margin_right = 10.0
+content_margin_bottom = 2.0
+bg_color = Color(0.168627, 0.176471, 0.192157, 1)
+corner_radius_top_left = 5
+corner_radius_top_right = 5
+corner_radius_bottom_right = 5
+corner_radius_bottom_left = 5
+corner_detail = 4
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_8fwsx"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(48, 0, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_gvlse"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(112, 80, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_1yu4y"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(32, 128, 16, 16)
+metadata/scale = 2.0
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_ao7ds"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(48, 128, 16, 16)
+metadata/scale = 2.0
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_hht3q"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(64, 128, 16, 16)
+metadata/scale = 2.0
+metadata/recolor = true
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_q32qs"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(32, 48, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_r3xak"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(48, 48, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_2gawd"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(112, 16, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_x8swe"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(80, 64, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_dsr33"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(64, 64, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_du4od"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(64, 80, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_nkmvd"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(48, 80, 16, 16)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_33srw"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(32, 0, 16, 16)
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wqwm5"]
+content_margin_left = 10.0
+content_margin_top = 10.0
+content_margin_right = 10.0
+content_margin_bottom = 10.0
+bg_color = Color(0.0427646, 0.0427646, 0.0456467, 1)
+
+[sub_resource type="FontVariation" id="FontVariation_80ifi"]
+base_font = ExtResource("1_5tfb1")
+opentype_features = {
+1953396077: 1
+}
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ut30c"]
+bg_color = Color(1, 1, 1, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+corner_radius_bottom_right = 3
+corner_radius_bottom_left = 3
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_b7ktg"]
+bg_color = Color(0.355314, 0.355314, 0.355314, 1)
+corner_radius_top_left = 4
+corner_radius_top_right = 4
+corner_radius_bottom_right = 4
+corner_radius_bottom_left = 4
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hgk0b"]
+bg_color = Color(0.303233, 0.303233, 0.303233, 1)
+corner_radius_top_left = 4
+corner_radius_top_right = 4
+corner_radius_bottom_right = 4
+corner_radius_bottom_left = 4
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_0b15u"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+draw_center = false
+border_width_left = 1
+border_width_top = 1
+border_width_right = 1
+border_width_bottom = 1
+border_color = Color(0.490196, 0.505882, 0.545098, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+corner_radius_bottom_right = 3
+corner_radius_bottom_left = 3
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_r1sff"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+bg_color = Color(0.266667, 0.278431, 0.301961, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+corner_radius_bottom_right = 3
+corner_radius_bottom_left = 3
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8fogc"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+bg_color = Color(0.168627, 0.176471, 0.192157, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+corner_radius_bottom_right = 3
+corner_radius_bottom_left = 3
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_omwbs"]
+content_margin_left = 10.0
+content_margin_top = 8.0
+content_margin_right = 10.0
+content_margin_bottom = 8.0
+bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1)
+border_width_left = 1
+border_width_top = 1
+border_width_right = 1
+border_width_bottom = 1
+border_color = Color(0.145098, 0.145098, 0.164706, 1)
+corner_radius_top_left = 4
+corner_radius_top_right = 4
+corner_radius_bottom_right = 4
+corner_radius_bottom_left = 4
+corner_detail = 4
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_bflk3"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(112, 16, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_3j6py"]
+content_margin_left = 2.0
+content_margin_top = 2.0
+content_margin_right = 2.0
+content_margin_bottom = 2.0
+bg_color = Color(0.207271, 0.216386, 0.234614, 1)
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_j32ac"]
+content_margin_left = 2.0
+content_margin_top = 2.0
+content_margin_right = 2.0
+content_margin_bottom = 2.0
+bg_color = Color(0.168627, 0.176471, 0.192157, 1)
+border_width_left = 1
+border_width_top = 1
+border_width_right = 1
+border_width_bottom = 1
+border_color = Color(0.207843, 0.215686, 0.235294, 1)
+corner_radius_top_left = 2
+corner_radius_top_right = 2
+corner_radius_bottom_right = 2
+corner_radius_bottom_left = 2
+corner_detail = 4
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k2ns1"]
+bg_color = Color(0.8, 0.8, 0.8, 1)
+border_width_left = 1
+border_width_top = 1
+border_width_right = 1
+border_width_bottom = 1
+corner_detail = 1
+shadow_color = Color(0, 0, 0, 1)
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_uujf1"]
+content_margin_left = 6.0
+content_margin_top = 6.0
+content_margin_right = 6.0
+content_margin_bottom = 6.0
+bg_color = Color(0.0941176, 0.0980392, 0.101961, 1)
+corner_radius_top_right = 5
+corner_radius_bottom_right = 5
+corner_radius_bottom_left = 5
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1k0sx"]
+bg_color = Color(0.0941176, 0.0980392, 0.101961, 1)
+corner_radius_top_right = 4
+corner_radius_bottom_right = 4
+corner_radius_bottom_left = 4
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wc6mb"]
+bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1)
+corner_radius_top_left = 24
+corner_radius_top_right = 24
+corner_radius_bottom_right = 24
+corner_radius_bottom_left = 24
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_24h6y"]
+bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1)
+border_width_left = 1
+border_width_top = 1
+border_width_right = 1
+border_width_bottom = 1
+corner_radius_top_left = 24
+corner_radius_top_right = 24
+corner_radius_bottom_right = 24
+corner_radius_bottom_left = 24
+
+[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_l27kp"]
+
+[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_lg0bb"]
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gn0j1"]
+bg_color = Color(0.168627, 0.176471, 0.192157, 1)
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5vt7k"]
+bg_color = Color(0.168627, 0.176471, 0.192157, 1)
+border_width_left = 1
+border_width_top = 1
+border_width_right = 1
+border_width_bottom = 1
+
+[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_xyfhj"]
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_xeqlk"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+bg_color = Color(0.0941176, 0.0980392, 0.101961, 1)
+corner_radius_top_left = 4
+corner_radius_top_right = 4
+corner_radius_bottom_right = 4
+corner_radius_bottom_left = 4
+corner_detail = 4
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dscxc"]
+content_margin_left = 6.0
+content_margin_top = 6.0
+content_margin_right = 6.0
+content_margin_bottom = 6.0
+bg_color = Color(0.117647, 0.121569, 0.133333, 1)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_q4s7x"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(80, 112, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_2h4v4"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(112, 112, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_upgdi"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(16, 112, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_2xbg4"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(48, 112, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_8u2ty"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(0, 112, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_uodmo"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(32, 112, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_5cv8u"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(48, 96, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_bxwwn"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(64, 112, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_ftwxj"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(96, 112, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fq0uc"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+bg_color = Color(0.168627, 0.176471, 0.192157, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+corner_radius_bottom_right = 3
+corner_radius_bottom_left = 3
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8p2hu"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+bg_color = Color(0.117647, 0.121569, 0.133333, 1)
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8sgsn"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+bg_color = Color(0.266667, 0.278431, 0.301961, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+corner_radius_bottom_right = 3
+corner_radius_bottom_left = 3
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kx6bo"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+bg_color = Color(0.168627, 0.176471, 0.192157, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+corner_radius_bottom_right = 3
+corner_radius_bottom_left = 3
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_re015"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+bg_color = Color(0.266667, 0.278431, 0.301961, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+corner_radius_bottom_right = 3
+corner_radius_bottom_left = 3
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_6dsbu"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+bg_color = Color(0.168627, 0.176471, 0.192157, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+corner_radius_bottom_right = 3
+corner_radius_bottom_left = 3
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_1wpt7"]
+atlas = ExtResource("1_s43fy")
+region = Rect2(48, 0, 16, 16)
+metadata/recolor = false
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ax2cv"]
+content_margin_left = 7.0
+content_margin_top = 5.0
+content_margin_right = 7.0
+content_margin_bottom = 5.0
+bg_color = Color(0.117647, 0.121569, 0.133333, 1)
+draw_center = false
+border_width_top = 2
+border_color = Color(0.266667, 0.278431, 0.301961, 1)
+corner_radius_top_left = 5
+corner_radius_top_right = 5
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_708uu"]
+content_margin_left = 7.0
+content_margin_top = 5.0
+content_margin_right = 7.0
+content_margin_bottom = 5.0
+bg_color = Color(0.145098, 0.14902, 0.164706, 1)
+corner_radius_top_left = 5
+corner_radius_top_right = 5
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_r4jxv"]
+content_margin_left = 7.0
+content_margin_top = 5.0
+content_margin_right = 7.0
+content_margin_bottom = 5.0
+bg_color = Color(0.129412, 0.137255, 0.152941, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_w1kc3"]
+content_margin_left = 7.0
+content_margin_top = 5.0
+content_margin_right = 7.0
+content_margin_bottom = 5.0
+bg_color = Color(0.109804, 0.113725, 0.12549, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_wc388"]
+content_margin_left = 5.0
+content_margin_top = 5.0
+content_margin_right = 5.0
+content_margin_bottom = 5.0
+bg_color = Color(0.0941176, 0.0980392, 0.101961, 1)
+corner_radius_top_left = 4
+corner_radius_top_right = 4
+corner_radius_bottom_right = 4
+corner_radius_bottom_left = 4
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_5rnro"]
+content_margin_left = 10.0
+content_margin_top = 8.0
+content_margin_right = 10.0
+content_margin_bottom = 8.0
+bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1)
+border_width_left = 1
+border_width_top = 1
+border_width_right = 1
+border_width_bottom = 1
+border_color = Color(0.145098, 0.145098, 0.164706, 1)
+corner_radius_top_left = 4
+corner_radius_top_right = 4
+corner_radius_bottom_right = 4
+corner_radius_bottom_left = 4
+corner_detail = 4
+
+[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_iwtn1"]
+content_margin_left = 4.0
+
+[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_yrroa"]
+content_margin_left = 4.0
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_x5l5s"]
+content_margin_left = 3.0
+content_margin_top = 3.0
+content_margin_right = 3.0
+content_margin_bottom = 3.0
+bg_color = Color(0.0666667, 0.0666667, 0.0784314, 1)
+corner_radius_top_left = 3
+corner_radius_top_right = 3
+corner_radius_bottom_right = 3
+corner_radius_bottom_left = 3
+
+[resource]
+default_font = ExtResource("1_5tfb1")
+default_font_size = 16
+AcceptDialog/styles/panel = SubResource("StyleBoxFlat_telh7")
+Button/colors/font_color = Color(0.875, 0.875, 0.875, 1)
+Button/colors/font_disabled_color = Color(0.875, 0.875, 0.875, 0.5)
+Button/colors/font_focus_color = Color(0.95, 0.95, 0.95, 1)
+Button/colors/font_hover_color = Color(0.95, 0.95, 0.95, 1)
+Button/colors/font_hover_pressed_color = Color(1, 1, 1, 1)
+Button/colors/font_pressed_color = Color(1, 1, 1, 1)
+Button/colors/icon_disabled_color = Color(1, 1, 1, 0.4)
+Button/colors/icon_focus_color = Color(1, 1, 1, 1)
+Button/colors/icon_hover_color = Color(0.933333, 0.678431, 0.909804, 1)
+Button/colors/icon_hover_pressed_color = Color(0.933333, 0.678431, 0.909804, 1)
+Button/colors/icon_normal_color = Color(1, 1, 1, 1)
+Button/colors/icon_pressed_color = Color(0.933333, 0.521569, 0.909804, 1)
+Button/styles/disabled = SubResource("StyleBoxFlat_inl5r")
+Button/styles/focus = SubResource("StyleBoxFlat_kvrsn")
+Button/styles/hover = SubResource("StyleBoxFlat_2qiie")
+Button/styles/hover_pressed = SubResource("StyleBoxFlat_2qiie")
+Button/styles/normal = SubResource("StyleBoxFlat_rxikb")
+Button/styles/pressed = SubResource("StyleBoxFlat_rxikb")
+CheckBox/colors/icon_disabled_color = Color(1, 1, 1, 0.4)
+CheckBox/colors/icon_focus_color = Color(1, 1, 1, 1)
+CheckBox/colors/icon_hover_color = Color(0.933333, 0.678431, 0.909804, 1)
+CheckBox/colors/icon_hover_pressed_color = Color(0.933333, 0.678431, 0.909804, 1)
+CheckBox/colors/icon_normal_color = Color(1, 1, 1, 1)
+CheckBox/colors/icon_pressed_color = Color(0.933333, 0.521569, 0.909804, 1)
+CheckBox/icons/checked = SubResource("AtlasTexture_chskd")
+CheckBox/icons/checked_disabled = SubResource("AtlasTexture_iyqub")
+CheckBox/icons/radio_checked = SubResource("AtlasTexture_td4qu")
+CheckBox/icons/radio_checked_disabled = SubResource("AtlasTexture_s31a3")
+CheckBox/icons/radio_unchecked = SubResource("AtlasTexture_rdh87")
+CheckBox/icons/radio_unchecked_disabled = SubResource("AtlasTexture_8fbk7")
+CheckBox/icons/unchecked = SubResource("AtlasTexture_5s2d2")
+CheckBox/icons/unchecked_disabled = SubResource("AtlasTexture_vngdy")
+GraphEdit/colors/grid_major = Color(0.137255, 0.141176, 0.152941, 1)
+GraphEdit/colors/grid_minor = Color(0.137255, 0.141176, 0.152941, 1)
+GraphEdit/constants/port_hotzone_inner_extent = 8
+GraphEdit/constants/port_hotzone_outer_extent = 50
+GraphEdit/icons/grid_toggle = SubResource("AtlasTexture_m1w7u")
+GraphEdit/icons/minimap_toggle = SubResource("AtlasTexture_3ph34")
+GraphEdit/icons/snapping_toggle = SubResource("AtlasTexture_4i44b")
+GraphEdit/icons/zoom_in = SubResource("AtlasTexture_uxdun")
+GraphEdit/icons/zoom_out = SubResource("AtlasTexture_scuvh")
+GraphEdit/icons/zoom_reset = SubResource("AtlasTexture_cpts2")
+GraphEdit/styles/menu_panel = SubResource("StyleBoxFlat_pxlc8")
+GraphEdit/styles/panel = SubResource("StyleBoxEmpty_62l4s")
+GraphNode/colors/portpreview_color = Color(0.89059, 0.89059, 0.89059, 1)
+GraphNode/colors/title_color = Color(0.87451, 0.878431, 0.886275, 1)
+GraphNode/constants/portpreview_radius = 6
+GraphNode/constants/portpreview_width = 15
+GraphNode/styles/panel = SubResource("StyleBoxFlat_uwck0")
+GraphNode/styles/panel_selected = SubResource("StyleBoxFlat_ryqkj")
+GraphNode/styles/titlebar = SubResource("StyleBoxFlat_imqse")
+GraphNode/styles/titlebar_selected = SubResource("StyleBoxFlat_ru0kh")
+GraphNodeTitleLabel/colors/font_outline_color = Color(0.168627, 0.176471, 0.192157, 1)
+GraphNodeTitleLabel/colors/font_shadow_color = Color(0.168627, 0.176471, 0.192157, 1)
+GraphNodeTitleLabel/constants/outline_size = 4
+GraphNodeTitleLabel/constants/shadow_outline_size = 4
+GraphNodeTitleLabel/fonts/font = SubResource("FontVariation_na26k")
+ItemList/colors/guide_color = Color(0.701961, 0.701961, 0.701961, 0.129412)
+ItemList/styles/hovered = SubResource("StyleBoxFlat_m2221")
+ItemList/styles/selected = SubResource("StyleBoxFlat_attdh")
+ItemList/styles/selected_focus = SubResource("StyleBoxFlat_attdh")
+Label/colors/font_color = Color(1, 1, 1, 1)
+LineEdit/colors/font_color = Color(0.875, 0.875, 0.875, 1)
+LineEdit/colors/font_placeholder_color = Color(0.875, 0.875, 0.875, 0.6)
+LineEdit/colors/font_selected_color = Color(1, 1, 1, 1)
+LineEdit/colors/font_uneditable_color = Color(0.875, 0.875, 0.875, 0.5)
+LineEdit/colors/selection_color = Color(0.5, 0.5, 0.5, 1)
+LineEdit/styles/focus = SubResource("StyleBoxFlat_s437y")
+LineEdit/styles/normal = SubResource("StyleBoxFlat_k8x4n")
+LineEdit/styles/read_only = SubResource("StyleBoxFlat_k7e83")
+MM_AddNodePanel/base_type = &"PanelContainer"
+MM_AddNodePanel/styles/panel = SubResource("StyleBoxFlat_f0kci")
+MM_AddNodePanelList/base_type = &"ItemList"
+MM_FilterLineEdit/base_type = &"LineEdit"
+MM_FilterLineEdit/styles/focus = SubResource("StyleBoxFlat_dyhk7")
+MM_FilterLineEdit/styles/normal = SubResource("StyleBoxFlat_mv8c7")
+MM_FlexibleTab/base_type = &"TabBar"
+MM_FlexibleTab/constants/separation = 3
+MM_FlexibleTab/icons/close = SubResource("AtlasTexture_8fwsx")
+MM_FlexibleTab/icons/undock = SubResource("AtlasTexture_gvlse")
+MM_Icons/icons/2D_preview = SubResource("AtlasTexture_1yu4y")
+MM_Icons/icons/3D_preview = SubResource("AtlasTexture_ao7ds")
+MM_Icons/icons/3D_preview_control = SubResource("AtlasTexture_hht3q")
+MM_Icons/icons/arrow_left = SubResource("AtlasTexture_q32qs")
+MM_Icons/icons/arrow_right = SubResource("AtlasTexture_r3xak")
+MM_Icons/icons/dropdown = SubResource("AtlasTexture_2gawd")
+MM_Icons/icons/environment = SubResource("AtlasTexture_x8swe")
+MM_Icons/icons/model = SubResource("AtlasTexture_dsr33")
+MM_Icons/icons/pin_pinned = SubResource("AtlasTexture_du4od")
+MM_Icons/icons/pin_unpinned = SubResource("AtlasTexture_nkmvd")
+MM_Icons/icons/settings = SubResource("AtlasTexture_33srw")
+MM_MainBackground/base_type = &"PanelContainer"
+MM_MainBackground/styles/panel = SubResource("StyleBoxFlat_wqwm5")
+MM_NodeCheckbox/base_type = &"Button"
+MM_NodeFloatEdit/base_type = &"Button"
+MM_NodeFloatEdit/font_sizes/font_size = 15
+MM_NodeFloatEdit/fonts/font = SubResource("FontVariation_80ifi")
+MM_NodeFloatEdit/styles/clip = SubResource("StyleBoxFlat_ut30c")
+MM_NodeFloatEdit/styles/fill_hover = SubResource("StyleBoxFlat_b7ktg")
+MM_NodeFloatEdit/styles/fill_normal = SubResource("StyleBoxFlat_hgk0b")
+MM_NodeFloatEdit/styles/focus = SubResource("StyleBoxFlat_0b15u")
+MM_NodeFloatEdit/styles/hover = SubResource("StyleBoxFlat_r1sff")
+MM_NodeFloatEdit/styles/normal = SubResource("StyleBoxFlat_8fogc")
+MM_NodeGradientEdit/base_type = &"Button"
+MM_NodeGradientEditPopup/base_type = &"PanelContainer"
+MM_NodeGradientEditPopup/styles/panel = SubResource("StyleBoxFlat_omwbs")
+MM_NodeImageEdit/base_type = &"Button"
+MM_NodeOptionEdit/base_type = &"OptionButton"
+MM_NodeOptionEdit/colors/icon_disabled_color = Color(1, 1, 1, 0.4)
+MM_NodeOptionEdit/colors/icon_focus_color = Color(1, 1, 1, 1)
+MM_NodeOptionEdit/colors/icon_hover_color = Color(0.933333, 0.678431, 0.909804, 1)
+MM_NodeOptionEdit/colors/icon_hover_pressed_color = Color(0.933333, 0.678431, 0.909804, 1)
+MM_NodeOptionEdit/colors/icon_normal_color = Color(1, 1, 1, 1)
+MM_NodeOptionEdit/colors/icon_pressed_color = Color(0.933333, 0.521569, 0.909804, 1)
+MM_NodeOptionEdit/icons/arrow = SubResource("AtlasTexture_bflk3")
+MM_NodeOptionEditPopup/base_type = &"PopupMenu"
+MM_NodeOptionEditPopup/styles/hover = SubResource("StyleBoxFlat_3j6py")
+MM_NodeOptionEditPopup/styles/panel = SubResource("StyleBoxFlat_j32ac")
+MM_NodePortGroup/constants/width = 4
+MM_NodePortGroup/styles/panel = SubResource("StyleBoxFlat_k2ns1")
+MM_NodePropertyLabel/base_type = &"Label"
+MM_NodePropertyLabel/font_sizes/font_size = 15
+MM_PanelBackground/base_type = &"PanelContainer"
+MM_PanelBackground/styles/panel = SubResource("StyleBoxFlat_uujf1")
+MM_ProjectsBackground/base_type = &"Panel"
+MM_ProjectsBackground/styles/panel = SubResource("StyleBoxFlat_1k0sx")
+MM_Reroute/base_type = &"GraphNode"
+MM_Reroute/styles/panel = SubResource("StyleBoxFlat_wc6mb")
+MM_Reroute/styles/panel_selected = SubResource("StyleBoxFlat_24h6y")
+MM_Reroute/styles/titlebar = SubResource("StyleBoxEmpty_l27kp")
+MM_Reroute/styles/titlebar_selected = SubResource("StyleBoxEmpty_lg0bb")
+MM_ReroutePreview/base_type = &"GraphNode"
+MM_ReroutePreview/styles/panel = SubResource("StyleBoxFlat_gn0j1")
+MM_ReroutePreview/styles/panel_selected = SubResource("StyleBoxFlat_5vt7k")
+MM_ReroutePreview/styles/titlebar = SubResource("StyleBoxEmpty_xyfhj")
+MM_ReroutePreview/styles/titlebar_selected = SubResource("StyleBoxEmpty_xyfhj")
+MM_StatusBarBackground/base_type = &"PanelContainer"
+MM_StatusBarBackground/styles/panel = SubResource("StyleBoxFlat_xeqlk")
+Panel/styles/panel = SubResource("StyleBoxFlat_dscxc")
+PopupMenu/colors/font_accelerator_color = Color(0.7, 0.7, 0.7, 0.8)
+PopupMenu/colors/font_color = Color(0.875, 0.875, 0.875, 1)
+PopupMenu/colors/font_disabled_color = Color(0.4, 0.4, 0.4, 0.8)
+PopupMenu/colors/font_hover_color = Color(0.875, 0.875, 0.875, 1)
+PopupMenu/icons/checked = SubResource("AtlasTexture_q4s7x")
+PopupMenu/icons/checked_disabled = SubResource("AtlasTexture_2h4v4")
+PopupMenu/icons/radio_checked = SubResource("AtlasTexture_upgdi")
+PopupMenu/icons/radio_checked_disabled = SubResource("AtlasTexture_2xbg4")
+PopupMenu/icons/radio_unchecked = SubResource("AtlasTexture_8u2ty")
+PopupMenu/icons/radio_unchecked_disabled = SubResource("AtlasTexture_uodmo")
+PopupMenu/icons/submenu = SubResource("AtlasTexture_5cv8u")
+PopupMenu/icons/unchecked = SubResource("AtlasTexture_bxwwn")
+PopupMenu/icons/unchecked_disabled = SubResource("AtlasTexture_ftwxj")
+PopupMenu/styles/hover = SubResource("StyleBoxFlat_fq0uc")
+PopupMenu/styles/panel = SubResource("StyleBoxFlat_8p2hu")
+SpinBox/colors/down_disabled_icon_modulate = Color(0.875, 0.875, 0.875, 0.5)
+SpinBox/colors/down_hover_icon_modulate = Color(1, 1, 1, 1)
+SpinBox/colors/down_icon_modulate = Color(1, 1, 1, 1)
+SpinBox/colors/down_pressed_icon_modulate = Color(1, 1, 1, 1)
+SpinBox/colors/up_disabled_icon_modulate = Color(0.875, 0.875, 0.875, 0.5)
+SpinBox/colors/up_hover_icon_modulate = Color(1, 1, 1, 1)
+SpinBox/colors/up_icon_modulate = Color(1, 1, 1, 1)
+SpinBox/colors/up_pressed_icon_modulate = Color(1, 1, 1, 1)
+SpinBox/styles/down_background_hovered = SubResource("StyleBoxFlat_8sgsn")
+SpinBox/styles/down_background_pressed = SubResource("StyleBoxFlat_kx6bo")
+SpinBox/styles/up_background_hovered = SubResource("StyleBoxFlat_re015")
+SpinBox/styles/up_background_pressed = SubResource("StyleBoxFlat_6dsbu")
+TabBar/colors/font_disabled_color = Color(0.875, 0.875, 0.875, 0.5)
+TabBar/colors/font_hovered_color = Color(0.95, 0.95, 0.95, 1)
+TabBar/colors/font_selected_color = Color(0.95, 0.95, 0.95, 1)
+TabBar/colors/font_unselected_color = Color(0.7, 0.7, 0.7, 1)
+TabBar/constants/h_separation = 6
+TabBar/icons/close = SubResource("AtlasTexture_1wpt7")
+TabBar/styles/tab_focus = SubResource("StyleBoxFlat_ax2cv")
+TabBar/styles/tab_hovered = SubResource("StyleBoxFlat_708uu")
+TabBar/styles/tab_selected = SubResource("StyleBoxFlat_r4jxv")
+TabBar/styles/tab_unselected = SubResource("StyleBoxFlat_w1kc3")
+TabContainer/styles/panel = SubResource("StyleBoxFlat_wc388")
+TooltipLabel/font_sizes/font_size = 15
+TooltipPanel/styles/panel = SubResource("StyleBoxFlat_5rnro")
+Tree/colors/font_color = Color(0.7, 0.7, 0.7, 1)
+Tree/colors/font_disabled_color = Color(0.875, 0.875, 0.875, 0.5)
+Tree/colors/font_selected_color = Color(1, 1, 1, 1)
+Tree/constants/draw_guides = 0
+Tree/constants/draw_relationship_lines = 0
+Tree/styles/focus = SubResource("StyleBoxEmpty_iwtn1")
+Tree/styles/panel = SubResource("StyleBoxEmpty_yrroa")
+Tree/styles/selected = SubResource("StyleBoxFlat_x5l5s")
+Tree/styles/selected_focus = SubResource("StyleBoxFlat_x5l5s")
diff --git a/material_maker/theme/default_theme_icons.svg b/material_maker/theme/default_theme_icons.svg
new file mode 100644
index 000000000..7171625b2
--- /dev/null
+++ b/material_maker/theme/default_theme_icons.svg
@@ -0,0 +1,4083 @@
+
+
+
+
diff --git a/material_maker/theme/light/curve_presets.svg.import b/material_maker/theme/default_theme_icons.svg.import
similarity index 67%
rename from material_maker/theme/light/curve_presets.svg.import
rename to material_maker/theme/default_theme_icons.svg.import
index 45d23c210..de154dfc4 100644
--- a/material_maker/theme/light/curve_presets.svg.import
+++ b/material_maker/theme/default_theme_icons.svg.import
@@ -2,16 +2,16 @@
importer="texture"
type="CompressedTexture2D"
-uid="uid://cpmvxmcg22a3o"
-path="res://.godot/imported/curve_presets.svg-4313d3fe14ef80d1435b52b6b7c7763e.ctex"
+uid="uid://c7mq31csbj1fg"
+path="res://.godot/imported/default_theme_icons.svg-68308e5a0a34a69fc6ba57ebd6c4baca.ctex"
metadata={
"vram_texture": false
}
[deps]
-source_file="res://material_maker/theme/light/curve_presets.svg"
-dest_files=["res://.godot/imported/curve_presets.svg-4313d3fe14ef80d1435b52b6b7c7763e.ctex"]
+source_file="res://material_maker/theme/default_theme_icons.svg"
+dest_files=["res://.godot/imported/default_theme_icons.svg-68308e5a0a34a69fc6ba57ebd6c4baca.ctex"]
[params]
@@ -32,6 +32,6 @@ process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
-svg/scale=0.75
+svg/scale=1.0
editor/scale_with_editor_scale=false
editor/convert_colors_with_editor_theme=false
diff --git a/material_maker/theme/enhanced_theme_system/enhanced_theme.gd b/material_maker/theme/enhanced_theme_system/enhanced_theme.gd
index 42f733c9a..a6de505f7 100644
--- a/material_maker/theme/enhanced_theme_system/enhanced_theme.gd
+++ b/material_maker/theme/enhanced_theme_system/enhanced_theme.gd
@@ -1,4 +1,3 @@
-@tool
extends Theme
class_name EnhancedTheme
@@ -64,12 +63,19 @@ func update(at:Node=null) -> void:
for swap in theme_color_swaps:
theme_color_swap_dict[swap.orig.to_html()] = swap.target.to_html()
+ var icon_color_swap_dict := {}
+ for swap in icon_color_swaps:
+ icon_color_swap_dict[swap.orig.to_html()] = swap.target.to_html()
+
## COLORS
for type in get_color_type_list():
for color_name in get_color_list(type):
if "font_" in color_name:
if get_color(color_name, type).to_html() in font_color_swap_dict:
set_color(color_name, type, Color(font_color_swap_dict[get_color(color_name, type).to_html()]))
+ elif "icon_" in color_name:
+ if get_color(color_name, type).to_html() in icon_color_swap_dict:
+ set_color(color_name, type, Color(icon_color_swap_dict[get_color(color_name, type).to_html()]))
else:
if get_color(color_name, type).to_html() in theme_color_swap_dict:
set_color(color_name, type, Color(theme_color_swap_dict[get_color(color_name, type).to_html()]))
@@ -135,7 +141,10 @@ func update(at:Node=null) -> void:
var texture: AtlasTexture = get_icon(icon_name, type)
var texture_scale: float = texture.get_meta("scale", 1)# * scale
- texture.atlas = get_dynamic_svg(path, texture_scale, icon_color_swaps)
+ if base_texture.has_meta("recolor"):
+ texture.atlas = get_dynamic_svg(path, texture_scale, icon_color_swaps)
+ else:
+ texture.atlas = get_dynamic_svg(path, texture_scale)
var base_region: Rect2 = base_texture.region
texture.region.position = base_region.position * texture_scale
diff --git a/material_maker/theme/light/checkbox_checked.png b/material_maker/theme/light/checkbox_checked.png
deleted file mode 100644
index 2d165e515..000000000
Binary files a/material_maker/theme/light/checkbox_checked.png and /dev/null differ
diff --git a/material_maker/theme/light/checkbox_checked.png.import b/material_maker/theme/light/checkbox_checked.png.import
deleted file mode 100644
index 656ce51c0..000000000
--- a/material_maker/theme/light/checkbox_checked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bg66nf03a1wj0"
-path="res://.godot/imported/checkbox_checked.png-c0986c182e6fca2791532c43a111e8f5.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/checkbox_checked.png"
-dest_files=["res://.godot/imported/checkbox_checked.png-c0986c182e6fca2791532c43a111e8f5.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/checkbox_radio_checked.png b/material_maker/theme/light/checkbox_radio_checked.png
deleted file mode 100644
index 0514226a4..000000000
Binary files a/material_maker/theme/light/checkbox_radio_checked.png and /dev/null differ
diff --git a/material_maker/theme/light/checkbox_radio_checked.png.import b/material_maker/theme/light/checkbox_radio_checked.png.import
deleted file mode 100644
index 1e864404b..000000000
--- a/material_maker/theme/light/checkbox_radio_checked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://ctamubqvnfppj"
-path="res://.godot/imported/checkbox_radio_checked.png-8e1a3984b7a5589bd0f50cf397fea5ba.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/checkbox_radio_checked.png"
-dest_files=["res://.godot/imported/checkbox_radio_checked.png-8e1a3984b7a5589bd0f50cf397fea5ba.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/checkbox_radio_unchecked.png b/material_maker/theme/light/checkbox_radio_unchecked.png
deleted file mode 100644
index e440674a3..000000000
Binary files a/material_maker/theme/light/checkbox_radio_unchecked.png and /dev/null differ
diff --git a/material_maker/theme/light/checkbox_radio_unchecked.png.import b/material_maker/theme/light/checkbox_radio_unchecked.png.import
deleted file mode 100644
index c40a94588..000000000
--- a/material_maker/theme/light/checkbox_radio_unchecked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://8ulk7ii706l4"
-path="res://.godot/imported/checkbox_radio_unchecked.png-faf4dd51bc2504619e8a09cf6d90bc5c.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/checkbox_radio_unchecked.png"
-dest_files=["res://.godot/imported/checkbox_radio_unchecked.png-faf4dd51bc2504619e8a09cf6d90bc5c.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/checkbox_unchecked.png b/material_maker/theme/light/checkbox_unchecked.png
deleted file mode 100644
index 41cfd15e8..000000000
Binary files a/material_maker/theme/light/checkbox_unchecked.png and /dev/null differ
diff --git a/material_maker/theme/light/checkbox_unchecked.png.import b/material_maker/theme/light/checkbox_unchecked.png.import
deleted file mode 100644
index c4c5acd98..000000000
--- a/material_maker/theme/light/checkbox_unchecked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://es1uarb585af"
-path="res://.godot/imported/checkbox_unchecked.png-7033f726905719f5498de7608a33e662.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/checkbox_unchecked.png"
-dest_files=["res://.godot/imported/checkbox_unchecked.png-7033f726905719f5498de7608a33e662.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/checkbutton_off.png b/material_maker/theme/light/checkbutton_off.png
deleted file mode 100644
index 3667ec718..000000000
Binary files a/material_maker/theme/light/checkbutton_off.png and /dev/null differ
diff --git a/material_maker/theme/light/checkbutton_off.png.import b/material_maker/theme/light/checkbutton_off.png.import
deleted file mode 100644
index 65172c78c..000000000
--- a/material_maker/theme/light/checkbutton_off.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cgk8gew643rn5"
-path="res://.godot/imported/checkbutton_off.png-1cb84c147502c8b7f3ea69d47ea884d4.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/checkbutton_off.png"
-dest_files=["res://.godot/imported/checkbutton_off.png-1cb84c147502c8b7f3ea69d47ea884d4.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/checkbutton_off_disabled.png b/material_maker/theme/light/checkbutton_off_disabled.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/light/checkbutton_off_disabled.png and /dev/null differ
diff --git a/material_maker/theme/light/checkbutton_off_disabled.png.import b/material_maker/theme/light/checkbutton_off_disabled.png.import
deleted file mode 100644
index daced6094..000000000
--- a/material_maker/theme/light/checkbutton_off_disabled.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://ctqc4hwr06jcn"
-path="res://.godot/imported/checkbutton_off_disabled.png-24b4ec5b1695295cbc19d95c1bb71df0.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/checkbutton_off_disabled.png"
-dest_files=["res://.godot/imported/checkbutton_off_disabled.png-24b4ec5b1695295cbc19d95c1bb71df0.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/checkbutton_on.png b/material_maker/theme/light/checkbutton_on.png
deleted file mode 100644
index c2f2c6624..000000000
Binary files a/material_maker/theme/light/checkbutton_on.png and /dev/null differ
diff --git a/material_maker/theme/light/checkbutton_on.png.import b/material_maker/theme/light/checkbutton_on.png.import
deleted file mode 100644
index 980755fc6..000000000
--- a/material_maker/theme/light/checkbutton_on.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://btdgduwum6udt"
-path="res://.godot/imported/checkbutton_on.png-3b0b80bdea16795a115ff6d92712c373.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/checkbutton_on.png"
-dest_files=["res://.godot/imported/checkbutton_on.png-3b0b80bdea16795a115ff6d92712c373.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/checkbutton_on_disabled.png b/material_maker/theme/light/checkbutton_on_disabled.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/light/checkbutton_on_disabled.png and /dev/null differ
diff --git a/material_maker/theme/light/checkbutton_on_disabled.png.import b/material_maker/theme/light/checkbutton_on_disabled.png.import
deleted file mode 100644
index 7f301ee86..000000000
--- a/material_maker/theme/light/checkbutton_on_disabled.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://b5spo48w2n735"
-path="res://.godot/imported/checkbutton_on_disabled.png-bf0866103947456e4950ca1fdd9d770c.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/checkbutton_on_disabled.png"
-dest_files=["res://.godot/imported/checkbutton_on_disabled.png-bf0866103947456e4950ca1fdd9d770c.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/colorpickerbutton_bg.png b/material_maker/theme/light/colorpickerbutton_bg.png
deleted file mode 100644
index 8c788b8ab..000000000
Binary files a/material_maker/theme/light/colorpickerbutton_bg.png and /dev/null differ
diff --git a/material_maker/theme/light/colorpickerbutton_bg.png.import b/material_maker/theme/light/colorpickerbutton_bg.png.import
deleted file mode 100644
index 8e7c4f881..000000000
--- a/material_maker/theme/light/colorpickerbutton_bg.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dwx330u4qmbty"
-path="res://.godot/imported/colorpickerbutton_bg.png-0262c5cb4b94c21f08bd5970b9e08c51.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/colorpickerbutton_bg.png"
-dest_files=["res://.godot/imported/colorpickerbutton_bg.png-0262c5cb4b94c21f08bd5970b9e08c51.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/curve_preset_bevel.tres b/material_maker/theme/light/curve_preset_bevel.tres
deleted file mode 100644
index 932d57fd4..000000000
--- a/material_maker/theme/light/curve_preset_bevel.tres
+++ /dev/null
@@ -1,8 +0,0 @@
-[gd_resource type="AtlasTexture" load_steps=2 format=2]
-
-[ext_resource path="res://material_maker/theme/light/curve_presets.svg" type="Texture2D" id=1]
-
-[resource]
-flags = 4
-atlas = ExtResource( 1 )
-region = Rect2( 32, 16, 16, 16 )
diff --git a/material_maker/theme/light/curve_preset_bounce.tres b/material_maker/theme/light/curve_preset_bounce.tres
deleted file mode 100644
index 4c2160279..000000000
--- a/material_maker/theme/light/curve_preset_bounce.tres
+++ /dev/null
@@ -1,8 +0,0 @@
-[gd_resource type="AtlasTexture" load_steps=2 format=2]
-
-[ext_resource path="res://material_maker/theme/light/curve_presets.svg" type="Texture2D" id=1]
-
-[resource]
-flags = 4
-atlas = ExtResource( 1 )
-region = Rect2( 16, 16, 16, 16 )
diff --git a/material_maker/theme/light/curve_preset_easein.tres b/material_maker/theme/light/curve_preset_easein.tres
deleted file mode 100644
index d3f57ddcb..000000000
--- a/material_maker/theme/light/curve_preset_easein.tres
+++ /dev/null
@@ -1,8 +0,0 @@
-[gd_resource type="AtlasTexture" load_steps=2 format=2]
-
-[ext_resource path="res://material_maker/theme/light/curve_presets.svg" type="Texture2D" id=1]
-
-[resource]
-flags = 4
-atlas = ExtResource( 1 )
-region = Rect2( 48, 0, 16, 16 )
diff --git a/material_maker/theme/light/curve_preset_easeinout.tres b/material_maker/theme/light/curve_preset_easeinout.tres
deleted file mode 100644
index 8b9e71c06..000000000
--- a/material_maker/theme/light/curve_preset_easeinout.tres
+++ /dev/null
@@ -1,8 +0,0 @@
-[gd_resource type="AtlasTexture" load_steps=2 format=2]
-
-[ext_resource path="res://material_maker/theme/light/curve_presets.svg" type="Texture2D" id=1]
-
-[resource]
-flags = 4
-atlas = ExtResource( 1 )
-region = Rect2( 32, 0, 16, 16 )
diff --git a/material_maker/theme/light/curve_preset_easeout.tres b/material_maker/theme/light/curve_preset_easeout.tres
deleted file mode 100644
index d7a317f87..000000000
--- a/material_maker/theme/light/curve_preset_easeout.tres
+++ /dev/null
@@ -1,8 +0,0 @@
-[gd_resource type="AtlasTexture" load_steps=2 format=2]
-
-[ext_resource path="res://material_maker/theme/light/curve_presets.svg" type="Texture2D" id=1]
-
-[resource]
-flags = 4
-atlas = ExtResource( 1 )
-region = Rect2( 16, 0, 16, 16 )
diff --git a/material_maker/theme/light/curve_preset_linear.tres b/material_maker/theme/light/curve_preset_linear.tres
deleted file mode 100644
index 2b8d2a526..000000000
--- a/material_maker/theme/light/curve_preset_linear.tres
+++ /dev/null
@@ -1,8 +0,0 @@
-[gd_resource type="AtlasTexture" load_steps=2 format=2]
-
-[ext_resource path="res://material_maker/theme/light/curve_presets.svg" type="Texture2D" id=1]
-
-[resource]
-flags = 4
-atlas = ExtResource( 1 )
-region = Rect2( 0, 0, 16, 16 )
diff --git a/material_maker/theme/light/curve_preset_sawtooth.tres b/material_maker/theme/light/curve_preset_sawtooth.tres
deleted file mode 100644
index 1f529e65e..000000000
--- a/material_maker/theme/light/curve_preset_sawtooth.tres
+++ /dev/null
@@ -1,8 +0,0 @@
-[gd_resource type="AtlasTexture" load_steps=2 format=2]
-
-[ext_resource path="res://material_maker/theme/light/curve_presets.svg" type="Texture2D" id=1]
-
-[resource]
-flags = 4
-atlas = ExtResource( 1 )
-region = Rect2( 0, 16, 16, 16 )
diff --git a/material_maker/theme/light/curve_presets.svg b/material_maker/theme/light/curve_presets.svg
deleted file mode 100644
index bca336235..000000000
--- a/material_maker/theme/light/curve_presets.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
diff --git a/material_maker/theme/light/graphedit_minus.png b/material_maker/theme/light/graphedit_minus.png
deleted file mode 100644
index bc1364660..000000000
Binary files a/material_maker/theme/light/graphedit_minus.png and /dev/null differ
diff --git a/material_maker/theme/light/graphedit_minus.png.import b/material_maker/theme/light/graphedit_minus.png.import
deleted file mode 100644
index 17d4c835d..000000000
--- a/material_maker/theme/light/graphedit_minus.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bmhbike4jtlfs"
-path="res://.godot/imported/graphedit_minus.png-b1aca9866fb7e549935e53deff95d5da.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/graphedit_minus.png"
-dest_files=["res://.godot/imported/graphedit_minus.png-b1aca9866fb7e549935e53deff95d5da.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/graphedit_more.png b/material_maker/theme/light/graphedit_more.png
deleted file mode 100644
index 0fe70f892..000000000
Binary files a/material_maker/theme/light/graphedit_more.png and /dev/null differ
diff --git a/material_maker/theme/light/graphedit_more.png.import b/material_maker/theme/light/graphedit_more.png.import
deleted file mode 100644
index ba010fc19..000000000
--- a/material_maker/theme/light/graphedit_more.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bybvmge6fuutt"
-path="res://.godot/imported/graphedit_more.png-cef082639ea640460d2ce53f0aba549b.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/graphedit_more.png"
-dest_files=["res://.godot/imported/graphedit_more.png-cef082639ea640460d2ce53f0aba549b.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/graphedit_reset.png b/material_maker/theme/light/graphedit_reset.png
deleted file mode 100644
index f88566330..000000000
Binary files a/material_maker/theme/light/graphedit_reset.png and /dev/null differ
diff --git a/material_maker/theme/light/graphedit_reset.png.import b/material_maker/theme/light/graphedit_reset.png.import
deleted file mode 100644
index a12371b10..000000000
--- a/material_maker/theme/light/graphedit_reset.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cb5a5pybkhgwl"
-path="res://.godot/imported/graphedit_reset.png-b8030e3c88a86f53da931c881eb28e25.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/graphedit_reset.png"
-dest_files=["res://.godot/imported/graphedit_reset.png-b8030e3c88a86f53da931c881eb28e25.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/graphedit_snap.png b/material_maker/theme/light/graphedit_snap.png
deleted file mode 100644
index 7aa51dd65..000000000
Binary files a/material_maker/theme/light/graphedit_snap.png and /dev/null differ
diff --git a/material_maker/theme/light/graphedit_snap.png.import b/material_maker/theme/light/graphedit_snap.png.import
deleted file mode 100644
index 1f5f55b81..000000000
--- a/material_maker/theme/light/graphedit_snap.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://ddkkmsn0g8pud"
-path="res://.godot/imported/graphedit_snap.png-c29c902a2316a7abc48ace8b4c45933e.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/graphedit_snap.png"
-dest_files=["res://.godot/imported/graphedit_snap.png-c29c902a2316a7abc48ace8b4c45933e.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/graphnode_close.png b/material_maker/theme/light/graphnode_close.png
deleted file mode 100644
index b3fc6cb3b..000000000
Binary files a/material_maker/theme/light/graphnode_close.png and /dev/null differ
diff --git a/material_maker/theme/light/graphnode_close.png.import b/material_maker/theme/light/graphnode_close.png.import
deleted file mode 100644
index d8ae35558..000000000
--- a/material_maker/theme/light/graphnode_close.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bnr2ru7nip2fx"
-path="res://.godot/imported/graphnode_close.png-fb83d6940d5e5d00c8e3174c7f40fbd5.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/graphnode_close.png"
-dest_files=["res://.godot/imported/graphnode_close.png-fb83d6940d5e5d00c8e3174c7f40fbd5.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/graphnode_port.png b/material_maker/theme/light/graphnode_port.png
deleted file mode 100644
index 2c043e78e..000000000
Binary files a/material_maker/theme/light/graphnode_port.png and /dev/null differ
diff --git a/material_maker/theme/light/graphnode_port.png.import b/material_maker/theme/light/graphnode_port.png.import
deleted file mode 100644
index 03c007534..000000000
--- a/material_maker/theme/light/graphnode_port.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://f7mpt2b350vh"
-path="res://.godot/imported/graphnode_port.png-4e09c6f89968bdf8e3609fa1798c4707.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/graphnode_port.png"
-dest_files=["res://.godot/imported/graphnode_port.png-4e09c6f89968bdf8e3609fa1798c4707.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/graphnode_resizer.png b/material_maker/theme/light/graphnode_resizer.png
deleted file mode 100644
index 8030f4ec6..000000000
Binary files a/material_maker/theme/light/graphnode_resizer.png and /dev/null differ
diff --git a/material_maker/theme/light/graphnode_resizer.png.import b/material_maker/theme/light/graphnode_resizer.png.import
deleted file mode 100644
index 5b754d853..000000000
--- a/material_maker/theme/light/graphnode_resizer.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://eqf4ery81pl3"
-path="res://.godot/imported/graphnode_resizer.png-e17ea45830028c00e74f022a7191b78c.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/graphnode_resizer.png"
-dest_files=["res://.godot/imported/graphnode_resizer.png-e17ea45830028c00e74f022a7191b78c.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/hslider_grabber.png b/material_maker/theme/light/hslider_grabber.png
deleted file mode 100644
index 7843b8697..000000000
Binary files a/material_maker/theme/light/hslider_grabber.png and /dev/null differ
diff --git a/material_maker/theme/light/hslider_grabber.png.import b/material_maker/theme/light/hslider_grabber.png.import
deleted file mode 100644
index 4ad0b7544..000000000
--- a/material_maker/theme/light/hslider_grabber.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://udj2r7y4i8hg"
-path="res://.godot/imported/hslider_grabber.png-453429b1992154872eca14e9fddda6f1.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/hslider_grabber.png"
-dest_files=["res://.godot/imported/hslider_grabber.png-453429b1992154872eca14e9fddda6f1.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/hslider_grabber_disabled.png b/material_maker/theme/light/hslider_grabber_disabled.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/light/hslider_grabber_disabled.png and /dev/null differ
diff --git a/material_maker/theme/light/hslider_grabber_disabled.png.import b/material_maker/theme/light/hslider_grabber_disabled.png.import
deleted file mode 100644
index 04eeeaedb..000000000
--- a/material_maker/theme/light/hslider_grabber_disabled.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://b8fqpa1cbnd0f"
-path="res://.godot/imported/hslider_grabber_disabled.png-bd8fee960f03f944e1d12bbc559d786f.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/hslider_grabber_disabled.png"
-dest_files=["res://.godot/imported/hslider_grabber_disabled.png-bd8fee960f03f944e1d12bbc559d786f.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/hslider_grabber_highlight.png b/material_maker/theme/light/hslider_grabber_highlight.png
deleted file mode 100644
index a7cda5368..000000000
Binary files a/material_maker/theme/light/hslider_grabber_highlight.png and /dev/null differ
diff --git a/material_maker/theme/light/hslider_grabber_highlight.png.import b/material_maker/theme/light/hslider_grabber_highlight.png.import
deleted file mode 100644
index 098e4a878..000000000
--- a/material_maker/theme/light/hslider_grabber_highlight.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cwxwu2twvam2a"
-path="res://.godot/imported/hslider_grabber_highlight.png-3f1099baab4898d900177f07843d267c.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/hslider_grabber_highlight.png"
-dest_files=["res://.godot/imported/hslider_grabber_highlight.png-3f1099baab4898d900177f07843d267c.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/hslider_tick.png b/material_maker/theme/light/hslider_tick.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/light/hslider_tick.png and /dev/null differ
diff --git a/material_maker/theme/light/hslider_tick.png.import b/material_maker/theme/light/hslider_tick.png.import
deleted file mode 100644
index c37826d25..000000000
--- a/material_maker/theme/light/hslider_tick.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cpdwepuvcklms"
-path="res://.godot/imported/hslider_tick.png-12bdeb631fe416df7fde3847d8bfbb20.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/hslider_tick.png"
-dest_files=["res://.godot/imported/hslider_tick.png-12bdeb631fe416df7fde3847d8bfbb20.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/hsplitcontainer_grabber.png b/material_maker/theme/light/hsplitcontainer_grabber.png
deleted file mode 100644
index b03e8a338..000000000
Binary files a/material_maker/theme/light/hsplitcontainer_grabber.png and /dev/null differ
diff --git a/material_maker/theme/light/hsplitcontainer_grabber.png.import b/material_maker/theme/light/hsplitcontainer_grabber.png.import
deleted file mode 100644
index 5a55b704f..000000000
--- a/material_maker/theme/light/hsplitcontainer_grabber.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://blxk16haasvv"
-path="res://.godot/imported/hsplitcontainer_grabber.png-33341ab212b49a41574f3d569a5e8a46.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/hsplitcontainer_grabber.png"
-dest_files=["res://.godot/imported/hsplitcontainer_grabber.png-33341ab212b49a41574f3d569a5e8a46.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/lineedit_clear.png b/material_maker/theme/light/lineedit_clear.png
deleted file mode 100644
index c049b8d3a..000000000
Binary files a/material_maker/theme/light/lineedit_clear.png and /dev/null differ
diff --git a/material_maker/theme/light/lineedit_clear.png.import b/material_maker/theme/light/lineedit_clear.png.import
deleted file mode 100644
index 1d24f7a1f..000000000
--- a/material_maker/theme/light/lineedit_clear.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://icdtaus46y1j"
-path="res://.godot/imported/lineedit_clear.png-de21d677584265270b37710e9d7c7e62.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/lineedit_clear.png"
-dest_files=["res://.godot/imported/lineedit_clear.png-de21d677584265270b37710e9d7c7e62.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/optionbutton_arrow.png b/material_maker/theme/light/optionbutton_arrow.png
deleted file mode 100644
index 09fb68c38..000000000
Binary files a/material_maker/theme/light/optionbutton_arrow.png and /dev/null differ
diff --git a/material_maker/theme/light/optionbutton_arrow.png.import b/material_maker/theme/light/optionbutton_arrow.png.import
deleted file mode 100644
index 3bed233b2..000000000
--- a/material_maker/theme/light/optionbutton_arrow.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://c8nvvtqgeffbt"
-path="res://.godot/imported/optionbutton_arrow.png-4848aef15a9a5275014be72377937ba2.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/optionbutton_arrow.png"
-dest_files=["res://.godot/imported/optionbutton_arrow.png-4848aef15a9a5275014be72377937ba2.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/popupmenu_checked.png b/material_maker/theme/light/popupmenu_checked.png
deleted file mode 100644
index 2d165e515..000000000
Binary files a/material_maker/theme/light/popupmenu_checked.png and /dev/null differ
diff --git a/material_maker/theme/light/popupmenu_checked.png.import b/material_maker/theme/light/popupmenu_checked.png.import
deleted file mode 100644
index 7efb22537..000000000
--- a/material_maker/theme/light/popupmenu_checked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bpnqr7xtqcjih"
-path="res://.godot/imported/popupmenu_checked.png-b3fa57249fe624bb61c6bd6d8a6918a6.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/popupmenu_checked.png"
-dest_files=["res://.godot/imported/popupmenu_checked.png-b3fa57249fe624bb61c6bd6d8a6918a6.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/popupmenu_radio_checked.png b/material_maker/theme/light/popupmenu_radio_checked.png
deleted file mode 100644
index 0514226a4..000000000
Binary files a/material_maker/theme/light/popupmenu_radio_checked.png and /dev/null differ
diff --git a/material_maker/theme/light/popupmenu_radio_checked.png.import b/material_maker/theme/light/popupmenu_radio_checked.png.import
deleted file mode 100644
index 9d00ee4fd..000000000
--- a/material_maker/theme/light/popupmenu_radio_checked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dpsooc5vw0sgv"
-path="res://.godot/imported/popupmenu_radio_checked.png-cc8591024e42cda29a24a39a2e31917e.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/popupmenu_radio_checked.png"
-dest_files=["res://.godot/imported/popupmenu_radio_checked.png-cc8591024e42cda29a24a39a2e31917e.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/popupmenu_radio_unchecked.png b/material_maker/theme/light/popupmenu_radio_unchecked.png
deleted file mode 100644
index e440674a3..000000000
Binary files a/material_maker/theme/light/popupmenu_radio_unchecked.png and /dev/null differ
diff --git a/material_maker/theme/light/popupmenu_radio_unchecked.png.import b/material_maker/theme/light/popupmenu_radio_unchecked.png.import
deleted file mode 100644
index 6fed3fbc9..000000000
--- a/material_maker/theme/light/popupmenu_radio_unchecked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://b5vla6ilvqctf"
-path="res://.godot/imported/popupmenu_radio_unchecked.png-0e4dfeceb73454563f0f80763550b18e.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/popupmenu_radio_unchecked.png"
-dest_files=["res://.godot/imported/popupmenu_radio_unchecked.png-0e4dfeceb73454563f0f80763550b18e.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/popupmenu_submenu.png b/material_maker/theme/light/popupmenu_submenu.png
deleted file mode 100644
index 15a51cbe0..000000000
Binary files a/material_maker/theme/light/popupmenu_submenu.png and /dev/null differ
diff --git a/material_maker/theme/light/popupmenu_submenu.png.import b/material_maker/theme/light/popupmenu_submenu.png.import
deleted file mode 100644
index 731040bd0..000000000
--- a/material_maker/theme/light/popupmenu_submenu.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cqlvp516i2nle"
-path="res://.godot/imported/popupmenu_submenu.png-39b0cc3d598e4528f8fe6e518c2b6917.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/popupmenu_submenu.png"
-dest_files=["res://.godot/imported/popupmenu_submenu.png-39b0cc3d598e4528f8fe6e518c2b6917.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/popupmenu_unchecked.png b/material_maker/theme/light/popupmenu_unchecked.png
deleted file mode 100644
index 41cfd15e8..000000000
Binary files a/material_maker/theme/light/popupmenu_unchecked.png and /dev/null differ
diff --git a/material_maker/theme/light/popupmenu_unchecked.png.import b/material_maker/theme/light/popupmenu_unchecked.png.import
deleted file mode 100644
index b108b385f..000000000
--- a/material_maker/theme/light/popupmenu_unchecked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://b65sty0612igq"
-path="res://.godot/imported/popupmenu_unchecked.png-a3432add60a89da62a92c6add2815203.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/popupmenu_unchecked.png"
-dest_files=["res://.godot/imported/popupmenu_unchecked.png-a3432add60a89da62a92c6add2815203.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/popupmenu_visibility_hidden.png b/material_maker/theme/light/popupmenu_visibility_hidden.png
deleted file mode 100644
index bcaca2017..000000000
Binary files a/material_maker/theme/light/popupmenu_visibility_hidden.png and /dev/null differ
diff --git a/material_maker/theme/light/popupmenu_visibility_hidden.png.import b/material_maker/theme/light/popupmenu_visibility_hidden.png.import
deleted file mode 100644
index 78d3c62ba..000000000
--- a/material_maker/theme/light/popupmenu_visibility_hidden.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bk08nxr8n34uj"
-path="res://.godot/imported/popupmenu_visibility_hidden.png-3e53a261e7f951fe391083a8c9926bbc.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/popupmenu_visibility_hidden.png"
-dest_files=["res://.godot/imported/popupmenu_visibility_hidden.png-3e53a261e7f951fe391083a8c9926bbc.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/popupmenu_visibility_visible.png b/material_maker/theme/light/popupmenu_visibility_visible.png
deleted file mode 100644
index 74f384f63..000000000
Binary files a/material_maker/theme/light/popupmenu_visibility_visible.png and /dev/null differ
diff --git a/material_maker/theme/light/popupmenu_visibility_visible.png.import b/material_maker/theme/light/popupmenu_visibility_visible.png.import
deleted file mode 100644
index 130e30249..000000000
--- a/material_maker/theme/light/popupmenu_visibility_visible.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bf4musephmill"
-path="res://.godot/imported/popupmenu_visibility_visible.png-f03fc56f50e6723dae1fd68505ed3d98.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/popupmenu_visibility_visible.png"
-dest_files=["res://.godot/imported/popupmenu_visibility_visible.png-f03fc56f50e6723dae1fd68505ed3d98.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/popupmenu_visibility_xray.png b/material_maker/theme/light/popupmenu_visibility_xray.png
deleted file mode 100644
index 2d6d91824..000000000
Binary files a/material_maker/theme/light/popupmenu_visibility_xray.png and /dev/null differ
diff --git a/material_maker/theme/light/popupmenu_visibility_xray.png.import b/material_maker/theme/light/popupmenu_visibility_xray.png.import
deleted file mode 100644
index 7dc568bfd..000000000
--- a/material_maker/theme/light/popupmenu_visibility_xray.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://7t3wgnfyojbm"
-path="res://.godot/imported/popupmenu_visibility_xray.png-7f0277eeff19ef9e7577eea12a2eaf6f.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/popupmenu_visibility_xray.png"
-dest_files=["res://.godot/imported/popupmenu_visibility_xray.png-7f0277eeff19ef9e7577eea12a2eaf6f.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_checkbox_focus_texture.png b/material_maker/theme/light/sb_checkbox_focus_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/light/sb_checkbox_focus_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_checkbox_focus_texture.png.import b/material_maker/theme/light/sb_checkbox_focus_texture.png.import
deleted file mode 100644
index 3a74224fd..000000000
--- a/material_maker/theme/light/sb_checkbox_focus_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://s2t4sovqehwl"
-path="res://.godot/imported/sb_checkbox_focus_texture.png-8250a4db2504653203efacc873608fd3.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_checkbox_focus_texture.png"
-dest_files=["res://.godot/imported/sb_checkbox_focus_texture.png-8250a4db2504653203efacc873608fd3.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_colorpickerbutton_disabled_texture.png b/material_maker/theme/light/sb_colorpickerbutton_disabled_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/light/sb_colorpickerbutton_disabled_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_colorpickerbutton_disabled_texture.png.import b/material_maker/theme/light/sb_colorpickerbutton_disabled_texture.png.import
deleted file mode 100644
index 75a5aa119..000000000
--- a/material_maker/theme/light/sb_colorpickerbutton_disabled_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dv2k5a1pny5a5"
-path="res://.godot/imported/sb_colorpickerbutton_disabled_texture.png-c040b69cfbcf2ee21b9ecb16964096cb.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_colorpickerbutton_disabled_texture.png"
-dest_files=["res://.godot/imported/sb_colorpickerbutton_disabled_texture.png-c040b69cfbcf2ee21b9ecb16964096cb.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_colorpickerbutton_focus_texture.png b/material_maker/theme/light/sb_colorpickerbutton_focus_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/light/sb_colorpickerbutton_focus_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_colorpickerbutton_focus_texture.png.import b/material_maker/theme/light/sb_colorpickerbutton_focus_texture.png.import
deleted file mode 100644
index 12768a694..000000000
--- a/material_maker/theme/light/sb_colorpickerbutton_focus_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://upumxqud71n"
-path="res://.godot/imported/sb_colorpickerbutton_focus_texture.png-e524b71092b05ef498aab9f9afdcc96a.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_colorpickerbutton_focus_texture.png"
-dest_files=["res://.godot/imported/sb_colorpickerbutton_focus_texture.png-e524b71092b05ef498aab9f9afdcc96a.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_hscrollbar_grabber_highlight_texture.png b/material_maker/theme/light/sb_hscrollbar_grabber_highlight_texture.png
deleted file mode 100644
index 40e87bd80..000000000
Binary files a/material_maker/theme/light/sb_hscrollbar_grabber_highlight_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_hscrollbar_grabber_highlight_texture.png.import b/material_maker/theme/light/sb_hscrollbar_grabber_highlight_texture.png.import
deleted file mode 100644
index f7cde04c4..000000000
--- a/material_maker/theme/light/sb_hscrollbar_grabber_highlight_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dlgdmtc42ssge"
-path="res://.godot/imported/sb_hscrollbar_grabber_highlight_texture.png-4786e6425b415bbac8f0051766c0cf33.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_hscrollbar_grabber_highlight_texture.png"
-dest_files=["res://.godot/imported/sb_hscrollbar_grabber_highlight_texture.png-4786e6425b415bbac8f0051766c0cf33.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_hscrollbar_grabber_pressed_texture.png b/material_maker/theme/light/sb_hscrollbar_grabber_pressed_texture.png
deleted file mode 100644
index 140519a23..000000000
Binary files a/material_maker/theme/light/sb_hscrollbar_grabber_pressed_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_hscrollbar_grabber_pressed_texture.png.import b/material_maker/theme/light/sb_hscrollbar_grabber_pressed_texture.png.import
deleted file mode 100644
index 8d2030e7c..000000000
--- a/material_maker/theme/light/sb_hscrollbar_grabber_pressed_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bkae0agh38n4o"
-path="res://.godot/imported/sb_hscrollbar_grabber_pressed_texture.png-b55e4c2f305f68f358e4c6a06a599a73.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_hscrollbar_grabber_pressed_texture.png"
-dest_files=["res://.godot/imported/sb_hscrollbar_grabber_pressed_texture.png-b55e4c2f305f68f358e4c6a06a599a73.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_hscrollbar_grabber_texture.png b/material_maker/theme/light/sb_hscrollbar_grabber_texture.png
deleted file mode 100644
index 18f2144e8..000000000
Binary files a/material_maker/theme/light/sb_hscrollbar_grabber_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_hscrollbar_grabber_texture.png.import b/material_maker/theme/light/sb_hscrollbar_grabber_texture.png.import
deleted file mode 100644
index 6c9a24155..000000000
--- a/material_maker/theme/light/sb_hscrollbar_grabber_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cxnruxbdt5cv8"
-path="res://.godot/imported/sb_hscrollbar_grabber_texture.png-d1dd0327069616f7fd4d0b4b14cd9482.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_hscrollbar_grabber_texture.png"
-dest_files=["res://.godot/imported/sb_hscrollbar_grabber_texture.png-d1dd0327069616f7fd4d0b4b14cd9482.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_hscrollbar_scroll_focus_texture.png b/material_maker/theme/light/sb_hscrollbar_scroll_focus_texture.png
deleted file mode 100644
index 1289687fb..000000000
Binary files a/material_maker/theme/light/sb_hscrollbar_scroll_focus_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_hscrollbar_scroll_focus_texture.png.import b/material_maker/theme/light/sb_hscrollbar_scroll_focus_texture.png.import
deleted file mode 100644
index d3d24e663..000000000
--- a/material_maker/theme/light/sb_hscrollbar_scroll_focus_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://c5e256yg3426y"
-path="res://.godot/imported/sb_hscrollbar_scroll_focus_texture.png-ae64b82d972d615a17011e04c0d3b1cd.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_hscrollbar_scroll_focus_texture.png"
-dest_files=["res://.godot/imported/sb_hscrollbar_scroll_focus_texture.png-ae64b82d972d615a17011e04c0d3b1cd.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_hscrollbar_scroll_texture.png b/material_maker/theme/light/sb_hscrollbar_scroll_texture.png
deleted file mode 100644
index 1289687fb..000000000
Binary files a/material_maker/theme/light/sb_hscrollbar_scroll_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_hscrollbar_scroll_texture.png.import b/material_maker/theme/light/sb_hscrollbar_scroll_texture.png.import
deleted file mode 100644
index 240e2f385..000000000
--- a/material_maker/theme/light/sb_hscrollbar_scroll_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://csit5jl64k1tl"
-path="res://.godot/imported/sb_hscrollbar_scroll_texture.png-2b738927583287b33dac8c6cb916cbae.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_hscrollbar_scroll_texture.png"
-dest_files=["res://.godot/imported/sb_hscrollbar_scroll_texture.png-2b738927583287b33dac8c6cb916cbae.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_hslider_focus_texture.png b/material_maker/theme/light/sb_hslider_focus_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/light/sb_hslider_focus_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_hslider_focus_texture.png.import b/material_maker/theme/light/sb_hslider_focus_texture.png.import
deleted file mode 100644
index 8ccafb629..000000000
--- a/material_maker/theme/light/sb_hslider_focus_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bpw6w1qoj2yuf"
-path="res://.godot/imported/sb_hslider_focus_texture.png-e7161306549db378359990ec63dd8c44.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_hslider_focus_texture.png"
-dest_files=["res://.godot/imported/sb_hslider_focus_texture.png-e7161306549db378359990ec63dd8c44.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_hslider_grabber_disabled_texture.png b/material_maker/theme/light/sb_hslider_grabber_disabled_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/light/sb_hslider_grabber_disabled_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_hslider_grabber_disabled_texture.png.import b/material_maker/theme/light/sb_hslider_grabber_disabled_texture.png.import
deleted file mode 100644
index dc96c04df..000000000
--- a/material_maker/theme/light/sb_hslider_grabber_disabled_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cqsrqtnuuij5d"
-path="res://.godot/imported/sb_hslider_grabber_disabled_texture.png-787211a67bd64d0f64c2bf09dc45009f.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_hslider_grabber_disabled_texture.png"
-dest_files=["res://.godot/imported/sb_hslider_grabber_disabled_texture.png-787211a67bd64d0f64c2bf09dc45009f.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_hslider_grabber_highlight_texture.png b/material_maker/theme/light/sb_hslider_grabber_highlight_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/light/sb_hslider_grabber_highlight_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_hslider_grabber_highlight_texture.png.import b/material_maker/theme/light/sb_hslider_grabber_highlight_texture.png.import
deleted file mode 100644
index f5911638d..000000000
--- a/material_maker/theme/light/sb_hslider_grabber_highlight_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://c0bcl2wtre0yx"
-path="res://.godot/imported/sb_hslider_grabber_highlight_texture.png-3754a27df61294c3c0b926dafd9ab51e.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_hslider_grabber_highlight_texture.png"
-dest_files=["res://.godot/imported/sb_hslider_grabber_highlight_texture.png-3754a27df61294c3c0b926dafd9ab51e.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_hsplitcontainer_bg_texture.png b/material_maker/theme/light/sb_hsplitcontainer_bg_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/light/sb_hsplitcontainer_bg_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_hsplitcontainer_bg_texture.png.import b/material_maker/theme/light/sb_hsplitcontainer_bg_texture.png.import
deleted file mode 100644
index 63abd5af2..000000000
--- a/material_maker/theme/light/sb_hsplitcontainer_bg_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://b74c72pejyc4l"
-path="res://.godot/imported/sb_hsplitcontainer_bg_texture.png-13d9f2857fbcf012dc47b7ca0f514c06.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_hsplitcontainer_bg_texture.png"
-dest_files=["res://.godot/imported/sb_hsplitcontainer_bg_texture.png-13d9f2857fbcf012dc47b7ca0f514c06.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_panel_panelf_texture.png b/material_maker/theme/light/sb_panel_panelf_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/light/sb_panel_panelf_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_panel_panelf_texture.png.import b/material_maker/theme/light/sb_panel_panelf_texture.png.import
deleted file mode 100644
index 6d9fdcc4a..000000000
--- a/material_maker/theme/light/sb_panel_panelf_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://d0n5rdipj1r6l"
-path="res://.godot/imported/sb_panel_panelf_texture.png-31d977b1d8a2902df9b7f2098750e5e0.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_panel_panelf_texture.png"
-dest_files=["res://.godot/imported/sb_panel_panelf_texture.png-31d977b1d8a2902df9b7f2098750e5e0.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_panel_panelnc_texture.png b/material_maker/theme/light/sb_panel_panelnc_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/light/sb_panel_panelnc_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_panel_panelnc_texture.png.import b/material_maker/theme/light/sb_panel_panelnc_texture.png.import
deleted file mode 100644
index d8755b61d..000000000
--- a/material_maker/theme/light/sb_panel_panelnc_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://c4uat86g4u3xb"
-path="res://.godot/imported/sb_panel_panelnc_texture.png-4414f5e5f8d8fa9d255e1d3037a5e755.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_panel_panelnc_texture.png"
-dest_files=["res://.godot/imported/sb_panel_panelnc_texture.png-4414f5e5f8d8fa9d255e1d3037a5e755.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_popupmenu_panel_disabled_texture.png b/material_maker/theme/light/sb_popupmenu_panel_disabled_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/light/sb_popupmenu_panel_disabled_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_popupmenu_panel_disabled_texture.png.import b/material_maker/theme/light/sb_popupmenu_panel_disabled_texture.png.import
deleted file mode 100644
index 3450c8df5..000000000
--- a/material_maker/theme/light/sb_popupmenu_panel_disabled_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dveply1q8cuf6"
-path="res://.godot/imported/sb_popupmenu_panel_disabled_texture.png-f9db64da899360b9abb4c44a4c333636.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_popupmenu_panel_disabled_texture.png"
-dest_files=["res://.godot/imported/sb_popupmenu_panel_disabled_texture.png-f9db64da899360b9abb4c44a4c333636.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_progressbar_bg_texture.png b/material_maker/theme/light/sb_progressbar_bg_texture.png
deleted file mode 100644
index 31c90a188..000000000
Binary files a/material_maker/theme/light/sb_progressbar_bg_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_progressbar_bg_texture.png.import b/material_maker/theme/light/sb_progressbar_bg_texture.png.import
deleted file mode 100644
index ad644c382..000000000
--- a/material_maker/theme/light/sb_progressbar_bg_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://br4yamxs7ctfx"
-path="res://.godot/imported/sb_progressbar_bg_texture.png-5f6488da9930ce851eca36c74272f5d5.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_progressbar_bg_texture.png"
-dest_files=["res://.godot/imported/sb_progressbar_bg_texture.png-5f6488da9930ce851eca36c74272f5d5.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_progressbar_fg_texture.png b/material_maker/theme/light/sb_progressbar_fg_texture.png
deleted file mode 100644
index 855011429..000000000
Binary files a/material_maker/theme/light/sb_progressbar_fg_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_progressbar_fg_texture.png.import b/material_maker/theme/light/sb_progressbar_fg_texture.png.import
deleted file mode 100644
index fc0c9ea64..000000000
--- a/material_maker/theme/light/sb_progressbar_fg_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://ck5o03dggwoum"
-path="res://.godot/imported/sb_progressbar_fg_texture.png-53f9da39938137e0cb0e511cfc83bd36.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_progressbar_fg_texture.png"
-dest_files=["res://.godot/imported/sb_progressbar_fg_texture.png-53f9da39938137e0cb0e511cfc83bd36.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_textedit_completion_texture.png b/material_maker/theme/light/sb_textedit_completion_texture.png
deleted file mode 100644
index 366ceab3b..000000000
Binary files a/material_maker/theme/light/sb_textedit_completion_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_textedit_completion_texture.png.import b/material_maker/theme/light/sb_textedit_completion_texture.png.import
deleted file mode 100644
index 966ff17c5..000000000
--- a/material_maker/theme/light/sb_textedit_completion_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://ewm1du4fs48y"
-path="res://.godot/imported/sb_textedit_completion_texture.png-04cd8bf64761d3f8b58dbf1c6439413a.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_textedit_completion_texture.png"
-dest_files=["res://.godot/imported/sb_textedit_completion_texture.png-04cd8bf64761d3f8b58dbf1c6439413a.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_vscrollbar_grabber_highlight_texture.png b/material_maker/theme/light/sb_vscrollbar_grabber_highlight_texture.png
deleted file mode 100644
index 40e87bd80..000000000
Binary files a/material_maker/theme/light/sb_vscrollbar_grabber_highlight_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_vscrollbar_grabber_highlight_texture.png.import b/material_maker/theme/light/sb_vscrollbar_grabber_highlight_texture.png.import
deleted file mode 100644
index 51ca62cfc..000000000
--- a/material_maker/theme/light/sb_vscrollbar_grabber_highlight_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cxm6x161yolkc"
-path="res://.godot/imported/sb_vscrollbar_grabber_highlight_texture.png-ee815434ed1714ac447542ce86262f1b.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_vscrollbar_grabber_highlight_texture.png"
-dest_files=["res://.godot/imported/sb_vscrollbar_grabber_highlight_texture.png-ee815434ed1714ac447542ce86262f1b.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_vscrollbar_grabber_pressed_texture.png b/material_maker/theme/light/sb_vscrollbar_grabber_pressed_texture.png
deleted file mode 100644
index 140519a23..000000000
Binary files a/material_maker/theme/light/sb_vscrollbar_grabber_pressed_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_vscrollbar_grabber_pressed_texture.png.import b/material_maker/theme/light/sb_vscrollbar_grabber_pressed_texture.png.import
deleted file mode 100644
index 67dd5ad52..000000000
--- a/material_maker/theme/light/sb_vscrollbar_grabber_pressed_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://gbielwp0ang5"
-path="res://.godot/imported/sb_vscrollbar_grabber_pressed_texture.png-f9c091c4580a1ba1a285476886a6185e.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_vscrollbar_grabber_pressed_texture.png"
-dest_files=["res://.godot/imported/sb_vscrollbar_grabber_pressed_texture.png-f9c091c4580a1ba1a285476886a6185e.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_vscrollbar_grabber_texture.png b/material_maker/theme/light/sb_vscrollbar_grabber_texture.png
deleted file mode 100644
index 18f2144e8..000000000
Binary files a/material_maker/theme/light/sb_vscrollbar_grabber_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_vscrollbar_grabber_texture.png.import b/material_maker/theme/light/sb_vscrollbar_grabber_texture.png.import
deleted file mode 100644
index 06c213fbe..000000000
--- a/material_maker/theme/light/sb_vscrollbar_grabber_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bmc3fv7a8bk16"
-path="res://.godot/imported/sb_vscrollbar_grabber_texture.png-c85d369d08bde6b998f795a112605ea0.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_vscrollbar_grabber_texture.png"
-dest_files=["res://.godot/imported/sb_vscrollbar_grabber_texture.png-c85d369d08bde6b998f795a112605ea0.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_vscrollbar_scroll_focus_texture.png b/material_maker/theme/light/sb_vscrollbar_scroll_focus_texture.png
deleted file mode 100644
index 1289687fb..000000000
Binary files a/material_maker/theme/light/sb_vscrollbar_scroll_focus_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_vscrollbar_scroll_focus_texture.png.import b/material_maker/theme/light/sb_vscrollbar_scroll_focus_texture.png.import
deleted file mode 100644
index 94a0955d0..000000000
--- a/material_maker/theme/light/sb_vscrollbar_scroll_focus_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://sf3bjrb80rtp"
-path="res://.godot/imported/sb_vscrollbar_scroll_focus_texture.png-4ccf8a413eea482e5a6687e27673393e.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_vscrollbar_scroll_focus_texture.png"
-dest_files=["res://.godot/imported/sb_vscrollbar_scroll_focus_texture.png-4ccf8a413eea482e5a6687e27673393e.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_vscrollbar_scroll_texture.png b/material_maker/theme/light/sb_vscrollbar_scroll_texture.png
deleted file mode 100644
index 1289687fb..000000000
Binary files a/material_maker/theme/light/sb_vscrollbar_scroll_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_vscrollbar_scroll_texture.png.import b/material_maker/theme/light/sb_vscrollbar_scroll_texture.png.import
deleted file mode 100644
index 20b5cb068..000000000
--- a/material_maker/theme/light/sb_vscrollbar_scroll_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://5agpb3ccsv1k"
-path="res://.godot/imported/sb_vscrollbar_scroll_texture.png-325529cc6322e079d0ea4e5b51f32b24.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_vscrollbar_scroll_texture.png"
-dest_files=["res://.godot/imported/sb_vscrollbar_scroll_texture.png-325529cc6322e079d0ea4e5b51f32b24.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/sb_vsplitcontainer_bg_texture.png b/material_maker/theme/light/sb_vsplitcontainer_bg_texture.png
deleted file mode 100644
index 006937ea2..000000000
Binary files a/material_maker/theme/light/sb_vsplitcontainer_bg_texture.png and /dev/null differ
diff --git a/material_maker/theme/light/sb_vsplitcontainer_bg_texture.png.import b/material_maker/theme/light/sb_vsplitcontainer_bg_texture.png.import
deleted file mode 100644
index b3178c1cf..000000000
--- a/material_maker/theme/light/sb_vsplitcontainer_bg_texture.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://isia7c01ivrv"
-path="res://.godot/imported/sb_vsplitcontainer_bg_texture.png-278229bd243d45e0e1cd121daa50a2e5.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/sb_vsplitcontainer_bg_texture.png"
-dest_files=["res://.godot/imported/sb_vsplitcontainer_bg_texture.png-278229bd243d45e0e1cd121daa50a2e5.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tabcontainer_decrement.png b/material_maker/theme/light/tabcontainer_decrement.png
deleted file mode 100644
index 04a0c8b5a..000000000
Binary files a/material_maker/theme/light/tabcontainer_decrement.png and /dev/null differ
diff --git a/material_maker/theme/light/tabcontainer_decrement.png.import b/material_maker/theme/light/tabcontainer_decrement.png.import
deleted file mode 100644
index 35538c835..000000000
--- a/material_maker/theme/light/tabcontainer_decrement.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://fql8peb8ej06"
-path="res://.godot/imported/tabcontainer_decrement.png-3f37b802759b64ef35d9b8e34a2e185c.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tabcontainer_decrement.png"
-dest_files=["res://.godot/imported/tabcontainer_decrement.png-3f37b802759b64ef35d9b8e34a2e185c.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tabcontainer_decrement_highlight.png b/material_maker/theme/light/tabcontainer_decrement_highlight.png
deleted file mode 100644
index c25be025e..000000000
Binary files a/material_maker/theme/light/tabcontainer_decrement_highlight.png and /dev/null differ
diff --git a/material_maker/theme/light/tabcontainer_decrement_highlight.png.import b/material_maker/theme/light/tabcontainer_decrement_highlight.png.import
deleted file mode 100644
index 52acbf077..000000000
--- a/material_maker/theme/light/tabcontainer_decrement_highlight.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://b0k03vcrkfp8"
-path="res://.godot/imported/tabcontainer_decrement_highlight.png-b306c678204fd7289cc47ca05e09f7b4.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tabcontainer_decrement_highlight.png"
-dest_files=["res://.godot/imported/tabcontainer_decrement_highlight.png-b306c678204fd7289cc47ca05e09f7b4.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tabcontainer_increment.png b/material_maker/theme/light/tabcontainer_increment.png
deleted file mode 100644
index a6353826d..000000000
Binary files a/material_maker/theme/light/tabcontainer_increment.png and /dev/null differ
diff --git a/material_maker/theme/light/tabcontainer_increment.png.import b/material_maker/theme/light/tabcontainer_increment.png.import
deleted file mode 100644
index c01e7f4fb..000000000
--- a/material_maker/theme/light/tabcontainer_increment.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://w8kl00q0k3f6"
-path="res://.godot/imported/tabcontainer_increment.png-a64d7f2380056882d556a6ba00188eaf.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tabcontainer_increment.png"
-dest_files=["res://.godot/imported/tabcontainer_increment.png-a64d7f2380056882d556a6ba00188eaf.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tabcontainer_increment_highlight.png b/material_maker/theme/light/tabcontainer_increment_highlight.png
deleted file mode 100644
index fc372e275..000000000
Binary files a/material_maker/theme/light/tabcontainer_increment_highlight.png and /dev/null differ
diff --git a/material_maker/theme/light/tabcontainer_increment_highlight.png.import b/material_maker/theme/light/tabcontainer_increment_highlight.png.import
deleted file mode 100644
index 96d5aaaac..000000000
--- a/material_maker/theme/light/tabcontainer_increment_highlight.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://5bfmrv468m5p"
-path="res://.godot/imported/tabcontainer_increment_highlight.png-55a5215f001510265ccfe029df65cf5d.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tabcontainer_increment_highlight.png"
-dest_files=["res://.godot/imported/tabcontainer_increment_highlight.png-55a5215f001510265ccfe029df65cf5d.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tabcontainer_menu.png b/material_maker/theme/light/tabcontainer_menu.png
deleted file mode 100644
index 3e76bc4ba..000000000
Binary files a/material_maker/theme/light/tabcontainer_menu.png and /dev/null differ
diff --git a/material_maker/theme/light/tabcontainer_menu.png.import b/material_maker/theme/light/tabcontainer_menu.png.import
deleted file mode 100644
index a7d022992..000000000
--- a/material_maker/theme/light/tabcontainer_menu.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://df4txeqlevst0"
-path="res://.godot/imported/tabcontainer_menu.png-e5bb399fd96571b802bec904ab0f2da4.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tabcontainer_menu.png"
-dest_files=["res://.godot/imported/tabcontainer_menu.png-e5bb399fd96571b802bec904ab0f2da4.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tabcontainer_menu_highlight.png b/material_maker/theme/light/tabcontainer_menu_highlight.png
deleted file mode 100644
index 0d85d631c..000000000
Binary files a/material_maker/theme/light/tabcontainer_menu_highlight.png and /dev/null differ
diff --git a/material_maker/theme/light/tabcontainer_menu_highlight.png.import b/material_maker/theme/light/tabcontainer_menu_highlight.png.import
deleted file mode 100644
index fb57212ed..000000000
--- a/material_maker/theme/light/tabcontainer_menu_highlight.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bi7pdrlqaixka"
-path="res://.godot/imported/tabcontainer_menu_highlight.png-b9f863128dfd0d3aa4ede8bdd413b2e3.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tabcontainer_menu_highlight.png"
-dest_files=["res://.godot/imported/tabcontainer_menu_highlight.png-b9f863128dfd0d3aa4ede8bdd413b2e3.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tabs_close.png b/material_maker/theme/light/tabs_close.png
deleted file mode 100644
index c049b8d3a..000000000
Binary files a/material_maker/theme/light/tabs_close.png and /dev/null differ
diff --git a/material_maker/theme/light/tabs_close.png.import b/material_maker/theme/light/tabs_close.png.import
deleted file mode 100644
index b027c4126..000000000
--- a/material_maker/theme/light/tabs_close.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cy80m33tspaey"
-path="res://.godot/imported/tabs_close.png-df84e0ab594396122a8b86b1e9dbd768.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tabs_close.png"
-dest_files=["res://.godot/imported/tabs_close.png-df84e0ab594396122a8b86b1e9dbd768.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tabs_decrement.png b/material_maker/theme/light/tabs_decrement.png
deleted file mode 100644
index 04a0c8b5a..000000000
Binary files a/material_maker/theme/light/tabs_decrement.png and /dev/null differ
diff --git a/material_maker/theme/light/tabs_decrement.png.import b/material_maker/theme/light/tabs_decrement.png.import
deleted file mode 100644
index 15bd9a44a..000000000
--- a/material_maker/theme/light/tabs_decrement.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dcyko2qerg5a3"
-path="res://.godot/imported/tabs_decrement.png-5ab22175131d0d06302fbe1358bcb532.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tabs_decrement.png"
-dest_files=["res://.godot/imported/tabs_decrement.png-5ab22175131d0d06302fbe1358bcb532.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tabs_decrement_highlight.png b/material_maker/theme/light/tabs_decrement_highlight.png
deleted file mode 100644
index c25be025e..000000000
Binary files a/material_maker/theme/light/tabs_decrement_highlight.png and /dev/null differ
diff --git a/material_maker/theme/light/tabs_decrement_highlight.png.import b/material_maker/theme/light/tabs_decrement_highlight.png.import
deleted file mode 100644
index 7a6b72ac4..000000000
--- a/material_maker/theme/light/tabs_decrement_highlight.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://1spe48kjqobv"
-path="res://.godot/imported/tabs_decrement_highlight.png-91f4d692459c0f95150b188eb57bdc5f.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tabs_decrement_highlight.png"
-dest_files=["res://.godot/imported/tabs_decrement_highlight.png-91f4d692459c0f95150b188eb57bdc5f.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tabs_increment.png b/material_maker/theme/light/tabs_increment.png
deleted file mode 100644
index a6353826d..000000000
Binary files a/material_maker/theme/light/tabs_increment.png and /dev/null differ
diff --git a/material_maker/theme/light/tabs_increment.png.import b/material_maker/theme/light/tabs_increment.png.import
deleted file mode 100644
index 4af6d3da9..000000000
--- a/material_maker/theme/light/tabs_increment.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://hvrx5w8swyn0"
-path="res://.godot/imported/tabs_increment.png-60ac2ba3b1ade716f05df75c54467b9c.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tabs_increment.png"
-dest_files=["res://.godot/imported/tabs_increment.png-60ac2ba3b1ade716f05df75c54467b9c.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tabs_increment_highlight.png b/material_maker/theme/light/tabs_increment_highlight.png
deleted file mode 100644
index fc372e275..000000000
Binary files a/material_maker/theme/light/tabs_increment_highlight.png and /dev/null differ
diff --git a/material_maker/theme/light/tabs_increment_highlight.png.import b/material_maker/theme/light/tabs_increment_highlight.png.import
deleted file mode 100644
index 4a0d45492..000000000
--- a/material_maker/theme/light/tabs_increment_highlight.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dcv6tqjh4fbmb"
-path="res://.godot/imported/tabs_increment_highlight.png-c39d66436e3c5f07a40c9f2ef932afbb.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tabs_increment_highlight.png"
-dest_files=["res://.godot/imported/tabs_increment_highlight.png-c39d66436e3c5f07a40c9f2ef932afbb.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/textedit_fold.png b/material_maker/theme/light/textedit_fold.png
deleted file mode 100644
index 412701c08..000000000
Binary files a/material_maker/theme/light/textedit_fold.png and /dev/null differ
diff --git a/material_maker/theme/light/textedit_fold.png.import b/material_maker/theme/light/textedit_fold.png.import
deleted file mode 100644
index 0838d30d2..000000000
--- a/material_maker/theme/light/textedit_fold.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://s6onvcoqa2b"
-path="res://.godot/imported/textedit_fold.png-9eba79aa63d3a47cf2eee1ccb5a89eaa.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/textedit_fold.png"
-dest_files=["res://.godot/imported/textedit_fold.png-9eba79aa63d3a47cf2eee1ccb5a89eaa.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/textedit_folded.png b/material_maker/theme/light/textedit_folded.png
deleted file mode 100644
index b51aa7662..000000000
Binary files a/material_maker/theme/light/textedit_folded.png and /dev/null differ
diff --git a/material_maker/theme/light/textedit_folded.png.import b/material_maker/theme/light/textedit_folded.png.import
deleted file mode 100644
index d7c937a3f..000000000
--- a/material_maker/theme/light/textedit_folded.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://8ornq11nxdrh"
-path="res://.godot/imported/textedit_folded.png-0de14e76d2c473e25c283b22e419358b.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/textedit_folded.png"
-dest_files=["res://.godot/imported/textedit_folded.png-0de14e76d2c473e25c283b22e419358b.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/textedit_space.png b/material_maker/theme/light/textedit_space.png
deleted file mode 100644
index 1a33f2b58..000000000
Binary files a/material_maker/theme/light/textedit_space.png and /dev/null differ
diff --git a/material_maker/theme/light/textedit_space.png.import b/material_maker/theme/light/textedit_space.png.import
deleted file mode 100644
index 39554e47f..000000000
--- a/material_maker/theme/light/textedit_space.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://mhktkgaelexe"
-path="res://.godot/imported/textedit_space.png-3a5ca74d2fec559facb01f8c094ff249.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/textedit_space.png"
-dest_files=["res://.godot/imported/textedit_space.png-3a5ca74d2fec559facb01f8c094ff249.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/textedit_tab.png b/material_maker/theme/light/textedit_tab.png
deleted file mode 100644
index 71b9e1ffa..000000000
Binary files a/material_maker/theme/light/textedit_tab.png and /dev/null differ
diff --git a/material_maker/theme/light/textedit_tab.png.import b/material_maker/theme/light/textedit_tab.png.import
deleted file mode 100644
index f78181cbb..000000000
--- a/material_maker/theme/light/textedit_tab.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dj2ckjbe6vwal"
-path="res://.godot/imported/textedit_tab.png-c16ee940d1839ccf1788aaafe8fa84b8.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/textedit_tab.png"
-dest_files=["res://.godot/imported/textedit_tab.png-c16ee940d1839ccf1788aaafe8fa84b8.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tree_arrow.png b/material_maker/theme/light/tree_arrow.png
deleted file mode 100644
index 412701c08..000000000
Binary files a/material_maker/theme/light/tree_arrow.png and /dev/null differ
diff --git a/material_maker/theme/light/tree_arrow.png.import b/material_maker/theme/light/tree_arrow.png.import
deleted file mode 100644
index 731b2e31d..000000000
--- a/material_maker/theme/light/tree_arrow.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://53n8u607u2i6"
-path="res://.godot/imported/tree_arrow.png-ed11b791fa9405041e4182be95b8105f.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tree_arrow.png"
-dest_files=["res://.godot/imported/tree_arrow.png-ed11b791fa9405041e4182be95b8105f.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tree_arrow_collapsed.png b/material_maker/theme/light/tree_arrow_collapsed.png
deleted file mode 100644
index b51aa7662..000000000
Binary files a/material_maker/theme/light/tree_arrow_collapsed.png and /dev/null differ
diff --git a/material_maker/theme/light/tree_arrow_collapsed.png.import b/material_maker/theme/light/tree_arrow_collapsed.png.import
deleted file mode 100644
index 02784e09f..000000000
--- a/material_maker/theme/light/tree_arrow_collapsed.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://c6mx1qg7dmi3c"
-path="res://.godot/imported/tree_arrow_collapsed.png-e03d16399e5c7c757742173cf4fbb4e5.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tree_arrow_collapsed.png"
-dest_files=["res://.godot/imported/tree_arrow_collapsed.png-e03d16399e5c7c757742173cf4fbb4e5.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tree_checked.png b/material_maker/theme/light/tree_checked.png
deleted file mode 100644
index 2d165e515..000000000
Binary files a/material_maker/theme/light/tree_checked.png and /dev/null differ
diff --git a/material_maker/theme/light/tree_checked.png.import b/material_maker/theme/light/tree_checked.png.import
deleted file mode 100644
index 05225bfc9..000000000
--- a/material_maker/theme/light/tree_checked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dvici6o14jnks"
-path="res://.godot/imported/tree_checked.png-7c27a3a7246b9af5d42113bf56da9a58.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tree_checked.png"
-dest_files=["res://.godot/imported/tree_checked.png-7c27a3a7246b9af5d42113bf56da9a58.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tree_select_arrow.png b/material_maker/theme/light/tree_select_arrow.png
deleted file mode 100644
index 1171e894a..000000000
Binary files a/material_maker/theme/light/tree_select_arrow.png and /dev/null differ
diff --git a/material_maker/theme/light/tree_select_arrow.png.import b/material_maker/theme/light/tree_select_arrow.png.import
deleted file mode 100644
index 3f4553942..000000000
--- a/material_maker/theme/light/tree_select_arrow.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dl81so0gphsk2"
-path="res://.godot/imported/tree_select_arrow.png-5bd14dcc1615e5b01fec8bd72e81b6ae.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tree_select_arrow.png"
-dest_files=["res://.godot/imported/tree_select_arrow.png-5bd14dcc1615e5b01fec8bd72e81b6ae.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tree_unchecked.png b/material_maker/theme/light/tree_unchecked.png
deleted file mode 100644
index 41cfd15e8..000000000
Binary files a/material_maker/theme/light/tree_unchecked.png and /dev/null differ
diff --git a/material_maker/theme/light/tree_unchecked.png.import b/material_maker/theme/light/tree_unchecked.png.import
deleted file mode 100644
index efc717755..000000000
--- a/material_maker/theme/light/tree_unchecked.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bemah233ej4q5"
-path="res://.godot/imported/tree_unchecked.png-b2f9250e0b030703b8b2f3767ec5d3ce.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tree_unchecked.png"
-dest_files=["res://.godot/imported/tree_unchecked.png-b2f9250e0b030703b8b2f3767ec5d3ce.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/tree_updown.png b/material_maker/theme/light/tree_updown.png
deleted file mode 100644
index 880a56687..000000000
Binary files a/material_maker/theme/light/tree_updown.png and /dev/null differ
diff --git a/material_maker/theme/light/tree_updown.png.import b/material_maker/theme/light/tree_updown.png.import
deleted file mode 100644
index 81b997efe..000000000
--- a/material_maker/theme/light/tree_updown.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://cbragtn3yksls"
-path="res://.godot/imported/tree_updown.png-e5ddb27d270ba41cc8cf3aeb1f24aa67.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/tree_updown.png"
-dest_files=["res://.godot/imported/tree_updown.png-e5ddb27d270ba41cc8cf3aeb1f24aa67.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/vslider_grabber.png b/material_maker/theme/light/vslider_grabber.png
deleted file mode 100644
index 7843b8697..000000000
Binary files a/material_maker/theme/light/vslider_grabber.png and /dev/null differ
diff --git a/material_maker/theme/light/vslider_grabber.png.import b/material_maker/theme/light/vslider_grabber.png.import
deleted file mode 100644
index b1ef91ca9..000000000
--- a/material_maker/theme/light/vslider_grabber.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://jourlkt3abm1"
-path="res://.godot/imported/vslider_grabber.png-3b60c9c2b708bdca528545e5e003510e.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/vslider_grabber.png"
-dest_files=["res://.godot/imported/vslider_grabber.png-3b60c9c2b708bdca528545e5e003510e.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/vslider_grabber_highlight.png b/material_maker/theme/light/vslider_grabber_highlight.png
deleted file mode 100644
index a7cda5368..000000000
Binary files a/material_maker/theme/light/vslider_grabber_highlight.png and /dev/null differ
diff --git a/material_maker/theme/light/vslider_grabber_highlight.png.import b/material_maker/theme/light/vslider_grabber_highlight.png.import
deleted file mode 100644
index 9a0254149..000000000
--- a/material_maker/theme/light/vslider_grabber_highlight.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dfgva5pkdlq5a"
-path="res://.godot/imported/vslider_grabber_highlight.png-ccf381c8b2072c1a4bfe5c6452311c05.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/vslider_grabber_highlight.png"
-dest_files=["res://.godot/imported/vslider_grabber_highlight.png-ccf381c8b2072c1a4bfe5c6452311c05.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/vsplitcontainer_grabber.png b/material_maker/theme/light/vsplitcontainer_grabber.png
deleted file mode 100644
index ed6c0edd5..000000000
Binary files a/material_maker/theme/light/vsplitcontainer_grabber.png and /dev/null differ
diff --git a/material_maker/theme/light/vsplitcontainer_grabber.png.import b/material_maker/theme/light/vsplitcontainer_grabber.png.import
deleted file mode 100644
index 6cd88f6dc..000000000
--- a/material_maker/theme/light/vsplitcontainer_grabber.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dd6fbmgw8m5uo"
-path="res://.godot/imported/vsplitcontainer_grabber.png-c2eee269ca62a5c830a828c5b980aef2.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/vsplitcontainer_grabber.png"
-dest_files=["res://.godot/imported/vsplitcontainer_grabber.png-c2eee269ca62a5c830a828c5b980aef2.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/windowdialog_close.png b/material_maker/theme/light/windowdialog_close.png
deleted file mode 100644
index c049b8d3a..000000000
Binary files a/material_maker/theme/light/windowdialog_close.png and /dev/null differ
diff --git a/material_maker/theme/light/windowdialog_close.png.import b/material_maker/theme/light/windowdialog_close.png.import
deleted file mode 100644
index cc7acbdea..000000000
--- a/material_maker/theme/light/windowdialog_close.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://bhegc6iau74uk"
-path="res://.godot/imported/windowdialog_close.png-adccde24d0a60e6b3e821c06b1ac0c5b.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/windowdialog_close.png"
-dest_files=["res://.godot/imported/windowdialog_close.png-adccde24d0a60e6b3e821c06b1ac0c5b.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/theme/light/windowdialog_close_highlight.png b/material_maker/theme/light/windowdialog_close_highlight.png
deleted file mode 100644
index c049b8d3a..000000000
Binary files a/material_maker/theme/light/windowdialog_close_highlight.png and /dev/null differ
diff --git a/material_maker/theme/light/windowdialog_close_highlight.png.import b/material_maker/theme/light/windowdialog_close_highlight.png.import
deleted file mode 100644
index 15c830ff0..000000000
--- a/material_maker/theme/light/windowdialog_close_highlight.png.import
+++ /dev/null
@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="CompressedTexture2D"
-uid="uid://dnpkpa0bt81gl"
-path="res://.godot/imported/windowdialog_close_highlight.png-72a2e1dfe0a59b667b052bbc9feeec65.ctex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://material_maker/theme/light/windowdialog_close_highlight.png"
-dest_files=["res://.godot/imported/windowdialog_close_highlight.png-72a2e1dfe0a59b667b052bbc9feeec65.ctex"]
-
-[params]
-
-compress/mode=0
-compress/high_quality=false
-compress/lossy_quality=0.7
-compress/hdr_compression=1
-compress/normal_map=0
-compress/channel_pack=0
-mipmaps/generate=false
-mipmaps/limit=-1
-roughness/mode=0
-roughness/src_normal=""
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/normal_map_invert_y=false
-process/hdr_as_srgb=false
-process/hdr_clamp_exposure=false
-process/size_limit=0
-detect_3d/compress_to=1
diff --git a/material_maker/widgets/gradient_editor/gradient_edit.gd b/material_maker/widgets/gradient_editor/gradient_edit.gd
index 8676fc43f..27c5f2e74 100644
--- a/material_maker/widgets/gradient_editor/gradient_edit.gd
+++ b/material_maker/widgets/gradient_editor/gradient_edit.gd
@@ -25,7 +25,7 @@ var active_cursor := 0:
value = wrap(value, 0, %Gradient.get_child_count())
active_cursor = value
active_cursor_changed.emit()
-
+
for i in %Gradient.get_children():
i.queue_redraw()
@@ -39,7 +39,7 @@ var hovered : bool = false
func _ready() -> void:
%Gradient.material = %Gradient.material.duplicate(true)
-
+
update_visuals()
@@ -47,15 +47,15 @@ func set_value(v: MMGradient) -> void:
for c in %Gradient.get_children():
c.queue_free()
c.get_parent().remove_child(c)
-
+
if value == null:
return
for p in value.points:
add_cursor(p.v, p.c)
-
+
sort_cursors()
-
+
update_shader()
value_was_set.emit()
@@ -68,17 +68,17 @@ func set_interpolation(interpolation_type:int) -> void:
func update_from_value(merge_undos := true) -> void:
value.clear()
-
+
for c in %Gradient.get_children():
value.add_point(c.get_cursor_offset(), c.color)
-
+
update_shader()
-
+
if is_instance_valid(popup):
popup.set_gradient(value, active_cursor)
-
+
sort_cursors()
-
+
updated.emit(value, merge_undos)
@@ -91,7 +91,7 @@ func _gui_input(ev:InputEvent) -> void:
sort_cursors()
active_cursor = cursor.cursor_index
update_from_value(false)
-
+
if preview_cursor:
preview_cursor.set_cursor_offset(position_to_offset(get_local_mouse_position()))
@@ -99,22 +99,22 @@ func _gui_input(ev:InputEvent) -> void:
func select_color(cursor:GradientEditCursor) -> void:
active_cursor = cursor.cursor_index
mode = Modes.SELECTING_COLOR
-
+
var color_picker_popup := preload("res://material_maker/widgets/color_picker_popup/color_picker_popup.tscn").instantiate()
add_child(color_picker_popup)
-
+
var color_picker := color_picker_popup.get_node("ColorPicker")
color_picker.color = cursor.color
color_picker.color_changed.connect(cursor.set_cursor_color)
-
+
var _scale := get_global_transform().get_scale()
color_picker_popup.position.x = global_position.x + size.x*_scale.x + 10
color_picker_popup.position.y = global_position.y
color_picker_popup.position += get_window().position
-
+
color_picker_popup.popup_hide.connect(color_picker_popup.queue_free)
color_picker_popup.popup_hide.connect(set.bind("mode", Modes.IDLE))
-
+
color_picker_popup.popup()
@@ -224,7 +224,7 @@ func _on_popup_button_toggled(toggled_on: bool) -> void:
if toggled_on:
popup = load("res://material_maker/widgets/gradient_editor/gradient_popup.tscn").instantiate()
add_child(popup)
-
+
popup.updated.connect(
func(val, merge_undos):
value = val
@@ -232,12 +232,12 @@ func _on_popup_button_toggled(toggled_on: bool) -> void:
)
popup.about_to_close.connect(%PopupButton.call_deferred.bind("set_pressed_no_signal", false))
popup.active_cursor_changed.connect(func(val): active_cursor = val)
-
+
popup.set_gradient(value, active_cursor)
update_popup_position()
set_notify_transform(true)
-
+
else:
if is_instance_valid(popup):
popup.close()
@@ -283,7 +283,7 @@ func _drop_data(pos: Vector2, data: Variant) -> void:
if gradient != null:
value = MMType.deserialize_value(gradient)
updated.emit(value, false)
-
+
if preview_cursor:
preview_cursor.queue_free()
preview_cursor = null
@@ -293,7 +293,7 @@ func _drop_data(pos: Vector2, data: Variant) -> void:
func _input(ev:InputEvent) -> void:
if not Rect2(Vector2(), size).has_point(get_local_mouse_position()):
return
-
+
if mode == Modes.IDLE:
if ev is InputEventKey and ev.is_command_or_control_pressed():
if not ev.pressed:
@@ -304,10 +304,10 @@ func _input(ev:InputEvent) -> void:
val = Color.from_string(DisplayServer.clipboard_get(), Color.WHITE)
else:
val = str_to_var(DisplayServer.clipboard_get())
-
+
_drop_data(get_local_mouse_position(), val)
accept_event()
-
+
if ev.keycode == KEY_C:
DisplayServer.clipboard_set(var_to_str(MMType.serialize_value(value)))
accept_event()
@@ -322,6 +322,8 @@ func remove_popup_button() -> void:
func update_visuals() -> void:
+ if %PopupButton:
+ %PopupButton.icon = get_theme_icon("dropdown", "MM_Icons")
var is_hovered := Rect2(Vector2(), size).has_point(get_local_mouse_position())
if is_hovered != hovered:
hovered = is_hovered
@@ -332,11 +334,19 @@ func update_visuals() -> void:
func _notification(what: int) -> void:
+ if not is_node_ready():
+ return
+ if get_meta("doing_theme_change", false):
+ return
+
match what:
NOTIFICATION_TRANSFORM_CHANGED:
update_popup_position()
NOTIFICATION_THEME_CHANGED:
+ set_meta("doing_theme_change", true)
update_visuals()
+ await get_tree().process_frame
+ set_meta("doing_theme_change", false)
func _draw() -> void:
diff --git a/material_maker/widgets/gradient_editor/gradient_edit.tscn b/material_maker/widgets/gradient_editor/gradient_edit.tscn
index 75f41740f..86d1cb010 100644
--- a/material_maker/widgets/gradient_editor/gradient_edit.tscn
+++ b/material_maker/widgets/gradient_editor/gradient_edit.tscn
@@ -1,7 +1,6 @@
-[gd_scene load_steps=7 format=3 uid="uid://cp6ft7qbucfam"]
+[gd_scene load_steps=6 format=3 uid="uid://cp6ft7qbucfam"]
[ext_resource type="Script" path="res://material_maker/widgets/gradient_editor/gradient_edit.gd" id="1_51wqf"]
-[ext_resource type="Texture2D" uid="uid://dysx1qjceb1od" path="res://material_maker/theme/dark/optionbutton_arrow.png" id="2_kwkci"]
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_j7yhr"]
content_margin_left = 3.0
@@ -62,7 +61,6 @@ mouse_filter = 2
unique_name_in_owner = true
layout_mode = 2
toggle_mode = true
-icon = ExtResource("2_kwkci")
flat = true
[connection signal="focus_entered" from="." to="." method="_on_focus_entered"]
diff --git a/material_maker/widgets/gradient_editor/gradient_popup.gd b/material_maker/widgets/gradient_editor/gradient_popup.gd
index d8ded0def..a2b5401b3 100644
--- a/material_maker/widgets/gradient_editor/gradient_popup.gd
+++ b/material_maker/widgets/gradient_editor/gradient_popup.gd
@@ -7,12 +7,15 @@ signal active_cursor_changed(index:int)
func _ready() -> void:
%GradientEdit.remove_popup_button()
+ %Pin.icon = get_theme_icon("pin_unpinned", "MM_Icons")
+ %Previous.icon = get_theme_icon("arrow_left", "MM_Icons")
+ %Next.icon = get_theme_icon("arrow_right", "MM_Icons")
func set_gradient(value:MMGradient, cursor_index := 0) -> void:
%GradientEdit.value = value
-
- # Usually the gradient isn't instantly loaded,
+
+ # Usually the gradient isn't instantly loaded,
# because the nodes size isn't yet correct, so we wait until the Cursors are loaded
await %GradientEdit.value_was_set
%Interpolation.selected = value.interpolation
@@ -36,7 +39,7 @@ func close() -> void:
func _on_gradient_edit_updated(value: Variant, merge_undos: bool) -> void:
# Propagate changes to the parent GradientEdit
updated.emit(value, merge_undos)
-
+
# Update values of the active cursor
_on_gradient_edit_active_cursor_changed()
diff --git a/material_maker/widgets/gradient_editor/gradient_popup.tscn b/material_maker/widgets/gradient_editor/gradient_popup.tscn
index 48bdddb51..de7edab75 100644
--- a/material_maker/widgets/gradient_editor/gradient_popup.tscn
+++ b/material_maker/widgets/gradient_editor/gradient_popup.tscn
@@ -1,12 +1,9 @@
-[gd_scene load_steps=8 format=3 uid="uid://in4lqr3eetvc"]
+[gd_scene load_steps=5 format=3 uid="uid://in4lqr3eetvc"]
[ext_resource type="Script" path="res://material_maker/widgets/gradient_editor/gradient_popup.gd" id="1"]
[ext_resource type="PackedScene" uid="uid://rflulhsuy3ax" path="res://material_maker/widgets/float_edit/float_edit.tscn" id="2_fotv7"]
[ext_resource type="PackedScene" uid="uid://cp6ft7qbucfam" path="res://material_maker/widgets/gradient_editor/gradient_edit.tscn" id="2_uait3"]
-[ext_resource type="Texture2D" uid="uid://c87dumeqpcpkn" path="res://material_maker/theme/dark/tabcontainer_decrement.png" id="2_xmqsa"]
[ext_resource type="PackedScene" uid="uid://dj5q8sxvd3gci" path="res://material_maker/widgets/option_edit/option_edit.tscn" id="3_2wy2b"]
-[ext_resource type="Texture2D" uid="uid://c7tbnm43rce6e" path="res://material_maker/theme/dark/vslider_grabber_highlight.png" id="3_bxwrk"]
-[ext_resource type="Texture2D" uid="uid://d3y3kp5qy5x30" path="res://material_maker/theme/dark/tabcontainer_increment.png" id="4_fwye6"]
[node name="GradientPopup" type="MarginContainer"]
top_level = true
@@ -33,7 +30,6 @@ alignment = 2
[node name="Previous" type="Button" parent="Panel/VBox/HBox"]
unique_name_in_owner = true
layout_mode = 2
-icon = ExtResource("2_xmqsa")
[node name="Offset" parent="Panel/VBox/HBox" instance=ExtResource("2_fotv7")]
unique_name_in_owner = true
@@ -45,7 +41,6 @@ float_only = true
[node name="Next" type="Button" parent="Panel/VBox/HBox"]
unique_name_in_owner = true
layout_mode = 2
-icon = ExtResource("4_fwye6")
[node name="Control" type="Control" parent="Panel/VBox/HBox"]
custom_minimum_size = Vector2(15, 0)
@@ -57,6 +52,7 @@ layout_mode = 2
selected = 0
item_count = 4
popup/item_0/text = "Constant"
+popup/item_0/id = 0
popup/item_1/text = "Linear"
popup/item_1/id = 1
popup/item_2/text = "SmoothStep"
@@ -69,7 +65,6 @@ unique_name_in_owner = true
layout_mode = 2
tooltip_text = "Pin"
toggle_mode = true
-icon = ExtResource("3_bxwrk")
flat = true
[node name="GradientEdit" parent="Panel/VBox" instance=ExtResource("2_uait3")]
diff --git a/material_maker/widgets/size_option_button/size_option_button.gd b/material_maker/widgets/size_option_button/size_option_button.gd
index 6a5420167..a2254f789 100644
--- a/material_maker/widgets/size_option_button/size_option_button.gd
+++ b/material_maker/widgets/size_option_button/size_option_button.gd
@@ -9,6 +9,7 @@ signal size_value_changed(s)
func _ready() -> void:
super()
+ theme_type_variation = "MM_NodeOptionEdit"
connect("item_selected", Callable(self, "_on_item_selected"))
update_options()