From fa586289c60f34ed51d9949a26cef259ef989cf5 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Wed, 10 Apr 2019 19:59:00 +0200 Subject: [PATCH] Brighten the RichTextLabel color in the default theme This makes its default color match Label's color, which leads to a more consistent appearance. This partially addresses #24570. --- scene/resources/default_theme/default_theme.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index c7a815d8a42b..f42597218386 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -795,7 +795,7 @@ void fill_default_theme(Ref &theme, const Ref &default_font, const theme->set_font("bold_italics_font", "RichTextLabel", default_font); theme->set_font("mono_font", "RichTextLabel", default_font); - theme->set_color("default_color", "RichTextLabel", control_font_color); + theme->set_color("default_color", "RichTextLabel", Color(1, 1, 1)); theme->set_color("font_color_selected", "RichTextLabel", font_color_selection); theme->set_color("selection_color", "RichTextLabel", Color(0.1, 0.1, 1, 0.8));