2016-06-04 17:28:05 +02:00
|
|
|
<resources>
|
|
|
|
|
2019-08-01 16:29:20 +02:00
|
|
|
<!-- The launcher theme. It sets the main window background to the launch_screen drawable -->
|
2019-08-08 18:39:56 +02:00
|
|
|
<style name="AppTheme.Launcher" parent="Theme.AppCompat.NoActionBar">
|
2019-08-01 16:29:20 +02:00
|
|
|
<item name="android:windowBackground">@drawable/launch_screen</item>
|
|
|
|
<!-- Optional, on Android 5+ you can modify the colorPrimaryDark color to match the windowBackground color for further branding-->
|
|
|
|
<!-- <item name="colorPrimaryDark">@android:color/white</item> -->
|
|
|
|
</style>
|
|
|
|
|
2018-06-03 23:28:04 +02:00
|
|
|
<style name="AppTheme" parent="Theme.AppCompat">
|
|
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
|
|
|
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
|
|
|
<item name="colorAccent">@color/colorAccent</item>
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="AppTheme.NoActionBar" parent="Theme.AppCompat.NoActionBar">
|
2016-06-04 17:28:05 +02:00
|
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
|
|
|
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
|
|
|
<item name="colorAccent">@color/colorAccent</item>
|
|
|
|
</style>
|
|
|
|
|
2017-02-09 03:15:13 +01:00
|
|
|
<style name="Theme.AppCompat.Translucent" parent="Theme.AppCompat.NoActionBar">
|
|
|
|
<item name="android:windowNoTitle">true</item>
|
|
|
|
<item name="android:windowBackground">@android:color/transparent</item>
|
|
|
|
<item name="android:colorBackgroundCacheHint">@null</item>
|
|
|
|
<item name="android:windowIsTranslucent">true</item>
|
|
|
|
<item name="android:windowAnimationStyle">@android:style/Animation</item>
|
|
|
|
</style>
|
|
|
|
|
2019-01-18 22:40:08 +01:00
|
|
|
<style name="InsightAlertDialog" parent="Theme.AppCompat.Dialog">
|
|
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
|
|
|
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
|
|
|
<item name="colorAccent">@color/colorAccent</item>
|
|
|
|
<item name="android:windowMinWidthMajor">96%</item>
|
|
|
|
<item name="android:windowMinWidthMinor">96%</item>
|
|
|
|
</style>
|
|
|
|
|
2018-08-10 17:13:40 +02:00
|
|
|
<style name="Theme.AppCompat.NoTitle" parent="Theme.AppCompat.NoActionBar">
|
|
|
|
<item name="android:windowNoTitle">true</item>
|
|
|
|
<item name="android:windowBackground">@android:color/transparent</item>
|
|
|
|
<item name="android:colorBackgroundCacheHint">@null</item>
|
|
|
|
<item name="android:windowIsTranslucent">false</item>
|
|
|
|
<item name="android:windowAnimationStyle">@android:style/Animation</item>
|
|
|
|
</style>
|
|
|
|
|
2017-05-09 18:36:13 +02:00
|
|
|
<style name="ButtonSmallFontStyle">
|
|
|
|
<item name="android:textSize">10sp</item>
|
|
|
|
</style>
|
|
|
|
|
2018-05-20 21:53:55 +02:00
|
|
|
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
|
|
|
|
|
2016-06-04 17:28:05 +02:00
|
|
|
</resources>
|