diff options
author | Hugo Locurcio <Calinou@users.noreply.github.com> | 2016-05-23 13:27:15 +0200 |
---|---|---|
committer | RĂ©mi Verschelde <remi@verschelde.fr> | 2016-05-23 13:27:15 +0200 |
commit | e75701e0b5ab909b8ec434c060340d6706537647 (patch) | |
tree | 93cf9677f71ca1d581bdaf8e832ee1fa3a6b472b | |
parent | e56f05c6909f0294a8a26d2c1ad53749d2fe41f8 (diff) |
Change the default comment color to #676767 (#4763)
A neutral gray color, more readable than the old brown one.
-rw-r--r-- | tools/editor/editor_settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_settings.cpp b/tools/editor/editor_settings.cpp index 91d7e7ebd4..316394c537 100644 --- a/tools/editor/editor_settings.cpp +++ b/tools/editor/editor_settings.cpp @@ -401,7 +401,7 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) { set("text_editor/engine_type_color",Color::html("83d3ff")); set("text_editor/function_color",Color::html("66a2ce")); set("text_editor/member_variable_color",Color::html("e64e59")); - set("text_editor/comment_color",Color::html("983d1b")); + set("text_editor/comment_color",Color::html("676767")); set("text_editor/string_color",Color::html("ef6ebe")); set("text_editor/number_color",Color::html("EB9532")); set("text_editor/symbol_color",Color::html("badfff")); |