diff options
Diffstat (limited to 'extension/src/Settings.ts')
-rw-r--r-- | extension/src/Settings.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extension/src/Settings.ts b/extension/src/Settings.ts index 2bf490b..ce6c344 100644 --- a/extension/src/Settings.ts +++ b/extension/src/Settings.ts @@ -6,6 +6,7 @@ export interface ISettings { backgroundMode: "theme" | "color" | "image" backgroundColor: string backgroundImage: string + foregroundColor: string editMode: boolean rootFolder: string | null } @@ -16,6 +17,7 @@ export let defaultSettings: ISettings = { backgroundMode: "theme", backgroundColor: "#000000", backgroundImage: "", + foregroundColor: "#FFFFFF", editMode: false, rootFolder: '0', } |