Skip to content

Commit

Permalink
refactor: use semantic tokens for steppers
Browse files Browse the repository at this point in the history
  • Loading branch information
wackerow committed Oct 22, 2024
1 parent ebd70a9 commit 175c3e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Quiz/QuizWidget/QuizProgressBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ export const QuizProgressBar = ({
}

if (index === currentQuestionIndex) {
return "bg-gray-400"
return "bg-body-medium"
}

return "bg-gray-500"
return "bg-disabled"
},
[answerStatus, currentQuestionIndex, userQuizProgress]
)
Expand Down

0 comments on commit 175c3e8

Please sign in to comment.