You've already forked agentic-coding-workflow
feat(web): auth/ui/notifications pinia stores + theme composable
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import { useUIStore } from '@/stores/ui'
|
||||
|
||||
export function useTheme() {
|
||||
const ui = useUIStore()
|
||||
return {
|
||||
mode: ui.themeMode,
|
||||
isDark: ui.effectiveDark,
|
||||
setMode: ui.setThemeMode,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user