Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b28ab89a authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊 Committed by Nishith Khanna
Browse files

apps: Fix light nav bar

parent f7a620fe
Loading
Loading
Loading
Loading
+0 −24
Original line number Diff line number Diff line
<!--
  ~ Apps  Quickly and easily install Android apps onto your device!
  ~ Copyright (C) 2021  E FOUNDATION
  ~
  ~ This program is free software: you can redistribute it and/or modify
  ~ it under the terms of the GNU General Public License as published by
  ~ the Free Software Foundation, either version 3 of the License, or
  ~ (at your option) any later version.
  ~
  ~ This program is distributed in the hope that it will be useful,
  ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
  ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  ~ GNU General Public License for more details.
  ~
  ~ You should have received a copy of the GNU General Public License
  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
  -->

<resources>

    <!-- Detect Day/Night Theme -->
    <bool name="is_day">false</bool>

</resources>
+0 −3
Original line number Diff line number Diff line
@@ -23,7 +23,4 @@
    <color name="colorGrey">#262626</color>

    <color name="colorGrey2">#353535</color>

    <!-- TOS -->
    <color name="tos_bottom">@color/colorNavBar</color>
</resources>
 No newline at end of file

app/src/main/res/values/bools.xml

deleted100644 → 0
+0 −24
Original line number Diff line number Diff line
<!--
  ~ Apps  Quickly and easily install Android apps onto your device!
  ~ Copyright (C) 2021  E FOUNDATION
  ~
  ~ This program is free software: you can redistribute it and/or modify
  ~ it under the terms of the GNU General Public License as published by
  ~ the Free Software Foundation, either version 3 of the License, or
  ~ (at your option) any later version.
  ~
  ~ This program is distributed in the hope that it will be useful,
  ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
  ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  ~ GNU General Public License for more details.
  ~
  ~ You should have received a copy of the GNU General Public License
  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
  -->

<resources>

    <!-- Detect Day/Night Theme -->
    <bool name="is_day">true</bool>

</resources>
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
    <color name="colorBackground">@color/e_background</color>

    <!-- TOS -->
    <color name="tos_bottom">@android:color/white</color>
    <color name="tos_bottom">@color/colorNavBar</color>

    <!-- Shimmer Animation -->
    <color name="colorGrey">#f2f2f2</color>
+2 −1
Original line number Diff line number Diff line
@@ -26,7 +26,8 @@
        <item name="actionBarTheme">@style/AppTheme.ActionBarStyle</item>
        <item name="android:colorBackground">@color/colorBackground</item>
        <item name="android:statusBarColor">@color/colorBackground</item>
        <item name="android:windowLightStatusBar">@bool/is_day</item>
        <item name="android:windowLightStatusBar">@bool/isLight</item>
        <item name="android:windowLightNavigationBar">@bool/isLight</item>
        <item name="android:navigationBarColor">@color/colorNavBar</item>
        <item name="android:windowContentOverlay">@null</item>
        <item name="autoCompleteTextViewStyle">@style/AutoCompleteTextViewStyle</item>