Skip to content

Commit

Permalink
fix: fine-tune secondary text color
Browse files Browse the repository at this point in the history
  • Loading branch information
BrickheadJohnny committed Nov 26, 2024
1 parent 3504868 commit aed3507
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/NavMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const NavGroup = ({
children,
}: { title: string; children: ReactNode }) => (
<div className="flex min-w-36 max-w-max flex-col gap-[2px]">
<span className="my-1 pl-4 font-bold text-muted-foreground text-sm">
<span className="my-1 pl-4 font-bold text-foreground-secondary text-sm">
{title}
</span>
{children}
Expand Down
2 changes: 1 addition & 1 deletion src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ html {
--background: var(--gray-800);
--foreground: var(--gray-100);
--foreground-dimmed: var(--gray-300);
--foreground-secondary: var(--gray-500);
--foreground-secondary: var(--gray-400);
--card: var(--gray-700);
--card-secondary: color-mix(in srgb, var(--gray-800), var(--gray-700));
--image: var(--gray-600);
Expand Down

0 comments on commit aed3507

Please sign in to comment.