skyline/app/src/main/res/values/styles.xml

15 lines
663 B
XML
Raw Normal View History

<?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>