export function useCookieTheme() { const theme = useCookie('theme'); if (!theme.value) theme.value = 'dark'; return theme; }