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