feat: expand AppSettings with appearance and board default fields

This commit is contained in:
Your Name
2026-02-15 20:23:47 +02:00
parent a9d1ae3a28
commit 03a089efda
2 changed files with 10 additions and 0 deletions

View File

@@ -1,5 +1,11 @@
import type { ColumnWidth } from "./board";
export interface AppSettings {
theme: "light" | "dark" | "system";
dataDirectory: string | null;
recentBoardIds: string[];
accentColor: string;
uiZoom: number;
density: "compact" | "comfortable" | "spacious";
defaultColumnWidth: ColumnWidth;
}