diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-08-25 22:44:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 22:44:22 +0200 |
commit | 85ed9eac6f57b87b175fefee303845abf23ebc18 (patch) | |
tree | b9f3535a926f2b3ae1688bbc8e36e08d9d56c0f5 /modules/gdscript | |
parent | 6d196c1ce34340874c413e166e14933729346302 (diff) | |
parent | 73bbc61eb4a1722c48b0e3fbbcb0ef4619f54d78 (diff) |
Merge pull request #64857 from MewPurPur/tweak-stringname-color
Diffstat (limited to 'modules/gdscript')
-rw-r--r-- | modules/gdscript/editor/gdscript_highlighter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdscript/editor/gdscript_highlighter.cpp b/modules/gdscript/editor/gdscript_highlighter.cpp index 681aa45c8f..b9560ea69b 100644 --- a/modules/gdscript/editor/gdscript_highlighter.cpp +++ b/modules/gdscript/editor/gdscript_highlighter.cpp @@ -646,13 +646,13 @@ void GDScriptSyntaxHighlighter::_update_cache() { node_path_color = Color(0.72, 0.77, 0.49); node_ref_color = Color(0.39, 0.76, 0.35); annotation_color = Color(1.0, 0.7, 0.45); - string_name_color = Color(1.0, 0.66, 0.72); + string_name_color = Color(1.0, 0.76, 0.65); } else { 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); + string_name_color = Color(0.8, 0.56, 0.45); } EDITOR_DEF("text_editor/theme/highlighting/gdscript/function_definition_color", function_definition_color); |