Skip to content

Commit

Permalink
fix: Progress bar coloring (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
ieedan authored Dec 4, 2024
1 parent 1cf5aa2 commit 21c6238
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/ui/progress/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const progress_bar_variants = tv({
base: 'h-full w-full flex-1 rounded-full transition-[width,transform,background-color] ease-in',
variants: {
variant: {
default: 'bg-gray-200',
default: 'bg-gray-1000',
success: 'bg-blue-700',
error: 'bg-red-700',
warning: 'bg-amber-700',
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/ui/progress/progress.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</script>

<ProgressPrimitive.Root
class={cn('relative h-2.5 w-full overflow-hidden rounded-full bg-gray-1000', class_name)}
class={cn('relative h-2.5 w-full overflow-hidden rounded-full bg-gray-200', class_name)}
{...rest}
>
<div
Expand Down

0 comments on commit 21c6238

Please sign in to comment.