Skip to content

Commit 62a94ab

Browse files
committed
note to self
1 parent 5d408c4 commit 62a94ab

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/components/theme-button.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ import { useTheme } from "next-themes";
44
import { useEffect, useState } from "react";
55
import { Sun, Moon, Palette } from "lucide-react";
66

7+
// TODO: make it dynamic so light always follows dark and dark always follows light, and then it is pastel
78
const themes = [
8-
{ id: "light", label: "Light Mode", icon: <Sun size={20} /> },
99
{ id: "dark", label: "Dark Mode", icon: <Moon size={20} /> },
10+
{ id: "light", label: "Light Mode", icon: <Sun size={20} /> },
1011
{ id: "pastel", label: "Pastel Mode", icon: <Palette size={20} /> },
1112
];
1213

0 commit comments

Comments
 (0)