diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-02-13 23:34:15 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-02-13 23:34:15 +0100 |
commit | 99bfaa6c6096c6ad25d13a3ecb447bb451f88892 (patch) | |
tree | 3592841e336a51114d45d8758fcff11fbd45c727 /editor | |
parent | 3679d49f4b709fd56e872633ead73008bc3e1c43 (diff) |
Tweak the editor help comment color for better readability
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index 22a16ac65a..0ade4c5c80 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -50,7 +50,7 @@ void EditorHelp::_init_colors() { text_color = get_color("default_color", "RichTextLabel"); headline_color = get_color("headline_color", "EditorHelp"); base_type_color = title_color.linear_interpolate(text_color, 0.5); - comment_color = text_color * Color(1, 1, 1, 0.4); + comment_color = text_color * Color(1, 1, 1, 0.6); symbol_color = comment_color; value_color = text_color * Color(1, 1, 1, 0.6); qualifier_color = text_color * Color(1, 1, 1, 0.8); |