Skip to content

Commit

Permalink
chore: add tui colors for circle
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaZhem committed Jul 19, 2024
1 parent c7c611a commit cdd7ed7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ export class CleaningComponent {
protected readonly color$ = this.cleaningService.progress$.pipe(
map((value) => {
if (value < 33) {
return '#ec5353';
return 'var(--tui-status-negative)';
}

if (value < 66) {
return '#ecec53';
return 'var(--tui-status-warning)';
}

return '#235ad1';
return 'var(--tui-status-info)';
}),
);

Expand Down

0 comments on commit cdd7ed7

Please sign in to comment.