From 6fd4311c27625a5c725fcf525bbbf04fbbf9c56f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Tue, 27 Jun 2017 20:47:32 +0200 Subject: [PATCH] Change default color of script editor text selection Supersedes and closes #9388. --- editor/editor_settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp index 5e950f003b..5c6ba892cb 100644 --- a/editor/editor_settings.cpp +++ b/editor/editor_settings.cpp @@ -737,7 +737,7 @@ void EditorSettings::_load_default_text_editor_theme() { set("text_editor/highlighting/string_color", Color::html("ef6ebe")); set("text_editor/highlighting/number_color", Color::html("EB9532")); set("text_editor/highlighting/symbol_color", Color::html("badfff")); - set("text_editor/highlighting/selection_color", Color::html("7b5dbe")); + set("text_editor/highlighting/selection_color", Color::html("6ca9c2")); set("text_editor/highlighting/brace_mismatch_color", Color(1, 0.2, 0.2)); set("text_editor/highlighting/current_line_color", Color(0.3, 0.5, 0.8, 0.15)); set("text_editor/highlighting/line_length_guideline_color", Color(0.3, 0.5, 0.8, 0.1));