feat(reader): add reading_mode (dark/light) to ReaderSettings type

Add the 'reading_mode' field with 'dark' | 'light' values to the
ReaderSettings TypeScript interface, preparing the frontend for a
dark/light reading mode toggle.
This commit is contained in:
2026-04-20 20:45:54 -04:00
parent a670d379e3
commit 2fe5fea3d8
+1
View File
@@ -209,6 +209,7 @@ interface ReaderSettings {
double_page_spread: boolean; double_page_spread: boolean;
reading_direction: "ltr" | "rtl" | "vertical"; reading_direction: "ltr" | "rtl" | "vertical";
reading_mode: "dark" | "light";
pdf_fit_mode: "fit-width" | "fit-page" | "fit-height" | "none"; pdf_fit_mode: "fit-width" | "fit-page" | "fit-height" | "none";
pdf_zoom_level: number; pdf_zoom_level: number;