funkwhale/front/src/composables/useTheme.ts

13 wiersze
203 B
TypeScript

import { useColorMode } from '@vueuse/core'
const theme = useColorMode({
selector: 'body',
modes: {
auto: '',
light: 'theme-light',
dark: 'theme-dark'
}
})
export default () => theme