Skip to content

Commit f004a01

Browse files
UI: Use champagne colour instead of grey for unfinished chapters
1 parent becad47 commit f004a01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/goldenraven/padawanwallet/ui/chapters/ChaptersRootScreen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ fun SectionsCarousel(
216216

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

0 commit comments

Comments
 (0)