@doRadiology to automatically set the theme to dark on each startup add a line in App.vue :
```
diff --git a/src/jelu-ui/src/App.vue b/src/jelu-ui/src/App.vue
index 37c0b2b..eec020b 100644
--- a/src/jelu-ui/src/App.vue
+++ b/src/jelu-ui/src/App.vue
@@ -78,6 +78,7 @@ const shelves = computed(() => {
onMounted(() => {
console.log('Component is mounted!')
themeChange(false);
+ localStorage.setItem("theme", "dark")
})
```