expand AppSettings with appearance and board default fields

This commit is contained in:
2026-02-15 20:23:47 +02:00
parent f567cc7245
commit 4c622d10b2
2 changed files with 10 additions and 0 deletions

View File

@@ -58,4 +58,8 @@ export const appSettingsSchema = z.object({
theme: z.enum(["light", "dark", "system"]).default("system"),
dataDirectory: z.string().nullable().default(null),
recentBoardIds: z.array(z.string()).default([]),
accentColor: z.string().default("160"),
uiZoom: z.number().min(0.75).max(1.5).default(1),
density: z.enum(["compact", "comfortable", "spacious"]).default("comfortable"),
defaultColumnWidth: z.enum(["narrow", "standard", "wide"]).default("standard"),
});