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 5b2d105609
commit d8d6334052
+1
View File
@@ -209,6 +209,7 @@ interface ReaderSettings {
double_page_spread: boolean;
reading_direction: "ltr" | "rtl" | "vertical";
reading_mode: "dark" | "light";
pdf_fit_mode: "fit-width" | "fit-page" | "fit-height" | "none";
pdf_zoom_level: number;