Use high-contrast dark theme as default for auto (I like it better)

This commit is contained in:
SiboVG 2023-09-29 23:18:26 +02:00
parent c6ab31b4e5
commit a6402c27e0

View File

@ -1210,7 +1210,7 @@ public class UITheme {
final OsThemeDetector detector = OsThemeDetector.getDetector();
final boolean isDarkThemeUsed = detector.isDark();
if (isDarkThemeUsed) {
return Themes.DARK;
return Themes.DARK_CONTRAST;
} else {
return Themes.LIGHT;
}