From 77af5d16ac3fa2a91f374ecaa902b367fe5e5908 Mon Sep 17 00:00:00 2001 From: Michael Aganier Date: Thu, 30 May 2024 08:15:33 -0400 Subject: [PATCH] Revert Solarized Dark theme to Godot 3 Solarized Dark theme was color perfect in Godot 3. It was changed in Godot 4 but it looks wrong now. This reverts it. --- editor/themes/editor_theme_manager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/editor/themes/editor_theme_manager.cpp b/editor/themes/editor_theme_manager.cpp index d56094b0f37..5e69968e464 100644 --- a/editor/themes/editor_theme_manager.cpp +++ b/editor/themes/editor_theme_manager.cpp @@ -303,8 +303,8 @@ EditorThemeManager::ThemeConfiguration EditorThemeManager::_create_theme_config( preset_contrast = -0.06; } else if (config.preset == "Solarized (Dark)") { preset_accent_color = Color(0.15, 0.55, 0.82); - preset_base_color = Color(0.04, 0.23, 0.27); - preset_contrast = config.default_contrast; + preset_base_color = Color(0.03, 0.21, 0.26); + preset_contrast = 0.23; } else if (config.preset == "Solarized (Light)") { preset_accent_color = Color(0.15, 0.55, 0.82); preset_base_color = Color(0.89, 0.86, 0.79);