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

Commit 818969e6 authored by Abhishek Aggarwal's avatar Abhishek Aggarwal
Browse files

Merge branch '5075_pvc_dark_mode' into 'main'

pvc: Add support for dark mode

See merge request e/privacy-central/privacycentralapp!36
parents dded3d54 a84a733f
Loading
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -26,7 +26,6 @@ abstract class NavToolbarFragment(@LayoutRes contentLayoutId: Int) : ToolbarFrag
    override fun setupToolbar(toolbar: MaterialToolbar) {
        super.setupToolbar(toolbar)
        toolbar.apply {
            setNavigationIcon(R.drawable.ic_ic_chevron_left_24dp)
            setNavigationOnClickListener {
                requireActivity().onBackPressed()
            }
+27 −0
Original line number Diff line number Diff line
<!--
  ~ 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/>.
  -->

<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24"
    android:autoMirrored="true">
  <path
      android:fillColor="@color/accent"
      android:pathData="M20,11H7.83l5.59-5.59L12,4l-8,8l8,8l1.41-1.41L7.83,13H20V11z" />
</vector>
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
    android:width="24dp"
    android:viewportHeight="24.0"
    android:viewportWidth="24.0"
    android:tint="#000">
    android:tint="@color/iconInvertedColor">
    <path android:fillColor="#FF000000"
          android:pathData="M9.71,18.71l-1.42,-1.42l5.3,-5.29l-5.3,-5.29l1.42,-1.42l6.7,6.71z"/>
</vector>
+0 −10
Original line number Diff line number Diff line
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24">
  <path
      android:pathData="M17.885,3.77L16.115,2L6.115,12L16.115,22L17.885,20.23L9.655,12L17.885,3.77Z"
      android:fillColor="#000000"
      android:fillAlpha="0.87"/>
</vector>
+4 −3
Original line number Diff line number Diff line
@@ -2,14 +2,15 @@
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24">
    android:viewportHeight="24"
    android:tint="@color/red_off">
    <path
        android:pathData="M4,11V5.6499L12,2.0943L20,5.6499V11C20,16.0434 16.556,20.7257 12,21.9673C7.444,20.7257 4,16.0434 4,11Z"
        android:strokeWidth="2"
        android:fillColor="#00000000"
        android:strokeColor="#F8432E"/>
        android:strokeColor="#000000"/>
    <path
        android:pathData="M15.1213,10.1213L15.8284,9.4142L14.4142,8L13.7071,8.7071L11.9142,10.5L10.1213,8.7071L9.4142,8L8,9.4142L8.7071,10.1213L10.5,11.9142L8.7071,13.7071L8,14.4142L9.4142,15.8284L10.1213,15.1213L11.9142,13.3284L13.7071,15.1213L14.4142,15.8284L15.8284,14.4142L15.1213,13.7071L13.3284,11.9142L15.1213,10.1213Z"
        android:fillColor="#F8432E"
        android:fillColor="#000000"
        android:fillType="evenOdd"/>
</vector>
Loading