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