use usePreferredDark with appearance: force-auto

pull/4263/head
Mike Bostock 12 months ago
parent 6ea60f5d0c
commit f8edd7c6b5
No known key found for this signature in database
GPG Key ID: C6817CA4CDEC8FDB

@ -1,5 +1,5 @@
import siteData from '@siteData'
import { useDark } from '@vueuse/core'
import { useDark, usePreferredDark } from '@vueuse/core'
import {
computed,
inject,
@ -79,13 +79,15 @@ export function initData(route: Route): VitePressData {
const isDark =
appearance === 'force-dark'
? ref(true)
: appearance === 'force-auto'
? usePreferredDark()
: appearance
? useDark({
storageKey: APPEARANCE_KEY,
initialValue: () => (appearance === 'dark' ? 'dark' : 'auto'),
...(typeof appearance === 'object' ? appearance : {})
})
: ref(false)
? useDark({
storageKey: APPEARANCE_KEY,
initialValue: () => (appearance === 'dark' ? 'dark' : 'auto'),
...(typeof appearance === 'object' ? appearance : {})
})
: ref(false)
const hashRef = ref(inBrowser ? location.hash : '')

Loading…
Cancel
Save