Skip to content

Commit

Permalink
Update repeat button color states (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
cristhianescobar authored Sep 25, 2024
1 parent 03c5394 commit 7b2c12e
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ import io.newm.core.resources.R
import io.newm.core.theme.Black
import io.newm.core.theme.DarkPink
import io.newm.core.theme.DarkViolet
import io.newm.core.theme.Gray23
import io.newm.core.theme.Gray500
import io.newm.core.theme.GraySuit
import io.newm.core.theme.White
Expand Down Expand Up @@ -360,7 +359,7 @@ fun RepeatButton(
Icon(
painter = painterResource(id = imageRes),
contentDescription = "Repeat",
tint = if (repeatMode == PlaybackRepeatMode.REPEAT_OFF) Gray23 else White
tint = if (repeatMode == PlaybackRepeatMode.REPEAT_OFF) White else DarkViolet
)
}
}
Expand Down

0 comments on commit 7b2c12e

Please sign in to comment.