Skip to content

Commit

Permalink
Merge pull request #29 from Javernaut/fix/splash-screen-background-color
Browse files Browse the repository at this point in the history
Consistent background colors
  • Loading branch information
Javernaut authored May 3, 2024
2 parents f768916 + e6d311b commit 6d478ca
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions app/src/main/res/values-night/colors.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="windowBackground">#121319</color>
</resources>
4 changes: 4 additions & 0 deletions app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="windowBackground">#FBF8FF</color>
</resources>
6 changes: 3 additions & 3 deletions app/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<style name="Theme.WhatTheCodecM3" parent="android:Theme.Material.NoActionBar" />

<style name="Theme.WhatTheCodecM3" parent="android:Theme.Material.NoActionBar">
<item name="android:windowBackground">@color/windowBackground</item>
</style>
</resources>

0 comments on commit 6d478ca

Please sign in to comment.