Skip to content

Commit

Permalink
fix(SplashTheme): dark mode background
Browse files Browse the repository at this point in the history
  • Loading branch information
urFate committed Aug 7, 2024
1 parent 1c34df2 commit 7ea98ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/main/res/values-night/splash_theme.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<resources>
<!-- Splash Screen Theme. -->
<style name="Theme.App.Starting" parent="Theme.SplashScreen">
<item name="windowSplashScreenBackground">@color/background</item>
<item name="windowSplashScreenBackground">@color/splash_background</item>
<item name="windowSplashScreenAnimatedIcon">@drawable/ic_launcher_foreground_splash</item>
<item name="windowSplashScreenAnimationDuration">300</item>
<item name="postSplashScreenTheme">@style/Theme.ShiraBox</item>

<!-- Status bar and Nav bar configs -->
<item name="android:statusBarColor" >@color/background</item>
<item name="android:navigationBarColor">@color/background</item>
<item name="android:statusBarColor" >@color/splash_background</item>
<item name="android:navigationBarColor">@color/splash_background</item>
<item name="android:windowLightStatusBar">false</item>
</style>
</resources>

0 comments on commit 7ea98ad

Please sign in to comment.