feat: choose halloween as default theme

This commit is contained in:
kunish 2023-09-02 11:10:24 +08:00
parent 56d905548c
commit a1dee05825
No known key found for this signature in database
GPG Key ID: 647A12B4F782C430

View File

@ -23,7 +23,7 @@ export const [endpointList, setEndpointList] = makePersisted(
)
export const [curTheme, setCurTheme] = makePersisted(
createSignal<(typeof themes)[number]>('business'),
createSignal<(typeof themes)[number]>('halloween'),
{ name: 'theme', storage: localStorage },
)