Files
dify/web/hooks/use-theme.ts
2025-12-23 16:58:55 +08:00

14 lines
352 B
TypeScript

import { useTheme as useBaseTheme } from 'next-themes'
import { Theme } from '@/types/app'
const useTheme = () => {
const { theme, resolvedTheme, ...rest } = useBaseTheme()
return {
// only returns 'light' or 'dark' theme
theme: theme === Theme.system ? resolvedTheme as Theme : theme as Theme,
...rest,
}
}
export default useTheme