diff --git a/layouts/default.vue b/layouts/default.vue index 8e983ca..0bf21bf 100644 --- a/layouts/default.vue +++ b/layouts/default.vue @@ -7,6 +7,40 @@ const { t } = useI18n() const isLoggedIn = useIsLoggedIn() const me = await useUserInfo() +const colorMode = useColorMode() +const themes = [ + 'system', + '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', +] + const footerLinks = [ { text: t('footerlink_edit'), to: '/edit' }, { @@ -55,11 +89,21 @@ async function logout() {