aboutsummaryrefslogtreecommitdiff
path: root/editor/editor_settings.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2017-06-27 20:47:32 +0200
committerRémi Verschelde2017-06-27 20:47:32 +0200
commit6fd4311c27625a5c725fcf525bbbf04fbbf9c56f (patch)
treeba6b7deab7823f668789aabc63b6d3c0b6e14a75 /editor/editor_settings.cpp
parent3509acd4154dd3c1f0a2d6802e4e94fb63df026c (diff)
downloadgodot-6fd4311c27625a5c725fcf525bbbf04fbbf9c56f.tar.gz
godot-6fd4311c27625a5c725fcf525bbbf04fbbf9c56f.tar.zst
godot-6fd4311c27625a5c725fcf525bbbf04fbbf9c56f.zip
Change default color of script editor text selection
Supersedes and closes #9388.
Diffstat (limited to '')
-rw-r--r--editor/editor_settings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp
index 5e950f003..5c6ba892c 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));