18 lines
818 B
XML
18 lines
818 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<!-- SplashScreen theme for dark mode (Android 11 and below) -->
|
|
<style name="LaunchTheme" parent="Theme.SplashScreen">
|
|
<!-- Splash screen background color (same as light mode for brand consistency) -->
|
|
<item name="windowSplashScreenBackground">#FFF5E6</item>
|
|
<!-- Splash screen icon -->
|
|
<item name="windowSplashScreenAnimatedIcon">@mipmap/ic_launcher</item>
|
|
<!-- Post-splash theme -->
|
|
<item name="postSplashScreenTheme">@style/NormalTheme</item>
|
|
</style>
|
|
|
|
<!-- Normal theme after splash (dark mode) -->
|
|
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
|
<item name="android:windowBackground">?android:colorBackground</item>
|
|
</style>
|
|
</resources>
|