Skip to content

Commit

Permalink
Merge pull request #918 from decryptedchaos/master
Browse files Browse the repository at this point in the history
Change the default theme to dark scheme from minimal-theme
  • Loading branch information
tindrew authored Jan 18, 2025
2 parents 92a8c99 + f4dcfd9 commit d217498
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions editor/themes/editor_theme_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,9 @@ EditorThemeManager::ThemeConfiguration EditorThemeManager::_create_theme_config(
preset_base_color = Color(0.17, 0.17, 0.20);
preset_contrast = 0.4;
} else { // Default
preset_accent_color = Color(0.87, 0.22, 0.29);
preset_base_color = Color(0.14, 0.12, 0.12);
preset_contrast = config.default_contrast;
preset_accent_color = Color(0.99, 0.77, 0.76);
preset_base_color = Color(0.13, 0.13, 0.13);
preset_contrast = 0.3;
}

config.accent_color = preset_accent_color;
Expand Down

0 comments on commit d217498

Please sign in to comment.