diff --git a/res/drawable/preview_seek_bar_outline.xml b/res/drawable/preview_seek_bar_outline.xml
index ef8b8c72ed2..e626e37e700 100644
--- a/res/drawable/preview_seek_bar_outline.xml
+++ b/res/drawable/preview_seek_bar_outline.xml
@@ -24,7 +24,7 @@
android:shape="rectangle" >
+ android:color="?android:attr/colorBackground" />
-
+ android:color="?android:attr/colorBackground" />
diff --git a/res/values-night/themes_suw.xml b/res/values-night/themes_suw.xml
index dea7b1a5f78..ee0dd67939b 100644
--- a/res/values-night/themes_suw.xml
+++ b/res/values-night/themes_suw.xml
@@ -17,6 +17,9 @@
+
+
+
diff --git a/res/values/themes.xml b/res/values/themes.xml
index 02f94d2fe54..5142d55d00c 100644
--- a/res/values/themes.xml
+++ b/res/values/themes.xml
@@ -243,20 +243,6 @@
- @*android:color/secondary_text_light
-
-
+
+
+
diff --git a/src/com/android/settings/core/SettingsBaseActivity.java b/src/com/android/settings/core/SettingsBaseActivity.java
index 569e4805b8d..a9513eaafcd 100644
--- a/src/com/android/settings/core/SettingsBaseActivity.java
+++ b/src/com/android/settings/core/SettingsBaseActivity.java
@@ -48,6 +48,7 @@ import com.android.settingslib.drawer.Tile;
import com.google.android.material.appbar.CollapsingToolbarLayout;
import com.google.android.setupcompat.util.WizardManagerHelper;
+import com.google.android.setupdesign.util.ThemeHelper;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
@@ -90,7 +91,9 @@ public class SettingsBaseActivity extends FragmentActivity {
// Apply SetupWizard light theme during setup flow. This is for SubSettings pages.
final boolean isAnySetupWizard = WizardManagerHelper.isAnySetupWizard(getIntent());
if (isAnySetupWizard && this instanceof SubSettings) {
- setTheme(R.style.LightTheme_SubSettings_SetupWizard);
+ final int appliedTheme = ThemeHelper.isSetupWizardDayNightEnabled(this)
+ ? R.style.SubSettings_SetupWizard : R.style.SudThemeGlifV3_Light;
+ setTheme(appliedTheme);
}
if (FeatureFlagUtils.isEnabled(this, FeatureFlags.SILKY_HOME)
@@ -201,6 +204,7 @@ public class SettingsBaseActivity extends FragmentActivity {
/**
* SubSetting page should show a toolbar by default. If the page wouldn't show a toolbar,
* override this method and return false value.
+ *
* @return ture by default
*/
protected boolean isToolbarEnabled() {