Skip to content

Commit

Permalink
UI: Use champagne colour instead of grey for unfinished chapters
Browse files Browse the repository at this point in the history
  • Loading branch information
thunderbiscuit committed Sep 18, 2023
1 parent becad47 commit f004a01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ fun SectionsCarousel(

@Composable
fun LessonCircle(lessonNumber: Int, completed: Boolean, selected: Boolean, selectedChapter: MutableState<Int>) {
val completedColor = if (completed) Color(0xffffc847) else Color(0xffababab)
val completedColor = if (completed) Color(0xffffc847) else Color(0xfff7e7ce)
val screenSizeWidth = getScreenSizeWidth(LocalConfiguration.current.screenWidthDp)
val (innerCircleSize, outerCircleSize) = when (screenSizeWidth) {
ScreenSizeWidth.Small -> Pair(48f, 50f)
Expand Down

0 comments on commit f004a01

Please sign in to comment.