Skip to content

Commit

Permalink
Remove unwanted instance of color hex
Browse files Browse the repository at this point in the history
  • Loading branch information
adhiamboperes committed Aug 7, 2023
1 parent 00787eb commit 8f57ebb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#25000000" />
<solid android:color="@color/component_color_button_shadow_color" />
<corners android:radius="@dimen/survey_shared_corner_radius" />
</shape>
</item>
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values-night/color_palette.xml
Original file line number Diff line number Diff line change
Expand Up @@ -225,4 +225,5 @@
<color name="color_palette_nps_selected_text_color">@color/color_def_white</color>
<color name="color_palette_nps_selected_background_color">@color/color_def_oppia_green</color>
<color name="color_palette_nps_unselected_background_color">@color/color_def_pale_green</color>
<color name="color_palette_button_shadow_color">@color/color_def_black_25</color>
</resources>
1 change: 1 addition & 0 deletions app/src/main/res/values/color_defs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -143,4 +143,5 @@

<color name="color_def_survey_disabled_button_grey">#E8E8E8</color>
<color name="color_def_pale_green">#E2F5F4</color>
<color name="color_def_black_25">#25000000</color>
</resources>
1 change: 1 addition & 0 deletions app/src/main/res/values/color_palette.xml
Original file line number Diff line number Diff line change
Expand Up @@ -265,4 +265,5 @@
<color name="color_palette_survey_disabled_button_text_color">@color/color_def_chooser_grey</color>
<color name="color_palette_button_text_color">@color/color_def_persian_green</color>
<color name="color_palette_edit_text_unselected_color">@color/color_def_grey</color>
<color name="color_palette_button_shadow_color">@color/color_def_black_25</color>
</resources>
1 change: 1 addition & 0 deletions app/src/main/res/values/component_colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -301,4 +301,5 @@
<color name="component_color_survey_disabled_button_text_color">@color/color_palette_survey_disabled_button_text_color</color>
<color name="component_color_begin_survey_button_text_color">@color/color_palette_button_text_color</color>
<color name="component_color_survey_edit_text_unselected_color">@color/color_palette_edit_text_unselected_color</color>
<color name="component_color_button_shadow_color">@color/color_palette_button_shadow_color</color>
</resources>

0 comments on commit 8f57ebb

Please sign in to comment.