light theme

This commit is contained in:
Josia Pietsch 2024-11-26 01:03:59 +01:00
parent b09c6a52b2
commit 68fa4190f3
Signed by: jrpie
GPG key ID: E70B571D66986A2D
15 changed files with 63 additions and 11 deletions

View file

@ -9,7 +9,7 @@
<color name="darkTheme_text_color">#fff</color>
<color name="lightTheme_background_color">#fff</color>
<color name="lightTheme_accent_color">#5555ff</color>
<color name="lightTheme_accent_color">#9999ff</color>
<color name="lightTheme_text_color">#000</color>
</resources>

View file

@ -51,8 +51,9 @@
<string-array name="settings_theme_color_theme_values" translatable="false">
<item>DEFAULT</item>
<item>DARK</item>
<!--<item>light</item>-->
<item>LIGHT</item>
</string-array>
<string name="settings_theme_text_shadow_key" translatable="false">theme.text_shadow</string>
<string name="settings_theme_background_key" translatable="false">theme.background</string>
<string-array name="settings_theme_background_values" translatable="false">
<item>TRANSPARENT</item>

View file

@ -90,8 +90,10 @@
<string-array name="settings_theme_color_theme_items">
<item>Default</item>
<item>Dark</item>
<!--<item>Light</item>-->
<item>Light</item>
</string-array>
<string name="settings_theme_text_shadow">Text shadow</string>
<string name="settings_theme_background">Background (app list and setting)</string>
<string-array name="settings_theme_background_items">
<item>Transparent</item>

View file

@ -34,6 +34,7 @@
<item name="android:colorBackground">@color/darkTheme_background_color</item>
<item name="android:textColor">@color/darkTheme_text_color</item>
</style>
<style name="colorThemeDefault">
<item name="colorPrimary">@color/finnmglasTheme_background_color</item>
<item name="colorPrimaryDark">@color/finnmglasTheme_background_color</item>
@ -50,6 +51,17 @@
<item name="android:textColor">@color/lightTheme_text_color</item>
</style>
<style name="textShadow">
<item name="android:shadowColor">#000</item>
<item name="android:shadowDx">0</item>
<item name="android:shadowDy">0</item>
<item name="android:shadowRadius">2</item>
</style>
<style name="textShadowLight" parent="textShadow">
<item name="android:shadowColor">#aaa</item>
</style>
<style name="backgroundWallpaper">
<item name="android:statusBarColor">@android:color/transparent</item>
@ -84,6 +96,19 @@
<item name="android:fontFamily">serif</item>
</style>
<style name="textColorWhite">
<item name="android:textColor">@color/finnmglasTheme_text_color</item>
</style>
<style name="textColorWhiteAndShadow">
<item name="android:textColor">@color/finnmglasTheme_text_color</item>
</style>
<style name="textColorBlack">
<item name="android:textColor">#000</item>
</style>