Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Elm theme improvement on Course Home #58

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/src/edx/org/openedx/core/ui/theme/Colors.kt
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ val dark_course_home_header_shade = Color(0xFF999999)
val dark_course_home_back_btn_background = Color.Black
val dark_settings_title_content = Color.White
val dark_progress_bar_color = dark_primary_button_background
val dark_progress_bar_background_color = Color(0xFFE7E4DB)
val dark_progress_bar_background_color = Color(0xFF707070)

val dark_primary_card_caution_background = Color(0xFF2D494E)
val dark_primary_card_info_background = Color(0xFF0E3639)
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ fun CourseExpandableChapterCard(
if (downloadedState == DownloadedState.DOWNLOADED) {
MaterialTheme.appColors.successGreen
} else {
MaterialTheme.appColors.textAccent
MaterialTheme.appColors.textPrimary
}
IconButton(modifier = iconModifier,
onClick = { onDownloadClick() }) {
Expand Down
Loading