Dark mode logo

I got this code but the dark: css is not working
<div class="dark:hidden w-full">
    <img src="{{ asset('/images/logo.svg') }}" alt="Logo" class="h-12">
</div>
<div class="hidden dark:block w-full">
    <img src="{{ asset('/images/Logo_dark.svg') }}" alt="Logo" class="h-12">
</div>


It also doesn't show up in inspect element so not sure if this is a vite issue
Was this page helpful?