Skip to content

Commit

Permalink
color: use same color for address list items
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarning committed Aug 31, 2023
1 parent 6df7b88 commit 9871574
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class AddressManagementActivity : BaseActivity(), ServiceConnection {

inner class AddressListAdapter(private val context: Activity): BaseAdapter() {
// hack, we want android:textColorPrimary
private val defaultColor = Color.parseColor(if (isNightmodeEnabled(context)) "#DD0000" else "#000000")
private val defaultColor = Color.parseColor(if (isNightmodeEnabled(context)) "#EC3E3E" else "#000000")
private val markColor = Color.parseColor("#39b300")
var allAddresses = mutableListOf<AddressEntry>()
private var systemAddresses = mutableListOf<AddressEntry>()
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/item_address.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
android:fontFamily="@font/lato_regular"
android:paddingTop="6dp"
android:paddingBottom="6dp"
android:textColor="?android:textColorPrimary"
android:textColor="?android:textColorSecondary"
android:textSize="20sp" />

<ImageView
Expand Down

0 comments on commit 9871574

Please sign in to comment.