aboutsummaryrefslogtreecommitdiff
path: root/src/stores
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/settings.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts
index 9396ec74..c802e8b2 100644
--- a/src/stores/settings.ts
+++ b/src/stores/settings.ts
@@ -10,6 +10,7 @@ interface Settings {
displayUnresolved: boolean;
roundDownChapters: boolean;
sortByDifference: boolean;
+ forceLightTheme: boolean;
}
const defaultSettings: Settings = {
@@ -20,7 +21,8 @@ const defaultSettings: Settings = {
displayNotStarted: false,
displayUnresolved: false,
roundDownChapters: true,
- sortByDifference: false
+ sortByDifference: false,
+ forceLightTheme: false
};
const createStore = () => {