☯ A simple store that syncs with your device's theme settings
<script>
import { isDark } from '@jill64/svelte-device-theme'
</script>
{#if $isDark}
Device is dark mode
{:else}
Device is light mode
{/if}
[!NOTE]
$isDark
isundefined
on the server.
If you need full theme management including SSR, please see @jill64/svelte-dark-theme.