Tweak the editor help comment color for better readability

(cherry picked from commit 99bfaa6c60)
This commit is contained in:
Hugo Locurcio 2020-02-13 23:34:15 +01:00 committed by Rémi Verschelde
parent 34a16ae239
commit b90a5d4c80

View file

@ -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);