Rename app utils

This commit is contained in:
Jon Staab
2026-06-08 14:14:40 -07:00
parent 879ba5c37f
commit ea6b63de53
188 changed files with 324 additions and 321 deletions
+8
View File
@@ -0,0 +1,8 @@
import {kv} from "@app/core/storage"
import {synced} from "@welshman/store"
export const theme = synced({
key: "theme",
defaultValue: window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light",
storage: kv,
})