File size: 257 Bytes
c1f12bf
299bd34
c1f12bf
5eac338
 
c1f12bf
 
5eac338
 
c1f12bf
1
2
3
4
5
6
7
8
9
10
11
import { UITheme } from '@aitube/clapper-services'

import { useUI } from './useUI'

export function useTheme(): UITheme {
  const getTheme = useUI((s) => s.getTheme)
  const themeName = useUI((s) => s.themeName)
  const theme = getTheme()
  return theme
}