feat: add reduce motion settings and update related UI components

This commit is contained in:
Flavio Fois
2026-02-09 22:45:56 +01:00
parent 51679b61eb
commit 4b6f2d727c
6 changed files with 47 additions and 7 deletions

View File

@@ -15,6 +15,7 @@ const defaults: EMLy_GUI_Settings = {
useDarkEmailViewer: true,
enableUpdateChecker: false,
musicInspirationEnabled: false,
reduceMotion: false,
theme: "dark",
};

View File

@@ -11,6 +11,7 @@ interface EMLy_GUI_Settings {
useDarkEmailViewer?: boolean;
enableUpdateChecker?: boolean;
musicInspirationEnabled?: boolean;
reduceMotion?: boolean;
theme?: "light" | "dark";
}