diff options
author | Abdullah Tabassum <abdullahirum@google.com> | 2023-06-14 19:33:52 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2023-06-14 19:33:52 +0000 |
commit | 82b901b8ceb61d46b627acaba5da2ed7435272ac (patch) | |
tree | 797e488d258da9955be49bd86b729bc291acb4de | |
parent | 30e12f3bc0660c94c7b21484f65fcf8e8879e23b (diff) | |
parent | e9b4b023ff07f07847de0f90a5f2bdadace814e1 (diff) |
Merge "Fix contrast between dialog button, icon and dialog" into udc-dev
-rw-r--r-- | res/drawable/secondary_dialog_button_background.xml | 2 | ||||
-rw-r--r-- | res/layout/dialog_view.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/res/drawable/secondary_dialog_button_background.xml b/res/drawable/secondary_dialog_button_background.xml index 7b0ad340..ad6c3a8a 100644 --- a/res/drawable/secondary_dialog_button_background.xml +++ b/res/drawable/secondary_dialog_button_background.xml @@ -28,7 +28,7 @@ <item android:id="@android:id/background"> <shape android:shape="rectangle"> - <stroke android:color="@color/color_accent_primary" android:width="1dp" /> + <stroke android:color="@color/system_primary" android:width="1dp" /> <corners android:radius="50dp" /> </shape> </item> diff --git a/res/layout/dialog_view.xml b/res/layout/dialog_view.xml index 9a0d262a..870ac6c9 100644 --- a/res/layout/dialog_view.xml +++ b/res/layout/dialog_view.xml @@ -28,7 +28,7 @@ android:id="@+id/icon" android:layout_width="32dp" android:layout_height="32dp" - android:tint="@color/color_accent_primary" + android:tint="@color/system_primary" tools:ignore="UseAppTint" /> <TextView |