skyline/app/src/main/res/values/styles.xml
lynxnb 2bcf0e2abd Update themes and styles to Material Design 3
This commit transitions all layouts and views to the use the new stuff from MD3.
2023-03-22 21:57:50 +01:00

15 lines
663 B
XML

<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Workaround for AndroidX PreferenceScreen since it doesn't use MaterialAlertDialogs -->
<style name="ThemeOverlay.App.MaterialAlertDialog" parent="ThemeOverlay.Material3.MaterialAlertDialog">
<item name="dialogCornerRadius">28dp</item>
<item name="cornerFamily">rounded</item>
<item name="android:colorBackground">?attr/colorSurface</item>
</style>
<!-- Override of the MD3 Chip style to make text all caps -->
<style name="ChipChoice" parent="Widget.Material3.Chip.Filter.Elevated">
<item name="android:textAllCaps">true</item>
</style>
</resources>