Skip to content

Commit

Permalink
fix theme color
Browse files Browse the repository at this point in the history
  • Loading branch information
Lemkinator committed Dec 14, 2024
1 parent d506ee9 commit 869b309
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
android:localeConfig="@xml/locale_config"
android:resizeableActivity="true"
android:supportsRtl="true"
android:theme="@style/OneUITheme"
android:theme="@style/AppTheme"
tools:targetApi="34">

<meta-data
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values-v31/theme.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<resources>

<style name="AppTheme.Starting" parent="Theme.SplashScreen">
<item name="postSplashScreenTheme">@style/OneUITheme</item>
<item name="postSplashScreenTheme">@style/AppTheme</item>
<item name="android:windowSplashScreenBackground">@color/oui_round_and_bgcolor</item>
<item name="android:windowSplashScreenAnimatedIcon">@drawable/ic_splash_animated</item>
<item name="android:windowSplashScreenAnimationDuration">700</item>
Expand Down
7 changes: 6 additions & 1 deletion app/src/main/res/values/theme.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<style name="AppTheme" parent="OneUITheme">
<item name="colorPrimary">@color/primary_color_themed</item>
<item name="colorPrimaryDark">@color/primary_color_themed</item>
</style>

<style name="AppTheme.Starting" parent="Theme.SplashScreen">
<item name="postSplashScreenTheme">@style/OneUITheme</item>
<item name="postSplashScreenTheme">@style/AppTheme</item>
<item name="windowSplashScreenBackground">@color/oui_round_and_bgcolor</item>
<item name="windowSplashScreenAnimatedIcon">@drawable/ic_splash</item>
<item name="windowSplashScreenAnimationDuration">700</item>
Expand Down

0 comments on commit 869b309

Please sign in to comment.