From 2586a0a0bc1f33284bcb0816de5525a4b8e6f4be Mon Sep 17 00:00:00 2001 From: root Date: Sun, 23 Nov 2025 17:32:36 +0100 Subject: [PATCH] [FEAT] Disable checkerboard bg --- src/stores/useSettingsStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/useSettingsStore.ts b/src/stores/useSettingsStore.ts index e02e81e..4788297 100644 --- a/src/stores/useSettingsStore.ts +++ b/src/stores/useSettingsStore.ts @@ -8,7 +8,7 @@ const backgroundColor = ref('transparent'); const manualCellSizeEnabled = ref(false); const manualCellWidth = ref(64); const manualCellHeight = ref(64); -const checkerboardEnabled = ref(true); +const checkerboardEnabled = ref(false); // Initialize dark mode from localStorage or system preference if (typeof window !== 'undefined') {