From 0e8a76dbb2b057f93bf091d0a86758a493b2e66f Mon Sep 17 00:00:00 2001 From: Raul Santos Date: Fri, 4 Mar 2022 18:33:33 +0100 Subject: [PATCH] Add icon_color_normal to Button in editor theme --- editor/editor_themes.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp index 0b05fa34369..8caabdaeb17 100644 --- a/editor/editor_themes.cpp +++ b/editor/editor_themes.cpp @@ -387,7 +387,8 @@ Ref create_editor_theme(const Ref p_theme) { const Color color_disabled = mono_color.inverted().linear_interpolate(base_color, 0.7); const Color color_disabled_bg = mono_color.inverted().linear_interpolate(base_color, 0.9); - Color icon_color_hover = Color(1, 1, 1) * (dark_theme ? 1.15 : 1.45); + const Color icon_color_normal = Color(1, 1, 1); + Color icon_color_hover = icon_color_normal * (dark_theme ? 1.15 : 1.45); icon_color_hover.a = 1.0; // Make the pressed icon color overbright because icons are not completely white on a dark theme. // On a light theme, icons are dark, so we need to modulate them with an even brighter color. @@ -635,6 +636,7 @@ Ref create_editor_theme(const Ref p_theme) { theme->set_color("font_color_focus", "Button", font_color_focus); theme->set_color("font_color_pressed", "Button", accent_color); theme->set_color("font_color_disabled", "Button", font_color_disabled); + theme->set_color("icon_color_normal", "Button", icon_color_normal); theme->set_color("icon_color_hover", "Button", icon_color_hover); theme->set_color("icon_color_pressed", "Button", icon_color_pressed);