@elixpo/lixsketch 5.5.5 → 5.5.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -331,7 +331,7 @@ var useUIStore = create2((set, get) => ({
331
331
  setCanvasLoading: (loading, message) => set({ canvasLoading: loading, canvasLoadingMessage: message || "Loading canvas..." }),
332
332
  // --- Theme ---
333
333
  // Issue #38 bug #1: light by default. Dark stays available via toggle.
334
- theme: "light",
334
+ theme: "dark",
335
335
  setTheme: (newTheme) => {
336
336
  const prev = get().theme;
337
337
  const resolve = (t) => t === "system" ? window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light" : t;