From 768991f4ba2883d9e5fa3f6f2ca83bf900344ad3 Mon Sep 17 00:00:00 2001 From: DeeJayLSP Date: Fri, 31 Oct 2025 18:10:38 -0300 Subject: [PATCH] Modern style: switch to classic renderer name colors --- editor/themes/theme_modern.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/editor/themes/theme_modern.cpp b/editor/themes/theme_modern.cpp index b77c0a235f3..0e54f566528 100644 --- a/editor/themes/theme_modern.cpp +++ b/editor/themes/theme_modern.cpp @@ -198,9 +198,9 @@ void ThemeModern::populate_shared_styles(const Ref &p_theme, Editor // Special colors for rendering methods. - p_theme->set_color("forward_plus_color", EditorStringName(Editor), Color(0.55, 0.75, 0.39)); - p_theme->set_color("mobile_color", EditorStringName(Editor), Color(0.45, 0.70, 0.89)); - p_theme->set_color("gl_compatibility_color", EditorStringName(Editor), Color(0.86, 0.48, 0.58)); + p_theme->set_color("forward_plus_color", EditorStringName(Editor), Color::hex(0x5d8c3fff)); + p_theme->set_color("mobile_color", EditorStringName(Editor), Color::hex(0xa5557dff)); + p_theme->set_color("gl_compatibility_color", EditorStringName(Editor), Color::hex(0x5586a4ff)); if (p_config.dark_theme) { p_theme->set_color("highend_color", EditorStringName(Editor), Color(1.0, 0.0, 0.0));