diff --git a/src/course-home/dates-tab/timeline/badgelist.jsx b/src/course-home/dates-tab/timeline/badgelist.jsx index 47e81e39a2..737c2ba1a8 100644 --- a/src/course-home/dates-tab/timeline/badgelist.jsx +++ b/src/course-home/dates-tab/timeline/badgelist.jsx @@ -38,21 +38,21 @@ function getBadgeListAndColor(date, intl, item, items) { message: messages.today, shownForDay: isToday, bg: 'bg-warning-300', - className: 'text-black', + className: 'text-dark', }, { message: messages.completed, shownForDay: assignments.length && assignments.every(isComplete), shownForItem: x => isLearnerAssignment(x) && isComplete(x), bg: 'bg-light-500', - className: 'text-black', + className: 'text-dark', }, { message: messages.pastDue, shownForDay: assignments.length && assignments.every(isPastDue), shownForItem: x => isLearnerAssignment(x) && isPastDue(x), bg: 'bg-dark-200', - className: 'text-white', + className: 'text-dark', }, { message: messages.dueNext,