Skip to content

Commit

Permalink
feat: Improve bg colors
Browse files Browse the repository at this point in the history
  • Loading branch information
PrettyCoffee committed Mar 22, 2024
1 parent aecb369 commit 288668b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/ui/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const Footer = React.forwardRef<
<tfoot
ref={ref}
className={cn(
"border-t bg-muted/50 font-medium [&>tr]:last:border-b-0",
"border-t bg-zinc-700/25 font-medium [&>tr]:last:border-b-0",
className
)}
{...props}
Expand All @@ -66,7 +66,7 @@ const Row = React.forwardRef<
<tr
ref={ref}
className={cn(
"border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",
"border-b transition-colors hover:bg-zinc-700/25 data-[state=selected]:bg-muted",
className
)}
{...props}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Surface = ({
className,
}: PropsWithChildren<{ title?: string } & ClassNameProp>) => (
<div className={cn("p-1", className)}>
<div className="flex h-full flex-col overflow-hidden rounded-md bg-base/75 px-3 py-2 shadow-medium">
<div className="flex h-full flex-col overflow-hidden rounded-md bg-zinc-700/25 px-3 py-2 shadow-medium">
{title && (
<Text asChild size="xs" color="muted" bold>
<h3>{title}</h3>
Expand Down

0 comments on commit 288668b

Please sign in to comment.