change color of zap icon for light/dark mode

This commit is contained in:
padreug 2025-02-11 00:32:03 +01:00
parent f3927b97a4
commit 335c06dd08

View file

@ -38,7 +38,7 @@ const toggleLocale = () => {
<!-- Logo and Desktop Navigation --> <!-- Logo and Desktop Navigation -->
<div class="flex items-center gap-6"> <div class="flex items-center gap-6">
<router-link to="/" class="flex ml-4 items-center gap-2"> <router-link to="/" class="flex ml-4 items-center gap-2">
<Zap class="h-6 w-6 text-orange-600 dark:text-orange-400" /> <Zap class="h-6 w-6" :class="theme === 'dark' ? 'text-orange-400' : 'text-fuchsia-600'" />
<span class=" font-semibold">{{ t('nav.title') }}</span> <span class=" font-semibold">{{ t('nav.title') }}</span>
</router-link> </router-link>