Files
dify/web/hooks/use-theme.ts
Stephen Zhou a84c2d36a3 style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

14 lines
356 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