feat: improve color theme (#649)

This commit is contained in:
patak 2022-12-29 23:40:31 +01:00 committed by GitHub
parent 27419dc124
commit 861afe79b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 7 deletions

View file

@ -4,7 +4,7 @@ export default defineNuxtPlugin(() => {
meta: [{
id: 'theme-color',
name: 'theme-color',
content: () => colorMode.value === 'dark' ? '#111111' : '#ffffff',
content: () => colorMode.value === 'dark' ? '#111111' : '#fafafa',
}],
})
})