diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp index dd95381c978..e65e4d8deea 100644 --- a/editor/editor_themes.cpp +++ b/editor/editor_themes.cpp @@ -993,6 +993,9 @@ Ref create_editor_theme(const Ref p_theme) { // LinkButton theme->set_stylebox("focus", "LinkButton", style_empty); theme->set_color("font_color", "LinkButton", font_color); + theme->set_color("font_color_hover", "LinkButton", font_color_hl); + theme->set_color("font_color_pressed", "LinkButton", accent_color); + theme->set_color("font_color_disabled", "LinkButton", font_color_disabled); // TooltipPanel Ref style_tooltip = style_popup->duplicate();