Splash screen should be dark for dark theme (#148)

This commit is contained in:
Pierre-Yves Nicolas
2026-03-26 11:26:15 +01:00
committed by GitHub
parent f130d33eba
commit 69690d5c2a
3 changed files with 10 additions and 3 deletions

View File

@@ -0,0 +1,3 @@
<resources>
<color name="splash_background">#FF313332</color>
</resources>

View File

@@ -0,0 +1,3 @@
<resources>
<color name="splash_background">#FFFBFCFC</color>
</resources>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.FairScan" parent="android:Theme.Material.Light.NoActionBar" />
</resources>
<style name="Theme.FairScan" parent="android:Theme.Material.Light.NoActionBar">
<item name="android:windowBackground">@color/splash_background</item>
</style>
</resources>