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

Commit 862e9135 authored by Joey's avatar Joey
Browse files

Updater: Support Dark mode and update colors

Change-Id: I3503311e9e94663c4b708fc744962ce97690d6e1
parent 6d24b010
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ android {
    buildToolsVersion '27.0.3'

    defaultConfig {
        minSdkVersion 26
        minSdkVersion 27
        targetSdkVersion 27
    }

+1 −1
Original line number Diff line number Diff line
@@ -6,6 +6,6 @@
    android:viewportHeight="24">

    <path
        android:fillColor="@android:color/white"
        android:fillColor="@color/inverted"
        android:pathData="M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z" />
</vector>
+1 −1
Original line number Diff line number Diff line
@@ -5,6 +5,6 @@
        android:viewportWidth="24.0"
        android:viewportHeight="24.0">
    <path
        android:fillColor="#FF000000"
        android:fillColor="@color/inverted"
        android:pathData="M17,1.01L7,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h10c1.1,0 2,-0.9 2,-2L19,3c0,-1.1 -0.9,-1.99 -2,-1.99zM17,19L7,19L7,5h10v14zM16,13h-3L13,8h-2v5L8,13l4,4 4,-4z"/>
</vector>
+6 −6
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:theme="@style/AppTheme.AppBarOverlay"
            app:collapsedTitleTextAppearance="@style/TextAppearanceWhite"
            app:collapsedTitleTextAppearance="@style/TextAppearanceInverted"
            app:contentScrim="?attr/colorPrimary"
            app:expandedTitleTextAppearance="@style/TextAppearanceTransparent"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">
@@ -39,7 +39,7 @@
                    android:layout_height="wrap_content"
                    android:fontFamily="sans-serif-light"
                    android:paddingBottom="16dp"
                    android:textColor="@color/white"
                    android:textColor="?android:attr/textColorPrimary"
                    android:textSize="56sp" />

                <TextView
@@ -47,7 +47,7 @@
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@id/header_title"
                    android:textColor="@color/white"
                    android:textColor="?android:attr/textColorPrimary"
                    android:textSize="12sp" />

                <TextView
@@ -55,7 +55,7 @@
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@id/header_build_date"
                    android:textColor="@color/white"
                    android:textColor="?android:attr/textColorPrimary"
                    android:textSize="12sp" />

                <TextView
@@ -63,7 +63,7 @@
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@id/header_build_version"
                    android:textColor="@color/white"
                    android:textColor="?android:attr/textColorPrimary"
                    android:textSize="12sp" />
            </RelativeLayout>

@@ -71,7 +71,7 @@
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:titleTextColor="@color/white"
                android:textColor="?android:attr/textColorPrimary"
                app:layout_collapseMode="pin" />
        </android.support.design.widget.CollapsingToolbarLayout>
    </android.support.design.widget.AppBarLayout>
+4 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <bool name="theme_is_light">false</bool>
</resources>
Loading