diff --git a/src/app/components/themeswitcher.tsx b/src/app/components/themeswitcher.tsx
index 17c5475..3896566 100644
--- a/src/app/components/themeswitcher.tsx
+++ b/src/app/components/themeswitcher.tsx
@@ -14,6 +14,8 @@ export default function ThemeSwitcher(){
setTheme("synthwave")}>Synthwave
setTheme("cyberpunk")}>Cyberpunk
setTheme("valentine")}>Valentine
+ setTheme("pastel")}>Pastel
+ setTheme("aqua")}>Aqua
);
}
diff --git a/tailwind.config.ts b/tailwind.config.ts
index ae466fe..75e5a7d 100644
--- a/tailwind.config.ts
+++ b/tailwind.config.ts
@@ -7,7 +7,7 @@ const config: Config = {
},
plugins: [require("daisyui")],
daisyui: {
- themes: ["light", "dark", "synthwave", "cyberpunk", "valentine"]
+ themes: ["light", "dark", "synthwave", "cyberpunk", "valentine", "pastel", "aqua"]
}
};