Changed the selection fill color and selection stroke color for the cursor selection box in ./themes/theme_modern.cpp

Co-Authored-By: fejesievo <fejesievo@gmail.com>
Co-Authored-By: SpencerGoodman <goodmasp@dickinson.edu>
Co-Authored-By: kateyvk <kateyvk16@gmail.com>
This commit is contained in:
MaxiSanc37
2026-01-27 11:37:24 -05:00
committed by Thaddeus Crews
parent 8fb5cd8779
commit a8b7526f2a
+2 -2
View File
@@ -220,8 +220,8 @@ void ThemeModern::populate_shared_styles(const Ref<EditorTheme> &p_theme, Editor
// Additional editor colors.
p_theme->set_color("box_selection_fill_color", EditorStringName(Editor), p_config.mono_color * Color(1, 1, 1, 0.12));
p_theme->set_color("box_selection_stroke_color", EditorStringName(Editor), p_config.mono_color * Color(1, 1, 1, 0.4));
p_theme->set_color("box_selection_fill_color", EditorStringName(Editor), Color(0.65, 0.65, 0.65, 0.15));
p_theme->set_color("box_selection_stroke_color", EditorStringName(Editor), Color(0.55, 0.55, 0.55, 0.55));
p_theme->set_color("axis_x_color", EditorStringName(Editor), Color(0.96, 0.20, 0.32));
p_theme->set_color("axis_y_color", EditorStringName(Editor), Color(0.53, 0.84, 0.01));