diff --git a/docs/.vitepress/theme/components/ColorPicker.vue b/docs/.vitepress/theme/components/ColorPicker.vue index 0afb0f738..c213c0f65 100644 --- a/docs/.vitepress/theme/components/ColorPicker.vue +++ b/docs/.vitepress/theme/components/ColorPicker.vue @@ -20,7 +20,7 @@ const colorScales = [ type ColorNames = keyof typeof colors const selectedColor = useStorage('preferred-color', 'swarm') -const isAmoledMode = useStorage('amoled-mode', true) +const isAmoledMode = useStorage('amoled-mode', false) const colorOptions = Object.keys(colors).filter( (key) => typeof colors[key as keyof typeof colors] === 'object'