mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-22 01:15:25 +03:00
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
export default defineNuxtPlugin(() => {
|
|
const colorMode = useColorMode()
|
|
useHead({
|
|
meta: [{
|
|
id: 'theme-color',
|
|
name: 'theme-color',
|
|
content: () => colorMode.value === 'dark' ? '#111111' : '#fafafa',
|
|
}],
|
|
})
|
|
})
|