| 123456789101112131415161718192021222324252627282930313233 |
- <resources xmlns:tools="http://schemas.android.com/tools">
- <!-- Splash screen theme. -->
- <style name="Theme.RecurveBowSight.Starting" parent="Theme.SplashScreen">
- <item name="windowSplashScreenAnimatedIcon">@drawable/ic_launcher</item>
- <item name="windowSplashScreenBackground">@color/white</item>
- <item name="postSplashScreenTheme">@style/Theme.RecurveBowSight.NoActionBar</item>
- <item name="windowSplashScreenAnimationDuration">1500</item>
- </style>
-
- <!-- Base application theme. -->
- <style name="Theme.RecurveBowSight" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
- <!-- Primary brand color. -->
- <item name="colorPrimary">@color/fita_blue_dark</item>
- <item name="colorPrimaryVariant">@color/fita_blue</item>
- <item name="colorOnPrimary">@color/white</item>
- <!-- Secondary brand color. -->
- <item name="colorSecondary">@color/teal_200</item>
- <item name="colorSecondaryVariant">@color/teal_700</item>
- <item name="colorOnSecondary">@color/black</item>
- <!-- Status bar color. -->
- <item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
- <!-- Customize your theme here. -->
- </style>
-
- <style name="Theme.RecurveBowSight.NoActionBar">
- <item name="windowActionBar">false</item>
- <item name="windowNoTitle">true</item>
- </style>
-
- <style name="Theme.RecurveBowSight.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
-
- <style name="Theme.RecurveBowSight.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
- </resources>
|