From 763f3fdb15406ac48352e29bb5075393c00fd155 Mon Sep 17 00:00:00 2001 From: Cuong-Tran Date: Mon, 24 Jun 2024 15:29:56 +0700 Subject: [PATCH] primary color for page count in reader --- .../java/eu/kanade/presentation/reader/PageIndicatorText.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/eu/kanade/presentation/reader/PageIndicatorText.kt b/app/src/main/java/eu/kanade/presentation/reader/PageIndicatorText.kt index d561d2d8c..40cd15768 100644 --- a/app/src/main/java/eu/kanade/presentation/reader/PageIndicatorText.kt +++ b/app/src/main/java/eu/kanade/presentation/reader/PageIndicatorText.kt @@ -26,7 +26,9 @@ fun PageIndicatorText( val text = "$currentPage / $totalPages" val style = TextStyle( - color = Color(235, 235, 235), + // KMK --> + color = MaterialTheme.colorScheme.primary, + // KMK <-- fontSize = MaterialTheme.typography.bodySmall.fontSize, fontWeight = FontWeight.Bold, letterSpacing = 1.sp,