summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-08-17 10:41:19 +0200
committerGitHub <noreply@github.com>2018-08-17 10:41:19 +0200
commit985ed5e55abe880025fd3f0cfa484a23d3a0ca32 (patch)
tree8ff42b8b98efdf2785c98c5983fe8ce33b917923
parent68676c774d4f3b7bfad8866a08546acf5a594cdf (diff)
parent0d16ffbcaad8b3c746d15eaa1c3a3b6334919bb3 (diff)
Merge pull request #21099 from Chaosus/fix_error_icon
Fix error icon color for light themes
-rw-r--r--editor/editor_themes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp
index 3995eb3dd6..69a013dd00 100644
--- a/editor/editor_themes.cpp
+++ b/editor/editor_themes.cpp
@@ -173,7 +173,7 @@ void editor_register_and_generate_icons(Ref<Theme> p_theme, bool p_dark_theme =
const Color error_color = p_theme->get_color("error_color", "Editor");
const Color success_color = p_theme->get_color("success_color", "Editor");
const Color warning_color = p_theme->get_color("warning_color", "Editor");
- dark_icon_color_dictionary[Color::html("#ff5d5d")] = error_color;
+ dark_icon_color_dictionary[Color::html("#ff0000")] = error_color;
dark_icon_color_dictionary[Color::html("#45ff8b")] = success_color;
dark_icon_color_dictionary[Color::html("#dbab09")] = warning_color;