2024-08-12 17:02:52 +09:00
|
|
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
<!-- Base application theme. -->
|
|
|
|
|
<style name="Theme.LunarLauncher" parent="Theme.Material3.Light.NoActionBar">
|
|
|
|
|
<!-- Background -->
|
|
|
|
|
<item name="android:windowShowWallpaper">true</item>
|
|
|
|
|
<!-- System bars -->
|
|
|
|
|
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
|
|
|
|
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
|
|
|
|
<item name="android:navigationBarColor">@color/navigation_bar</item>
|
|
|
|
|
<item name="android:windowLightStatusBar">true</item>
|
|
|
|
|
<item name="android:windowLightNavigationBar" tools:targetApi="27">true</item>
|
2024-09-05 18:11:18 +09:00
|
|
|
<item name="android:windowIsTranslucent">true</item>
|
|
|
|
|
<item name="android:windowBackground">@android:color/transparent</item>
|
2024-08-12 17:02:52 +09:00
|
|
|
<!-- Widgets -->
|
|
|
|
|
<item name="sliderStyle">@style/Slider</item>
|
|
|
|
|
<item name="scrimBackground">@color/almost_transparent</item>
|
|
|
|
|
</style>
|
2024-09-06 18:13:00 +09:00
|
|
|
|
|
|
|
|
<style name="roundedImageView" parent="">
|
|
|
|
|
<item name="cornerFamily">rounded</item>
|
|
|
|
|
<item name="cornerSize">8dp</item>
|
|
|
|
|
</style>
|
2024-08-12 17:02:52 +09:00
|
|
|
</resources>
|