Skip to content

Commit

Permalink
feat(capture-sdk): Update IBAN detected success color to match final …
Browse files Browse the repository at this point in the history
…Android UI design

The previous success color was taken from the iOS draft UI design.

PIA-4510
  • Loading branch information
a-szotyori committed Oct 19, 2023
1 parent 0f6befa commit 47bfecd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1805,7 +1805,7 @@ private void showIBANsDetectedOnScreen(List<String> ibans) {
mImageFrame.setImageTintList(ColorStateList.valueOf(
ContextCompat.getColor(
mFragment.getActivity(),
R.color.gc_success_02
R.color.gc_success_05
)
)
);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/gc_success_02"/>
<solid android:color="@color/gc_success_05"/>
<corners android:radius="@dimen/gc_medium"/>
<padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" />
</shape>
2 changes: 1 addition & 1 deletion capture-sdk/sdk/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<color name="gc_light_06">#BFBFBF</color>

<color name="gc_success_01">#09B523</color>
<color name="gc_success_02">#078319</color>
<color name="gc_success_02">#32D74B</color>
<color name="gc_success_03">#D0ECD4</color>
<color name="gc_success_04">#DEEEE1</color>
<color name="gc_success_05">#048016</color>
Expand Down

0 comments on commit 47bfecd

Please sign in to comment.