diff options
author | jacquarg <guillaume.jacquart@hoodbrains.com> | 2022-03-22 09:36:01 +0100 |
---|---|---|
committer | jacquarg <guillaume.jacquart@hoodbrains.com> | 2022-03-22 09:36:01 +0100 |
commit | a9d8b2e6a4c45a62ae0b5cbf1e7682886f4360d1 (patch) | |
tree | a3020e8f9a8de56579530b90852ba804552284bb /app/src/main/res/layout/fragment_dashboard.xml | |
parent | b18b3d06913cf1c2b792a26f5d37e6949af2cf60 (diff) |
Use system theme colors. #5082
Diffstat (limited to 'app/src/main/res/layout/fragment_dashboard.xml')
-rw-r--r-- | app/src/main/res/layout/fragment_dashboard.xml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/app/src/main/res/layout/fragment_dashboard.xml b/app/src/main/res/layout/fragment_dashboard.xml index 97751a1..97fdae3 100644 --- a/app/src/main/res/layout/fragment_dashboard.xml +++ b/app/src/main/res/layout/fragment_dashboard.xml @@ -15,7 +15,7 @@ > <LinearLayout - android:background="@color/white" + android:background="@color/primary" android:gravity="center_horizontal" android:layout_height="match_parent" android:layout_width="match_parent" @@ -41,7 +41,7 @@ android:layout_weight="1" android:text="@string/dashboard_state_title_off" android:textSize="14sp" - android:textColor="@color/grey_text" + android:textColor="@color/secondary_text" /> <Switch android:id="@+id/toggle_privacy_central" @@ -53,7 +53,7 @@ <View android:layout_width="match_parent" android:layout_height="1dp" - android:background="@color/grey_divider" + android:background="@color/divider" /> @@ -77,7 +77,7 @@ android:layout_height="wrap_content" android:text="@string/dashboard_state_trackers_label" android:textSize="12sp" - android:textColor="@color/grey_text" + android:textColor="@color/secondary_text" android:layout_marginBottom="8dp" /> <TextView @@ -86,7 +86,7 @@ android:layout_height="wrap_content" android:text="@string/dashboard_state_trackers_off" android:textSize="12sp" - android:textColor="@color/black_text" + android:textColor="@color/primary_text" android:textAllCaps="true" /> </LinearLayout> @@ -102,7 +102,7 @@ android:layout_height="wrap_content" android:text="@string/dashboard_state_geolocation_label" android:textSize="12sp" - android:textColor="@color/grey_text" + android:textColor="@color/secondary_text" android:layout_marginBottom="8dp" /> <TextView @@ -111,7 +111,7 @@ android:layout_height="wrap_content" android:text="@string/dashboard_state_geolocation_off" android:textSize="12sp" - android:textColor="@color/black_text" + android:textColor="@color/primary_text" android:textAllCaps="true" /> </LinearLayout> @@ -127,7 +127,7 @@ android:layout_height="wrap_content" android:text="@string/dashboard_state_ipaddress_label" android:textSize="12sp" - android:textColor="@color/grey_text" + android:textColor="@color/secondary_text" android:layout_marginBottom="8dp" /> <TextView @@ -136,7 +136,7 @@ android:layout_height="wrap_content" android:text="@string/dashboard_state_ipaddress_off" android:textSize="12sp" - android:textColor="@color/black_text" + android:textColor="@color/primary_text" android:textAllCaps="true" android:visibility="gone" /> @@ -199,7 +199,7 @@ android:text="@string/dashboard_state_ipaddress_off" android:layout_width="match_parent" android:layout_height="1dp" android:layout_marginStart="48dp" - android:background="@color/grey_divider" + android:background="@color/divider" /> <include @@ -214,7 +214,7 @@ android:text="@string/dashboard_state_ipaddress_off" android:layout_width="match_parent" android:layout_height="1dp" android:layout_marginStart="48dp" - android:background="@color/grey_divider" + android:background="@color/divider" /> <include @@ -230,7 +230,7 @@ android:text="@string/dashboard_state_ipaddress_off" android:layout_width="match_parent" android:layout_height="1dp" android:layout_marginStart="48dp" - android:background="@color/grey_divider" + android:background="@color/divider" /> <include |