add the best theme

adds catppuccin mocha (very high quality pr)
This commit is contained in:
RegalAether
2024-10-15 20:58:35 -07:00
parent 15c282d099
commit 3d27586dcd
3 changed files with 27 additions and 0 deletions
+3
View File
@@ -38,6 +38,9 @@ export function ModeToggle() {
<DropdownMenuItem onClick={() => setTheme("midnight")}>
Midnight
</DropdownMenuItem>
<DropdownMenuItem onClick={() => setTheme("catppuccin")}>
Catppuccin
</DropdownMenuItem>
<DropdownMenuItem onClick={() => setTheme("system")}>
System
</DropdownMenuItem>
+2
View File
@@ -5,12 +5,14 @@ type Theme =
| 'cyberpunk'
| 'bluelight'
| 'midnight'
| 'catppuccin'
| 'system';
const themes: Theme[] = [
'radius',
'cyberpunk',
'bluelight',
'midnight',
'catppuccin',
'system',
];
type ThemeProviderProps = {