Skip to content

Commit 77af5d1

Browse files
committed
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.
1 parent 6084499 commit 77af5d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

editor/themes/editor_theme_manager.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,8 +303,8 @@ EditorThemeManager::ThemeConfiguration EditorThemeManager::_create_theme_config(
303303
preset_contrast = -0.06;
304304
} else if (config.preset == "Solarized (Dark)") {
305305
preset_accent_color = Color(0.15, 0.55, 0.82);
306-
preset_base_color = Color(0.04, 0.23, 0.27);
307-
preset_contrast = config.default_contrast;
306+
preset_base_color = Color(0.03, 0.21, 0.26);
307+
preset_contrast = 0.23;
308308
} else if (config.preset == "Solarized (Light)") {
309309
preset_accent_color = Color(0.15, 0.55, 0.82);
310310
preset_base_color = Color(0.89, 0.86, 0.79);

0 commit comments

Comments
 (0)