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.
This commit is contained in:
Michael Aganier
2024-05-30 08:15:33 -04:00
parent 60844997bb
commit 77af5d16ac

View File

@ -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);