12 lines
624 B
XML
12 lines
624 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<resources>
|
||
|
|
<!-- Platform parent rather than Theme.Material3.* so the app does not need
|
||
|
|
the View-based material-components dependency. Compose supplies the
|
||
|
|
real theming; this only prevents a white flash before it composes. -->
|
||
|
|
<style name="Theme.PhotoGalleryUploader" parent="@android:style/Theme.Material.NoActionBar">
|
||
|
|
<item name="android:windowBackground">@color/gruvbox_bg</item>
|
||
|
|
<item name="android:statusBarColor">@color/gruvbox_bg</item>
|
||
|
|
<item name="android:navigationBarColor">@color/gruvbox_bg</item>
|
||
|
|
</style>
|
||
|
|
</resources>
|