diff options
author | Hein-Pieter van Braam <hp@tmm.cx> | 2019-04-23 05:59:16 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-23 05:59:16 +0300 |
commit | 05ef1f49984f60c477ab88ae7811d644a6578815 (patch) | |
tree | a276edd0bb22df32d53851a98ebfbc7a4f698504 | |
parent | a112eb599f270b2a0ba650088172363fe01c3698 (diff) | |
parent | fa586289c60f34ed51d9949a26cef259ef989cf5 (diff) |
Merge pull request #27903 from Calinou/richtextlabel-brighten-default-color
Brighten the RichTextLabel color in the default theme
-rw-r--r-- | scene/resources/default_theme/default_theme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index c7a815d8a4..f425972183 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> &theme, const Ref<Font> &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)); |