summaryrefslogtreecommitdiffstats
path: root/browser/src/canvas/CanvasSectionContainer.ts
diff options
context:
space:
mode:
Diffstat (limited to 'browser/src/canvas/CanvasSectionContainer.ts')
-rw-r--r--browser/src/canvas/CanvasSectionContainer.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/browser/src/canvas/CanvasSectionContainer.ts b/browser/src/canvas/CanvasSectionContainer.ts
index e92c9ab279..da68616b4f 100644
--- a/browser/src/canvas/CanvasSectionContainer.ts
+++ b/browser/src/canvas/CanvasSectionContainer.ts
@@ -251,7 +251,9 @@ class CanvasSectionContainer {
this.scrollLineHeight = parseInt(window.getComputedStyle(tempElement).fontSize);
document.body.removeChild(tempElement); // Remove the temporary element.
- this.clearColor = window.getComputedStyle(document.documentElement).getPropertyValue('--color-canvas');
+ const colorCanvasPropety = (window as any).prefs.getBoolean('darkTheme') ? '--color-canvas-dark' : '--color-canvas-light';
+
+ this.clearColor = window.getComputedStyle(document.documentElement).getPropertyValue(colorCanvasPropety);
// Set document background color to the app background color for now until we get the real color from the kit
// through a LOK_CALLBACK_DOCUMENT_BACKGROUND_COLOR
this.documentBackgroundColor = window.getComputedStyle(document.documentElement).getPropertyValue('--color-background-document');