diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-08-01 00:08:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-01 00:08:25 +0200 |
commit | f04004b24c5844d4974db1ce55e7059fc007d4f9 (patch) | |
tree | ad598c3ac223a984f9b230b6454d033695a3eef0 /modules | |
parent | 787bb0f26933effa2199a0608f6e0055e10997b2 (diff) | |
parent | 0a24d4083644e215ca8bac8db3429b0b64ba19f4 (diff) |
Merge pull request #55450 from Calinou/script-editor-improve-light-theme-syntax-colors
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gdscript/editor/gdscript_highlighter.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/gdscript/editor/gdscript_highlighter.cpp b/modules/gdscript/editor/gdscript_highlighter.cpp index 4372bb33ba..a23f19de85 100644 --- a/modules/gdscript/editor/gdscript_highlighter.cpp +++ b/modules/gdscript/editor/gdscript_highlighter.cpp @@ -623,11 +623,11 @@ void GDScriptSyntaxHighlighter::_update_cache() { annotation_color = Color(1.0, 0.7, 0.45); string_name_color = Color(1.0, 0.66, 0.72); } else { - function_definition_color = Color(0.0, 0.65, 0.73); - node_path_color = Color(0.62, 0.67, 0.39); - node_ref_color = Color(0.32, 0.55, 0.29); - annotation_color = Color(0.8, 0.5, 0.25); - string_name_color = Color(0.9, 0.56, 0.62); + function_definition_color = Color(0, 0.6, 0.6); + node_path_color = Color(0.18, 0.55, 0); + node_ref_color = Color(0.0, 0.5, 0); + annotation_color = Color(0.8, 0.37, 0); + string_name_color = Color(0.8, 0.46, 0.52); } EDITOR_DEF("text_editor/theme/highlighting/gdscript/function_definition_color", function_definition_color); |