Skip to content

Commit 2f73baf

Browse files
committed
change archives color from white to teal for visibility with light bgs
1 parent 3f449cd commit 2f73baf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/src/main/kotlin/com/simplemobiletools/filemanager/pro/fragments/StorageFragment.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ class StorageFragment(context: Context, attributeSet: AttributeSet) : MyViewPage
6969
documents_progressbar.setIndicatorColor(yellowColor)
7070
documents_progressbar.trackColor = yellowColor.adjustAlpha(0.3f)
7171

72-
val whiteColor = context.resources.getColor(R.color.md_grey_white)
73-
archives_progressbar.setIndicatorColor(whiteColor)
74-
archives_progressbar.trackColor = whiteColor.adjustAlpha(0.3f)
72+
val tealColor = context.resources.getColor(R.color.md_teal_700)
73+
archives_progressbar.setIndicatorColor(tealColor)
74+
archives_progressbar.trackColor = tealColor.adjustAlpha(0.3f)
7575

7676
val pinkColor = context.resources.getColor(R.color.md_pink_700)
7777
others_progressbar.setIndicatorColor(pinkColor)

0 commit comments

Comments
 (0)