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

Commit abef55a1 authored by Andrew Sapperstein's avatar Andrew Sapperstein
Browse files

Update Launcher to use theme colors.

Instead of using hard-coded variants of colors, use the theme color
that corresponds (colorAccent, colorPrimary, etc).

Updated:
- "Search for more apps" text
- App info drop target hover color
- PageIndicatorDots
- All apps & widget scroll bar & scroll popup colors
- All apps section text color
- widget picker background color

TODO:
- widget picker header color

BUG: 28625102
Change-Id: I74b543ff71b8caef8cd950c8183ac84c759cb4d5
parent ae50284e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
-->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="rectangle">
    <solid android:color="@color/container_fastscroll_thumb_active_color" />
    <solid android:color="?android:attr/colorAccent" />
    <size
        android:width="64dp"
        android:height="64dp" />
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
-->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="rectangle">
    <solid android:color="@color/container_fastscroll_thumb_active_color" />
    <solid android:color="?android:attr/colorAccent" />
    <size
        android:width="64dp"
        android:height="64dp" />
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@
    android:paddingRight="16dp"
    android:fontFamily="sans-serif-medium"
    android:textSize="14sp"
    android:textColor="@color/launcher_accent_color"
    android:textColor="?android:attr/colorAccent"
    android:text="@string/all_apps_search_market_message"
    android:textAllCaps="true"
    android:focusable="true"
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
    android:layout_weight="1"
    android:orientation="vertical"
    android:focusable="true"
    android:background="@color/widgets_cell_color"
    android:background="?android:attr/colorPrimary"
    android:gravity="center_horizontal">

    <LinearLayout
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
    android:id="@+id/widgets_cell_list_container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/widgets_cell_color"
    android:background="?android:attr/colorPrimary"
    android:orientation="vertical"
    android:focusable="true"
    android:descendantFocusability="afterDescendants">
Loading