Skip to content

Commit c11865f

Browse files
fix: ProgressBar styling is hardcoded in dark mode (calcom#25516)
1 parent a3c0d06 commit c11865f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/ui/components/progress-bar/ProgressBar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ export function ProgressBar({ color, percentageValue, label, className }: Progre
2929

3030
return (
3131
<div className={classNames("flex w-full items-center gap-3", className)}>
32-
<div className="h-2 flex-1 rounded-full bg-gray-200">
32+
<div className="bg-subtle h-2 flex-1 rounded-full">
3333
<div className={progressBarStyles({ color })} style={{ width: `${clampedPercentage}%` }} />
3434
</div>
35-
{label && <span className="text-sm font-medium text-gray-700">{label}</span>}
35+
{label && <span className="text-default text-sm font-medium">{label}</span>}
3636
</div>
3737
);
3838
}

0 commit comments

Comments
 (0)