diff --git a/frontend/src/components/layout/statusbar.rs b/frontend/src/components/layout/statusbar.rs
index cfc3a15..e5405a5 100644
--- a/frontend/src/components/layout/statusbar.rs
+++ b/frontend/src/components/layout/statusbar.rs
@@ -60,10 +60,9 @@ pub fn StatusBar() -> impl IntoView {
{
let themes = vec![
- "light", "dark", "cupcake", "bumblebee", "emerald", "corporate", "synthwave", "retro", "cyberpunk",
- "valentine", "halloween", "garden", "forest", "aqua", "lofi", "pastel", "fantasy", "wireframe", "black",
- "luxury", "dracula", "cmyk", "autumn", "business", "acid", "lemonade", "night", "coffee", "winter",
- "dim", "nord", "sunset"
+ "light", "dark", "cupcake", "dracula", "cyberpunk",
+ "emerald", "luxury", "nord", "sunset", "winter",
+ "night", "synthwave", "retro", "forest"
];
themes.into_iter().map(|theme| {
view! {
diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js
index dd2b144..6c6a751 100644
--- a/frontend/tailwind.config.js
+++ b/frontend/tailwind.config.js
@@ -14,6 +14,6 @@ module.exports = {
},
plugins: [],
daisyui: {
- themes: ["light", "dark", "cupcake", "bumblebee", "emerald", "corporate", "synthwave", "retro", "cyberpunk", "valentine", "halloween", "garden", "forest", "aqua", "lofi", "pastel", "fantasy", "wireframe", "black", "luxury", "dracula", "cmyk", "autumn", "business", "acid", "lemonade", "night", "coffee", "winter", "dim", "nord", "sunset"],
+ themes: ["light", "dark", "cupcake", "dracula", "cyberpunk", "emerald", "luxury", "nord", "sunset", "winter", "night", "synthwave", "retro", "forest"],
},
}