trkpt/app/src/main/res/values/styles.xml
2022-04-06 14:45:38 +02:00

25 lines
897 B
XML

<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.Material3.DayNight.NoActionBar">
<!-- colorPrimary is used in dialog buttons for example -->
<item name="colorPrimary">@color/default_neutral_darker</item>
<!-- Do not use primary colored elevation overlays to present a visual hierarchy - TO COLORFUL -->
<item name="elevationOverlayEnabled">false</item>
<!-- Use "light" Status Bar -->
<item name="android:windowLightStatusBar">true</item>
<item name="android:statusBarColor">@color/status_bar_background</item>
</style>
<!-- Override background color in AlertDialog -->
<style name="AlertDialogTheme" parent="ThemeOverlay.Material3.Dialog.Alert">
<item name="colorSurface">@color/dialog_background</item>
</style>
</resources>