Move hardcoded theme colors from editor_node into editor_themes
This commit is contained in:
parent
8af99ef1c6
commit
991a433cb3
@ -6543,11 +6543,6 @@ EditorNode::EditorNode() {
|
|||||||
|
|
||||||
Globals::get_singleton()->set("debug/indicators_enabled",true);
|
Globals::get_singleton()->set("debug/indicators_enabled",true);
|
||||||
Globals::get_singleton()->set("render/room_cull_enabled",false);
|
Globals::get_singleton()->set("render/room_cull_enabled",false);
|
||||||
theme->set_color("prop_category","Editor",Color::hex(0x3f3a44ff));
|
|
||||||
theme->set_color("prop_section","Editor",Color::hex(0x35313aff));
|
|
||||||
theme->set_color("prop_subsection","Editor",Color::hex(0x312e37ff));
|
|
||||||
theme->set_color("fg_selected","Editor",Color::html("ffbd8e8e"));
|
|
||||||
theme->set_color("fg_error","Editor",Color::html("ffbd8e8e"));
|
|
||||||
|
|
||||||
reference_resource_mem=true;
|
reference_resource_mem=true;
|
||||||
save_external_resources_mem=true;
|
save_external_resources_mem=true;
|
||||||
|
@ -48,6 +48,11 @@ Ref<Theme> create_default_theme()
|
|||||||
}
|
}
|
||||||
focus_sbt->set_draw_center(false);
|
focus_sbt->set_draw_center(false);
|
||||||
theme->set_stylebox("EditorFocus","EditorStyles",focus_sbt);
|
theme->set_stylebox("EditorFocus","EditorStyles",focus_sbt);
|
||||||
|
theme->set_color("prop_category","Editor",Color::hex(0x3f3a44ff));
|
||||||
|
theme->set_color("prop_section","Editor",Color::hex(0x35313aff));
|
||||||
|
theme->set_color("prop_subsection","Editor",Color::hex(0x312e37ff));
|
||||||
|
theme->set_color("fg_selected","Editor",Color::html("ffbd8e8e"));
|
||||||
|
theme->set_color("fg_error","Editor",Color::html("ffbd8e8e"));
|
||||||
|
|
||||||
return theme;
|
return theme;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user