Skip to content

Commit 90659c1

Browse files
committed
Merge pull request #112350 from YeldhamDev/modern_contrast_change
Enhance contrast on Modern theme
2 parents 1adfcb2 + 21e3ef9 commit 90659c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

editor/themes/editor_theme_manager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ EditorThemeManager::ThemeConfiguration EditorThemeManager::_create_theme_config(
356356
preset_contrast = light_contrast;
357357
} else { // Default
358358
preset_accent_color = Color(0.337, 0.62, 1.0);
359-
preset_base_color = Color(0.145, 0.145, 0.145);
359+
preset_base_color = Color(0.153, 0.153, 0.153);
360360
}
361361

362362
config.accent_color = preset_accent_color;

editor/themes/editor_theme_manager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class EditorThemeManager {
8484
// Make sure to keep those in sync with the definitions in the editor settings.
8585
const float default_icon_saturation = 2.0;
8686
const int default_relationship_lines = RELATIONSHIP_SELECTED_ONLY;
87-
const float default_contrast = 0.3;
87+
const float default_contrast = 0.35;
8888
const int default_corner_radius = 4;
8989

9090
// Generated properties.

0 commit comments

Comments
 (0)