From 605c5842e972ec1f76643a2b182a507557b58f6b Mon Sep 17 00:00:00 2001 From: "Md. Rifat Hasan Jihan" <31377578+RHJihan@users.noreply.github.com> Date: Sat, 6 Apr 2024 12:17:30 +0600 Subject: [PATCH] match COLORS_DARK default (#637) --- .../main/java/helium314/keyboard/latin/settings/Settings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/helium314/keyboard/latin/settings/Settings.java b/app/src/main/java/helium314/keyboard/latin/settings/Settings.java index 29dc5fa91..98f67ceba 100644 --- a/app/src/main/java/helium314/keyboard/latin/settings/Settings.java +++ b/app/src/main/java/helium314/keyboard/latin/settings/Settings.java @@ -615,7 +615,7 @@ public final class Settings implements SharedPreferences.OnSharedPreferenceChang boolean isNight = ResourceUtils.isNight(context.getResources()); if (ColorsSettingsFragment.Companion.getForceOppositeTheme()) isNight = !isNight; final String themeColors = (isNight && readDayNightPref(prefs, context.getResources())) - ? prefs.getString(Settings.PREF_THEME_COLORS_NIGHT, KeyboardTheme.THEME_DARKER) + ? prefs.getString(Settings.PREF_THEME_COLORS_NIGHT, KeyboardTheme.THEME_DARK) : prefs.getString(Settings.PREF_THEME_COLORS, KeyboardTheme.THEME_LIGHT); final String themeStyle = prefs.getString(Settings.PREF_THEME_STYLE, KeyboardTheme.STYLE_MATERIAL);