Styling: More Themes 🪮 (#124)

* feat: add purple light and dark themes to theme selection

* feat: add vintage light and dark theme options to DropdownThemeMode

* feat: add vintage light and dark theme options to theme selection

* add even more designs

---------

Co-authored-by: highperfocused <highperfocused@pm.me>
This commit is contained in:
mroxso
2025-05-25 00:17:33 +02:00
committed by GitHub
parent 9543c319e4
commit d1802df8fc
3 changed files with 401 additions and 0 deletions

View File

@@ -31,6 +31,30 @@ export function DropdownThemeMode() {
<DropdownMenuItem onClick={() => setTheme("dark")}>
Dark
</DropdownMenuItem>
<DropdownMenuItem onClick={() => setTheme("purple-light")}>
Purple Light
</DropdownMenuItem>
<DropdownMenuItem onClick={() => setTheme("purple-dark")}>
Purple Dark
</DropdownMenuItem>
<DropdownMenuItem onClick={() => setTheme("vintage-light")}>
Vintage Light
</DropdownMenuItem>
<DropdownMenuItem onClick={() => setTheme("vintage-dark")}>
Vintage Dark
</DropdownMenuItem>
<DropdownMenuItem onClick={() => setTheme("neo-brutalism-light")}>
Neo Brutalism Light
</DropdownMenuItem>
<DropdownMenuItem onClick={() => setTheme("neo-brutalism-dark")}>
Neo Brutalism Dark
</DropdownMenuItem>
<DropdownMenuItem onClick={() => setTheme("nature-light")}>
Nature Light
</DropdownMenuItem>
<DropdownMenuItem onClick={() => setTheme("nature-dark")}>
Nature Dark
</DropdownMenuItem>
<DropdownMenuItem onClick={() => setTheme("system")}>
System
</DropdownMenuItem>