From b643d9af6f889e12609997dc253e3925f0438c8c Mon Sep 17 00:00:00 2001 From: Paulb23 Date: Fri, 24 Jun 2016 16:33:29 +0100 Subject: Exposed code completion colors to the text edit theme --- scene/resources/default_theme/default_theme.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index db45a998c3..7ed83f50f8 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -469,6 +469,9 @@ void fill_default_theme(Ref& t,const Ref & default_font,const Refset_font("font","TextEdit", default_font ); + t->set_color("completion_background_color", "TextEdit",Color::html("2C2A32")); + t->set_color("completion_selected_color", "TextEdit",Color::html("434244")); + t->set_color("completion_existing_color", "TextEdit",Color::html("21dfdfdf")); t->set_color("completion_scroll_color","TextEdit", control_font_color_pressed ); t->set_color("font_color","TextEdit", control_font_color ); t->set_color("font_color_selected","TextEdit", Color(0,0,0) ); -- cgit v1.2.3