fix themes on android 6 and lower

This commit is contained in:
X1nto 2020-05-02 00:06:03 +04:00
parent 33a3fef6d5
commit ed2bc8b1e6
3 changed files with 3 additions and 4 deletions

View File

@ -31,8 +31,7 @@
</activity>
<activity
android:name=".ui.MainActivity"
android:label="@string/app_name"
android:theme="@style/LightTheme.Blue"/>
android:label="@string/app_name" />
<meta-data
android:name="preloaded_fonts"

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="DarkTheme.Blue">
<style name="DarkTheme.Blue" parent="@style/DarkTheme">
<item name="colorPrimary">#1490D7</item>
<item name="colorPrimaryVariant">#804EAFF5</item>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="LightTheme.Blue">
<style name="LightTheme.Blue" parent="@style/LightTheme">
<item name="colorPrimary">#1490D7</item>
<item name="colorPrimaryVariant">#2C7EB9</item>