| 1 |
0c52af30
|
Leszek Koltunski
|
<resources>
|
| 2 |
|
|
|
| 3 |
|
|
<!-- Base application theme. -->
|
| 4 |
|
|
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
|
| 5 |
|
|
<!-- Customize your theme here. -->
|
| 6 |
|
|
<item name="colorPrimary">@color/colorPrimary</item>
|
| 7 |
|
|
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
| 8 |
|
|
<item name="colorAccent">@color/colorAccent</item>
|
| 9 |
|
|
</style>
|
| 10 |
|
|
|
| 11 |
f6fcf06a
|
Leszek Koltunski
|
<style name="CustomActivityThemeNoActionBar" parent="@style/Theme.AppCompat.NoActionBar">
|
| 12 |
|
|
<item name="android:windowNoTitle">true</item>
|
| 13 |
|
|
<item name="android:windowActionBar">false</item>
|
| 14 |
|
|
<item name="android:windowFullscreen">true</item>
|
| 15 |
|
|
<item name="android:windowContentOverlay">@null</item>
|
| 16 |
|
|
</style>
|
| 17 |
|
|
|
| 18 |
dd874ae8
|
Leszek Koltunski
|
<style name="MaterialThemeNoActionBar" parent="@style/Theme.MaterialComponents.NoActionBar">
|
| 19 |
|
|
<item name="android:windowNoTitle">true</item>
|
| 20 |
|
|
<item name="android:windowActionBar">false</item>
|
| 21 |
|
|
<item name="android:windowFullscreen">true</item>
|
| 22 |
|
|
<item name="android:windowContentOverlay">@null</item>
|
| 23 |
033100af
|
Leszek Koltunski
|
<item name="materialThemeOverlay">@style/ButtonStyleTextColor</item>
|
| 24 |
6bc01aa4
|
Leszek Koltunski
|
<item name="buttonBarNegativeButtonStyle">@style/NegativeButtonStyle</item>
|
| 25 |
|
|
<item name="buttonBarPositiveButtonStyle">@style/PositiveButtonStyle</item>
|
| 26 |
|
|
</style>
|
| 27 |
|
|
|
| 28 |
|
|
<style name="NegativeButtonStyle" parent="Widget.MaterialComponents.Button.TextButton.Dialog">
|
| 29 |
|
|
<item name="android:textColor">#ffffff</item>
|
| 30 |
|
|
</style>
|
| 31 |
|
|
|
| 32 |
|
|
<style name="PositiveButtonStyle" parent="Widget.MaterialComponents.Button.TextButton.Dialog">
|
| 33 |
|
|
<item name="android:textColor">#ffffff</item>
|
| 34 |
|
|
</style>
|
| 35 |
dd874ae8
|
Leszek Koltunski
|
|
| 36 |
033100af
|
Leszek Koltunski
|
<style name="ButtonStyleTextColor">
|
| 37 |
|
|
<item name="colorOnPrimary">@color/white</item>
|
| 38 |
|
|
<item name="colorOnSecondary">@color/dark_grey</item>
|
| 39 |
|
|
<item name="colorOnSurface">@color/light_grey</item>
|
| 40 |
|
|
</style>
|
| 41 |
|
|
|
| 42 |
0c52af30
|
Leszek Koltunski
|
</resources>
|