mirror of
https://github.com/jrpie/Launcher.git
synced 2025-04-19 18:30:50 +02:00
removed light theme; added dynamic theme (cf. #75)
This commit is contained in:
parent
06777a4d34
commit
3c59ad4c41
6 changed files with 63 additions and 6 deletions
|
@ -66,11 +66,13 @@
|
|||
<item>DEFAULT</item>
|
||||
<item>DARK</item>
|
||||
<item>LIGHT</item>
|
||||
<item>DYNAMIC</item>
|
||||
</string-array>
|
||||
<string-array name="settings_theme_color_theme_items" translatable="false">
|
||||
<item>@string/settings_theme_color_theme_item_default</item>
|
||||
<item>@string/settings_theme_color_theme_item_dark</item>
|
||||
<item>@string/settings_theme_color_theme_item_light</item>
|
||||
<item>@string/settings_theme_color_theme_item_dynamic</item>
|
||||
</string-array>
|
||||
|
||||
<string name="settings_theme_text_shadow_key" translatable="false">theme.text_shadow</string>
|
||||
|
|
|
@ -90,6 +90,7 @@
|
|||
<string name="settings_theme_color_theme_item_default">Default</string>
|
||||
<string name="settings_theme_color_theme_item_dark">Dark</string>
|
||||
<string name="settings_theme_color_theme_item_light">Light</string>
|
||||
<string name="settings_theme_color_theme_item_dynamic">Dynamic</string>
|
||||
|
||||
<string name="settings_theme_text_shadow">Text shadow</string>
|
||||
<string name="settings_theme_background">Background (app list and setting)</string>
|
||||
|
|
|
@ -51,6 +51,15 @@
|
|||
<item name="android:textColor">@color/lightTheme_text_color</item>
|
||||
</style>
|
||||
|
||||
<style name="colorThemeDynamic">
|
||||
<!--parent="Theme.Material3.Dark.NoActionBar"-->
|
||||
<item name="colorPrimary">@color/material_dynamic_primary70</item>
|
||||
<item name="colorPrimaryDark">@color/material_dynamic_primary50</item>
|
||||
<item name="colorAccent">@color/material_dynamic_tertiary50</item>
|
||||
<item name="android:colorBackground">@color/material_dynamic_neutral10</item>
|
||||
<item name="android:textColor">@color/material_dynamic_neutral_variant90</item>
|
||||
</style>
|
||||
|
||||
<style name="textShadow">
|
||||
<item name="android:shadowColor">#000</item>
|
||||
<item name="android:shadowDx">0</item>
|
||||
|
@ -118,6 +127,8 @@
|
|||
|
||||
<style name="AlertDialogCustom" parent="Theme.AppCompat.Light.Dialog.Alert">
|
||||
<item name="android:textColor">#000000</item>
|
||||
<item name="android:background">#ffffff</item>
|
||||
<item name="android:color">#000000</item>
|
||||
</style>
|
||||
|
||||
<!-- Set the fade in animation on all activities by default -->
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue