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

Commit 32ba4e9a authored by narinder Rana's avatar narinder Rana
Browse files

update menu icon color blue to black, Drawer toolbar title color to white

parent 4f600eb3
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -17,7 +17,9 @@ Copyright (C) 2015 The Android Open Source Project
        android:width="24dp"
        android:height="24dp"
        android:viewportWidth="24.0"
        android:viewportHeight="24.0">
        android:viewportHeight="24.0"
    android:tint="@color/color_default_blue1"
    >
    <path
        android:fillColor="#FF737373"
        android:pathData="M10 4H4c-1.1 0,-1.99.9,-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2,-.9 2,-2V8c0,-1.1,-.9,-2,-2,-2h-8l-2,-2z"/>
+3 −1
Original line number Diff line number Diff line
@@ -17,7 +17,9 @@ Copyright (C) 2017 The Android Open Source Project
        android:width="24dp"
        android:height="24dp"
        android:viewportWidth="24.0"
        android:viewportHeight="24.0">
        android:viewportHeight="24.0"
    android:tint="@color/color_default_blue1"
    >
    <path
        android:fillColor="#FFDB4437"
        android:pathData="M21 19V5c0,-1.1,-.9,-2,-2,-2H5c-1.1 0,-2 .9,-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2,-.9 2,-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5,-4.5z"/>
+5 −0
Original line number Diff line number Diff line
@@ -26,9 +26,14 @@
        <item name="android:textColorPrimary">@color/color_default_primary_text</item>

        <item name="android:textColorSecondary">@color/color_default_primary_text</item>
        <item name="actionOverflowButtonStyle">@style/MyOverflowButtonStyle</item>
    </style>
    <style name="ActionBarPopupTheme" parent="@style/Theme.AppCompat.DayNight" />

    <style name="MyOverflowButtonStyle" parent="Widget.AppCompat.ActionButton.Overflow">
        <item name="android:tint">@color/color_default_primary_text</item>
    </style>

    <style name="DocumentsTheme" parent="@style/Theme.AppCompat.DayNight.DarkActionBar">
        <item name="actionBarWidgetTheme">@null</item>
        <item name="actionBarTheme">@style/ActionBarTheme</item>
+3 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ import android.widget.Toolbar;

import com.android.documentsui.base.Display;

import java.awt.Color;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

@@ -70,6 +71,7 @@ public abstract class DrawerController implements DrawerListener {

        if(accentColor!=0){
            toolbar.setBackgroundColor(accentColor);

        }

        drawer.getLayoutParams().width = calculateDrawerWidth(activity);
@@ -204,6 +206,7 @@ public abstract class DrawerController implements DrawerListener {
        @Override
        void setTitle(String title) {
            mToolbar.setTitle(title);
            mToolbar.setTitleTextColor(Color.WHITE);
        }

        @Override