diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index 49ed915f4..748d2c7fc 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -1316,11 +1316,11 @@ static void _add_text_to_rt(const String &p_bbcode, RichTextLabel *p_rt) { Ref doc_font = p_rt->get_theme_font("doc", "EditorFonts"); Ref doc_bold_font = p_rt->get_theme_font("doc_bold", "EditorFonts"); Ref doc_code_font = p_rt->get_theme_font("doc_source", "EditorFonts"); - Ref doc_kbd_font = p_rt->get_font("doc_keyboard", "EditorFonts"); + Ref doc_kbd_font = p_rt->get_theme_font("doc_keyboard", "EditorFonts"); Color font_color_hl = p_rt->get_theme_color("headline_color", "EditorHelp"); Color accent_color = p_rt->get_theme_color("accent_color", "Editor"); - Color property_color = p_rt->get_color("property_color", "Editor"); + Color property_color = p_rt->get_theme_color("property_color", "Editor"); Color link_color = accent_color.linear_interpolate(font_color_hl, 0.8); Color code_color = accent_color.linear_interpolate(font_color_hl, 0.6); Color kbd_color = accent_color.linear_interpolate(property_color, 0.6);