Android App zur Berechnung der Visiereinstellung eines Recurvebogens.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

themes.xml 1.6KB

123456789101112131415161718192021222324252627282930313233
  1. <resources xmlns:tools="http://schemas.android.com/tools">
  2. <!-- Splash screen theme. -->
  3. <style name="Theme.RecurveBowSight.Starting" parent="Theme.SplashScreen">
  4. <item name="windowSplashScreenAnimatedIcon">@drawable/ic_launcher</item>
  5. <item name="windowSplashScreenBackground">@color/white</item>
  6. <item name="postSplashScreenTheme">@style/Theme.RecurveBowSight.NoActionBar</item>
  7. <item name="windowSplashScreenAnimationDuration">1500</item>
  8. </style>
  9. <!-- Base application theme. -->
  10. <style name="Theme.RecurveBowSight" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
  11. <!-- Primary brand color. -->
  12. <item name="colorPrimary">@color/fita_blue_dark</item>
  13. <item name="colorPrimaryVariant">@color/fita_blue</item>
  14. <item name="colorOnPrimary">@color/white</item>
  15. <!-- Secondary brand color. -->
  16. <item name="colorSecondary">@color/teal_200</item>
  17. <item name="colorSecondaryVariant">@color/teal_700</item>
  18. <item name="colorOnSecondary">@color/black</item>
  19. <!-- Status bar color. -->
  20. <item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
  21. <!-- Customize your theme here. -->
  22. </style>
  23. <style name="Theme.RecurveBowSight.NoActionBar">
  24. <item name="windowActionBar">false</item>
  25. <item name="windowNoTitle">true</item>
  26. </style>
  27. <style name="Theme.RecurveBowSight.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
  28. <style name="Theme.RecurveBowSight.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
  29. </resources>