Update ColorPicker.vue

This commit is contained in:
Land 2025-11-02 11:25:00 +05:30 committed by GitHub
parent f0d39a01e2
commit 0e0e6e2dd1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,7 +20,7 @@ const colorScales = [
type ColorNames = keyof typeof colors
const selectedColor = useStorage<ColorNames>('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'