mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-04-19 13:29:13 +00:00
Merge pull request #1332 from alexbakker/fix-1330
Use DayNight as the default theme
This commit is contained in:
commit
8e9a1bda92
2 changed files with 8 additions and 0 deletions
|
@ -27,6 +27,7 @@
|
||||||
android:icon="@mipmap/${iconName}"
|
android:icon="@mipmap/${iconName}"
|
||||||
android:label="Aegis"
|
android:label="Aegis"
|
||||||
android:supportsRtl="true"
|
android:supportsRtl="true"
|
||||||
|
android:theme="@style/Theme.Aegis.Launch"
|
||||||
tools:targetApi="tiramisu">
|
tools:targetApi="tiramisu">
|
||||||
<activity android:name=".ui.TransferEntriesActivity"
|
<activity android:name=".ui.TransferEntriesActivity"
|
||||||
android:label="@string/title_activity_transfer" />
|
android:label="@string/title_activity_transfer" />
|
||||||
|
|
|
@ -1,4 +1,11 @@
|
||||||
<resources>
|
<resources>
|
||||||
|
<style name="Theme.Aegis.Launch" parent="Theme.Material3.DayNight.NoActionBar">
|
||||||
|
<!-- colorPrimary in the root theme sets the task description color (seen in task switcher) -->
|
||||||
|
<item name="colorPrimary">@color/md_theme_light_primary</item>
|
||||||
|
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
|
||||||
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
<style name="Base.Theme.Aegis.Light" parent="Theme.Material3.Light">
|
<style name="Base.Theme.Aegis.Light" parent="Theme.Material3.Light">
|
||||||
<!-- Material colors -->
|
<!-- Material colors -->
|
||||||
<item name="colorPrimary">@color/md_theme_light_primary</item>
|
<item name="colorPrimary">@color/md_theme_light_primary</item>
|
||||||
|
|
Loading…
Add table
Reference in a new issue