Tweak compact tracker card design

This commit is contained in:
arkon
2020-03-10 21:13:55 -04:00
parent c7cdb950ce
commit 208552f0b4
5 changed files with 107 additions and 88 deletions

View File

@ -54,7 +54,7 @@ class Anilist(private val context: Context, id: Int) : TrackService(id) {
override fun getLogo() = R.drawable.tracker_anilist
override fun getLogoColor() = Color.rgb(18, 25, 35)
override fun getLogoColor() = Color.rgb(0x12, 0x19, 0x23)
override fun getStatusList(): List<Int> {
return listOf(READING, PLANNING, COMPLETED, REPEATING, PAUSED, DROPPED)

View File

@ -38,7 +38,7 @@ class Kitsu(private val context: Context, id: Int) : TrackService(id) {
}
override fun getLogoColor(): Int {
return Color.rgb(51, 37, 50)
return Color.rgb(0x33, 0x25, 0x32)
}
override fun getStatusList(): List<Int> {

View File

@ -36,7 +36,7 @@ class MyAnimeList(private val context: Context, id: Int) : TrackService(id) {
override fun getLogo() = R.drawable.tracker_mal
override fun getLogoColor() = Color.rgb(46, 81, 162)
override fun getLogoColor() = Color.rgb(0x2E, 0x51, 0xA2)
override fun getStatusList(): List<Int> {
return listOf(READING, COMPLETED, ON_HOLD, DROPPED, PLAN_TO_READ)

View File

@ -82,7 +82,7 @@ class Shikimori(private val context: Context, id: Int) : TrackService(id) {
override fun getLogo() = R.drawable.tracker_shikimori
override fun getLogoColor() = Color.rgb(40, 40, 40)
override fun getLogoColor() = Color.rgb(0x28, 0x28, 0x28)
override fun getStatusList(): List<Int> {
return listOf(READING, COMPLETED, ON_HOLD, DROPPED, PLANNING, REPEATING)