Skip to content

Commit

Permalink
default theme
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Sheep committed Nov 19, 2023
1 parent 3964c88 commit aad9644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/theme-switch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Button = () => {
return (
<button
onClick={() => (theme == "dark" ? setTheme("light") : setTheme("dark"))}
className="px-1 py-1 bg-gray-800 dark:bg-gray-50 hover:bg-gray-600 dark:hover:bg-gray-300 transition-all duration-100 text-white dark:text-gray-800 text-sm md:text-sm rounded-lg "
className="px-1 bg-gray-800 dark:bg-gray-50 hover:bg-gray-600 dark:hover:bg-gray-300 transition-all duration-100 text-white dark:text-gray-800 text-sm md:text-sm rounded-lg "
>
{theme === "dark" ? "🌞" : "🌕"}
</button>
Expand Down

0 comments on commit aad9644

Please sign in to comment.