Skip to content

Commit 63baa15

Browse files
committed
android: fix text color in selectors
1 parent 5eff5b9 commit 63baa15

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

android/app/src/main/java/me/kavishdevar/librepods/screens/AccessibilitySettingsScreen.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -742,6 +742,7 @@ fun AccessibilitySettingsScreen() {
742742
Text(
743743
"Phone",
744744
fontSize = 16.sp,
745+
color = textColor,
745746
fontFamily = FontFamily(Font(R.font.sf_pro)),
746747
modifier = Modifier.weight(1f)
747748
)
@@ -792,6 +793,7 @@ fun AccessibilitySettingsScreen() {
792793
Text(
793794
"Media",
794795
fontSize = 16.sp,
796+
color = textColor,
795797
fontFamily = FontFamily(Font(R.font.sf_pro)),
796798
modifier = Modifier.weight(1f)
797799
)

android/app/src/main/java/me/kavishdevar/librepods/screens/PressAndHoldSettingsScreen.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,7 @@ fun LongPressElement(name: String, enabled: Boolean = true, resourceId: Int, isF
403403
Text(
404404
name,
405405
fontSize = 16.sp,
406+
color = textColor,
406407
fontFamily = FontFamily(Font(R.font.sf_pro)),
407408
)
408409
Text (

0 commit comments

Comments
 (0)