summaryrefslogtreecommitdiff
path: root/scene/resources
diff options
context:
space:
mode:
authorPaulb23 <p_batty@hotmail.co.uk>2016-06-24 16:33:29 +0100
committerPaulb23 <p_batty@hotmail.co.uk>2016-06-24 16:33:29 +0100
commitb643d9af6f889e12609997dc253e3925f0438c8c (patch)
tree24c96717b8f59fa4ffa9a8eb776358f31fe2fd12 /scene/resources
parent0266d752b3e0b2c5d5234ffd16ea19709bd0c8dd (diff)
Exposed code completion colors to the text edit theme
Diffstat (limited to 'scene/resources')
-rw-r--r--scene/resources/default_theme/default_theme.cpp3
1 files changed, 3 insertions, 0 deletions
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<Theme>& t,const Ref<Font> & default_font,const Ref<F
t->set_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) );