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

Commit 2b261f53 authored by Mohit Mali's avatar Mohit Mali
Browse files

e colors implementation

parent 6d2db696
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -43,6 +43,7 @@
        <RelativeLayout
            android:id="@+id/gallery_root"
            android:layout_width="match_parent"
            android:background="@color/primary"
            android:layout_height="match_parent"
            android:layout_above="@+id/bottom_navigation">

+3 −3
Original line number Diff line number Diff line
@@ -15,9 +15,9 @@
-->
<resources>

    <color name="primary">#333333</color>
    <color name="primaryDark">#000000</color>
    <color name="accent">#33b5e5</color>
    <color name="primary">@lineageos.platform:color/color_default_primary_text</color>
    <color name="primaryDark">@lineageos.platform:color/color_default_primary_text</color>
    <color name="accent">@lineageos.platform:color/color_default_primary</color>

    <color name="white">#fafafa</color>
    <color name="black">#212121</color>
+9 −9
Original line number Diff line number Diff line
@@ -15,15 +15,15 @@
-->
<resources>

    <color name="default_background">@color/white</color>
    <color name="default_background">@lineageos.platform:color/color_default_primary_text</color>

    <!-- configuration for album set page -->
    <color name="albumset_background">@color/white</color>
    <color name="albumset_placeholder">@color/black_transparent_3</color>
    <color name="albumset_background">@color/default_background</color>
    <color name="albumset_placeholder">@color/default_background</color>
    <color name="albumset_label_background">@color/black_transparent_4</color>
    <color name="albumset_label_title">@color/white</color>
    <color name="albumset_label_count">@color/white</color>
    <color name="albumlist_label_title">@color/black_transparent_4</color>
    <color name="albumlist_label_title">@color/white</color>

    <color name="darker_transparent">@color/black_transparent_5</color>

@@ -85,10 +85,10 @@
    <color name="edit_background">@color/black</color>
    <color name="edit_actionbar_background">@color/black</color>
    <color name="dialog_button_color">#009688</color>
    <color name="timeline_title_text_color">@color/black_transparent_4</color>
    <color name="timeline_title_number_text_color">@color/black_transparent_3</color>
    <color name="timeline_title_background_color">@color/white</color>
    <color name="timeline_title_text_color">@color/white</color>
    <color name="timeline_title_number_text_color">@color/white</color>
    <color name="timeline_title_background_color">@color/default_background</color>

    <color name="navigation_accent_disabled">#747474</color>
    <color name="navigation_accent_enabled">@color/white</color>
    <color name="navigation_accent_disabled">@lineageos.platform:color/color_default_gray2</color>
    <color name="navigation_accent_enabled">@lineageos.platform:color/color_default_primary</color>
</resources>
+1 −1
Original line number Diff line number Diff line
@@ -974,7 +974,7 @@ public class AlbumPage extends ActivityState implements GalleryActionBar.Cluster
        if (tvEmptyAlbum == null) {
            tvEmptyAlbum = new TextView(mActivity);
            tvEmptyAlbum.setText(R.string.tvEmptyVideos);
            tvEmptyAlbum.setTextColor(Color.parseColor("#8A000000"));
            tvEmptyAlbum.setTextColor(galleryRoot.getResources().getColor(R.color.white, null));
            tvEmptyAlbum.setGravity(Gravity.CENTER);
            tvEmptyAlbum.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20);
            RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(
+1 −1
Original line number Diff line number Diff line
@@ -258,7 +258,7 @@ public class AlbumSetPage extends ActivityState implements
        if (tvEmptyAlbum == null) {
            tvEmptyAlbum = new TextView(mActivity);
            tvEmptyAlbum.setText(R.string.tvEmptyAlbum);
            tvEmptyAlbum.setTextColor(Color.parseColor("#8A000000"));
            tvEmptyAlbum.setTextColor(galleryRoot.getResources().getColor(R.color.white, null));
            tvEmptyAlbum.setGravity(Gravity.CENTER);
            tvEmptyAlbum.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20);
            tvEmptyAlbum.setId(R.id.empty_album);
Loading