Browse Source

Merge pull request #36197 from Calinou/tweak-editor-help-comment-color

Tweak the editor help comment color for better readability
Rémi Verschelde 5 years ago
parent
commit
ac9ec5336d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      editor/editor_help.cpp

+ 1 - 1
editor/editor_help.cpp

@@ -50,7 +50,7 @@ void EditorHelp::_init_colors() {
 	text_color = get_color("default_color", "RichTextLabel");
 	text_color = get_color("default_color", "RichTextLabel");
 	headline_color = get_color("headline_color", "EditorHelp");
 	headline_color = get_color("headline_color", "EditorHelp");
 	base_type_color = title_color.linear_interpolate(text_color, 0.5);
 	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;
 	symbol_color = comment_color;
 	value_color = text_color * Color(1, 1, 1, 0.6);
 	value_color = text_color * Color(1, 1, 1, 0.6);
 	qualifier_color = text_color * Color(1, 1, 1, 0.8);
 	qualifier_color = text_color * Color(1, 1, 1, 0.8);