diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-07-21 23:13:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-21 23:13:51 +0200 |
commit | 92415365c8586dd0c91b0566d7c00753e0687273 (patch) | |
tree | 6738691794c9dfb3d8a3794b81501c1576356cb1 /scene/resources/default_theme | |
parent | 2b9902db06d922fc98ae49c0d1e31123feed469a (diff) | |
parent | 3e87ad518742d93aaaddbfb9cdabe59aceabb159 (diff) |
Merge pull request #19264 from vnen/typed-gdscript-final
Typed GDScript
Diffstat (limited to 'scene/resources/default_theme')
-rw-r--r-- | scene/resources/default_theme/default_theme.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index d4432b969f..fe12e2f5f6 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -476,6 +476,7 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const theme->set_color("symbol_color", "TextEdit", control_font_color_hover); theme->set_color("brace_mismatch_color", "TextEdit", Color(1, 0.2, 0.2)); theme->set_color("line_number_color", "TextEdit", Color::html("66aaaaaa")); + theme->set_color("safe_line_number_color", "TextEdit", Color::html("99aac8aa")); theme->set_color("function_color", "TextEdit", Color::html("66a2ce")); theme->set_color("member_variable_color", "TextEdit", Color::html("e64e59")); theme->set_color("number_color", "TextEdit", Color::html("EB9532")); |