fix(client): use `usePreferredDark` with `appearance: "force-auto"` (#4263)

pull/4268/head
Mike Bostock 4 weeks ago committed by GitHub
parent 6ea60f5d0c
commit 3e8fc40c36
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +1,5 @@
import siteData from '@siteData'
import { useDark } from '@vueuse/core'
import { useDark, usePreferredDark } from '@vueuse/core'
import {
computed,
inject,
@ -79,6 +79,8 @@ export function initData(route: Route): VitePressData {
const isDark =
appearance === 'force-dark'
? ref(true)
: appearance === 'force-auto'
? usePreferredDark()
: appearance
? useDark({
storageKey: APPEARANCE_KEY,

Loading…
Cancel
Save