change archives color from white to teal for visibility with light bgs

This commit is contained in:
tibbi 2021-10-13 23:04:28 +02:00
parent 3f449cd515
commit 2f73baf13e
1 changed files with 3 additions and 3 deletions

View File

@ -69,9 +69,9 @@ class StorageFragment(context: Context, attributeSet: AttributeSet) : MyViewPage
documents_progressbar.setIndicatorColor(yellowColor)
documents_progressbar.trackColor = yellowColor.adjustAlpha(0.3f)
val whiteColor = context.resources.getColor(R.color.md_grey_white)
archives_progressbar.setIndicatorColor(whiteColor)
archives_progressbar.trackColor = whiteColor.adjustAlpha(0.3f)
val tealColor = context.resources.getColor(R.color.md_teal_700)
archives_progressbar.setIndicatorColor(tealColor)
archives_progressbar.trackColor = tealColor.adjustAlpha(0.3f)
val pinkColor = context.resources.getColor(R.color.md_pink_700)
others_progressbar.setIndicatorColor(pinkColor)