We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d408c4 commit 62a94abCopy full SHA for 62a94ab
1 file changed
src/components/theme-button.tsx
@@ -4,9 +4,10 @@ import { useTheme } from "next-themes";
4
import { useEffect, useState } from "react";
5
import { Sun, Moon, Palette } from "lucide-react";
6
7
+// TODO: make it dynamic so light always follows dark and dark always follows light, and then it is pastel
8
const themes = [
- { id: "light", label: "Light Mode", icon: <Sun size={20} /> },
9
{ id: "dark", label: "Dark Mode", icon: <Moon size={20} /> },
10
+ { id: "light", label: "Light Mode", icon: <Sun size={20} /> },
11
{ id: "pastel", label: "Pastel Mode", icon: <Palette size={20} /> },
12
];
13
0 commit comments