Skip to content

Commit

Permalink
fix: change theme toggler color (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
alindsharmasimply authored Feb 24, 2023
1 parent b5bfd80 commit 31a755d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/ThemeToggler/themeToggler.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ export function ThemeToggler() {
}}
>
{resolvedTheme === "dark" ? (
<HiSun className="text-white hover:text-violet-500" size={"1.5rem"} />
<HiSun
className="dark:text-gray-200 hover:text-violet-500"
size={"1.5rem"}
/>
) : (
<HiMoon className="hover:text-violet-500" size={"1.5rem"} />
)}
Expand Down

1 comment on commit 31a755d

@vercel
Copy link

@vercel vercel bot commented on 31a755d Feb 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

linkshub – ./

linkshub-rupali-codes.vercel.app
linkshub.vercel.app
linkshub-git-main-rupali-codes.vercel.app

Please sign in to comment.