15 lines
382 B
TypeScript
15 lines
382 B
TypeScript
import { InjectionKeyColorMode, InjectionKeyFontSize } from '~/constants/symbols'
|
|
|
|
export function useFontSizeRef() {
|
|
return inject(InjectionKeyFontSize)!
|
|
}
|
|
|
|
export function useColorModeRef() {
|
|
return inject(InjectionKeyColorMode)!
|
|
}
|
|
|
|
export function toggleColorMode() {
|
|
const colorMode = useColorModeRef()
|
|
colorMode.value = colorMode.value === 'light' ? 'dark' : 'light'
|
|
}
|