feat: dark mode by default

This commit is contained in:
2026-05-24 18:36:09 +00:00
parent 1eb5350d09
commit 1e022efa1d
5 changed files with 25 additions and 2 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ const VOLATILE_APP_STATE_KEYS = new Set([
export function emptyScene(): ScenePayload {
return {
elements: [],
appState: {},
appState: { theme: "dark" },
files: {},
};
}