소스 검색

Darken the description colors (#3858)

* Darken the description colors

* Restore UpdatesHolder.kt

* Use the same color as the Extensions subtitles
Soitora 4 년 전
부모
커밋
9f05d563f9

+ 9 - 3
app/src/main/java/eu/kanade/tachiyomi/ui/manga/chapter/ChapterHolder.kt

@@ -32,13 +32,19 @@ class ChapterHolder(
         }
 
         // Set correct text color
-        val chapterColor = when {
+        val chapterTitleColor = when {
             chapter.read -> adapter.readColor
             chapter.bookmark -> adapter.bookmarkedColor
             else -> adapter.unreadColor
         }
-        chapter_title.setTextColor(chapterColor)
-        chapter_description.setTextColor(chapterColor)
+        chapter_title.setTextColor(chapterTitleColor)
+
+        val chapterDescriptionColor = when {
+            chapter.read -> adapter.readColor
+            chapter.bookmark -> adapter.bookmarkedColor
+            else -> adapter.unreadColorSecondary
+        }
+        chapter_description.setTextColor(chapterDescriptionColor)
 
         bookmark_icon.isVisible = chapter.bookmark
 

+ 1 - 0
app/src/main/java/eu/kanade/tachiyomi/ui/manga/chapter/ChaptersAdapter.kt

@@ -22,6 +22,7 @@ class ChaptersAdapter(
 
     val readColor = context.getResourceColor(R.attr.colorOnSurface, 0.38f)
     val unreadColor = context.getResourceColor(R.attr.colorOnSurface)
+    val unreadColorSecondary = context.getResourceColor(android.R.attr.textColorSecondary)
 
     val bookmarkedColor = context.getResourceColor(R.attr.colorAccent)