dark mode on by default

This commit is contained in:
cirroskais 2024-07-06 03:21:16 -04:00
parent b99b682a54
commit 9b1017f69a
No known key found for this signature in database
GPG key ID: 5FC73EBF2678E33D

View file

@ -1,7 +1,7 @@
import { writable, type Writable } from 'svelte/store';
import type { UserSafe } from '../app';
export const darkMode = writable();
export const darkMode = writable(true);
export const user: Writable<UserSafe> = writable();
// too lazy to do types for this